Lines Matching full:note

240  * Note that /proc/vmcore might also be available in "standard zfcp/nvme dump"
259 * Initialize ELF note
264 Elf64_Nhdr *note; in nt_init_name() local
267 note = (Elf64_Nhdr *)buf; in nt_init_name()
268 note->n_namesz = strlen(name) + 1; in nt_init_name()
269 note->n_descsz = d_len; in nt_init_name()
270 note->n_type = type; in nt_init_name()
273 memcpy(buf + len, name, note->n_namesz); in nt_init_name()
274 len = roundup(len + note->n_namesz, 4); in nt_init_name()
276 memcpy(buf + len, desc, note->n_descsz); in nt_init_name()
277 len = roundup(len + note->n_descsz, 4); in nt_init_name()
288 * Calculate the size of ELF note
314 /* Prepare prstatus note */ in fill_cpu_elf_notes()
320 /* Prepare fpregset (floating point) note */ in fill_cpu_elf_notes()
365 * Initialize prpsinfo note (new kernel)
384 Elf64_Nhdr note; in get_vmcoreinfo_old() local
389 if (copy_oldmem_kernel(&note, addr, sizeof(note))) in get_vmcoreinfo_old()
391 if (copy_oldmem_kernel(nt_name, addr + sizeof(note), in get_vmcoreinfo_old()
396 vmcoreinfo = kzalloc(note.n_descsz, GFP_KERNEL); in get_vmcoreinfo_old()
399 if (copy_oldmem_kernel(vmcoreinfo, addr + 24, note.n_descsz)) { in get_vmcoreinfo_old()
403 *size = note.n_descsz; in get_vmcoreinfo_old()
408 * Initialize vmcoreinfo note (new kernel)
447 * Initialize final note (needed for /proc/vmcore code)
451 Elf64_Nhdr *note; in nt_final() local
453 note = (Elf64_Nhdr *) ptr; in nt_final()
454 note->n_namesz = 0; in nt_final()
455 note->n_descsz = 0; in nt_final()
456 note->n_type = 0; in nt_final()