diff options
Diffstat (limited to 'include/linux/crash_core.h')
| -rw-r--r-- | include/linux/crash_core.h | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/crash_core.h b/include/linux/crash_core.h index 4090a42578a8..2df2118fbe13 100644 --- a/include/linux/crash_core.h +++ b/include/linux/crash_core.h @@ -19,7 +19,7 @@  				     CRASH_CORE_NOTE_NAME_BYTES +	\  				     CRASH_CORE_NOTE_DESC_BYTES) -#define VMCOREINFO_BYTES	   (4096) +#define VMCOREINFO_BYTES	   PAGE_SIZE  #define VMCOREINFO_NOTE_NAME	   "VMCOREINFO"  #define VMCOREINFO_NOTE_NAME_BYTES ALIGN(sizeof(VMCOREINFO_NOTE_NAME), 4)  #define VMCOREINFO_NOTE_SIZE	   ((CRASH_CORE_NOTE_HEAD_BYTES * 2) +	\ @@ -28,6 +28,7 @@  typedef u32 note_buf_t[CRASH_CORE_NOTE_BYTES/4]; +void crash_update_vmcoreinfo_safecopy(void *ptr);  void crash_save_vmcoreinfo(void);  void arch_crash_save_vmcoreinfo(void);  __printf(1, 2) @@ -56,9 +57,7 @@ phys_addr_t paddr_vmcoreinfo_note(void);  #define VMCOREINFO_CONFIG(name) \  	vmcoreinfo_append_str("CONFIG_%s=y\n", #name) -extern u32 vmcoreinfo_note[VMCOREINFO_NOTE_SIZE/4]; -extern size_t vmcoreinfo_size; -extern size_t vmcoreinfo_max_size; +extern u32 *vmcoreinfo_note;  Elf_Word *append_elf_note(Elf_Word *buf, char *name, unsigned int type,  			  void *data, size_t data_len);  | 
