s390/kdump: Use "LINUX" ELF note name instead of "CORE"

am: 91cfcaa6ed

Change-Id: Ib1e184c24c5bd48b20364997700f101e88a32c64
This commit is contained in:
Michael Holzheu
2017-03-15 02:19:51 +00:00
committed by android-build-merger

View File

@@ -329,7 +329,11 @@ static void *nt_init_name(void *buf, Elf64_Word type, void *desc, int d_len,
static inline void *nt_init(void *buf, Elf64_Word type, void *desc, int d_len)
{
return nt_init_name(buf, type, desc, d_len, KEXEC_CORE_NOTE_NAME);
const char *note_name = "LINUX";
if (type == NT_PRPSINFO || type == NT_PRSTATUS || type == NT_PRFPREG)
note_name = KEXEC_CORE_NOTE_NAME;
return nt_init_name(buf, type, desc, d_len, note_name);
}
/*