Lines Matching full:note

240  * Note that /proc/vmcore might also be available in "standard zfcp/nvme dump"
250 * Initialize ELF note
255 Elf64_Nhdr *note; in nt_init_name() local
258 note = (Elf64_Nhdr *)buf; in nt_init_name()
259 note->n_namesz = strlen(name) + 1; in nt_init_name()
260 note->n_descsz = d_len; in nt_init_name()
261 note->n_type = type; in nt_init_name()
264 memcpy(buf + len, name, note->n_namesz); in nt_init_name()
265 len = roundup(len + note->n_namesz, 4); in nt_init_name()
267 memcpy(buf + len, desc, note->n_descsz); in nt_init_name()
268 len = roundup(len + note->n_descsz, 4); in nt_init_name()
277 * Calculate the size of ELF note
300 /* Prepare prstatus note */ in fill_cpu_elf_notes()
306 /* Prepare fpregset (floating point) note */ in fill_cpu_elf_notes()
349 * Initialize prpsinfo note (new kernel)
368 Elf64_Nhdr note; in get_vmcoreinfo_old() local
373 if (copy_oldmem_kernel(&note, addr, sizeof(note))) in get_vmcoreinfo_old()
375 if (copy_oldmem_kernel(nt_name, addr + sizeof(note), in get_vmcoreinfo_old()
380 vmcoreinfo = kzalloc(note.n_descsz, GFP_KERNEL); in get_vmcoreinfo_old()
383 if (copy_oldmem_kernel(vmcoreinfo, addr + 24, note.n_descsz)) { in get_vmcoreinfo_old()
387 *size = note.n_descsz; in get_vmcoreinfo_old()
392 * Initialize vmcoreinfo note (new kernel)
431 * Initialize final note (needed for /proc/vmcore code)
435 Elf64_Nhdr *note; in nt_final() local
437 note = (Elf64_Nhdr *) ptr; in nt_final()
438 note->n_namesz = 0; in nt_final()
439 note->n_descsz = 0; in nt_final()
440 note->n_type = 0; in nt_final()