Home
last modified time | relevance | path

Searched refs:elf_buf (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/fs/proc/
Dkcore.c453 char * elf_buf; in read_kcore() local
458 elf_buf = kzalloc(elf_buflen, GFP_ATOMIC); in read_kcore()
459 if (!elf_buf) { in read_kcore()
463 elf_kcore_store_hdr(elf_buf, nphdr, elf_buflen); in read_kcore()
465 if (copy_to_user(buffer, elf_buf + *fpos, tsz)) { in read_kcore()
466 kfree(elf_buf); in read_kcore()
469 kfree(elf_buf); in read_kcore()
503 char * elf_buf; in read_kcore() local
505 elf_buf = kzalloc(tsz, GFP_KERNEL); in read_kcore()
506 if (!elf_buf) in read_kcore()
[all …]