Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c70814c authored by Mirco Tischler's avatar Mirco Tischler Committed by Linus Torvalds
Browse files

cgroups: fix compile warning



Return type of cpu_rt_runtime_write() should be int instead of ssize_t.

Signed-off-by: default avatarMirco Tischler <mt-ml@gmx.de>
Acked-by: default avatarPaul Menage <menage@google.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b7cffc1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8986,7 +8986,7 @@ static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
#endif

#ifdef CONFIG_RT_GROUP_SCHED
static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
				s64 val)
{
	return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);