Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sched/headers/uapi: Fix linux/sched/types.h userspace compilation errors

Consistently use types provided by <linux/types.h> to fix the following
linux/sched/types.h userspace compilation errors:

/usr/include/linux/sched/types.h:57:2: error: unknown type name 'u32'
u32 size;
...
u64 sched_period;

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: stable@vger.kernel.org # v4.12
Fixes: e2d1e2aec572 ("sched/headers: Move various ABI definitions to <uapi/linux/sched/types.h>")
Link: http://lkml.kernel.org/r/20170705162328.GA11026@altlinux.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Dmitry V. Levin and committed by
Ingo Molnar
242fc352 65a4433a

+8 -8
+8 -8
include/uapi/linux/sched/types.h
··· 54 54 * available in the scheduling class file or in Documentation/. 55 55 */ 56 56 struct sched_attr { 57 - u32 size; 57 + __u32 size; 58 58 59 - u32 sched_policy; 60 - u64 sched_flags; 59 + __u32 sched_policy; 60 + __u64 sched_flags; 61 61 62 62 /* SCHED_NORMAL, SCHED_BATCH */ 63 - s32 sched_nice; 63 + __s32 sched_nice; 64 64 65 65 /* SCHED_FIFO, SCHED_RR */ 66 - u32 sched_priority; 66 + __u32 sched_priority; 67 67 68 68 /* SCHED_DEADLINE */ 69 - u64 sched_runtime; 70 - u64 sched_deadline; 71 - u64 sched_period; 69 + __u64 sched_runtime; 70 + __u64 sched_deadline; 71 + __u64 sched_period; 72 72 }; 73 73 74 74 #endif /* _UAPI_LINUX_SCHED_TYPES_H */