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

tools headers: Synchronize uapi/linux/sched.h

To get the tools copy updated with the changes in 34be39305a77
("sched/deadline: Implement "runtime overrun signal" support"), that
cause no effect on the tools, will be used when we start copying the
sched_attr struct argument to the sched_get/setattr syscalls.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Juri Lelli <juri.lelli@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-8rododhs87x8hv9k83qcdtne@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+5
+5
tools/include/uapi/linux/sched.h
··· 49 49 */ 50 50 #define SCHED_FLAG_RESET_ON_FORK 0x01 51 51 #define SCHED_FLAG_RECLAIM 0x02 52 + #define SCHED_FLAG_DL_OVERRUN 0x04 53 + 54 + #define SCHED_FLAG_ALL (SCHED_FLAG_RESET_ON_FORK | \ 55 + SCHED_FLAG_RECLAIM | \ 56 + SCHED_FLAG_DL_OVERRUN) 52 57 53 58 #endif /* _UAPI_LINUX_SCHED_H */