Searched refs:note (Results 1 – 25 of 90) sorted by relevance
1234
/arch/arm64/kernel/vdso/ |
D | vdso.lds.S | 47 *(.note.GNU-stack .note.gnu.property) 49 .note : { *(.note.*) } :text :note 82 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/s390/kernel/ |
D | crash_dump.c | 259 Elf64_Nhdr *note; in nt_init() local 262 note = (Elf64_Nhdr *)buf; in nt_init() 263 note->n_namesz = strlen(name) + 1; in nt_init() 264 note->n_descsz = d_len; in nt_init() 265 note->n_type = type; in nt_init() 268 memcpy(buf + len, name, note->n_namesz); in nt_init() 269 len = roundup(len + note->n_namesz, 4); in nt_init() 271 memcpy(buf + len, desc, note->n_descsz); in nt_init() 272 len = roundup(len + note->n_descsz, 4); in nt_init() 370 Elf64_Nhdr *note; in nt_s390_vx_low() local [all …]
|
D | vmlinux.lds.S | 17 note PT_NOTE FLAGS(0); /* ___ */ 44 NOTES :text :note
|
/arch/arm/vdso/ |
D | vdso.lds.S | 45 .note : { *(.note.*) } :text :note 61 *(.note.GNU-stack) 75 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/alpha/kernel/ |
D | vmlinux.lds.S | 10 PHDRS { kernel PT_LOAD; note PT_NOTE; } 32 NOTES :kernel :note 69 .note 0 : { 70 *(.note)
|
/arch/mips/vdso/ |
D | vdso.lds.S | 47 .note : { *(.note.*) } :text :note 67 *(.note.GNU-stack) 91 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/x86/um/vdso/ |
D | vdso-layout.lds.S | 19 .note : { *(.note.*) } :text :note 62 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/tile/kernel/vdso/ |
D | vdso.lds.S | 36 .note : { *(.note.*) } :text :note 70 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/sh/kernel/vsyscall/ |
D | vsyscall.lds.S | 39 .note : { *(.note.*) } :text :note 67 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/ia64/kernel/ |
D | crash.c | 34 struct elf_note *note = (struct elf_note *)buf; in append_elf_note() local 35 note->n_namesz = strlen(name) + 1; in append_elf_note() 36 note->n_descsz = data_len; in append_elf_note() 37 note->n_type = type; in append_elf_note() 38 buf += (sizeof(*note) + 3)/4; in append_elf_note() 39 memcpy(buf, name, note->n_namesz); in append_elf_note() 40 buf += (note->n_namesz + 3)/4; in append_elf_note()
|
D | gate.lds.S | 22 .note : { *(.note*) } :readable :note 87 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/x86/entry/vdso/ |
D | vdso-layout.lds.S | 75 .note : { *(.note.*) } :text :note 116 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/s390/kernel/vdso32/ |
D | vdso32.lds.S | 23 .note : { *(.note.*) } :text :note 98 *(.note.GNU-stack) 118 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/s390/kernel/vdso64/ |
D | vdso64.lds.S | 23 .note : { *(.note.*) } :text :note 98 *(.note.GNU-stack) 118 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/powerpc/kernel/vdso32/ |
D | vdso32.lds.S | 27 .note : { *(.note.*) } :text :note 110 *(.note.GNU-stack) 129 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/powerpc/kernel/vdso64/ |
D | vdso64.lds.S | 27 .note : { *(.note.*) } :text :note 109 *(.note.GNU-stack) 129 note PT_NOTE FLAGS(4); /* PF_R */
|
/arch/ia64/scripts/ |
D | check-segrel.lds | 4 .note : { *(.note*) }
|
/arch/alpha/boot/ |
D | bootloader.lds | 22 .note 0 : { *(.note) }
|
/arch/cris/boot/ |
D | Makefile | 5 objcopyflags-$(CONFIG_ETRAX_ARCH_V10) += -R .note -R .comment 6 objcopyflags-$(CONFIG_ETRAX_ARCH_V32) += --remove-section=.bss --remove-section=.note.gnu.build-id
|
/arch/microblaze/boot/ |
D | Makefile | 7 OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
|
/arch/arc/boot/ |
D | Makefile | 7 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/arch/unicore32/ |
D | Makefile | 21 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/arch/um/include/asm/ |
D | common.lds.S | 18 .note : { *(.note.*) }
|
/arch/frv/boot/ |
D | Makefile | 20 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment
|
/arch/powerpc/kernel/ |
D | fadump.c | 498 struct elf_note note; in fadump_append_elf_note() local 500 note.n_namesz = strlen(name) + 1; in fadump_append_elf_note() 501 note.n_descsz = data_len; in fadump_append_elf_note() 502 note.n_type = type; in fadump_append_elf_note() 503 memcpy(buf, ¬e, sizeof(note)); in fadump_append_elf_note() 504 buf += (sizeof(note) + 3)/4; in fadump_append_elf_note() 505 memcpy(buf, name, note.n_namesz); in fadump_append_elf_note() 506 buf += (note.n_namesz + 3)/4; in fadump_append_elf_note() 507 memcpy(buf, data, note.n_descsz); in fadump_append_elf_note() 508 buf += (note.n_descsz + 3)/4; in fadump_append_elf_note() [all …]
|
1234