/openbmc/qemu/target/s390x/ |
H A D | arch_dump.c | 87 } QEMU_PACKED Note; typedef 91 static void s390x_write_elf64_prstatus(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_prstatus() argument 96 note->hdr.n_type = cpu_to_be32(NT_PRSTATUS); in s390x_write_elf64_prstatus() 98 regs = &(note->contents.prstatus.regs); in s390x_write_elf64_prstatus() 105 note->contents.prstatus.pid = cpu_to_be32(id); in s390x_write_elf64_prstatus() 108 static void s390x_write_elf64_fpregset(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_fpregset() argument 113 note->hdr.n_type = cpu_to_be32(NT_FPREGSET); in s390x_write_elf64_fpregset() 114 note->contents.fpregset.fpc = cpu_to_be32(cpu->env.fpc); in s390x_write_elf64_fpregset() 116 note->contents.fpregset.fprs[i] = cpu_to_be64(*get_freg(cs, i)); in s390x_write_elf64_fpregset() 120 static void s390x_write_elf64_vregslo(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_vregslo() argument [all …]
|
/openbmc/qemu/target/arm/ |
H A D | arch_dump.c | 95 static void aarch64_note_init(struct aarch64_note *note, DumpState *s, in aarch64_note_init() argument 99 memset(note, 0, sizeof(*note)); in aarch64_note_init() 101 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in aarch64_note_init() 102 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in aarch64_note_init() 103 note->hdr.n_type = cpu_to_dump32(s, type); in aarch64_note_init() 105 memcpy(note->name, name, namesz); in aarch64_note_init() 112 struct aarch64_note note; in aarch64_write_elf64_prfpreg() local 115 aarch64_note_init(¬e, s, "CORE", 5, NT_PRFPREG, sizeof(note.vfp)); in aarch64_write_elf64_prfpreg() 119 note.vfp.vregs[2 * i + 0] = cpu_to_dump64(s, q[0]); in aarch64_write_elf64_prfpreg() 120 note.vfp.vregs[2 * i + 1] = cpu_to_dump64(s, q[1]); in aarch64_write_elf64_prfpreg() [all …]
|
/openbmc/qemu/target/ppc/ |
H A D | arch_dump.c | 97 } QEMU_PACKED Note; typedef 100 Note note; member 110 Note *note = &arg->note; in ppc_write_elf_prstatus() local 113 note->hdr.n_type = cpu_to_dump32(s, NT_PRSTATUS); in ppc_write_elf_prstatus() 115 prstatus = ¬e->contents.prstatus; in ppc_write_elf_prstatus() 140 Note *note = &arg->note; in ppc_write_elf_fpregset() local 143 note->hdr.n_type = cpu_to_dump32(s, NT_PRFPREG); in ppc_write_elf_fpregset() 145 fpregset = ¬e->contents.fpregset; in ppc_write_elf_fpregset() 159 Note *note = &arg->note; in ppc_write_elf_vmxregset() local 162 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VMX); in ppc_write_elf_vmxregset() [all …]
|
/openbmc/qemu/target/riscv/ |
H A D | arch_dump.c | 54 static void riscv64_note_init(struct riscv64_note *note, DumpState *s, in riscv64_note_init() argument 58 memset(note, 0, sizeof(*note)); in riscv64_note_init() 60 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in riscv64_note_init() 61 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in riscv64_note_init() 62 note->hdr.n_type = cpu_to_dump32(s, type); in riscv64_note_init() 64 memcpy(note->name, name, namesz); in riscv64_note_init() 70 struct riscv64_note note; in riscv_cpu_write_elf64_note() local 76 riscv64_note_init(¬e, s, name, sizeof(name), in riscv_cpu_write_elf64_note() 77 NT_PRSTATUS, sizeof(note.prstatus)); in riscv_cpu_write_elf64_note() 79 note.prstatus.pr_pid = cpu_to_dump32(s, cpuid); in riscv_cpu_write_elf64_note() [all …]
|
/openbmc/qemu/target/loongarch/ |
H A D | arch_dump.c | 78 static void loongarch_note_init(struct loongarch_note *note, DumpState *s, in loongarch_note_init() argument 82 memset(note, 0, sizeof(*note)); in loongarch_note_init() 84 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in loongarch_note_init() 85 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in loongarch_note_init() 86 note->hdr.n_type = cpu_to_dump32(s, type); in loongarch_note_init() 88 memcpy(note->name, name, namesz); in loongarch_note_init() 95 struct loongarch_note note; in loongarch_write_elf64_fprpreg() local 98 loongarch_note_init(¬e, s, "CORE", 5, NT_PRFPREG, sizeof(note.fpu)); in loongarch_write_elf64_fprpreg() 99 note.fpu.fcsr = cpu_to_dump64(s, env->fcsr0); in loongarch_write_elf64_fprpreg() 100 note.fpu.fcc = cpu_to_dump64(s, read_fcc(env)); in loongarch_write_elf64_fprpreg() [all …]
|
/openbmc/qemu/target/i386/ |
H A D | arch_dump.c | 48 Elf64_Nhdr *note; in x86_64_write_elf64_note() local 85 note = g_malloc0(note_size); in x86_64_write_elf64_note() 86 note->n_namesz = cpu_to_le32(name_size); in x86_64_write_elf64_note() 87 note->n_descsz = cpu_to_le32(descsz); in x86_64_write_elf64_note() 88 note->n_type = cpu_to_le32(NT_PRSTATUS); in x86_64_write_elf64_note() 89 buf = (char *)note; in x86_64_write_elf64_note() 97 ret = f(note, note_size, s); in x86_64_write_elf64_note() 98 g_free(note); in x86_64_write_elf64_note() 154 Elf64_Nhdr *note; in x86_write_elf64_note() local 163 note = g_malloc0(note_size); in x86_write_elf64_note() [all …]
|
/openbmc/qemu/linux-headers/LICENSES/exceptions/ |
H A D | Linux-syscall-note | 1 SPDX-Exception-Identifier: Linux-syscall-note 2 SPDX-URL: https://spdx.org/licenses/Linux-syscall-note.html 10 SPDX-License-Identifier: <SPDX-License> WITH Linux-syscall-note 13 NOTE! This copyright does *not* cover user programs that use kernel 16 Also note that the GPL below is copyrighted by the Free Software 20 Also note that the only valid version of the GPL as far as the kernel
|
/openbmc/qemu/docs/system/arm/ |
H A D | mps2.rst | 19 Cortex-M3 as documented in Arm Application Note AN385 21 Cortex-M4 as documented in Arm Application Note AN386 23 Cortex-M7 as documented in Arm Application Note AN500 25 Cortex-M33 as documented in Arm Application Note AN505 27 Cortex-M3 'DesignStart' as documented in Arm Application Note AN511 29 Dual Cortex-M33 as documented in Arm Application Note AN521 31 Dual Cortex-M33 on an MPS3, as documented in Arm Application Note AN524 33 Cortex-M55 on an MPS3, as documented in Arm Application Note AN547 38 Dual Cortex-R52 on an MPS3, as documented in Arm Application Note AN536 70 Note that for the AN536 the first UART is accessible only by
|
/openbmc/qemu/scripts/ |
H A D | dump-guest-memory.py | 122 """Adds a note to the ELF.""" 124 note = get_arch_note(self.endianness, len(n_name), len(n_desc)) 125 note.n_namesz = len(n_name) + 1 126 note.n_descsz = len(n_desc) 127 note.n_name = n_name.encode() 128 note.n_type = n_type 134 ctypes.memmove(note.n_desc, n_desc.encode(), len(n_desc)) 136 self.notes.append(note) 137 self.segments[0].p_filesz += ctypes.sizeof(note) 138 self.segments[0].p_memsz += ctypes.sizeof(note) [all …]
|
/openbmc/qemu/tests/tcg/x86_64/system/ |
H A D | kernel.ld | 3 note PT_NOTE FLAGS(0); /* ___ */ 20 *(.note.gnu*) 24 *(.note.*) 25 } :note
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | upgrading-recipes.rst | 37 .. note:: 122 .. note:: 230 .. note:: 251 NOTE: Starting bitbake server... 265 NOTE: Starting bitbake server... 266 NOTE: Creating workspace layer in /home/scottrif/poky/build/workspace 269 NOTE: Extracting current version source... 270 NOTE: Resolving any missing task queue dependencies 274 NOTE: Executing SetScene Tasks 275 NOTE: Executing RunQueue Tasks [all …]
|
/openbmc/openpower-hw-diags/util/ |
H A D | bin_stream.hpp | 14 * @note IMPORTANT: Assumes file data is in big-endian format. 50 * @note This function simply copies a block of data without checking its 52 * @note After calling, check good() to determine if the operation was 64 * @note The default template is intentionally not defined so that only 67 * @note This is written as a template so that users can define their own 111 * @note IMPORTANT: Assumes file data is in big-endian format. 147 * @note This function simply copies a block of data without checking its 149 * @note After calling, check good() to determine if the operation was 161 * @note The default template is intentionally not defined so that only 164 * @note This is written as a template so that users can define their own
|
H A D | pdbg.hpp | 94 * @note Will assert the given target is a proc target. 95 * @note Will assert the returned pib target it not nullptr. 101 * @note Will assert the given target is a proc target. 102 * @note Will assert the returned fsi target it not nullptr. 112 * @note Will assert the given target is a proc target. 122 * @note Will assert the given target is a proc target. 146 * @note Support for hardware analysis from the BMC started with P10 systems 155 * @note This function requires PHAL APIs that are only available in certain 165 * @note This function requires PHAL APIs that are only available in certain 176 * @note This function requires PHAL APIs that are only available in certain
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl/ |
H A D | 0002-Fix-incompatible-pointer-types-error-with-gcc-15.patch | 12 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 16 ../include/md5global.h:16:24: note: 'POINTER' declared here 24 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 27 ../include/md5global.h:16:24: note: 'POINTER' declared here 35 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 38 ../include/md5global.h:16:24: note: 'POINTER' declared here 47 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 50 ../include/md5global.h:16:24: note: 'POINTER' declared here 59 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 62 ../include/md5global.h:16:24: note: 'POINTER' declared here [all …]
|
/openbmc/qemu/docs/specs/ |
H A D | vmcoreinfo.rst | 41 The entry gives location and size of an ELF note that is appended in 44 The note format/class must be of the target bitness and the size must 47 If the ELF note name is ``VMCOREINFO``, it is expected to be the Linux 48 vmcoreinfo note (see `the kernel documentation for its format 54 ancient tools not handling the ``VMCOREINFO`` note.
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libsmi/libsmi/ |
H A D | 0001-Fix-build-failure-with-gcc-15.patch | 13 parser-yang.h:16:12: note: declared here 21 parser-yang.h:16:12: note: previous declaration of 'yangparse' with type 'int(void)' 30 smi-data.c:42:12: note: declared here 37 parser-smi.h:27:12: note: previous declaration of 'smiparse' with type 'int(void)' 43 parser-smi.c:3207:1: note: in expansion of macro 'yyparse' 46 parser-smi.h:27:12: note: previous declaration of 'smiparse' with type 'int(void)' 52 parser-yang.c:2312:1: note: in expansion of macro 'yyparse' 55 parser-yang.h:16:12: note: previous declaration of 'yangparse' with type 'int(void)' 63 parser-yang.h:16:12: note: previous declaration of 'yangparse' with type 'int(void)' 76 error.h:25:44: note: in definition of macro 'yyerror' [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/php/php/ |
H A D | php-fpm.conf | 23 ; Note: the default prefix is /var 30 ; Note: the default prefix is /var 75 ; Note: A value of 0 indicates no limit 81 ; Note: - It will only work if the FPM master process is launched as root 133 ; Note: This directive can also be relative to the global prefix. 138 ; Note: The user is mandatory. If the group is not set, the default user's group 150 ; Note: This value is mandatory. 176 ; Note: - It will only work if the FPM master process is launched as root 205 ; Note: This value is mandatory. 215 ; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand' [all …]
|
/openbmc/qemu/linux-headers/linux/ |
H A D | vfio_ccw.h | 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 28 * Note: this is controlled by a capability 40 * Note: this is controlled by a capability 49 * Note: this is controlled by a capability
|
/openbmc/openbmc/poky/meta-selftest/classes/ |
H A D | test_events.bbclass | 2 bb.note("Test for bb.event.BuildStarted") 5 bb.note("Test for bb.event.BuildCompleted") 8 bb.note("Test for bb.event.InvalidEvent")
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netperf/files/ |
H A D | 0001-Fix-too-many-arguments-error-occurring-in-gcc-15.patch | 11 ../../git/src/netlib.h:690:26: note: declared here 19 ../../git/src/netlib.h:651:17: note: previous declaration of 'HIST_purge' with type 'void(void)' 26 ../../git/src/netlib.h:679:26: note: declared here 33 ../../git/src/netlib.h:679:26: note: declared here 40 ../../git/src/netlib.h:679:26: note: declared here 47 ../../git/src/netlib.h:679:26: note: declared here 53 ../../git/src/netlib.h:679:26: note: declared here 60 ../../git/src/netlib.h:679:26: note: declared here 66 ../../git/src/netlib.h:679:26: note: declared here 73 ../../git/src/netlib.h:679:26: note: declared here [all …]
|
/openbmc/openbmc/poky/scripts/ |
H A D | runqemu-gen-tapdevs | 79 echo "Note: Destroying pre-existing tap interface $tap..." 97 echo "Note: For systems running NetworkManager, it's recommended" 98 echo "Note: that the tap devices be set as unmanaged in the" 99 echo "Note: NetworkManager.conf file. Add the following lines to" 100 echo "Note: /etc/NetworkManager/NetworkManager.conf"
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | runqemu-gen-tapdevs | 79 echo "Note: Destroying pre-existing tap interface $tap..." 97 echo "Note: For systems running NetworkManager, it's recommended" 98 echo "Note: that the tap devices be set as unmanaged in the" 99 echo "Note: NetworkManager.conf file. Add the following lines to" 100 echo "Note: /etc/NetworkManager/NetworkManager.conf"
|
/openbmc/qemu/linux-user/x86_64/ |
H A D | vdso.ld | 33 note PT_NOTE FLAGS(4); 44 .note : { *(.note*) } :load :note
|
/openbmc/qemu/linux-user/arm/ |
H A D | vdso.ld | 27 note PT_NOTE FLAGS(4); 38 .note : { *(.note*) } :load :note
|
/openbmc/qemu/linux-user/ppc/ |
H A D | vdso-32.ld | 30 note PT_NOTE FLAGS(4); 41 .note : { *(.note*) } :load :note
|