diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2022-01-31 11:50:46 -0600 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2022-03-08 12:50:58 -0600 |
commit | a99a3e2efaf1f4454eb5c9176f47e66de075b134 (patch) | |
tree | b37ba91dc1e0a3fcb2dca10b943f209d2a54e526 /fs/binfmt_flat.c | |
parent | 9e1a3ce0a952450a1163cc93ab1df6d4fa8c8155 (diff) |
coredump: Move definition of struct coredump_params into coredump.h
Move the definition of struct coredump_params into coredump.h where
it belongs.
Remove the slightly errorneous comment explaining why struct
coredump_params was declared in binfmts.h.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/binfmt_flat.c')
-rw-r--r-- | fs/binfmt_flat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c index 5f0bf24bb3b8..208cdce16de1 100644 --- a/fs/binfmt_flat.c +++ b/fs/binfmt_flat.c @@ -37,6 +37,7 @@ #include <linux/flat.h> #include <linux/uaccess.h> #include <linux/vmalloc.h> +#include <linux/coredump.h> #include <asm/byteorder.h> #include <asm/unaligned.h> |