diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-15 21:58:20 +0100 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-27 17:49:56 +0100 |
commit | 932562a6045ed613d45bd100db37114273c22077 (patch) | |
tree | 7dfbfd9703e162908f2a211c556fac48ab61bbe1 /fs/exec.c | |
parent | LoongArch: signal.c: add header file to fix build error (diff) | |
download | linux-932562a6045ed613d45bd100db37114273c22077.tar.xz linux-932562a6045ed613d45bd100db37114273c22077.zip |
rseq: Split out rseq.h from sched.h
We're trying to get sched.h down to more or less just types only, not
code - rseq can live in its own header.
This helps us kill the dependency on preempt.h in sched.h.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/exec.c b/fs/exec.c index 4aa19b24f281..41773af7e3dc 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -66,6 +66,7 @@ #include <linux/coredump.h> #include <linux/time_namespace.h> #include <linux/user_events.h> +#include <linux/rseq.h> #include <linux/uaccess.h> #include <asm/mmu_context.h> |