Message ID | 1489064253-3652-5-git-send-email-arend.vanspriel@broadcom.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
diff --git a/backport/backport-include/linux/sched/signal.h b/backport/backport-include/linux/sched/signal.h new file mode 100644 index 0000000..ec89925 --- /dev/null +++ b/backport/backport-include/linux/sched/signal.h @@ -0,0 +1,10 @@ +#ifndef _BACKPORT_LINUX_SCHED_SIGNAL_H +#define _BACKPORT_LINUX_SCHED_SIGNAL_H + +#if LINUX_VERSION_IS_LESS(4, 11, 0) +#include <linux/sched.h> +#else +#include_next <linux/sched/signal.h> +#endif + +#endif /* _BACKPORT_LINUX_SCHED_SIGNAL_H */
Simply including linux/sched.h for older kernels not carrying this file. This new include file was introduced by commit 3f07c0144132 ("sched/headers: Prepare for new header dependencies before moving code to <linux/sched/signal.h>"). Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com> --- backport/backport-include/linux/sched/signal.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 backport/backport-include/linux/sched/signal.h