From: Arnaldo Carvalho de Melo Date: Thu, 30 Jun 2016 14:57:33 +0000 (-0300) Subject: perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older systems X-Git-Tag: v4.8-rc1~184^2~10^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a41af25b3c317331743dc53defaa3f2e03d255cb;p=karo-tx-linux.git perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older systems RHEL5 for instance doesn't have this one, help it. Cc: Adrian Hunter Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Wang Nan Link: http://lkml.kernel.org/n/tip-3adewnii78zi110eovfciopy@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/trace/beauty/sched_policy.c b/tools/perf/trace/beauty/sched_policy.c index c205bc608b3c..34775295b9b3 100644 --- a/tools/perf/trace/beauty/sched_policy.c +++ b/tools/perf/trace/beauty/sched_policy.c @@ -9,6 +9,9 @@ #ifndef SCHED_DEADLINE #define SCHED_DEADLINE 6 #endif +#ifndef SCHED_RESET_ON_FORK +#define SCHED_RESET_ON_FORK 0x40000000 +#endif static size_t syscall_arg__scnprintf_sched_policy(char *bf, size_t size, struct syscall_arg *arg)