Home
last modified time | relevance | path

Searched refs:note (Results 1 – 25 of 31) sorted by relevance

12

/xen-4.10.0-shim-comet/tools/xcutils/
A Dreadnotes.c64 ELF_HANDLE_DECL(elf_note) note) in print_string_note()
70 ELF_HANDLE_DECL(elf_note) note) in print_numeric_note()
80 ELF_HANDLE_DECL(elf_note) note) in print_l1_mfn_valid_note()
83 elf_ptrval desc = elf_note_desc(elf, note); in print_l1_mfn_valid_note()
104 ELF_HANDLE_DECL(elf_note) note; in print_notes()
108 …for ( note = start; ELF_HANDLE_PTRVAL(note) < ELF_HANDLE_PTRVAL(end); note = elf_note_next(elf, no… in print_notes()
110 this_note_name = elf_note_name(elf, note); in print_notes()
118 switch(elf_uval(elf, note, type)) in print_notes()
121 print_string_note("INFO", elf , note); in print_notes()
124 print_numeric_note("ENTRY", elf , note); in print_notes()
[all …]
/xen-4.10.0-shim-comet/docs/misc/
A Ddump-core-format.txt45 ".note.Xen" section
46 name ".note.Xen"
62 note descriptor in .note.Xen note section.
87 note descriptor in .note.Xen note section.
103 note descriptor in .note.Xen note section.
134 note descriptor in .note.Xen note section.
141 note section
148 elf note section
150 "Xen" is used as elf note name in elf note info
157 none note descriptor
[all …]
A Dqemu-deprivilege.txt34 Please note that running QEMU as non-root causes several features like
A Dpvh.markdown9 The presence of the `XEN_ELFNOTE_PHYS32_ENTRY` note indicates that the
A Dvtd.txt70 - locate the entry for device 01:00.0 and note down the vendor & device ID
A Dlivepatch.markdown291 * `.note.gnu.build-id` - the build-id of this payload. **MUST** have one.
414 ### .livepatch.depends and .note.gnu.build-id
1122 Please note there is a small limitation for trampolines in
/xen-4.10.0-shim-comet/xen/common/libelf/
A Dlibelf-tools.c293 return elf_strval(elf, ELF_HANDLE_PTRVAL(note) + elf_size(elf, note)); in elf_note_name()
298 unsigned namesz = (elf_uval(elf, note, namesz) + 3) & ~3; in elf_note_desc()
300 return ELF_HANDLE_PTRVAL(note) + elf_size(elf, note) + namesz; in elf_note_desc()
305 elf_ptrval desc = elf_note_desc(elf, note); in elf_note_numeric()
306 unsigned descsz = elf_uval(elf, note, descsz); in elf_note_numeric()
323 elf_ptrval desc = elf_note_desc(elf, note); in elf_note_numeric_array()
324 unsigned descsz = elf_uval(elf, note, descsz); in elf_note_numeric_array()
342 unsigned namesz = (elf_uval(elf, note, namesz) + 3) & ~3; in elf_note_next()
343 unsigned descsz = (elf_uval(elf, note, descsz) + 3) & ~3; in elf_note_next()
345 elf_ptrval ptrval = ELF_HANDLE_PTRVAL(note) in elf_note_next()
[all …]
A Dlibelf-dominfo.c99 ELF_HANDLE_DECL(elf_note) note) in elf_xen_parse_note()
129 unsigned type = elf_uval(elf, note, type); in elf_xen_parse_note()
140 str = elf_strval(elf, elf_note_desc(elf, note)); in elf_xen_parse_note()
150 val = elf_note_numeric(elf, note); in elf_xen_parse_note()
213 elf, note, sizeof(*parms->f_supported), i); in elf_xen_parse_note()
232 ELF_HANDLE_DECL(elf_note) note; in elf_xen_parse_notes()
237 for ( note = ELF_MAKE_HANDLE(elf_note, parms->elf_note_start); in elf_xen_parse_notes()
238 ELF_HANDLE_PTRVAL(note) < parms->elf_note_end; in elf_xen_parse_notes()
239 note = elf_note_next(elf, note) ) in elf_xen_parse_notes()
251 note_name = elf_note_name(elf, note); in elf_xen_parse_notes()
[all …]
/xen-4.10.0-shim-comet/xen/test/livepatch/
A DMakefile62 $(LIVEPATCH): xen_hello_world_func.o xen_hello_world.o note.o
74 .PHONY: note.o
75 note.o:
76 $(OBJCOPY) -O binary --only-section=.note.gnu.build-id $(BASEDIR)/xen-syms $@.bin
87 $(OBJCOPY) -O binary --only-section=.note.gnu.build-id $(LIVEPATCH) $@.bin
101 $(LIVEPATCH_REPLACE): xen_replace_world_func.o xen_replace_world.o note.o
107 $(LIVEPATCH_NOP): xen_nop.o note.o
/xen-4.10.0-shim-comet/xen/arch/x86/
A Dxen.lds.S38 note PT_NOTE ;
106 *(.note.gnu.build-id)
133 DECL_SECTION(.note.Xen) {
134 *(.note.Xen)
135 } :note :text
146 DECL_SECTION(.note.gnu.build-id) {
148 *(.note.gnu.build-id)
150 } :note :text
289 *(.note.Xen)
A DMakefile155 note.o: $(TARGET)-syms
156 $(OBJCOPY) -O binary --only-section=.note.gnu.build-id $(BASEDIR)/xen-syms $@.bin
158 --rename-section=.data=.note.gnu.build-id -S $@.bin $@
180 note_file := note.o
237 rm -f note.o
/xen-4.10.0-shim-comet/xen/common/
A Dkexec.c314 Elf_Note *note; in kexec_crash_save_cpu() local
323 note = crash_notes[cpu].start; in kexec_crash_save_cpu()
325 prstatus = (ELF_Prstatus *)ELFNOTE_DESC(note); in kexec_crash_save_cpu()
327 note = ELFNOTE_NEXT(note); in kexec_crash_save_cpu()
462 Elf_Note * note = NULL; in kexec_init_cpu_notes() local
476 note = xzalloc_bytes(nr_bytes); in kexec_init_cpu_notes()
489 xfree(note); in kexec_init_cpu_notes()
498 crash_notes[cpu].start = note; in kexec_init_cpu_notes()
504 if ( ! note ) in kexec_init_cpu_notes()
511 note = ELFNOTE_NEXT(note); in kexec_init_cpu_notes()
[all …]
/xen-4.10.0-shim-comet/xen/arch/arm/
A Dxen.lds.S25 note PT_NOTE ;
72 .note.gnu.build-id : {
74 *(.note.gnu.build-id)
76 } :note :text
A DKconfig81 Please note that this does not necessarily enable the workaround,
104 Please note that this option does not necessarily enable the
126 Please note that this does not necessarily enable the workaround,
145 Please note that this does not necessarily enable the workaround,
166 Please note that this does not necessarily enable the workaround,
/xen-4.10.0-shim-comet/xen/include/xen/
A Dlibelf.h324 const char *elf_note_name(struct elf_binary *elf, ELF_HANDLE_DECL(elf_note) note); /* may return NU…
325 elf_ptrval elf_note_desc(struct elf_binary *elf, ELF_HANDLE_DECL(elf_note) note);
326 uint64_t elf_note_numeric(struct elf_binary *elf, ELF_HANDLE_DECL(elf_note) note);
339 ELF_HANDLE_DECL(elf_note) elf_note_next(struct elf_binary *elf, ELF_HANDLE_DECL(elf_note) note);
453 ELF_HANDLE_DECL(elf_note) note);
/xen-4.10.0-shim-comet/xen/arch/x86/boot/
A Dedd.S59 incb bootsym(boot_edd_info_nr) # note that we stored something
154 incb bootsym(boot_mbr_signature_nr) # note that we stored something
A Dvideo.S859 prtspc: movb $0x20, %al # Print single space (note: fall-thru)
/xen-4.10.0-shim-comet/tools/python/
A Dpylintrc47 # Python expression which should return a note less than 10 (10 is the highest
48 # note).You have access to the variables errors warning, statement which
54 # Add a comment according to your evaluation note. This is used by the global
283 # List of note tags to take in consideration, separated by a comma. Default to
/xen-4.10.0-shim-comet/xen/include/asm-x86/
A Dasm_defns.h413 .pushsection .note.name, "a", @note ; \
/xen-4.10.0-shim-comet/tools/fuzz/
A DREADME.afl59 NOTE: Please also note that the coverage instrumentation hard-codes
/xen-4.10.0-shim-comet/docs/misc/arm/
A Dpassthrough.txt14 in the guest memory layout (see xen/include/public/arch-arm.h, note that
/xen-4.10.0-shim-comet/docs/features/
A Dfeature-levelling.pandoc205 …lic/us/en/documents/application-notes/virtualization-technology-flexmigration-application-note.pdf)
/xen-4.10.0-shim-comet/
A DSUPPORT.md314 Also note is feature independent
529 Also note that using XSM
A DINSTALL30 Please note that stubdom requires tools.
/xen-4.10.0-shim-comet/docs/man/
A Dxl-disk-configuration.pod.5309 It's important to note that if you are storing the VM disk on a

Completed in 26 milliseconds

12