diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-11 13:03:22 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-20 19:26:31 -0500 |
commit | 6d5e9d63683042a8d344cd5d6f9cf23613864a29 (patch) | |
tree | a0afec6744c6d7429fe3eebeeef20c4554b20209 /include/linux/seccomp.h | |
parent | f038cc1379c0ff462d83895cae8beb75a0f6bf02 (diff) | |
download | linux-stable-6d5e9d63683042a8d344cd5d6f9cf23613864a29.tar.gz linux-stable-6d5e9d63683042a8d344cd5d6f9cf23613864a29.tar.bz2 linux-stable-6d5e9d63683042a8d344cd5d6f9cf23613864a29.zip |
pid: Split out pid_types.h
Trimming down sched.h dependencies: we dont't want to include more than
the base types.
Cc: Kees Cook <keescook@chromium.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Will Drewry <wad@chromium.org>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'include/linux/seccomp.h')
-rw-r--r-- | include/linux/seccomp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/seccomp.h b/include/linux/seccomp.h index 175079552f68..1ec0d8dc4b69 100644 --- a/include/linux/seccomp.h +++ b/include/linux/seccomp.h @@ -126,6 +126,8 @@ static inline long seccomp_get_metadata(struct task_struct *task, #ifdef CONFIG_SECCOMP_CACHE_DEBUG struct seq_file; +struct pid_namespace; +struct pid; int proc_pid_seccomp_cache(struct seq_file *m, struct pid_namespace *ns, struct pid *pid, struct task_struct *task); |