Merge tag 'drm-for-v4.15-part2' of git://people.freedesktop.org/~airlied/linux
[sfrench/cifs-2.6.git] / kernel / elfcore.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/elf.h>
3 #include <linux/fs.h>
4 #include <linux/mm.h>
5 #include <linux/binfmts.h>
6
7 Elf_Half __weak elf_core_extra_phdrs(void)
8 {
9         return 0;
10 }
11
12 int __weak elf_core_write_extra_phdrs(struct coredump_params *cprm, loff_t offset)
13 {
14         return 1;
15 }
16
17 int __weak elf_core_write_extra_data(struct coredump_params *cprm)
18 {
19         return 1;
20 }
21
22 size_t __weak elf_core_extra_data_size(void)
23 {
24         return 0;
25 }