History log of /qemu/migration/ (Results 1 – 25 of 2485)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
0bafd6e902-Apr-2025 Jack Wang <jinpu.wang@ionos.com>

migration/rdma: Remove qemu_rdma_broken_ipv6_kernel

I hit following error which testing migration in pure RoCE env:
"-incoming rdma:[::]:8089: RDMA ERROR: You only have RoCE / iWARP devices in your

migration/rdma: Remove qemu_rdma_broken_ipv6_kernel

I hit following error which testing migration in pure RoCE env:
"-incoming rdma:[::]:8089: RDMA ERROR: You only have RoCE / iWARP devices in your
systems and your management software has specified '[::]', but IPv6 over RoCE /
iWARP is not supported in Linux.#012'."

In our setup, we use rdma bind on ipv6 on target host, while connect from source
with ipv4, remove the qemu_rdma_broken_ipv6_kernel, migration just work
fine.

Checking the git history, the function was added since introducing of
rdma migration, which is more than 10 years ago. linux-rdma has
improved support on RoCE/iWARP for ipv6 over past years. There are a few fixes
back in 2016 seems related to the issue, eg:
aeb76df46d11 ("IB/core: Set routable RoCE gid type for ipv4/ipv6 networks")

other fixes back in 2018, eg:
052eac6eeb56 RDMA/cma: Update RoCE multicast routines to use net namespace
8d20a1f0ecd5 RDMA/cma: Fix rdma_cm raw IB path setting for RoCE
9327c7afdce3 RDMA/cma: Provide a function to set RoCE path record L2 parameters
5c181bda77f4 RDMA/cma: Set default GID type as RoCE when resolving RoCE route
3c7f67d1880d IB/cma: Fix default RoCE type setting
be1d325a3358 IB/core: Set RoCEv2 MGID according to spec
63a5f483af0e IB/cma: Set default gid type to RoCEv2

So remove the outdated function and it's usage.

Cc: Peter Xu <peterx@redhat.com>
Cc: Li Zhijian <lizhijian@fujitsu.com>
Cc: Yu Zhang <yu.zhang@ionos.com>
Cc: Fabiano Rosas <farosas@suse.de>
Cc: qemu-devel@nongnu.org
Cc: linux-rdma@vger.kernel.org
Cc: michael@flatgalaxy.com
Signed-off-by: Jack Wang <jinpu.wang@ionos.com>
Tested-by: Li zhijian <lizhijian@fujitsu.com>
Reviewed-by: Michael Galaxy <mrgalaxy@nvidia.com>
Link: https://lore.kernel.org/r/20250402051306.6509-1-jinpu.wang@ionos.com
[peterx: some cosmetic changes]
Signed-off-by: Peter Xu <peterx@redhat.com>

show more ...

20d8262224-Apr-2025 Peter Xu <peterx@redhat.com>

migration/postcopy: Spatial locality page hint for preempt mode

The preempt mode postcopy has been introduced for a while. From latency
POV, it should always win the vanilla postcopy.

However ther

migration/postcopy: Spatial locality page hint for preempt mode

The preempt mode postcopy has been introduced for a while. From latency
POV, it should always win the vanilla postcopy.

However there's one thing missing when preempt mode is enabled right now,
which is the spatial locality hint when there're page requests from the
destination side.

In vanilla postcopy, as long as a page request was unqueued, it will update
the PSS of the precopy background stream, so that after a page request the
background thread will move the pages after whatever was requested. It's
pretty much a natural behavior when there's only one channel anyway, and
one scanner to send the pages.

Preempt mode didn't follow that, because preempt mode has its own channel
and its own PSS (which doesn't linearly scan the guest memory, but
dedicated to resolve page requested from destination). So the page request
process and the background migration process are completely separate.

This patch adds the hint explicitly for preempt mode. With that, whenever
the preempt mode receives a page request on the source, it will service the
remote page fault in the return path, then it'll provide a hint to the
background thread so that we'll start sending the pages right after the
requested ones in the background, assuming the follow up pages have a
higher chance to be accessed later.

NOTE: since the background migration thread and return path thread run
completely concurrently, it doesn't always mean the hint will be applied
every single time. For example, it's possible that the return path thread
receives multiple page requests in a row without the background thread
getting the chance to consume one. In such case, the preempt thread only
provide the hint if the previous hint has been consumed. After all,
there's no point queuing hints when we only have one linear scanner.

This could measureably improve the simple sequential memory access pattern
during postcopy (when preempt is on). For random accesses, I can measure a
slight increase of remote page fault latency from ~500us -> ~600us, that
could be a trade-off to have such hint mechanism, and after all that's
still greatly improved comparing to vanilla postcopy on random (~10ms).

The patch is verified by our QE team in a video streaming test case, to
reduce the pause of the video from ~1min to a few seconds when switching
over to postcopy with preempt mode.

Reported-by: Xiaohui Li <xiaohli@redhat.com>
Tested-by: Xiaohui Li <xiaohli@redhat.com>
Reviewed-by: Juraj Marcin <jmarcin@redhat.com>
Link: https://lore.kernel.org/r/20250424220705.195544-1-peterx@redhat.com
Signed-off-by: Peter Xu <peterx@redhat.com>

show more ...

ad8d82ff11-Apr-2025 Peter Xu <peterx@redhat.com>

migration/ram: Implement save_postcopy_prepare()

Implement save_postcopy_prepare(), preparing for the enablement
of both multifd and postcopy.

Signed-off-by: Peter Xu <peterx@redhat.com>
Signed-off

migration/ram: Implement save_postcopy_prepare()

Implement save_postcopy_prepare(), preparing for the enablement
of both multifd and postcopy.

Signed-off-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Prasad Pandit <pjp@fedoraproject.org>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Message-ID: <20250411114534.3370816-5-ppandit@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

1d48111611-Apr-2025 Peter Xu <peterx@redhat.com>

migration: Add save_postcopy_prepare() savevm handler

Add a savevm handler for a module to opt-in sending extra sections right
before postcopy starts, and before VM is stopped.

RAM will start to us

migration: Add save_postcopy_prepare() savevm handler

Add a savevm handler for a module to opt-in sending extra sections right
before postcopy starts, and before VM is stopped.

RAM will start to use this new savevm handler in the next patch to do flush
and sync for multifd pages.

Note that we choose to do it before VM stopped because the current only
potential user is not sensitive to VM status, so doing it before VM is
stopped is preferred to enlarge any postcopy downtime.

It is still a bit unfortunate that we need to introduce such a new savevm
handler just for the only use case, however it's so far the cleanest.

Signed-off-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Prasad Pandit <pjp@fedoraproject.org>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Message-ID: <20250411114534.3370816-4-ppandit@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

00f3fcef11-Apr-2025 Prasad Pandit <pjp@fedoraproject.org>

migration: refactor channel discovery mechanism

The various logical migration channels don't have a
standardized way of advertising themselves and their
connections may be seen out of order by the m

migration: refactor channel discovery mechanism

The various logical migration channels don't have a
standardized way of advertising themselves and their
connections may be seen out of order by the migration
destination. When a new connection arrives, the incoming
migration currently make use of heuristics to determine
which channel it belongs to.

The next few patches will need to change how the multifd
and postcopy capabilities interact and that affects the
channel discovery heuristic.

Refactor the channel discovery heuristic to make it less
opaque and simplify the subsequent patches.

Signed-off-by: Prasad Pandit <pjp@fedoraproject.org>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Message-ID: <20250411114534.3370816-3-ppandit@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

56e3c89f11-Apr-2025 Prasad Pandit <pjp@fedoraproject.org>

migration/multifd: move macros to multifd header

Move MULTIFD_ macros to the header file so that
they are accessible from other source files.

Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off

migration/multifd: move macros to multifd header

Move MULTIFD_ macros to the header file so that
they are accessible from other source files.

Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Prasad Pandit <pjp@fedoraproject.org>
Reviewed-by: Peter Xu <peterx@redhat.com>
Message-ID: <20250411114534.3370816-2-ppandit@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

b407c9e707-Apr-2025 Markus Armbruster <armbru@redhat.com>

migration: Fix latent bug in migrate_params_test_apply()

migrate_params_test_apply() neglects to apply tls_authz. Currently
harmless, because migrate_params_check() doesn't care. Fix it anyway.

S

migration: Fix latent bug in migrate_params_test_apply()

migrate_params_test_apply() neglects to apply tls_authz. Currently
harmless, because migrate_params_check() doesn't care. Fix it anyway.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Message-ID: <20250407072833.2118928-1-armbru@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

5e7ca4a705-Mar-2025 Li Zhijian <lizhijian@fujitsu.com>

migration: Unfold control_save_page()

control_save_page() is for RDMA only, unfold it to make the code more
clear.
In addition:
- Similar to other branches style in ram_save_target_page(), involve

migration: Unfold control_save_page()

control_save_page() is for RDMA only, unfold it to make the code more
clear.
In addition:
- Similar to other branches style in ram_save_target_page(), involve RDMA
only if the condition 'migrate_rdma()' is true.
- Further simplify the code by removing the RAM_SAVE_CONTROL_NOT_SUPP.

Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Message-ID: <20250305062825.772629-6-lizhijian@fujitsu.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

4ecd6bea05-Mar-2025 Li Zhijian <lizhijian@fujitsu.com>

migration/rdma: Remove redundant migration_in_postcopy checks

Since we have disabled RDMA + postcopy, it's safe to remove
the migration_in_postcopy() that follows the migrate_rdma().

Reviewed-by: P

migration/rdma: Remove redundant migration_in_postcopy checks

Since we have disabled RDMA + postcopy, it's safe to remove
the migration_in_postcopy() that follows the migrate_rdma().

Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Message-ID: <20250305062825.772629-5-lizhijian@fujitsu.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

103fa64105-Mar-2025 Li Zhijian <lizhijian@fujitsu.com>

migration: disable RDMA + postcopy-ram

It's believed that RDMA + postcopy-ram has been broken for a while.
Rather than spending time re-enabling it, let's simply disable it as a
trade-off.

Reviewed

migration: disable RDMA + postcopy-ram

It's believed that RDMA + postcopy-ram has been broken for a while.
Rather than spending time re-enabling it, let's simply disable it as a
trade-off.

Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Message-ID: <20250305062825.772629-4-lizhijian@fujitsu.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

57be554c05-Mar-2025 Li Zhijian <lizhijian@fujitsu.com>

migration: check RDMA and capabilities are compatible on both sides

Depending on the order of starting RDMA and setting capability,
they can be categorized into the following scenarios:
Source:
S1:

migration: check RDMA and capabilities are compatible on both sides

Depending on the order of starting RDMA and setting capability,
they can be categorized into the following scenarios:
Source:
S1: [set capabilities] -> [Start RDMA outgoing]
Destination:
D1: [set capabilities] -> [Start RDMA incoming]
D2: [Start RDMA incoming] -> [set capabilities]

Previously, compatibility between RDMA and capabilities was verified only
in scenario D1, potentially causing migration failures in other situations.

For scenarios S1 and D1, we can seamlessly incorporate
migration_transport_compatible() to address compatibility between
channels and capabilities vs transport.

For scenario D2, ensure compatibility within migrate_caps_check().

Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Message-ID: <20250305062825.772629-3-lizhijian@fujitsu.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...


/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/docs/devel/tcg-ops.rst
/qemu/include/block/block_int-common.h
/qemu/include/tcg/tcg-op-common.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg-opc.h
/qemu/include/tcg/tcg.h
migration.c
options.c
options.h
/qemu/qemu-img.c
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate-sve.c
/qemu/target/arm/tcg/translate.c
/qemu/target/hppa/translate.c
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/microblaze/translate.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/translate.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/translate.c
/qemu/tcg/aarch64/tcg-target-con-set.h
/qemu/tcg/aarch64/tcg-target-has.h
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/arm/tcg-target-con-set.h
/qemu/tcg/arm/tcg-target-has.h
/qemu/tcg/arm/tcg-target.c.inc
/qemu/tcg/i386/tcg-target-con-set.h
/qemu/tcg/i386/tcg-target-con-str.h
/qemu/tcg/i386/tcg-target-has.h
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-target-con-set.h
/qemu/tcg/loongarch64/tcg-target-con-str.h
/qemu/tcg/loongarch64/tcg-target-has.h
/qemu/tcg/loongarch64/tcg-target.c.inc
/qemu/tcg/mips/tcg-target-con-set.h
/qemu/tcg/mips/tcg-target-con-str.h
/qemu/tcg/mips/tcg-target-has.h
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/optimize.c
/qemu/tcg/ppc/tcg-target-con-set.h
/qemu/tcg/ppc/tcg-target-con-str.h
/qemu/tcg/ppc/tcg-target-has.h
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/riscv/tcg-target-con-set.h
/qemu/tcg/riscv/tcg-target-con-str.h
/qemu/tcg/riscv/tcg-target-has.h
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/s390x/tcg-target-con-set.h
/qemu/tcg/s390x/tcg-target-con-str.h
/qemu/tcg/s390x/tcg-target-has.h
/qemu/tcg/s390x/tcg-target.c.inc
/qemu/tcg/sparc64/tcg-target-con-set.h
/qemu/tcg/sparc64/tcg-target-has.h
/qemu/tcg/sparc64/tcg-target.c.inc
/qemu/tcg/tcg-has.h
/qemu/tcg/tcg-internal.h
/qemu/tcg/tcg-op-ldst.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target-has.h
/qemu/tcg/tci/tcg-target-opc.h.inc
/qemu/tcg/tci/tcg-target.c.inc
06b40d2527-Apr-2025 Stefan Hajnoczi <stefanha@redhat.com>

Merge tag 'single-binary-20250425' of https://github.com/philmd/qemu into staging

Various patches loosely related to single binary work:

- Replace cpu_list() definition by CPUClass::list_cpus() cal

Merge tag 'single-binary-20250425' of https://github.com/philmd/qemu into staging

Various patches loosely related to single binary work:

- Replace cpu_list() definition by CPUClass::list_cpus() callback
- Remove few MO_TE definitions on Hexagon / X86 targets
- Remove target_ulong uses in ARMMMUFaultInfo and ARM CPUWatchpoint
- Remove DEVICE_HOST_ENDIAN definition
- Evaluate TARGET_BIG_ENDIAN at compile time and use target_needs_bswap() more
- Rename target_words_bigendian() as target_big_endian()
- Convert target_name() and target_cpu_type() to TargetInfo API
- Constify QOM TypeInfo class_data/interfaces fields
- Get default_cpu_type calling machine_class_default_cpu_type()
- Correct various uses of GLibCompareDataFunc prototype
- Simplify ARM/Aarch64 gdb_get_core_xml_file() handling a bit
- Move device tree files in their own pc-bios/dtb/ subdir
- Correctly check strchrnul() symbol availability on macOS SDK
- Move target-agnostic methods out of cpu-target.c and accel-target.c
- Unmap canceled USB XHCI packet
- Use deposit/extract API in designware model
- Fix MIPS16e translation
- Few missing header fixes

# -----BEGIN PGP SIGNATURE-----
#
# iQIzBAABCAAdFiEE+qvnXhKRciHc/Wuy4+MsLN6twN4FAmgLqb8ACgkQ4+MsLN6t
# wN6nCQ//cmv1M+NsndhO5TAK8T1eUSXKlTZh932uro6ZgxKwN4p+j1Qo7bq3O9gu
# qUMHNbcfQl8sHSytiXBoxCjLMCXC3u38iyz75WGXuPay06rs4wqmahqxL4tyno3l
# 1RviFts9xlLn+tJqqrAR6+pRdALld0TY+yXUjXgr4aK5pIRpLz9U/sIEoh7qbA5U
# x0MTaceDG3A91OYo0TgrNbcMe1b9GqQZ+a4tbaP+oE37wbiKdyQ68LjrEbV08Y1O
# qrFF4oxquV31QJcUiuII1W7hC6psGrMsUA1f1qDu7QvmybAZWNZNsR9T66X9jH5J
# wXMShJmmXwxugohmuPPFnDshzJy90aFL6Jy2shrfqcG2v0W66ARY1ZnbJLCcfczt
# 073bnE2dnOVhd/ny37RrIJNJLLmYM0yFDeKuYtNNAzpK9fpA7Q2PI8QiqNacQ3Pa
# TdEYrGlMk7OeNck8xJmJMY5rATthi1D4dIBv3rjQbUolQvPJe2Y9or0R2WL1jK5v
# hhr6DY01iSPES3CravmUs/aB1HRMPi/nX45OmFR6frAB7xqWMreh81heBVuoTTK8
# PuXtRQgRMRKwDeTxlc6p+zba4mIEYG8rqJtPFRgViNCJ1KsgSIowup3BNU05YuFn
# NoPoRayMDVMgejVgJin3Mg2DCYvt/+MBmO4IoggWlFsXj59uUgA=
# =DXnZ
# -----END PGP SIGNATURE-----
# gpg: Signature made Fri 25 Apr 2025 11:26:55 EDT
# gpg: using RSA key FAABE75E12917221DCFD6BB2E3E32C2CDEADC0DE
# gpg: Good signature from "Philippe Mathieu-Daudé (F4BUG) <f4bug@amsat.org>" [full]
# Primary key fingerprint: FAAB E75E 1291 7221 DCFD 6BB2 E3E3 2C2C DEAD C0DE

* tag 'single-binary-20250425' of https://github.com/philmd/qemu: (58 commits)
qemu: Convert target_name() to TargetInfo API
accel: Move target-agnostic code from accel-target.c -> accel-common.c
accel: Make AccelCPUClass structure target-agnostic
accel: Include missing 'qemu/accel.h' header in accel-internal.h
accel: Implement accel_init_ops_interfaces() for both system/user mode
cpus: Move target-agnostic methods out of cpu-target.c
cpus: Replace CPU_RESOLVING_TYPE -> target_cpu_type()
qemu: Introduce target_cpu_type()
qapi: Rename TargetInfo structure as QemuTargetInfo
hw/microblaze: Evaluate TARGET_BIG_ENDIAN at compile time
hw/mips: Evaluate TARGET_BIG_ENDIAN at compile time
target/xtensa: Evaluate TARGET_BIG_ENDIAN at compile time
target/mips: Check CPU endianness at runtime using env_is_bigendian()
accel/kvm: Use target_needs_bswap()
linux-user/elfload: Use target_needs_bswap()
target/hexagon: Include missing 'accel/tcg/getpc.h'
accel/tcg: Correct list of included headers in tcg-stub.c
system/kvm: make functions accessible from common code
meson: Use osdep_prefix for strchrnul()
meson: Share common C source prefixes
...

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

show more ...


/qemu/MAINTAINERS
/qemu/accel/accel-common.c
/qemu/accel/accel-internal.h
/qemu/accel/accel-system.c
/qemu/accel/accel-target.c
/qemu/accel/accel-user.c
/qemu/accel/hvf/hvf-accel-ops.c
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/meson.build
/qemu/accel/qtest/qtest.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/xen/xen-all.c
/qemu/authz/list.c
/qemu/authz/listfile.c
/qemu/authz/pamacct.c
/qemu/authz/simple.c
/qemu/backends/confidential-guest-support.c
/qemu/backends/cryptodev-builtin.c
/qemu/backends/cryptodev-lkcf.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev.c
/qemu/backends/dbus-vmstate.c
/qemu/backends/host_iommu_device.c
/qemu/backends/hostmem-epc.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem-memfd.c
/qemu/backends/hostmem-ram.c
/qemu/backends/hostmem-shm.c
/qemu/backends/hostmem.c
/qemu/backends/iommufd.c
/qemu/backends/rng-builtin.c
/qemu/backends/rng-egd.c
/qemu/backends/rng-random.c
/qemu/backends/rng.c
/qemu/backends/tpm/tpm_emulator.c
/qemu/backends/tpm/tpm_passthrough.c
/qemu/backends/vhost-user.c
/qemu/block/throttle-groups.c
/qemu/chardev/baum.c
/qemu/chardev/char-console.c
/qemu/chardev/char-fd.c
/qemu/chardev/char-file.c
/qemu/chardev/char-hub.c
/qemu/chardev/char-mux.c
/qemu/chardev/char-null.c
/qemu/chardev/char-parallel.c
/qemu/chardev/char-pipe.c
/qemu/chardev/char-pty.c
/qemu/chardev/char-ringbuf.c
/qemu/chardev/char-serial.c
/qemu/chardev/char-socket.c
/qemu/chardev/char-stdio.c
/qemu/chardev/char-udp.c
/qemu/chardev/char-win-stdio.c
/qemu/chardev/char-win.c
/qemu/chardev/char.c
/qemu/chardev/msmouse.c
/qemu/chardev/spice.c
/qemu/chardev/testdev.c
/qemu/chardev/wctablet.c
/qemu/contrib/plugins/cache.c
/qemu/contrib/plugins/cflow.c
/qemu/contrib/plugins/hotblocks.c
/qemu/contrib/plugins/hotpages.c
/qemu/contrib/plugins/howvec.c
/qemu/contrib/plugins/hwprofile.c
/qemu/cpu-target.c
/qemu/crypto/secret.c
/qemu/crypto/secret_common.c
/qemu/crypto/secret_keyring.c
/qemu/crypto/tls-cipher-suites.c
/qemu/crypto/tlscreds.c
/qemu/crypto/tlscredsanon.c
/qemu/crypto/tlscredspsk.c
/qemu/crypto/tlscredsx509.c
/qemu/docs/devel/qom.rst
/qemu/docs/devel/reset.rst
/qemu/docs/devel/virtio-backends.rst
/qemu/event-loop-base.c
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/system.c
/qemu/hw/9pfs/virtio-9p-device.c
/qemu/hw/acpi/erst.c
/qemu/hw/acpi/generic_event_device.c
/qemu/hw/acpi/pci.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/vmclock.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/adc/aspeed_adc.c
/qemu/hw/adc/npcm7xx_adc.c
/qemu/hw/adc/stm32f2xx_adc.c
/qemu/hw/adc/zynq-xadc.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/allwinner-r40.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast10x0.c
/qemu/hw/arm/aspeed_ast2400.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_ast27x0.c
/qemu/hw/arm/aspeed_soc_common.c
/qemu/hw/arm/b-l475e-iot01a.c
/qemu/hw/arm/bcm2835_peripherals.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/bcm2838.c
/qemu/hw/arm/bcm2838_peripherals.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/digic.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/exynos4_boards.c
/qemu/hw/arm/fby35.c
/qemu/hw/arm/fsl-imx25.c
/qemu/hw/arm/fsl-imx31.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/fsl-imx7.c
/qemu/hw/arm/fsl-imx8mp.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/mps3r.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/npcm8xx.c
/qemu/hw/arm/npcm8xx_boards.c
/qemu/hw/arm/nrf51_soc.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/raspi4b.c
/qemu/hw/arm/realview.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/stm32f100_soc.c
/qemu/hw/arm/stm32f205_soc.c
/qemu/hw/arm/stm32f405_soc.c
/qemu/hw/arm/stm32l4x5_soc.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xen-pvh.c
/qemu/hw/arm/xilinx_zynq.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/adlib.c
/qemu/hw/audio/asc.c
/qemu/hw/audio/cs4231.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/marvell_88w8618.c
/qemu/hw/audio/pcspk.c
/qemu/hw/audio/pl041.c
/qemu/hw/audio/sb16.c
/qemu/hw/audio/via-ac97.c
/qemu/hw/audio/virtio-snd-pci.c
/qemu/hw/audio/virtio-snd.c
/qemu/hw/audio/wm8750.c
/qemu/hw/avr/arduino.c
/qemu/hw/avr/atmega.c
/qemu/hw/block/fdc-isa.c
/qemu/hw/block/fdc-sysbus.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/swim.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/avr_usart.c
/qemu/hw/char/bcm2835_aux.c
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/cmsdk-apb-uart.c
/qemu/hw/char/debugcon.c
/qemu/hw/char/digic-uart.c
/qemu/hw/char/diva-gsp.c
/qemu/hw/char/escc.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/char/goldfish_tty.c
/qemu/hw/char/grlib_apbuart.c
/qemu/hw/char/ibex_uart.c
/qemu/hw/char/imx_serial.c
/qemu/hw/char/ipoctal232.c
/qemu/hw/char/mcf_uart.c
/qemu/hw/char/mchp_pfsoc_mmuart.c
/qemu/hw/char/nrf51_uart.c
/qemu/hw/char/parallel.c
/qemu/hw/char/pl011.c
/qemu/hw/char/renesas_sci.c
/qemu/hw/char/sclpconsole-lm.c
/qemu/hw/char/sclpconsole.c
/qemu/hw/char/serial-isa.c
/qemu/hw/char/serial-mm.c
/qemu/hw/char/serial-pci-multi.c
/qemu/hw/char/serial-pci.c
/qemu/hw/char/serial.c
/qemu/hw/char/sh_serial.c
/qemu/hw/char/shakti_uart.c
/qemu/hw/char/sifive_uart.c
/qemu/hw/char/spapr_vty.c
/qemu/hw/char/stm32f2xx_usart.c
/qemu/hw/char/stm32l4x5_usart.c
/qemu/hw/char/terminal3270.c
/qemu/hw/char/virtio-console.c
/qemu/hw/char/virtio-serial-bus.c
/qemu/hw/char/xen_console.c
/qemu/hw/char/xilinx_uartlite.c
/qemu/hw/core/bus.c
/qemu/hw/core/clock.c
/qemu/hw/core/cpu-common.c
/qemu/hw/core/cpu-system.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/guest-loader.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/platform-bus.c
/qemu/hw/core/qdev.c
/qemu/hw/core/register.c
/qemu/hw/core/reset.c
/qemu/hw/core/resetcontainer.c
/qemu/hw/core/split-irq.c
/qemu/hw/core/sysbus-fdt.c
/qemu/hw/core/sysbus.c
/qemu/hw/cpu/a15mpcore.c
/qemu/hw/cpu/a9mpcore.c
/qemu/hw/cpu/arm11mpcore.c
/qemu/hw/cpu/cluster.c
/qemu/hw/cpu/core.c
/qemu/hw/cpu/realview_mpcore.c
/qemu/hw/cxl/switch-mailbox-cci.c
/qemu/hw/display/apple-gfx-mmio.m
/qemu/hw/display/apple-gfx-pci.m
/qemu/hw/display/artist.c
/qemu/hw/display/ati.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/bochs-display.c
/qemu/hw/display/cg3.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/cirrus_vga_isa.c
/qemu/hw/display/dm163.c
/qemu/hw/display/dpcd.c
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/g364fb.c
/qemu/hw/display/i2c-ddc.c
/qemu/hw/display/jazz_led.c
/qemu/hw/display/macfb.c
/qemu/hw/display/next-fb.c
/qemu/hw/display/pl110.c
/qemu/hw/display/qxl.c
/qemu/hw/display/ramfb-standalone.c
/qemu/hw/display/sii9022.c
/qemu/hw/display/sm501.c
/qemu/hw/display/ssd0303.c
/qemu/hw/display/ssd0323.c
/qemu/hw/display/tcx.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-mmio.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu-gl.c
/qemu/hw/display/virtio-gpu-pci-rutabaga.c
/qemu/hw/display/virtio-gpu-pci.c
/qemu/hw/display/virtio-gpu-rutabaga.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/bcm2835_dma.c
/qemu/hw/dma/i82374.c
/qemu/hw/dma/i8257.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/pl330.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/sifive_pdma.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/dma/xlnx-zdma.c
/qemu/hw/dma/xlnx-zynq-devcfg.c
/qemu/hw/dma/xlnx_csu_dma.c
/qemu/hw/dma/xlnx_dpdma.c
/qemu/hw/fsi/aspeed_apb2opb.c
/qemu/hw/fsi/cfam.c
/qemu/hw/fsi/fsi-master.c
/qemu/hw/fsi/fsi.c
/qemu/hw/fsi/lbus.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/gpio/bcm2835_gpio.c
/qemu/hw/gpio/bcm2838_gpio.c
/qemu/hw/gpio/gpio_key.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/mpc8xxx.c
/qemu/hw/gpio/npcm7xx_gpio.c
/qemu/hw/gpio/nrf51_gpio.c
/qemu/hw/gpio/omap_gpio.c
/qemu/hw/gpio/pca9552.c
/qemu/hw/gpio/pca9554.c
/qemu/hw/gpio/pcf8574.c
/qemu/hw/gpio/pl061.c
/qemu/hw/gpio/sifive_gpio.c
/qemu/hw/gpio/stm32l4x5_gpio.c
/qemu/hw/gpio/zaurus.c
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/hv-balloon.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/hyperv/hyperv_testdev.c
/qemu/hw/hyperv/syndbg.c
/qemu/hw/hyperv/vmbus.c
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/bcm2835_i2c.c
/qemu/hw/i2c/bitbang_i2c.c
/qemu/hw/i2c/core.c
/qemu/hw/i2c/exynos4210_i2c.c
/qemu/hw/i2c/i2c_mux_pca954x.c
/qemu/hw/i2c/imx_i2c.c
/qemu/hw/i2c/microbit_i2c.c
/qemu/hw/i2c/mpc_i2c.c
/qemu/hw/i2c/npcm7xx_smbus.c
/qemu/hw/i2c/omap_i2c.c
/qemu/hw/i2c/pmbus_device.c
/qemu/hw/i2c/ppc4xx_i2c.c
/qemu/hw/i2c/smbus_eeprom.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i2c/smbus_slave.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/apic.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/kvm/i8254.c
/qemu/hw/i386/kvm/i8259.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_gnttab.c
/qemu/hw/i386/kvm/xen_overlay.c
/qemu/hw/i386/kvm/xen_primary_console.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/nitro_enclave.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/port92.c
/qemu/hw/i386/sgx-epc.c
/qemu/hw/i386/vapic.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/vmport.c
/qemu/hw/i386/x86-iommu.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-pvh.c
/qemu/hw/i386/xen/xen_apic.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/i386/xen/xen_pvdevice.c
/qemu/hw/ide/ahci-allwinner.c
/qemu/hw/ide/ahci-sysbus.c
/qemu/hw/ide/cf.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/ich.c
/qemu/hw/ide/ide-bus.c
/qemu/hw/ide/ide-dev.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/pci.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/sii3112.c
/qemu/hw/ide/via.c
/qemu/hw/input/adb-kbd.c
/qemu/hw/input/adb-mouse.c
/qemu/hw/input/adb.c
/qemu/hw/input/lasips2.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/pl050.c
/qemu/hw/input/ps2.c
/qemu/hw/input/stellaris_gamepad.c
/qemu/hw/input/virtio-input-hid.c
/qemu/hw/input/virtio-input-host.c
/qemu/hw/input/virtio-input.c
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/arm_gic_common.c
/qemu/hw/intc/arm_gic_kvm.c
/qemu/hw/intc/arm_gicv2m.c
/qemu/hw/intc/arm_gicv3.c
/qemu/hw/intc/arm_gicv3_common.c
/qemu/hw/intc/arm_gicv3_its.c
/qemu/hw/intc/arm_gicv3_its_common.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/arm_gicv3_kvm.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/aspeed_intc.c
/qemu/hw/intc/aspeed_vic.c
/qemu/hw/intc/bcm2835_ic.c
/qemu/hw/intc/bcm2836_control.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/exynos4210_gic.c
/qemu/hw/intc/goldfish_pic.c
/qemu/hw/intc/grlib_irqmp.c
/qemu/hw/intc/heathrow_pic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/i8259_common.c
/qemu/hw/intc/imx_avic.c
/qemu/hw/intc/imx_gpcv2.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/loongarch_extioi_common.c
/qemu/hw/intc/loongarch_ipi.c
/qemu/hw/intc/loongarch_pch_msi.c
/qemu/hw/intc/loongarch_pch_pic.c
/qemu/hw/intc/loongarch_pic_common.c
/qemu/hw/intc/loongson_ipi.c
/qemu/hw/intc/loongson_ipi_common.c
/qemu/hw/intc/m68k_irqc.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/openpic_kvm.c
/qemu/hw/intc/pl190.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/pnv_xive2.c
/qemu/hw/intc/ppc-uic.c
/qemu/hw/intc/realview_gic.c
/qemu/hw/intc/riscv_aclint.c
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/intc/riscv_imsic.c
/qemu/hw/intc/rx_icu.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/intc/s390_flic_kvm.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/intc/slavio_intctl.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_pnv.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xilinx_intc.c
/qemu/hw/intc/xive.c
/qemu/hw/intc/xive2.c
/qemu/hw/intc/xlnx-pmu-iomod-intc.c
/qemu/hw/intc/xlnx-zynqmp-ipi.c
/qemu/hw/ipack/ipack.c
/qemu/hw/ipack/tpci200.c
/qemu/hw/ipmi/ipmi.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/ipmi/smbus_ipmi.c
/qemu/hw/isa/fdc37m81x-superio.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/isa-superio.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/pc87312.c
/qemu/hw/isa/piix.c
/qemu/hw/isa/smc37c669-superio.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf_intc.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/next-kbd.c
/qemu/hw/m68k/q800-glue.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/npcm7xx_mc.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/microblaze/boot.c
/qemu/hw/microblaze/petalogix_ml605_mmu.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/microblaze/xlnx-zynqmp-pmu.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/a9scu.c
/qemu/hw/misc/allwinner-a10-ccm.c
/qemu/hw/misc/allwinner-a10-dramc.c
/qemu/hw/misc/allwinner-cpucfg.c
/qemu/hw/misc/allwinner-h3-ccu.c
/qemu/hw/misc/allwinner-h3-dramc.c
/qemu/hw/misc/allwinner-h3-sysctrl.c
/qemu/hw/misc/allwinner-r40-ccu.c
/qemu/hw/misc/allwinner-r40-dramc.c
/qemu/hw/misc/allwinner-sid.c
/qemu/hw/misc/allwinner-sramc.c
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/arm11scu.c
/qemu/hw/misc/arm_l2x0.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/armsse-cpu-pwrctrl.c
/qemu/hw/misc/armsse-cpuid.c
/qemu/hw/misc/armsse-mhu.c
/qemu/hw/misc/armv7m_ras.c
/qemu/hw/misc/aspeed_hace.c
/qemu/hw/misc/aspeed_i3c.c
/qemu/hw/misc/aspeed_lpc.c
/qemu/hw/misc/aspeed_peci.c
/qemu/hw/misc/aspeed_sbc.c
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/aspeed_sli.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/auxbus.c
/qemu/hw/misc/avr_power.c
/qemu/hw/misc/axp2xx.c
/qemu/hw/misc/bcm2835_cprman.c
/qemu/hw/misc/bcm2835_mbox.c
/qemu/hw/misc/bcm2835_mphi.c
/qemu/hw/misc/bcm2835_powermgt.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/bcm2835_rng.c
/qemu/hw/misc/bcm2835_thermal.c
/qemu/hw/misc/debugexit.c
/qemu/hw/misc/djmemc.c
/qemu/hw/misc/eccmemctl.c
/qemu/hw/misc/edu.c
/qemu/hw/misc/empty_slot.c
/qemu/hw/misc/exynos4210_clk.c
/qemu/hw/misc/exynos4210_pmu.c
/qemu/hw/misc/exynos4210_rng.c
/qemu/hw/misc/grlib_ahb_apb_pnp.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/imx25_ccm.c
/qemu/hw/misc/imx31_ccm.c
/qemu/hw/misc/imx6_ccm.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/misc/imx6ul_ccm.c
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/imx7_gpr.c
/qemu/hw/misc/imx7_snvs.c
/qemu/hw/misc/imx7_src.c
/qemu/hw/misc/imx8mp_analog.c
/qemu/hw/misc/imx8mp_ccm.c
/qemu/hw/misc/imx_rngc.c
/qemu/hw/misc/iosb.c
/qemu/hw/misc/iotkit-secctl.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/iotkit-sysinfo.c
/qemu/hw/misc/ivshmem-flat.c
/qemu/hw/misc/ivshmem-pci.c
/qemu/hw/misc/lasi.c
/qemu/hw/misc/led.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/mchp_pfsoc_dmc.c
/qemu/hw/misc/mchp_pfsoc_ioscb.c
/qemu/hw/misc/mchp_pfsoc_sysreg.c
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/mips_itu.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/misc/msf2-sysreg.c
/qemu/hw/misc/npcm7xx_mft.c
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/npcm7xx_rng.c
/qemu/hw/misc/npcm_clk.c
/qemu/hw/misc/npcm_gcr.c
/qemu/hw/misc/nrf51_rng.c
/qemu/hw/misc/pc-testdev.c
/qemu/hw/misc/pci-testdev.c
/qemu/hw/misc/pvpanic-isa.c
/qemu/hw/misc/pvpanic-mmio.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/sbsa_ec.c
/qemu/hw/misc/sifive_e_aon.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/sifive_u_prci.c
/qemu/hw/misc/slavio_misc.c
/qemu/hw/misc/stm32_rcc.c
/qemu/hw/misc/stm32f2xx_syscfg.c
/qemu/hw/misc/stm32f4xx_exti.c
/qemu/hw/misc/stm32f4xx_syscfg.c
/qemu/hw/misc/stm32l4x5_exti.c
/qemu/hw/misc/stm32l4x5_rcc.c
/qemu/hw/misc/stm32l4x5_syscfg.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/misc/tz-msc.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/misc/unimp.c
/qemu/hw/misc/virt_ctrl.c
/qemu/hw/misc/vmcoreinfo.c
/qemu/hw/misc/xlnx-versal-cframe-reg.c
/qemu/hw/misc/xlnx-versal-cfu.c
/qemu/hw/misc/xlnx-versal-crl.c
/qemu/hw/misc/xlnx-versal-pmc-iou-slcr.c
/qemu/hw/misc/xlnx-versal-trng.c
/qemu/hw/misc/xlnx-versal-xramc.c
/qemu/hw/misc/xlnx-zynqmp-apu-ctrl.c
/qemu/hw/misc/xlnx-zynqmp-crf.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/allwinner_emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/can/ctucan_pci.c
/qemu/hw/net/can/xlnx-versal-canfd.c
/qemu/hw/net/can/xlnx-zynqmp-can.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/igb.c
/qemu/hw/net/igbvf.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/lan9118_phy.c
/qemu/hw/net/lance.c
/qemu/hw/net/lasi_i82596.c
/qemu/hw/net/mcf_fec.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/msf2-emac.c
/qemu/hw/net/mv88w8618_eth.c
/qemu/hw/net/ne2000-isa.c
/qemu/hw/net/ne2000-pci.c
/qemu/hw/net/npcm7xx_emc.c
/qemu/hw/net/npcm_gmac.c
/qemu/hw/net/npcm_pcs.c
/qemu/hw/net/opencores_eth.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/smc91c111.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/stellaris_enet.c
/qemu/hw/net/sungem.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/tulip.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xen_nic.c
/qemu/hw/net/xgmac.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nubus/mac-nubus-bridge.c
/qemu/hw/nubus/nubus-bridge.c
/qemu/hw/nubus/nubus-bus.c
/qemu/hw/nubus/nubus-device.c
/qemu/hw/nubus/nubus-virtio-mmio.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/subsys.c
/qemu/hw/nvram/bcm2835_otp.c
/qemu/hw/nvram/ds1225y.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/nvram/npcm7xx_otp.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/nvram/xlnx-bbram.c
/qemu/hw/nvram/xlnx-efuse.c
/qemu/hw/nvram/xlnx-versal-efuse-cache.c
/qemu/hw/nvram/xlnx-versal-efuse-ctrl.c
/qemu/hw/nvram/xlnx-zynqmp-efuse.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/openrisc/virt.c
/qemu/hw/pci-bridge/cxl_downstream.c
/qemu/hw/pci-bridge/cxl_root_port.c
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-bridge/gen_pcie_root_port.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-bridge/ioh3420.c
/qemu/hw/pci-bridge/pci_bridge_dev.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-bridge/pcie_pci_bridge.c
/qemu/hw/pci-bridge/pcie_root_port.c
/qemu/hw/pci-bridge/simba.c
/qemu/hw/pci-bridge/xio3130_downstream.c
/qemu/hw/pci-bridge/xio3130_upstream.c
/qemu/hw/pci-host/articia.c
/qemu/hw/pci-host/astro.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/dino.c
/qemu/hw/pci-host/fsl_imx8m_phy.c
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/grackle.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/mv64361.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/pnv_phb3.c
/qemu/hw/pci-host/pnv_phb3_msi.c
/qemu/hw/pci-host/pnv_phb3_pbcq.c
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci-host/pnv_phb4_pec.c
/qemu/hw/pci-host/ppc440_pcix.c
/qemu/hw/pci-host/ppc4xx_pci.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci-host/remote.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/pci-host/sh_pci.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci-host/versatile.c
/qemu/hw/pci-host/xen_igd_pt.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pci_host.c
/qemu/hw/pci/pcie_port.c
/qemu/hw/ppc/amigaone.c
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/mpc8544ds.c
/qemu/hw/ppc/pef.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_adu.c
/qemu/hw/ppc/pnv_chiptod.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_i2c.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_n1_chiplet.c
/qemu/hw/ppc/pnv_nest_pervasive.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_sbe.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/ppc440_uc.c
/qemu/hw/ppc/ppc4xx_devs.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/ppce500_spin.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/rs6000_mc.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_vfio.c
/qemu/hw/ppc/spapr_rng.c
/qemu/hw/ppc/spapr_rtc.c
/qemu/hw/ppc/spapr_tpm_proxy.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/proxy.c
/qemu/hw/remote/remote-obj.c
/qemu/hw/remote/vfio-user-obj.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/riscv-iommu-pci.c
/qemu/hw/riscv/riscv-iommu-sys.c
/qemu/hw/riscv/riscv-iommu.c
/qemu/hw/riscv/riscv_hart.c
/qemu/hw/riscv/shakti_c.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/allwinner-rtc.c
/qemu/hw/rtc/aspeed_rtc.c
/qemu/hw/rtc/ds1338.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rtc/goldfish_rtc.c
/qemu/hw/rtc/ls7a_rtc.c
/qemu/hw/rtc/m41t80.c
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/m48t59.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rtc/pl031.c
/qemu/hw/rtc/rs5c372.c
/qemu/hw/rtc/sun4v-rtc.c
/qemu/hw/rtc/xlnx-zynqmp-rtc.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/3270-ccw.c
/qemu/hw/s390x/ap-bridge.c
/qemu/hw/s390x/ap-device.c
/qemu/hw/s390x/ccw-device.c
/qemu/hw/s390x/css-bridge.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/s390-ccw.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-skeys-kvm.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib-kvm.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclp.c
/qemu/hw/s390x/sclpcpu.c
/qemu/hw/s390x/sclpquiesce.c
/qemu/hw/s390x/tod-kvm.c
/qemu/hw/s390x/tod-tcg.c
/qemu/hw/s390x/tod.c
/qemu/hw/s390x/vhost-scsi-ccw.c
/qemu/hw/s390x/vhost-user-fs-ccw.c
/qemu/hw/s390x/vhost-vsock-ccw.c
/qemu/hw/s390x/virtio-ccw-9p.c
/qemu/hw/s390x/virtio-ccw-balloon.c
/qemu/hw/s390x/virtio-ccw-blk.c
/qemu/hw/s390x/virtio-ccw-crypto.c
/qemu/hw/s390x/virtio-ccw-gpu.c
/qemu/hw/s390x/virtio-ccw-input.c
/qemu/hw/s390x/virtio-ccw-md.c
/qemu/hw/s390x/virtio-ccw-mem.c
/qemu/hw/s390x/virtio-ccw-net.c
/qemu/hw/s390x/virtio-ccw-rng.c
/qemu/hw/s390x/virtio-ccw-scsi.c
/qemu/hw/s390x/virtio-ccw-serial.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sd/aspeed_sdhci.c
/qemu/hw/sd/bcm2835_sdhost.c
/qemu/hw/sd/cadence_sdhci.c
/qemu/hw/sd/npcm7xx_sdhci.c
/qemu/hw/sd/omap_mmc.c
/qemu/hw/sd/pl181.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci-pci.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/sensor/adm1266.c
/qemu/hw/sensor/adm1272.c
/qemu/hw/sensor/dps310.c
/qemu/hw/sensor/emc141x.c
/qemu/hw/sensor/isl_pmbus_vr.c
/qemu/hw/sensor/lsm303dlhc_mag.c
/qemu/hw/sensor/max31785.c
/qemu/hw/sensor/max34451.c
/qemu/hw/sensor/tmp105.c
/qemu/hw/sensor/tmp421.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc/sun4m_iommu.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/sparc64/sun4u_iommu.c
/qemu/hw/ssi/allwinner-a10-spi.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/bcm2835_spi.c
/qemu/hw/ssi/ibex_spi_host.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/mss-spi.c
/qemu/hw/ssi/npcm7xx_fiu.c
/qemu/hw/ssi/npcm_pspi.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/pnv_spi.c
/qemu/hw/ssi/sifive_spi.c
/qemu/hw/ssi/ssi.c
/qemu/hw/ssi/stm32f2xx_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/ssi/xlnx-versal-ospi.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/armv7m_systick.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/avr_timer16.c
/qemu/hw/timer/bcm2835_systmr.c
/qemu/hw/timer/cadence_ttc.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/timer/digic-timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/ibex_timer.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/imx_gpt.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/npcm7xx_timer.c
/qemu/hw/timer/nrf51_timer.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/timer/renesas_cmt.c
/qemu/hw/timer/renesas_tmr.c
/qemu/hw/timer/sifive_pwm.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/sse-counter.c
/qemu/hw/timer/sse-timer.c
/qemu/hw/timer/stellaris-gptm.c
/qemu/hw/timer/stm32f2xx_timer.c
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/tpm/tpm_crb.c
/qemu/hw/tpm/tpm_spapr.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/tpm/tpm_tis_isa.c
/qemu/hw/tpm/tpm_tis_sysbus.c
/qemu/hw/tricore/tc27x_soc.c
/qemu/hw/tricore/triboard.c
/qemu/hw/tricore/tricore_testdevice.c
/qemu/hw/uefi/var-service-sysbus.c
/qemu/hw/ufs/lu.c
/qemu/hw/ufs/ufs.c
/qemu/hw/usb/bus.c
/qemu/hw/usb/canokey.c
/qemu/hw/usb/ccid-card-emulated.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/chipidea.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-hid.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-storage-bot.c
/qemu/hw/usb/dev-storage-classic.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/dev-wacom.c
/qemu/hw/usb/hcd-dwc2.c
/qemu/hw/usb/hcd-dwc3.c
/qemu/hw/usb/hcd-ehci-pci.c
/qemu/hw/usb/hcd-ehci-sysbus.c
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-ohci-sysbus.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-sysbus.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/imx-usb-phy.c
/qemu/hw/usb/redirect.c
/qemu/hw/usb/u2f-emulated.c
/qemu/hw/usb/u2f-passthru.c
/qemu/hw/usb/u2f.c
/qemu/hw/usb/xlnx-usb-subsystem.c
/qemu/hw/usb/xlnx-versal-usb2-ctrl-regs.c
/qemu/hw/vfio/amd-xgbe.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/calxeda-xgmac.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/container-base.c
/qemu/hw/vfio/container.c
/qemu/hw/vfio/cpr.c
/qemu/hw/vfio/device.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/helpers.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/iommufd.c
/qemu/hw/vfio/listener.c
/qemu/hw/vfio/meson.build
/qemu/hw/vfio/migration-multifd.c
/qemu/hw/vfio/migration-multifd.h
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/platform.c
/qemu/hw/vfio/region.c
/qemu/hw/vfio/spapr.c
/qemu/hw/vfio/trace-events
/qemu/hw/vfio/vfio-cpr.h
/qemu/hw/vfio/vfio-display.h
/qemu/hw/vfio/vfio-helpers.h
/qemu/hw/vfio/vfio-iommufd.h
/qemu/hw/vfio/vfio-listener.h
/qemu/hw/vfio/vfio-migration-internal.h
/qemu/hw/virtio/vdpa-dev-pci.c
/qemu/hw/virtio/vdpa-dev.c
/qemu/hw/virtio/vhost-scsi-pci.c
/qemu/hw/virtio/vhost-user-base.c
/qemu/hw/virtio/vhost-user-blk-pci.c
/qemu/hw/virtio/vhost-user-device-pci.c
/qemu/hw/virtio/vhost-user-device.c
/qemu/hw/virtio/vhost-user-fs-pci.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-gpio-pci.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c-pci.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-input.c
/qemu/hw/virtio/vhost-user-rng-pci.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-user-scmi-pci.c
/qemu/hw/virtio/vhost-user-scmi.c
/qemu/hw/virtio/vhost-user-scsi-pci.c
/qemu/hw/virtio/vhost-user-snd-pci.c
/qemu/hw/virtio/vhost-user-snd.c
/qemu/hw/virtio/vhost-user-vsock-pci.c
/qemu/hw/virtio/vhost-user-vsock.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/vhost-vsock-pci.c
/qemu/hw/virtio/vhost-vsock.c
/qemu/hw/virtio/virtio-9p-pci.c
/qemu/hw/virtio/virtio-balloon-pci.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-blk-pci.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/virtio/virtio-crypto-pci.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-input-pci.c
/qemu/hw/virtio/virtio-iommu-pci.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-md-pci.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-net-pci.c
/qemu/hw/virtio/virtio-nsm-pci.c
/qemu/hw/virtio/virtio-nsm.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio-rng-pci.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/virtio/virtio-scsi-pci.c
/qemu/hw/virtio/virtio-serial-pci.c
/qemu/hw/virtio/virtio.c
/qemu/hw/vmapple/aes.c
/qemu/hw/vmapple/bdif.c
/qemu/hw/vmapple/cfg.c
/qemu/hw/vmapple/virtio-blk.c
/qemu/hw/vmapple/vmapple.c
/qemu/hw/watchdog/allwinner-wdt.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/watchdog/sbsa_gwdt.c
/qemu/hw/watchdog/spapr_watchdog.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/watchdog/wdt_i6300esb.c
/qemu/hw/watchdog/wdt_ib700.c
/qemu/hw/watchdog/wdt_imx2.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen-pvh-common.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt_graphics.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/accel/accel-cpu-target.h
/qemu/include/accel/accel-cpu.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/tswap.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/s390x/vfio-ccw.h
/qemu/include/hw/vfio/vfio-container-base.h
/qemu/include/hw/vfio/vfio-container.h
/qemu/include/hw/vfio/vfio-device.h
/qemu/include/hw/vfio/vfio-platform.h
/qemu/include/hw/vfio/vfio-region.h
/qemu/include/hw/virtio/virtio-pci.h
/qemu/include/qemu/datadir.h
/qemu/include/qemu/target-info-impl.h
/qemu/include/qemu/target-info.h
/qemu/include/qom/object.h
/qemu/include/system/kvm.h
/qemu/io/channel-buffer.c
/qemu/io/channel-command.c
/qemu/io/channel-file.c
/qemu/io/channel-null.c
/qemu/io/channel-socket.c
/qemu/io/channel-tls.c
/qemu/io/channel-websock.c
/qemu/iothread.c
/qemu/linux-user/elfload.c
/qemu/meson.build
channel-block.c
migration.c
rdma.c
/qemu/net/can/can_core.c
/qemu/net/can/can_host.c
/qemu/net/can/can_socketcan.c
/qemu/net/colo-compare.c
/qemu/net/dump.c
/qemu/net/filter-buffer.c
/qemu/net/filter-mirror.c
/qemu/net/filter-replay.c
/qemu/net/filter-rewriter.c
/qemu/net/filter.c
/qemu/pc-bios/dtb/bamboo.dtb
/qemu/pc-bios/dtb/bamboo.dts
/qemu/pc-bios/dtb/canyonlands.dtb
/qemu/pc-bios/dtb/canyonlands.dts
/qemu/pc-bios/dtb/meson.build
/qemu/pc-bios/dtb/petalogix-ml605.dtb
/qemu/pc-bios/dtb/petalogix-ml605.dts
/qemu/pc-bios/dtb/petalogix-s3adsp1800.dtb
/qemu/pc-bios/dtb/petalogix-s3adsp1800.dts
/qemu/pc-bios/meson.build
/qemu/plugins/loader.c
/qemu/qapi/machine.json
/qemu/qemu.nsi
/qemu/qom/object.c
/qemu/rust/qemu-api/src/qom.rs
/qemu/scripts/codeconverter/codeconverter/qom_type_info.py
/qemu/scripts/codeconverter/codeconverter/test_regexps.py
/qemu/scsi/pr-manager-helper.c
/qemu/scsi/pr-manager.c
/qemu/system/datadir.c
/qemu/system/memory-internal.h
/qemu/system/memory.c
/qemu/system/qtest.c
/qemu/system/vl.c
/qemu/target-info-stub.c
/qemu/target-info.c
/qemu/target/alpha/cpu.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/hyp_gdbstub.c
/qemu/target/arm/internals.h
/qemu/target/arm/tcg/cpu-v7m.c
/qemu/target/avr/cpu.c
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/mmvec/macros.h
/qemu/target/hexagon/translate.c
/qemu/target/hppa/cpu.c
/qemu/target/i386/confidential-guest.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/host-cpu.c
/qemu/target/i386/hvf/hvf-cpu.c
/qemu/target/i386/kvm/kvm-cpu.c
/qemu/target/i386/nvmm/nvmm-accel-ops.c
/qemu/target/i386/nvmm/nvmm-all.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/whpx/whpx-accel-ops.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/loongarch/cpu.c
/qemu/target/m68k/cpu.c
/qemu/target/microblaze/cpu.c
/qemu/target/mips/cpu.c
/qemu/target/mips/tcg/mips16e_translate.c.inc
/qemu/target/mips/tcg/msa_helper.c
/qemu/target/openrisc/cpu.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/kvm.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/kvm/kvm-cpu.c
/qemu/target/riscv/tcg/tcg-cpu.c
/qemu/target/rx/cpu.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/cpu_models.h
/qemu/target/s390x/kvm/pv.c
/qemu/target/sh4/cpu.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/tricore/cpu.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/helper.c
/qemu/target/xtensa/translate.c
/qemu/tests/tcg/plugins/mem.c
/qemu/tests/tcg/plugins/syscall.c
/qemu/tests/unit/check-qom-interface.c
/qemu/tests/unit/check-qom-proplist.c
/qemu/tests/unit/test-qdev-global-props.c
/qemu/tests/unit/test-smp-parse.c
/qemu/ui/console-vc.c
/qemu/ui/console.c
/qemu/ui/dbus-chardev.c
/qemu/ui/dbus.c
/qemu/ui/gtk.c
/qemu/ui/input-barrier.c
/qemu/ui/input-linux.c
/qemu/ui/spice-app.c
/qemu/ui/vdagent.c
/qemu/util/main-loop.c
/qemu/util/thread-context.c
12d1a76809-Feb-2025 Philippe Mathieu-Daudé <philmd@linaro.org>

qom: Have class_init() take a const data argument

Mechanical change using gsed, then style manually adapted
to pass checkpatch.pl script.

Suggested-by: Richard Henderson <richard.henderson@linaro.o

qom: Have class_init() take a const data argument

Mechanical change using gsed, then style manually adapted
to pass checkpatch.pl script.

Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250424194905.82506-4-philmd@linaro.org>

show more ...


/qemu/accel/hvf/hvf-accel-ops.c
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/qtest/qtest.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/xen/xen-all.c
/qemu/authz/list.c
/qemu/authz/listfile.c
/qemu/authz/pamacct.c
/qemu/authz/simple.c
/qemu/backends/confidential-guest-support.c
/qemu/backends/cryptodev-builtin.c
/qemu/backends/cryptodev-lkcf.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev.c
/qemu/backends/dbus-vmstate.c
/qemu/backends/host_iommu_device.c
/qemu/backends/hostmem-epc.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem-memfd.c
/qemu/backends/hostmem-ram.c
/qemu/backends/hostmem-shm.c
/qemu/backends/hostmem.c
/qemu/backends/iommufd.c
/qemu/backends/rng-builtin.c
/qemu/backends/rng-egd.c
/qemu/backends/rng-random.c
/qemu/backends/rng.c
/qemu/backends/tpm/tpm_emulator.c
/qemu/backends/tpm/tpm_passthrough.c
/qemu/backends/vhost-user.c
/qemu/block/throttle-groups.c
/qemu/chardev/baum.c
/qemu/chardev/char-console.c
/qemu/chardev/char-fd.c
/qemu/chardev/char-file.c
/qemu/chardev/char-hub.c
/qemu/chardev/char-mux.c
/qemu/chardev/char-null.c
/qemu/chardev/char-parallel.c
/qemu/chardev/char-pipe.c
/qemu/chardev/char-pty.c
/qemu/chardev/char-ringbuf.c
/qemu/chardev/char-serial.c
/qemu/chardev/char-socket.c
/qemu/chardev/char-stdio.c
/qemu/chardev/char-udp.c
/qemu/chardev/char-win-stdio.c
/qemu/chardev/char-win.c
/qemu/chardev/char.c
/qemu/chardev/msmouse.c
/qemu/chardev/spice.c
/qemu/chardev/testdev.c
/qemu/chardev/wctablet.c
/qemu/cpu-target.c
/qemu/crypto/secret.c
/qemu/crypto/secret_common.c
/qemu/crypto/secret_keyring.c
/qemu/crypto/tls-cipher-suites.c
/qemu/crypto/tlscreds.c
/qemu/crypto/tlscredsanon.c
/qemu/crypto/tlscredspsk.c
/qemu/crypto/tlscredsx509.c
/qemu/docs/devel/qom.rst
/qemu/docs/devel/reset.rst
/qemu/docs/devel/virtio-backends.rst
/qemu/event-loop-base.c
/qemu/gdbstub/system.c
/qemu/hw/9pfs/virtio-9p-device.c
/qemu/hw/acpi/erst.c
/qemu/hw/acpi/generic_event_device.c
/qemu/hw/acpi/pci.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/vmclock.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/adc/aspeed_adc.c
/qemu/hw/adc/npcm7xx_adc.c
/qemu/hw/adc/stm32f2xx_adc.c
/qemu/hw/adc/zynq-xadc.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/allwinner-r40.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast10x0.c
/qemu/hw/arm/aspeed_ast2400.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_ast27x0.c
/qemu/hw/arm/aspeed_soc_common.c
/qemu/hw/arm/b-l475e-iot01a.c
/qemu/hw/arm/bcm2835_peripherals.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/bcm2838.c
/qemu/hw/arm/bcm2838_peripherals.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/digic.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/exynos4_boards.c
/qemu/hw/arm/fby35.c
/qemu/hw/arm/fsl-imx25.c
/qemu/hw/arm/fsl-imx31.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/fsl-imx7.c
/qemu/hw/arm/fsl-imx8mp.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/mps3r.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/npcm8xx.c
/qemu/hw/arm/npcm8xx_boards.c
/qemu/hw/arm/nrf51_soc.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/raspi4b.c
/qemu/hw/arm/realview.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/stm32f100_soc.c
/qemu/hw/arm/stm32f205_soc.c
/qemu/hw/arm/stm32f405_soc.c
/qemu/hw/arm/stm32l4x5_soc.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xen-pvh.c
/qemu/hw/arm/xilinx_zynq.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/adlib.c
/qemu/hw/audio/asc.c
/qemu/hw/audio/cs4231.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/marvell_88w8618.c
/qemu/hw/audio/pcspk.c
/qemu/hw/audio/pl041.c
/qemu/hw/audio/sb16.c
/qemu/hw/audio/via-ac97.c
/qemu/hw/audio/virtio-snd-pci.c
/qemu/hw/audio/virtio-snd.c
/qemu/hw/audio/wm8750.c
/qemu/hw/avr/arduino.c
/qemu/hw/avr/atmega.c
/qemu/hw/block/fdc-isa.c
/qemu/hw/block/fdc-sysbus.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/swim.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/avr_usart.c
/qemu/hw/char/bcm2835_aux.c
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/cmsdk-apb-uart.c
/qemu/hw/char/debugcon.c
/qemu/hw/char/digic-uart.c
/qemu/hw/char/diva-gsp.c
/qemu/hw/char/escc.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/char/goldfish_tty.c
/qemu/hw/char/grlib_apbuart.c
/qemu/hw/char/ibex_uart.c
/qemu/hw/char/imx_serial.c
/qemu/hw/char/ipoctal232.c
/qemu/hw/char/mcf_uart.c
/qemu/hw/char/mchp_pfsoc_mmuart.c
/qemu/hw/char/nrf51_uart.c
/qemu/hw/char/parallel.c
/qemu/hw/char/pl011.c
/qemu/hw/char/renesas_sci.c
/qemu/hw/char/sclpconsole-lm.c
/qemu/hw/char/sclpconsole.c
/qemu/hw/char/serial-isa.c
/qemu/hw/char/serial-mm.c
/qemu/hw/char/serial-pci-multi.c
/qemu/hw/char/serial-pci.c
/qemu/hw/char/serial.c
/qemu/hw/char/sh_serial.c
/qemu/hw/char/shakti_uart.c
/qemu/hw/char/sifive_uart.c
/qemu/hw/char/spapr_vty.c
/qemu/hw/char/stm32f2xx_usart.c
/qemu/hw/char/stm32l4x5_usart.c
/qemu/hw/char/terminal3270.c
/qemu/hw/char/virtio-console.c
/qemu/hw/char/virtio-serial-bus.c
/qemu/hw/char/xen_console.c
/qemu/hw/char/xilinx_uartlite.c
/qemu/hw/core/bus.c
/qemu/hw/core/clock.c
/qemu/hw/core/cpu-common.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/guest-loader.c
/qemu/hw/core/machine.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/platform-bus.c
/qemu/hw/core/qdev.c
/qemu/hw/core/register.c
/qemu/hw/core/reset.c
/qemu/hw/core/resetcontainer.c
/qemu/hw/core/split-irq.c
/qemu/hw/core/sysbus.c
/qemu/hw/cpu/a15mpcore.c
/qemu/hw/cpu/a9mpcore.c
/qemu/hw/cpu/arm11mpcore.c
/qemu/hw/cpu/cluster.c
/qemu/hw/cpu/core.c
/qemu/hw/cpu/realview_mpcore.c
/qemu/hw/cxl/switch-mailbox-cci.c
/qemu/hw/display/apple-gfx-mmio.m
/qemu/hw/display/apple-gfx-pci.m
/qemu/hw/display/artist.c
/qemu/hw/display/ati.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/bochs-display.c
/qemu/hw/display/cg3.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/cirrus_vga_isa.c
/qemu/hw/display/dm163.c
/qemu/hw/display/dpcd.c
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/g364fb.c
/qemu/hw/display/i2c-ddc.c
/qemu/hw/display/jazz_led.c
/qemu/hw/display/macfb.c
/qemu/hw/display/next-fb.c
/qemu/hw/display/pl110.c
/qemu/hw/display/qxl.c
/qemu/hw/display/ramfb-standalone.c
/qemu/hw/display/sii9022.c
/qemu/hw/display/sm501.c
/qemu/hw/display/ssd0303.c
/qemu/hw/display/ssd0323.c
/qemu/hw/display/tcx.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-mmio.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu-gl.c
/qemu/hw/display/virtio-gpu-pci.c
/qemu/hw/display/virtio-gpu-rutabaga.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/bcm2835_dma.c
/qemu/hw/dma/i82374.c
/qemu/hw/dma/i8257.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/pl330.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/sifive_pdma.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/dma/xlnx-zdma.c
/qemu/hw/dma/xlnx-zynq-devcfg.c
/qemu/hw/dma/xlnx_csu_dma.c
/qemu/hw/dma/xlnx_dpdma.c
/qemu/hw/fsi/aspeed_apb2opb.c
/qemu/hw/fsi/cfam.c
/qemu/hw/fsi/fsi-master.c
/qemu/hw/fsi/fsi.c
/qemu/hw/fsi/lbus.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/gpio/bcm2835_gpio.c
/qemu/hw/gpio/bcm2838_gpio.c
/qemu/hw/gpio/gpio_key.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/mpc8xxx.c
/qemu/hw/gpio/npcm7xx_gpio.c
/qemu/hw/gpio/nrf51_gpio.c
/qemu/hw/gpio/omap_gpio.c
/qemu/hw/gpio/pca9552.c
/qemu/hw/gpio/pca9554.c
/qemu/hw/gpio/pcf8574.c
/qemu/hw/gpio/pl061.c
/qemu/hw/gpio/sifive_gpio.c
/qemu/hw/gpio/stm32l4x5_gpio.c
/qemu/hw/gpio/zaurus.c
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/hv-balloon.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/hyperv/hyperv_testdev.c
/qemu/hw/hyperv/syndbg.c
/qemu/hw/hyperv/vmbus.c
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/bcm2835_i2c.c
/qemu/hw/i2c/bitbang_i2c.c
/qemu/hw/i2c/core.c
/qemu/hw/i2c/exynos4210_i2c.c
/qemu/hw/i2c/i2c_mux_pca954x.c
/qemu/hw/i2c/imx_i2c.c
/qemu/hw/i2c/microbit_i2c.c
/qemu/hw/i2c/mpc_i2c.c
/qemu/hw/i2c/npcm7xx_smbus.c
/qemu/hw/i2c/omap_i2c.c
/qemu/hw/i2c/pmbus_device.c
/qemu/hw/i2c/ppc4xx_i2c.c
/qemu/hw/i2c/smbus_eeprom.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i2c/smbus_slave.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/apic.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/kvm/i8254.c
/qemu/hw/i386/kvm/i8259.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_gnttab.c
/qemu/hw/i386/kvm/xen_overlay.c
/qemu/hw/i386/kvm/xen_primary_console.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/nitro_enclave.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/port92.c
/qemu/hw/i386/sgx-epc.c
/qemu/hw/i386/vapic.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/vmport.c
/qemu/hw/i386/x86-iommu.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-pvh.c
/qemu/hw/i386/xen/xen_apic.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/i386/xen/xen_pvdevice.c
/qemu/hw/ide/ahci-allwinner.c
/qemu/hw/ide/ahci-sysbus.c
/qemu/hw/ide/cf.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/ich.c
/qemu/hw/ide/ide-bus.c
/qemu/hw/ide/ide-dev.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/sii3112.c
/qemu/hw/ide/via.c
/qemu/hw/input/adb-kbd.c
/qemu/hw/input/adb-mouse.c
/qemu/hw/input/adb.c
/qemu/hw/input/lasips2.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/pl050.c
/qemu/hw/input/ps2.c
/qemu/hw/input/stellaris_gamepad.c
/qemu/hw/input/virtio-input-hid.c
/qemu/hw/input/virtio-input-host.c
/qemu/hw/input/virtio-input.c
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/arm_gic_common.c
/qemu/hw/intc/arm_gic_kvm.c
/qemu/hw/intc/arm_gicv2m.c
/qemu/hw/intc/arm_gicv3.c
/qemu/hw/intc/arm_gicv3_common.c
/qemu/hw/intc/arm_gicv3_its.c
/qemu/hw/intc/arm_gicv3_its_common.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/arm_gicv3_kvm.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/aspeed_intc.c
/qemu/hw/intc/aspeed_vic.c
/qemu/hw/intc/bcm2835_ic.c
/qemu/hw/intc/bcm2836_control.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/exynos4210_gic.c
/qemu/hw/intc/goldfish_pic.c
/qemu/hw/intc/grlib_irqmp.c
/qemu/hw/intc/heathrow_pic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/i8259_common.c
/qemu/hw/intc/imx_avic.c
/qemu/hw/intc/imx_gpcv2.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/loongarch_extioi_common.c
/qemu/hw/intc/loongarch_ipi.c
/qemu/hw/intc/loongarch_pch_msi.c
/qemu/hw/intc/loongarch_pch_pic.c
/qemu/hw/intc/loongarch_pic_common.c
/qemu/hw/intc/loongson_ipi.c
/qemu/hw/intc/loongson_ipi_common.c
/qemu/hw/intc/m68k_irqc.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/openpic_kvm.c
/qemu/hw/intc/pl190.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/pnv_xive2.c
/qemu/hw/intc/ppc-uic.c
/qemu/hw/intc/realview_gic.c
/qemu/hw/intc/riscv_aclint.c
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/intc/riscv_imsic.c
/qemu/hw/intc/rx_icu.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/intc/s390_flic_kvm.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/intc/slavio_intctl.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_pnv.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xilinx_intc.c
/qemu/hw/intc/xive.c
/qemu/hw/intc/xive2.c
/qemu/hw/intc/xlnx-pmu-iomod-intc.c
/qemu/hw/intc/xlnx-zynqmp-ipi.c
/qemu/hw/ipack/ipack.c
/qemu/hw/ipack/tpci200.c
/qemu/hw/ipmi/ipmi.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/ipmi/smbus_ipmi.c
/qemu/hw/isa/fdc37m81x-superio.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/isa-superio.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/pc87312.c
/qemu/hw/isa/piix.c
/qemu/hw/isa/smc37c669-superio.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf_intc.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/next-kbd.c
/qemu/hw/m68k/q800-glue.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/npcm7xx_mc.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/microblaze/xlnx-zynqmp-pmu.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/misc/a9scu.c
/qemu/hw/misc/allwinner-a10-ccm.c
/qemu/hw/misc/allwinner-a10-dramc.c
/qemu/hw/misc/allwinner-cpucfg.c
/qemu/hw/misc/allwinner-h3-ccu.c
/qemu/hw/misc/allwinner-h3-dramc.c
/qemu/hw/misc/allwinner-h3-sysctrl.c
/qemu/hw/misc/allwinner-r40-ccu.c
/qemu/hw/misc/allwinner-r40-dramc.c
/qemu/hw/misc/allwinner-sid.c
/qemu/hw/misc/allwinner-sramc.c
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/arm11scu.c
/qemu/hw/misc/arm_l2x0.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/armsse-cpu-pwrctrl.c
/qemu/hw/misc/armsse-cpuid.c
/qemu/hw/misc/armsse-mhu.c
/qemu/hw/misc/armv7m_ras.c
/qemu/hw/misc/aspeed_hace.c
/qemu/hw/misc/aspeed_i3c.c
/qemu/hw/misc/aspeed_lpc.c
/qemu/hw/misc/aspeed_peci.c
/qemu/hw/misc/aspeed_sbc.c
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/aspeed_sli.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/auxbus.c
/qemu/hw/misc/avr_power.c
/qemu/hw/misc/axp2xx.c
/qemu/hw/misc/bcm2835_cprman.c
/qemu/hw/misc/bcm2835_mbox.c
/qemu/hw/misc/bcm2835_mphi.c
/qemu/hw/misc/bcm2835_powermgt.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/bcm2835_rng.c
/qemu/hw/misc/bcm2835_thermal.c
/qemu/hw/misc/debugexit.c
/qemu/hw/misc/djmemc.c
/qemu/hw/misc/eccmemctl.c
/qemu/hw/misc/edu.c
/qemu/hw/misc/empty_slot.c
/qemu/hw/misc/exynos4210_clk.c
/qemu/hw/misc/exynos4210_pmu.c
/qemu/hw/misc/exynos4210_rng.c
/qemu/hw/misc/grlib_ahb_apb_pnp.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/imx25_ccm.c
/qemu/hw/misc/imx31_ccm.c
/qemu/hw/misc/imx6_ccm.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/misc/imx6ul_ccm.c
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/imx7_gpr.c
/qemu/hw/misc/imx7_snvs.c
/qemu/hw/misc/imx7_src.c
/qemu/hw/misc/imx8mp_analog.c
/qemu/hw/misc/imx8mp_ccm.c
/qemu/hw/misc/imx_rngc.c
/qemu/hw/misc/iosb.c
/qemu/hw/misc/iotkit-secctl.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/iotkit-sysinfo.c
/qemu/hw/misc/ivshmem-flat.c
/qemu/hw/misc/ivshmem-pci.c
/qemu/hw/misc/lasi.c
/qemu/hw/misc/led.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/mchp_pfsoc_dmc.c
/qemu/hw/misc/mchp_pfsoc_ioscb.c
/qemu/hw/misc/mchp_pfsoc_sysreg.c
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/mips_itu.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/misc/msf2-sysreg.c
/qemu/hw/misc/npcm7xx_mft.c
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/npcm7xx_rng.c
/qemu/hw/misc/npcm_clk.c
/qemu/hw/misc/npcm_gcr.c
/qemu/hw/misc/nrf51_rng.c
/qemu/hw/misc/pc-testdev.c
/qemu/hw/misc/pci-testdev.c
/qemu/hw/misc/pvpanic-isa.c
/qemu/hw/misc/pvpanic-mmio.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/sbsa_ec.c
/qemu/hw/misc/sifive_e_aon.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/sifive_u_prci.c
/qemu/hw/misc/slavio_misc.c
/qemu/hw/misc/stm32_rcc.c
/qemu/hw/misc/stm32f2xx_syscfg.c
/qemu/hw/misc/stm32f4xx_exti.c
/qemu/hw/misc/stm32f4xx_syscfg.c
/qemu/hw/misc/stm32l4x5_exti.c
/qemu/hw/misc/stm32l4x5_rcc.c
/qemu/hw/misc/stm32l4x5_syscfg.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/misc/tz-msc.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/misc/unimp.c
/qemu/hw/misc/virt_ctrl.c
/qemu/hw/misc/vmcoreinfo.c
/qemu/hw/misc/xlnx-versal-cframe-reg.c
/qemu/hw/misc/xlnx-versal-cfu.c
/qemu/hw/misc/xlnx-versal-crl.c
/qemu/hw/misc/xlnx-versal-pmc-iou-slcr.c
/qemu/hw/misc/xlnx-versal-trng.c
/qemu/hw/misc/xlnx-versal-xramc.c
/qemu/hw/misc/xlnx-zynqmp-apu-ctrl.c
/qemu/hw/misc/xlnx-zynqmp-crf.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/allwinner_emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/can/ctucan_pci.c
/qemu/hw/net/can/xlnx-versal-canfd.c
/qemu/hw/net/can/xlnx-zynqmp-can.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/igb.c
/qemu/hw/net/igbvf.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/lan9118_phy.c
/qemu/hw/net/lance.c
/qemu/hw/net/lasi_i82596.c
/qemu/hw/net/mcf_fec.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/msf2-emac.c
/qemu/hw/net/mv88w8618_eth.c
/qemu/hw/net/ne2000-isa.c
/qemu/hw/net/ne2000-pci.c
/qemu/hw/net/npcm7xx_emc.c
/qemu/hw/net/npcm_gmac.c
/qemu/hw/net/npcm_pcs.c
/qemu/hw/net/opencores_eth.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/smc91c111.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/stellaris_enet.c
/qemu/hw/net/sungem.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/tulip.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xen_nic.c
/qemu/hw/net/xgmac.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nubus/mac-nubus-bridge.c
/qemu/hw/nubus/nubus-bridge.c
/qemu/hw/nubus/nubus-bus.c
/qemu/hw/nubus/nubus-device.c
/qemu/hw/nubus/nubus-virtio-mmio.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/subsys.c
/qemu/hw/nvram/bcm2835_otp.c
/qemu/hw/nvram/ds1225y.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/nvram/npcm7xx_otp.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/nvram/xlnx-bbram.c
/qemu/hw/nvram/xlnx-efuse.c
/qemu/hw/nvram/xlnx-versal-efuse-cache.c
/qemu/hw/nvram/xlnx-versal-efuse-ctrl.c
/qemu/hw/nvram/xlnx-zynqmp-efuse.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/openrisc/virt.c
/qemu/hw/pci-bridge/cxl_downstream.c
/qemu/hw/pci-bridge/cxl_root_port.c
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-bridge/gen_pcie_root_port.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-bridge/ioh3420.c
/qemu/hw/pci-bridge/pci_bridge_dev.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-bridge/pcie_pci_bridge.c
/qemu/hw/pci-bridge/pcie_root_port.c
/qemu/hw/pci-bridge/simba.c
/qemu/hw/pci-bridge/xio3130_downstream.c
/qemu/hw/pci-bridge/xio3130_upstream.c
/qemu/hw/pci-host/articia.c
/qemu/hw/pci-host/astro.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/dino.c
/qemu/hw/pci-host/fsl_imx8m_phy.c
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/grackle.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/mv64361.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/pnv_phb3.c
/qemu/hw/pci-host/pnv_phb3_msi.c
/qemu/hw/pci-host/pnv_phb3_pbcq.c
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci-host/pnv_phb4_pec.c
/qemu/hw/pci-host/ppc440_pcix.c
/qemu/hw/pci-host/ppc4xx_pci.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci-host/remote.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/pci-host/sh_pci.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci-host/versatile.c
/qemu/hw/pci-host/xen_igd_pt.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pci_host.c
/qemu/hw/pci/pcie_port.c
/qemu/hw/ppc/amigaone.c
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/mpc8544ds.c
/qemu/hw/ppc/pef.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_adu.c
/qemu/hw/ppc/pnv_chiptod.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_i2c.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_n1_chiplet.c
/qemu/hw/ppc/pnv_nest_pervasive.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_sbe.c
/qemu/hw/ppc/ppc440_uc.c
/qemu/hw/ppc/ppc4xx_devs.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/ppce500_spin.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/rs6000_mc.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_rng.c
/qemu/hw/ppc/spapr_rtc.c
/qemu/hw/ppc/spapr_tpm_proxy.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/proxy.c
/qemu/hw/remote/remote-obj.c
/qemu/hw/remote/vfio-user-obj.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/riscv-iommu-pci.c
/qemu/hw/riscv/riscv-iommu-sys.c
/qemu/hw/riscv/riscv-iommu.c
/qemu/hw/riscv/riscv_hart.c
/qemu/hw/riscv/shakti_c.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/allwinner-rtc.c
/qemu/hw/rtc/aspeed_rtc.c
/qemu/hw/rtc/ds1338.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rtc/goldfish_rtc.c
/qemu/hw/rtc/ls7a_rtc.c
/qemu/hw/rtc/m41t80.c
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/m48t59.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rtc/pl031.c
/qemu/hw/rtc/rs5c372.c
/qemu/hw/rtc/sun4v-rtc.c
/qemu/hw/rtc/xlnx-zynqmp-rtc.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/3270-ccw.c
/qemu/hw/s390x/ap-bridge.c
/qemu/hw/s390x/ap-device.c
/qemu/hw/s390x/ccw-device.c
/qemu/hw/s390x/css-bridge.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/s390-ccw.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-skeys-kvm.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib-kvm.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclp.c
/qemu/hw/s390x/sclpcpu.c
/qemu/hw/s390x/sclpquiesce.c
/qemu/hw/s390x/tod-kvm.c
/qemu/hw/s390x/tod-tcg.c
/qemu/hw/s390x/tod.c
/qemu/hw/s390x/vhost-scsi-ccw.c
/qemu/hw/s390x/vhost-user-fs-ccw.c
/qemu/hw/s390x/vhost-vsock-ccw.c
/qemu/hw/s390x/virtio-ccw-9p.c
/qemu/hw/s390x/virtio-ccw-balloon.c
/qemu/hw/s390x/virtio-ccw-blk.c
/qemu/hw/s390x/virtio-ccw-crypto.c
/qemu/hw/s390x/virtio-ccw-gpu.c
/qemu/hw/s390x/virtio-ccw-input.c
/qemu/hw/s390x/virtio-ccw-mem.c
/qemu/hw/s390x/virtio-ccw-net.c
/qemu/hw/s390x/virtio-ccw-rng.c
/qemu/hw/s390x/virtio-ccw-scsi.c
/qemu/hw/s390x/virtio-ccw-serial.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sd/aspeed_sdhci.c
/qemu/hw/sd/bcm2835_sdhost.c
/qemu/hw/sd/cadence_sdhci.c
/qemu/hw/sd/npcm7xx_sdhci.c
/qemu/hw/sd/omap_mmc.c
/qemu/hw/sd/pl181.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci-pci.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/sensor/adm1266.c
/qemu/hw/sensor/adm1272.c
/qemu/hw/sensor/dps310.c
/qemu/hw/sensor/emc141x.c
/qemu/hw/sensor/isl_pmbus_vr.c
/qemu/hw/sensor/lsm303dlhc_mag.c
/qemu/hw/sensor/max31785.c
/qemu/hw/sensor/max34451.c
/qemu/hw/sensor/tmp105.c
/qemu/hw/sensor/tmp421.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc/sun4m_iommu.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/sparc64/sun4u_iommu.c
/qemu/hw/ssi/allwinner-a10-spi.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/bcm2835_spi.c
/qemu/hw/ssi/ibex_spi_host.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/mss-spi.c
/qemu/hw/ssi/npcm7xx_fiu.c
/qemu/hw/ssi/npcm_pspi.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/pnv_spi.c
/qemu/hw/ssi/sifive_spi.c
/qemu/hw/ssi/ssi.c
/qemu/hw/ssi/stm32f2xx_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/ssi/xlnx-versal-ospi.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/armv7m_systick.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/avr_timer16.c
/qemu/hw/timer/bcm2835_systmr.c
/qemu/hw/timer/cadence_ttc.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/timer/digic-timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/ibex_timer.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/imx_gpt.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/npcm7xx_timer.c
/qemu/hw/timer/nrf51_timer.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/timer/renesas_cmt.c
/qemu/hw/timer/renesas_tmr.c
/qemu/hw/timer/sifive_pwm.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/sse-counter.c
/qemu/hw/timer/sse-timer.c
/qemu/hw/timer/stellaris-gptm.c
/qemu/hw/timer/stm32f2xx_timer.c
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/tpm/tpm_crb.c
/qemu/hw/tpm/tpm_spapr.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/tpm/tpm_tis_isa.c
/qemu/hw/tpm/tpm_tis_sysbus.c
/qemu/hw/tricore/tc27x_soc.c
/qemu/hw/tricore/triboard.c
/qemu/hw/tricore/tricore_testdevice.c
/qemu/hw/uefi/var-service-sysbus.c
/qemu/hw/ufs/lu.c
/qemu/hw/ufs/ufs.c
/qemu/hw/usb/bus.c
/qemu/hw/usb/canokey.c
/qemu/hw/usb/ccid-card-emulated.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/chipidea.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-hid.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-storage-bot.c
/qemu/hw/usb/dev-storage-classic.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/dev-wacom.c
/qemu/hw/usb/hcd-dwc2.c
/qemu/hw/usb/hcd-dwc3.c
/qemu/hw/usb/hcd-ehci-pci.c
/qemu/hw/usb/hcd-ehci-sysbus.c
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-ohci-sysbus.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-sysbus.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/imx-usb-phy.c
/qemu/hw/usb/redirect.c
/qemu/hw/usb/u2f-emulated.c
/qemu/hw/usb/u2f-passthru.c
/qemu/hw/usb/u2f.c
/qemu/hw/usb/xlnx-usb-subsystem.c
/qemu/hw/usb/xlnx-versal-usb2-ctrl-regs.c
/qemu/hw/vfio/amd-xgbe.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/calxeda-xgmac.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/container.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/iommufd.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/platform.c
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/vdpa-dev-pci.c
/qemu/hw/virtio/vdpa-dev.c
/qemu/hw/virtio/vhost-scsi-pci.c
/qemu/hw/virtio/vhost-user-base.c
/qemu/hw/virtio/vhost-user-blk-pci.c
/qemu/hw/virtio/vhost-user-device-pci.c
/qemu/hw/virtio/vhost-user-device.c
/qemu/hw/virtio/vhost-user-fs-pci.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-gpio-pci.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c-pci.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-input.c
/qemu/hw/virtio/vhost-user-rng-pci.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-user-scmi-pci.c
/qemu/hw/virtio/vhost-user-scmi.c
/qemu/hw/virtio/vhost-user-scsi-pci.c
/qemu/hw/virtio/vhost-user-snd-pci.c
/qemu/hw/virtio/vhost-user-snd.c
/qemu/hw/virtio/vhost-user-vsock-pci.c
/qemu/hw/virtio/vhost-user-vsock.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/vhost-vsock-pci.c
/qemu/hw/virtio/vhost-vsock.c
/qemu/hw/virtio/virtio-9p-pci.c
/qemu/hw/virtio/virtio-balloon-pci.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-blk-pci.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/virtio/virtio-crypto-pci.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-input-pci.c
/qemu/hw/virtio/virtio-iommu-pci.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-net-pci.c
/qemu/hw/virtio/virtio-nsm-pci.c
/qemu/hw/virtio/virtio-nsm.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio-rng-pci.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/virtio/virtio-scsi-pci.c
/qemu/hw/virtio/virtio-serial-pci.c
/qemu/hw/virtio/virtio.c
/qemu/hw/vmapple/aes.c
/qemu/hw/vmapple/bdif.c
/qemu/hw/vmapple/cfg.c
/qemu/hw/vmapple/virtio-blk.c
/qemu/hw/vmapple/vmapple.c
/qemu/hw/watchdog/allwinner-wdt.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/watchdog/sbsa_gwdt.c
/qemu/hw/watchdog/spapr_watchdog.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/watchdog/wdt_i6300esb.c
/qemu/hw/watchdog/wdt_ib700.c
/qemu/hw/watchdog/wdt_imx2.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen-pvh-common.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt_graphics.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/virtio/virtio-pci.h
/qemu/include/qom/object.h
/qemu/io/channel-buffer.c
/qemu/io/channel-command.c
/qemu/io/channel-file.c
/qemu/io/channel-null.c
/qemu/io/channel-socket.c
/qemu/io/channel-tls.c
/qemu/io/channel-websock.c
/qemu/iothread.c
channel-block.c
migration.c
rdma.c
/qemu/net/can/can_core.c
/qemu/net/can/can_host.c
/qemu/net/can/can_socketcan.c
/qemu/net/colo-compare.c
/qemu/net/dump.c
/qemu/net/filter-buffer.c
/qemu/net/filter-mirror.c
/qemu/net/filter-replay.c
/qemu/net/filter-rewriter.c
/qemu/net/filter.c
/qemu/qom/object.c
/qemu/rust/qemu-api/src/qom.rs
/qemu/scripts/codeconverter/codeconverter/qom_type_info.py
/qemu/scsi/pr-manager-helper.c
/qemu/system/qtest.c
/qemu/target/alpha/cpu.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/tcg/cpu-v7m.c
/qemu/target/avr/cpu.c
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/translate.c
/qemu/target/hppa/cpu.c
/qemu/target/i386/confidential-guest.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/host-cpu.c
/qemu/target/i386/hvf/hvf-cpu.c
/qemu/target/i386/kvm/kvm-cpu.c
/qemu/target/i386/nvmm/nvmm-accel-ops.c
/qemu/target/i386/nvmm/nvmm-all.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/whpx/whpx-accel-ops.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/loongarch/cpu.c
/qemu/target/m68k/cpu.c
/qemu/target/microblaze/cpu.c
/qemu/target/mips/cpu.c
/qemu/target/openrisc/cpu.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/kvm.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/kvm/kvm-cpu.c
/qemu/target/riscv/tcg/tcg-cpu.c
/qemu/target/rx/cpu.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/cpu_models.h
/qemu/target/s390x/kvm/pv.c
/qemu/target/sh4/cpu.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/tricore/cpu.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/helper.c
/qemu/tests/unit/check-qom-interface.c
/qemu/tests/unit/check-qom-proplist.c
/qemu/tests/unit/test-qdev-global-props.c
/qemu/tests/unit/test-smp-parse.c
/qemu/ui/console-vc.c
/qemu/ui/console.c
/qemu/ui/dbus-chardev.c
/qemu/ui/dbus.c
/qemu/ui/gtk.c
/qemu/ui/input-barrier.c
/qemu/ui/input-linux.c
/qemu/ui/spice-app.c
/qemu/ui/vdagent.c
/qemu/util/main-loop.c
/qemu/util/thread-context.c
e1d4ea5326-Mar-2025 Cédric Le Goater <clg@redhat.com>

vfio: Introduce a new header file for external migration services

The migration core subsystem makes use of the VFIO migration API to
collect statistics on the number of bytes transferred. These ser

vfio: Introduce a new header file for external migration services

The migration core subsystem makes use of the VFIO migration API to
collect statistics on the number of bytes transferred. These services
are declared in "hw/vfio/vfio-common.h" which also contains VFIO
internal declarations. Move the migration declarations into a new
header file "hw/vfio/vfio-migration.h" to reduce the exposure of VFIO
internals.

While at it, use a 'vfio_migration_' prefix for these services.

To be noted, vfio_migration_add_bytes_transferred() is a VFIO
migration internal service which we will be moved in the subsequent
patches.

Cc: Kirti Wankhede <kwankhede@nvidia.com>
Cc: Avihai Horon <avihaih@nvidia.com>
Reviewed-by: Prasad Pandit <pjp@fedoraproject.org>
Reviewed-by: John Levon <john.levon@nutanix.com>
Reviewed-by: Avihai Horon <avihaih@nvidia.com>
Link: https://lore.kernel.org/qemu-devel/20250326075122.1299361-4-clg@redhat.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>

show more ...

426ffab426-Mar-2025 Cédric Le Goater <clg@redhat.com>

vfio: Rename vfio_reset_bytes_transferred()

Enforce a 'vfio_mig_' prefix for the VFIO migration API to better
reflect the namespace these routines belong to.

Reviewed-by: Avihai Horon <avihaih@nvid

vfio: Rename vfio_reset_bytes_transferred()

Enforce a 'vfio_mig_' prefix for the VFIO migration API to better
reflect the namespace these routines belong to.

Reviewed-by: Avihai Horon <avihaih@nvidia.com>
Reviewed-by: John Levon <john.levon@nutanix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Link: https://lore.kernel.org/qemu-devel/20250318095415.670319-3-clg@redhat.com
Link: https://lore.kernel.org/qemu-devel/20250326075122.1299361-3-clg@redhat.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>

show more ...

019fbfa424-Apr-2025 Stefan Hajnoczi <stefanha@redhat.com>

Merge tag 'pull-misc-2025-04-24' of https://repo.or.cz/qemu/armbru into staging

Miscellaneous patches for 2025-04-24

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCAAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMF

Merge tag 'pull-misc-2025-04-24' of https://repo.or.cz/qemu/armbru into staging

Miscellaneous patches for 2025-04-24

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCAAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMFAmgJ7dYSHGFybWJydUBy
# ZWRoYXQuY29tAAoJEDhwtADrkYZTiZIP/1PFAg/s3SoiLQwH/ZrjyUkm1kiKnjOH
# CC5Stw6I9tuYnDAhASAdSymofLv0NNydNe5ai6ZZAWRyRYjIcfNigKAGK4Di+Uhe
# nYxT0Yk8hNGwMhl6NnBp4mmCUNCwcbjT9uXdiYQxFYO/qqYR1388xJjeN3c362l3
# AaLrE5bX5sqa6TAkTeRPjeIqxlyGT7jnCrN7I1hMhDvbc3ITF3AMfYFMjnmAQgr+
# mTWGS1QogqqkloODbR1DKD1CAWOlpK+0HibhNF+lz71P0HlwVvy+HPXso505Wf0B
# dMwlSrZ1DnqNVF/y5IhMEMslahKajbjbFVhBjmrGl/8T821etCxxgB20c0vyFRy8
# qTyJGwBZaEo0VWr70unSmq45TRoeQvdHAw/e+GtilR0ci80q2ly4gbObnw7L8le+
# gqZo4IWmrwp2sbPepE57sYKQpEndwbRayf/kcFd0LPPpeINu9ZooXkYX0pOo6Cdg
# vDKMaEB1/fmPhjSlknxkKN9LZdR+nDw8162S1CKsUdWanAOjmP8haN19aoHhIekZ
# q+r2qUq/U827yNy9/qbInmsoFYDz9s6sAOE63jibd5rZZ9Anei6NOSgLzA4CqCR1
# +d0+TXp19gP9mLMFs7/ZclwkXCz47OQYhXYphjI3wM9x+xbdRcI4n+DOH5u5coKx
# AsA6+2n0GF4Y
# =GaoH
# -----END PGP SIGNATURE-----
# gpg: Signature made Thu 24 Apr 2025 03:52:54 EDT
# gpg: using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653
# gpg: issuer "armbru@redhat.com"
# gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" [full]
# gpg: aka "Markus Armbruster <armbru@pond.sub.org>" [full]
# Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653

* tag 'pull-misc-2025-04-24' of https://repo.or.cz/qemu/armbru:
cleanup: Drop pointless label at end of function
cleanup: Drop pointless return at end of function
cleanup: Re-run return_directly.cocci

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

show more ...


/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/backend-ldst.h
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal-target.h
/qemu/accel/tcg/tb-hash.h
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/block/gluster.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/throttle-groups.c
/qemu/bsd-user/qemu.h
/qemu/bsd-user/signal.c
/qemu/configs/targets/aarch64-softmmu.mak
/qemu/configs/targets/alpha-softmmu.mak
/qemu/configs/targets/arm-softmmu.mak
/qemu/configs/targets/hppa-softmmu.mak
/qemu/configs/targets/i386-softmmu.mak
/qemu/configs/targets/loongarch64-softmmu.mak
/qemu/configs/targets/microblaze-softmmu.mak
/qemu/configs/targets/microblazeel-softmmu.mak
/qemu/configs/targets/mips-softmmu.mak
/qemu/configs/targets/mipsel-softmmu.mak
/qemu/configs/targets/or1k-softmmu.mak
/qemu/configs/targets/ppc64-softmmu.mak
/qemu/configs/targets/riscv32-softmmu.mak
/qemu/configs/targets/riscv64-softmmu.mak
/qemu/configs/targets/s390x-softmmu.mak
/qemu/configs/targets/sparc-softmmu.mak
/qemu/configs/targets/sparc64-softmmu.mak
/qemu/configs/targets/x86_64-softmmu.mak
/qemu/configs/targets/xtensa-softmmu.mak
/qemu/configs/targets/xtensaeb-softmmu.mak
/qemu/cpu-target.c
/qemu/docs/devel/multi-thread-tcg.rst
/qemu/dump/win_dump.c
/qemu/event-loop-base.c
/qemu/hw/acpi/acpi-cpu-hotplug-stub.c
/qemu/hw/acpi/acpi-mem-hotplug-stub.c
/qemu/hw/acpi/acpi-nvdimm-stub.c
/qemu/hw/acpi/acpi-pci-hotplug-stub.c
/qemu/hw/alpha/dp264.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/meson.build
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/xen-stubs.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/audio/asc.c
/qemu/hw/avr/atmega.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/display/macfb.c
/qemu/hw/display/tcx.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/dma/sifive_pdma.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/gpio/bcm2838_gpio.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/pca9554.c
/qemu/hw/gpio/pl061.c
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/hyperv/syndbg.c
/qemu/hw/hyperv/vmbus.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/multiboot.c
/qemu/hw/i386/nitro_enclave.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_sysfw_ovmf.c
/qemu/hw/i386/vapic.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/input/virtio-input-host.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/aspeed_intc.c
/qemu/hw/intc/loongarch_pch_msi.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/ipmi_bt.c
/qemu/hw/ipmi/ipmi_kcs.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/ivshmem-flat.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/net/can/ctucan_core.c
/qemu/hw/net/can/xlnx-versal-canfd.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/nvram/xlnx-versal-efuse-ctrl.c
/qemu/hw/openrisc/boot.c
/qemu/hw/pci-host/astro.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc_booke.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nested.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_ovec.c
/qemu/hw/riscv/riscv-iommu-pci.c
/qemu/hw/riscv/riscv-iommu.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/ipl.h
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/ibex_spi_host.c
/qemu/hw/ssi/pnv_spi.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-scmi.c
/qemu/hw/virtio/vhost-user-vsock.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-nsm.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/sbsa_gwdt.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/xtensa/pic_cpu.c
/qemu/include/accel/tcg/cpu-ldst-common.h
/qemu/include/accel/tcg/cpu-ldst.h
/qemu/include/accel/tcg/cpu-ops.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/poison.h
/qemu/include/exec/target_page.h
/qemu/include/hw/core/cpu.h
/qemu/include/qemu/bswap.h
/qemu/include/system/kvm.h
/qemu/include/system/os-win32.h
/qemu/include/system/tcg.h
/qemu/include/tcg/insn-start-words.h
/qemu/include/tcg/startup.h
/qemu/include/tcg/tcg-op.h
/qemu/linux-user/loongarch64/cpu_loop.c
/qemu/linux-user/qemu.h
/qemu/linux-user/xtensa/signal.c
/qemu/meson.build
multifd-nocomp.c
qemu-file.c
ram.c
/qemu/monitor/hmp-cmds-target.c
/qemu/net/colo-compare.c
/qemu/page-vary-target.c
/qemu/plugins/api.c
/qemu/qemu-keymap.c
/qemu/qga/commands-win32.c
/qemu/semihosting/uaccess.c
/qemu/system/dirtylimit.c
/qemu/target/alpha/cpu-param.h
/qemu/target/alpha/cpu.c
/qemu/target/alpha/cpu.h
/qemu/target/alpha/helper.c
/qemu/target/alpha/mem_helper.c
/qemu/target/alpha/translate.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper.c
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/internals.h
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/cpu-v7m.c
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/arm/tcg/hflags.c
/qemu/target/arm/tcg/m_helper.c
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/mve_helper.c
/qemu/target/arm/tcg/op_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/qemu/target/arm/tcg/sme_helper.c
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/arm/tcg/sve_ldst_internal.h
/qemu/target/arm/tcg/tlb-insns.c
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate.c
/qemu/target/avr/cpu-param.h
/qemu/target/avr/cpu.c
/qemu/target/avr/cpu.h
/qemu/target/avr/helper.c
/qemu/target/avr/translate.c
/qemu/target/hexagon/cpu-param.h
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/translate.c
/qemu/target/hppa/cpu-param.h
/qemu/target/hppa/cpu.c
/qemu/target/hppa/cpu.h
/qemu/target/hppa/mem_helper.c
/qemu/target/hppa/op_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/arch_memory_mapping.c
/qemu/target/i386/cpu-param.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/kvm/hyperv.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/kvm/vmsr_energy.c
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/access.c
/qemu/target/i386/tcg/fpu_helper.c
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/mpx_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/system/excp_helper.c
/qemu/target/i386/tcg/system/misc_helper.c
/qemu/target/i386/tcg/system/seg_helper.c
/qemu/target/i386/tcg/system/svm_helper.c
/qemu/target/i386/tcg/system/tcg-cpu.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/tcg-cpu.h
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/tcg/user/seg_helper.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/i386/xsave_helper.c
/qemu/target/loongarch/cpu-param.h
/qemu/target/loongarch/cpu.c
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/cpu_helper.c
/qemu/target/loongarch/helper.h
/qemu/target/loongarch/internals.h
/qemu/target/loongarch/tcg/csr_helper.c
/qemu/target/loongarch/tcg/fpu_helper.c
/qemu/target/loongarch/tcg/helper.h
/qemu/target/loongarch/tcg/insn_trans/trans_branch.c.inc
/qemu/target/loongarch/tcg/insn_trans/trans_extra.c.inc
/qemu/target/loongarch/tcg/iocsr_helper.c
/qemu/target/loongarch/tcg/op_helper.c
/qemu/target/loongarch/tcg/tcg_loongarch.h
/qemu/target/loongarch/tcg/tlb_helper.c
/qemu/target/loongarch/tcg/translate.c
/qemu/target/loongarch/translate.h
/qemu/target/m68k/cpu-param.h
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/fpu_helper.c
/qemu/target/m68k/helper.c
/qemu/target/m68k/op_helper.c
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu-param.h
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/mmu.c
/qemu/target/microblaze/op_helper.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/cpu-param.h
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/tcg/ldst_helper.c
/qemu/target/mips/tcg/msa_helper.c
/qemu/target/mips/tcg/system/cp0_helper.c
/qemu/target/mips/tcg/system/mips-semi.c
/qemu/target/mips/tcg/system/tlb_helper.c
/qemu/target/mips/tcg/translate.c
/qemu/target/openrisc/cpu-param.h
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/cpu.h
/qemu/target/openrisc/mmu.c
/qemu/target/openrisc/sys_helper.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu-param.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/mmu-book3s-v3.c
/qemu/target/ppc/mmu-hash32.c
/qemu/target/ppc/mmu-hash32.h
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu-hash64.h
/qemu/target/ppc/mmu-radix64.c
/qemu/target/ppc/mmu_common.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/tcg-excp_helper.c
/qemu/target/ppc/translate.c
/qemu/target/riscv/cpu-param.h
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/debug.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/tcg/tcg-cpu.c
/qemu/target/riscv/tcg/tcg-cpu.h
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/riscv/zce_helper.c
/qemu/target/rx/cpu-param.h
/qemu/target/rx/cpu.c
/qemu/target/rx/cpu.h
/qemu/target/rx/helper.c
/qemu/target/rx/op_helper.c
/qemu/target/s390x/cpu-param.h
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/helper.c
/qemu/target/s390x/ioinst.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/s390x/tcg/crypto_helper.c
/qemu/target/s390x/tcg/excp_helper.c
/qemu/target/s390x/tcg/int_helper.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/misc_helper.c
/qemu/target/s390x/tcg/vec_helper.c
/qemu/target/sh4/cpu-param.h
/qemu/target/sh4/cpu.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/helper.c
/qemu/target/sh4/op_helper.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu-param.h
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/int32_helper.c
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu-param.h
/qemu/target/tricore/cpu.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/helper.c
/qemu/target/tricore/op_helper.c
/qemu/target/tricore/translate.c
/qemu/target/xtensa/cpu-param.h
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/helper.c
/qemu/target/xtensa/mmu_helper.c
/qemu/target/xtensa/op_helper.c
/qemu/target/xtensa/translate.c
/qemu/target/xtensa/xtensa-semi.c
/qemu/tcg/region.c
/qemu/tcg/tcg-internal.h
/qemu/tcg/tcg-op-ldst.c
/qemu/tcg/tcg.c
/qemu/tests/qtest/ahci-test.c
/qemu/tests/qtest/cmsdk-apb-watchdog-test.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/libqos/libqos-malloc.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/pnv-host-i2c-test.c
/qemu/tests/qtest/stm32l4x5_usart-test.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/unit/socket-helpers.c
/qemu/tests/unit/test-qgraph.c
/qemu/tools/i386/qemu-vmsr-helper.c
/qemu/ui/input-linux.c
/qemu/ui/vnc.c
/qemu/util/main-loop.c
/qemu/util/qht.c
8a2b516b07-Apr-2025 Markus Armbruster <armbru@redhat.com>

cleanup: Drop pointless return at end of function

A few functions now end with a label. The next commit will clean them
up.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richar

cleanup: Drop pointless return at end of function

A few functions now end with a label. The next commit will clean them
up.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250407082643.2310002-3-armbru@redhat.com>
[Straightforward conflict with commit 988ad4ccebb6 (hw/loongarch/virt:
Fix cpuslot::cpu set at last in virt_cpu_plug()) resolved]

show more ...


/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/block/gluster.c
/qemu/block/qcow2.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/throttle-groups.c
/qemu/bsd-user/signal.c
/qemu/configs/devices/aarch64-softmmu/default.mak
/qemu/configure
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/codebase.rst
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/qapi-domain.rst
/qemu/docs/devel/testing/ci-jobs.rst.inc
/qemu/docs/devel/testing/ci.rst
/qemu/docs/devel/testing/functional.rst
/qemu/docs/devel/testing/index.rst
/qemu/docs/devel/testing/main.rst
/qemu/docs/interop/qemu-ga-ref.rst
/qemu/docs/interop/qemu-qmp-ref.rst
/qemu/docs/interop/qemu-storage-daemon-qmp-ref.rst
/qemu/docs/sphinx/qmp_lexer.py
/qemu/docs/system/arm/imx8mp-evk.rst
/qemu/docs/system/arm/virt.rst
/qemu/dump/win_dump.c
/qemu/event-loop-base.c
/qemu/hw/acpi/acpi-cpu-hotplug-stub.c
/qemu/hw/acpi/acpi-mem-hotplug-stub.c
/qemu/hw/acpi/acpi-nvdimm-stub.c
/qemu/hw/acpi/acpi-pci-hotplug-stub.c
/qemu/hw/acpi/ipmi.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/fsl-imx8mp.c
/qemu/hw/arm/imx8mp-evk.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xen-stubs.c
/qemu/hw/audio/asc.c
/qemu/hw/avr/atmega.c
/qemu/hw/avr/atmega.h
/qemu/hw/block/m25p80.c
/qemu/hw/char/bcm2835_aux.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/display/dm163.c
/qemu/hw/display/macfb.c
/qemu/hw/display/tcx.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/dma/i82374.c
/qemu/hw/dma/sifive_pdma.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/gpio/bcm2838_gpio.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/pca9554.c
/qemu/hw/gpio/pl061.c
/qemu/hw/hyperv/vmbus.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/nitro_enclave.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/input/virtio-input-host.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/aspeed_intc.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/ipmi_bt.c
/qemu/hw/ipmi/ipmi_kcs.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/bcm2835_cprman.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/ivshmem-flat.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/npcm_clk.c
/qemu/hw/misc/stm32l4x5_rcc.c
/qemu/hw/net/can/ctucan_core.c
/qemu/hw/net/can/xlnx-versal-canfd.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/nvme.h
/qemu/hw/nvme/subsys.c
/qemu/hw/nvram/xlnx-efuse.c
/qemu/hw/nvram/xlnx-versal-efuse-ctrl.c
/qemu/hw/pci-host/designware.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nested.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/goldfish_rtc.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib-kvm.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/sd/sdhci-pci.c
/qemu/hw/smbios/smbios.c
/qemu/hw/smbios/smbios_type_38.c
/qemu/hw/ssi/ibex_spi_host.c
/qemu/hw/ssi/pnv_spi.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/ufs/ufs.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-scmi.c
/qemu/hw/virtio/vhost-user-vsock.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-nsm.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/sbsa_gwdt.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/include/exec/memory.h
/qemu/include/hw/arm/fsl-imx8mp.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/ipmi/ipmi.h
/qemu/include/hw/s390x/css.h
/qemu/include/hw/s390x/s390_flic.h
/qemu/include/hw/s390x/storage-attributes.h
/qemu/include/hw/s390x/storage-keys.h
/qemu/include/qemu/job.h
/qemu/include/system/os-win32.h
/qemu/job.c
/qemu/linux-user/xtensa/signal.c
multifd-nocomp.c
qemu-file.c
ram.c
/qemu/net/colo-compare.c
/qemu/plugins/api.c
/qemu/plugins/loader.c
/qemu/pythondeps.toml
/qemu/qapi/machine.json
/qemu/qapi/misc-target.json
/qemu/qapi/qapi-schema.json
/qemu/qapi/qdev.json
/qemu/qapi/rocker.json
/qemu/qemu-img.c
/qemu/qemu-keymap.c
/qemu/qga/commands-win32.c
/qemu/qga/qapi-schema.json
/qemu/rust/hw/char/pl011/src/device.rs
/qemu/rust/hw/timer/hpet/src/hpet.rs
/qemu/rust/qemu-api/tests/vmstate_tests.rs
/qemu/scripts/checkpatch.pl
/qemu/scripts/nsis.py
/qemu/scsi/utils.c
/qemu/storage-daemon/qapi/qapi-schema.json
/qemu/system/dirtylimit.c
/qemu/system/main.c
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/avr/cpu-param.h
/qemu/target/avr/cpu.c
/qemu/target/avr/cpu.h
/qemu/target/avr/disas.c
/qemu/target/avr/helper.c
/qemu/target/avr/helper.h
/qemu/target/avr/insn.decode
/qemu/target/avr/translate.c
/qemu/target/hppa/cpu.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/emulate/meson.build
/qemu/target/i386/emulate/panic.h
/qemu/target/i386/emulate/x86.h
/qemu/target/i386/emulate/x86_decode.c
/qemu/target/i386/emulate/x86_decode.h
/qemu/target/i386/emulate/x86_emu.c
/qemu/target/i386/emulate/x86_emu.h
/qemu/target/i386/emulate/x86_flags.c
/qemu/target/i386/emulate/x86_flags.h
/qemu/target/i386/host-cpu.c
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/meson.build
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/hvf/x86.c
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_descr.h
/qemu/target/i386/hvf/x86_mmu.c
/qemu/target/i386/hvf/x86_task.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/kvm/vmsr_energy.c
/qemu/target/i386/meson.build
/qemu/target/i386/tcg/cc_helper_template.h.inc
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/m68k/helper.c
/qemu/target/mips/cpu-param.h
/qemu/target/mips/tcg/system/cp0_helper.c
/qemu/target/mips/tcg/system/mips-semi.c
/qemu/target/mips/tcg/system/tlb_helper.c
/qemu/target/mips/tcg/tcg-internal.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/translate.c
/qemu/target/riscv/debug.c
/qemu/target/s390x/cpu_models.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/tcg/tcg.c
/qemu/tests/Makefile.include
/qemu/tests/functional/aspeed.py
/qemu/tests/functional/meson.build
/qemu/tests/functional/qemu_test/__init__.py
/qemu/tests/functional/qemu_test/decorators.py
/qemu/tests/functional/qemu_test/ports.py
/qemu/tests/functional/qemu_test/tuxruntest.py
/qemu/tests/functional/qemu_test/uncompress.py
/qemu/tests/functional/reverse_debugging.py
/qemu/tests/functional/test_aarch64_aspeed.py
/qemu/tests/functional/test_aarch64_replay.py
/qemu/tests/functional/test_aarch64_reverse_debug.py
/qemu/tests/functional/test_aarch64_rme_sbsaref.py
/qemu/tests/functional/test_aarch64_rme_virt.py
/qemu/tests/functional/test_aarch64_sbsaref_alpine.py
/qemu/tests/functional/test_aarch64_sbsaref_freebsd.py
/qemu/tests/functional/test_aarch64_smmu.py
/qemu/tests/functional/test_aarch64_tcg_plugins.py
/qemu/tests/functional/test_aarch64_virt.py
/qemu/tests/functional/test_arm_aspeed_ast2500.py
/qemu/tests/functional/test_arm_aspeed_ast2600.py
/qemu/tests/functional/test_arm_aspeed_bletchley.py
/qemu/tests/functional/test_arm_aspeed_palmetto.py
/qemu/tests/functional/test_arm_aspeed_romulus.py
/qemu/tests/functional/test_arm_aspeed_witherspoon.py
/qemu/tests/functional/test_arm_bpim2u.py
/qemu/tests/functional/test_arm_cubieboard.py
/qemu/tests/functional/test_arm_orangepi.py
/qemu/tests/functional/test_arm_quanta_gsj.py
/qemu/tests/functional/test_arm_smdkc210.py
/qemu/tests/functional/test_i386_replay.py
/qemu/tests/functional/test_migration.py
/qemu/tests/functional/test_mips64_malta.py
/qemu/tests/functional/test_mips64el_malta.py
/qemu/tests/functional/test_mips64el_replay.py
/qemu/tests/functional/test_mips_malta.py
/qemu/tests/functional/test_mips_replay.py
/qemu/tests/functional/test_mipsel_malta.py
/qemu/tests/functional/test_mipsel_replay.py
/qemu/tests/functional/test_ppc64_hv.py
/qemu/tests/functional/test_ppc64_reverse_debug.py
/qemu/tests/functional/test_s390x_topology.py
/qemu/tests/functional/test_vnc.py
/qemu/tests/functional/test_x86_64_kvm_xen.py
/qemu/tests/functional/test_x86_64_replay.py
/qemu/tests/functional/test_x86_64_reverse_debug.py
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-good.txt
/qemu/tests/qemu-iotests/162
/qemu/tests/qemu-iotests/tests/qcow2-encryption
/qemu/tests/qemu-iotests/tests/qcow2-encryption.out
/qemu/tests/qtest/ahci-test.c
/qemu/tests/qtest/cmsdk-apb-watchdog-test.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/libqos/libqos-malloc.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/pnv-host-i2c-test.c
/qemu/tests/qtest/stm32l4x5_usart-test.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/tcg/aarch64/system/boot.S
/qemu/tests/tcg/plugins/meson.build
/qemu/tests/tcg/plugins/reset.c
/qemu/tests/unit/socket-helpers.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-qgraph.c
/qemu/tools/i386/qemu-vmsr-helper.c
/qemu/ui/input-linux.c
/qemu/ui/vnc.c
/qemu/util/main-loop.c
/qemu/util/qht.c
12eeb04a27-Mar-2025 Richard Henderson <richard.henderson@linaro.org>

page-vary: Move and rename qemu_target_page_bits_min

Rename to migration_legacy_page_bits, to make it clear that
we cannot change the value without causing a migration break.
Move to page-vary.h and

page-vary: Move and rename qemu_target_page_bits_min

Rename to migration_legacy_page_bits, to make it clear that
we cannot change the value without causing a migration break.
Move to page-vary.h and page-vary-target.c.
Define via TARGET_PAGE_BITS if not TARGET_PAGE_BITS_VARY.

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...


/qemu/MAINTAINERS
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/icount-common.c
/qemu/accel/tcg/internal-common.h
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/monitor.c
/qemu/accel/tcg/tb-internal.h
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/tlb-bounds.h
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/gdbstub/meson.build
/qemu/hw/core/meson.build
/qemu/hw/core/ptimer.c
/qemu/include/accel/tcg/cpu-mmu-index.h
/qemu/include/accel/tcg/cpu-ops.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/cputlb.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/icount.h
/qemu/include/exec/page-vary.h
/qemu/include/exec/poison.h
/qemu/include/exec/target_page.h
/qemu/include/exec/tlb-flags.h
/qemu/include/exec/translation-block.h
/qemu/include/exec/watchpoint.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/hw.h
/qemu/include/hw/intc/armv7m_nvic.h
/qemu/include/hw/s390x/css.h
/qemu/include/qemu/accel.h
/qemu/include/semihosting/semihost.h
/qemu/include/system/confidential-guest-support.h
/qemu/include/system/cpu-timers.h
/qemu/include/system/qtest.h
/qemu/include/system/replay.h
/qemu/include/system/xen.h
/qemu/include/user/page-protection.h
/qemu/meson.build
savevm.c
/qemu/page-target.c
/qemu/page-vary-target.c
/qemu/plugins/meson.build
/qemu/replay/replay.c
/qemu/semihosting/meson.build
/qemu/semihosting/stubs-all.c
/qemu/semihosting/stubs-system.c
/qemu/semihosting/uaccess.c
/qemu/semihosting/user.c
/qemu/stubs/icount.c
/qemu/system/cpu-timers.c
/qemu/system/dma-helpers.c
/qemu/system/memory-internal.h
/qemu/system/memory.c
/qemu/system/meson.build
/qemu/system/physmem.c
/qemu/system/vl.c
/qemu/system/watchpoint.c
/qemu/target/alpha/cpu.c
/qemu/target/arm/cpu.c
/qemu/target/arm/debug_helper.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/cpu-v7m.c
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/avr/cpu.c
/qemu/target/hexagon/cpu.c
/qemu/target/hppa/cpu.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/machine.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/seg_helper.h
/qemu/target/i386/tcg/system/bpt_helper.c
/qemu/target/i386/tcg/system/excp_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/tcg-cpu.h
/qemu/target/loongarch/cpu.c
/qemu/target/m68k/cpu.c
/qemu/target/microblaze/cpu.c
/qemu/target/mips/cpu.c
/qemu/target/openrisc/cpu.c
/qemu/target/ppc/cpu.c
/qemu/target/ppc/cpu_init.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu_cfg.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/debug.c
/qemu/target/riscv/machine.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmu.c
/qemu/target/riscv/tcg/tcg-cpu.c
/qemu/target/riscv/vector_helper.c
/qemu/target/rx/cpu.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/helper.c
/qemu/target/s390x/tcg/excp_helper.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/sh4/cpu.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/tricore/cpu.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/dbg_helper.c
/qemu/target/xtensa/translate.c
/qemu/tcg/meson.build
/qemu/util/async.c
/qemu/util/main-loop.c
/qemu/util/qemu-timer.c
548a016513-Mar-2025 Richard Henderson <richard.henderson@linaro.org>

include/system: Move exec/ramblock.h to system/ramblock.h

Convert the existing includes with sed.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bou

include/system: Move exec/ramblock.h to system/ramblock.h

Convert the existing includes with sed.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

4705a71d13-Mar-2025 Richard Henderson <richard.henderson@linaro.org>

include/system: Move exec/ram_addr.h to system/ram_addr.h

Convert the existing includes with sed.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bou

include/system: Move exec/ram_addr.h to system/ram_addr.h

Convert the existing includes with sed.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...


/qemu/MAINTAINERS
/qemu/accel/hvf/hvf-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/translate-all.c
/qemu/hw/acpi/erst.c
/qemu/hw/arm/aspeed_ast10x0.c
/qemu/hw/arm/bananapi_m2u.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/exynos4_boards.c
/qemu/hw/arm/fsl-imx31.c
/qemu/hw/arm/fsl-imx8mp.c
/qemu/hw/arm/imx8mp-evk.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/kzm.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/mps3r.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/msf2-som.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/stm32f100_soc.c
/qemu/hw/arm/stm32f205_soc.c
/qemu/hw/arm/stm32f405_soc.c
/qemu/hw/arm/stm32l4x5_soc.c
/qemu/hw/avr/atmega.c
/qemu/hw/block/fdc-isa.c
/qemu/hw/char/goldfish_tty.c
/qemu/hw/char/omap_uart.c
/qemu/hw/char/riscv_htif.c
/qemu/hw/core/cpu-system.c
/qemu/hw/core/null-machine.c
/qemu/hw/core/sysbus.c
/qemu/hw/display/apple-gfx.m
/qemu/hw/display/vga_int.h
/qemu/hw/dma/rc4030.c
/qemu/hw/hyperv/hv-balloon.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_gnttab.c
/qemu/hw/i386/kvm/xen_overlay.c
/qemu/hw/i386/sgx-epc.c
/qemu/hw/i386/sgx.c
/qemu/hw/i386/vapic.c
/qemu/hw/ide/ahci-sysbus.c
/qemu/hw/input/lasips2.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/intc/riscv_imsic.c
/qemu/hw/loongarch/virt.c
/qemu/hw/mem/memory-device.c
/qemu/hw/microblaze/petalogix_ml605_mmu.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/microblaze/xlnx-zynqmp-pmu.c
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/allwinner-h3-dramc.c
/qemu/hw/misc/allwinner-r40-dramc.c
/qemu/hw/misc/ivshmem-flat.c
/qemu/hw/misc/mac_via.c
/qemu/hw/net/i82596.c
/qemu/hw/net/i82596.h
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/openrisc/virt.c
/qemu/hw/pci-host/mv64361.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/rs6000_mc.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_ovec.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/vof.c
/qemu/hw/remote/iommu.c
/qemu/hw/remote/memory.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/riscv/microblaze-v-generic.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/shakti_c.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.h
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib-kvm.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/sparc/sun4m_iommu.c
/qemu/hw/sparc64/sun4u_iommu.c
/qemu/hw/timer/hpet.c
/qemu/hw/tpm/tpm_crb.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/container.c
/qemu/hw/vfio/platform.c
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/virtio/virtio-mem.c
/qemu/include/hw/char/parallel-isa.h
/qemu/include/hw/dma/i8257.h
/qemu/include/hw/ide/ide-bus.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/misc/lasi.h
/qemu/include/hw/nubus/nubus.h
/qemu/include/hw/ppc/vof.h
/qemu/include/hw/tricore/triboard.h
/qemu/include/system/address-spaces.h
/qemu/include/system/dma.h
/qemu/include/system/ioport.h
/qemu/include/system/ram_addr.h
ram.c
/qemu/monitor/hmp-cmds-target.c
/qemu/monitor/hmp-cmds.c
/qemu/rust/wrapper.h
/qemu/system/ioport.c
/qemu/system/memory.c
/qemu/system/memory_mapping.c
/qemu/system/physmem.c
/qemu/system/qtest.c
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/kvm.c
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/avr/cpu.c
/qemu/target/i386/cpu-apic.c
/qemu/target/i386/cpu.c
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/nvmm/nvmm-all.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/system/misc_helper.c
/qemu/target/i386/tcg/system/tcg-cpu.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/loongarch/kvm/kvm.c
/qemu/target/ppc/kvm.c
/qemu/target/riscv/kvm/kvm-cpu.c
/qemu/target/s390x/kvm/kvm.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/s390x/sigp.c
/qemu/target/s390x/tcg/excp_helper.c
/qemu/target/xtensa/dbg_helper.c
/qemu/tests/qtest/fuzz/qtest_wrappers.c
8be545ba12-Mar-2025 Richard Henderson <richard.henderson@linaro.org>

include/system: Move exec/memory.h to system/memory.h

Convert the existing includes with

sed -i ,exec/memory.h,system/memory.h,g

Move the include within cpu-all.h into a !CONFIG_USER_ONLY block.

include/system: Move exec/memory.h to system/memory.h

Convert the existing includes with

sed -i ,exec/memory.h,system/memory.h,g

Move the include within cpu-all.h into a !CONFIG_USER_ONLY block.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...


/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/atomic_template.h
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal-target.h
/qemu/accel/tcg/ldst_common.c.inc
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/tcg/watchpoint.c
/qemu/backends/tpm/tpm_util.c
/qemu/block/blkio.c
/qemu/block/qcow2.c
/qemu/bsd-user/bsd-mem.h
/qemu/bsd-user/mmap.c
/qemu/configs/devices/aarch64-softmmu/default.mak
/qemu/configure
/qemu/cpu-target.c
/qemu/disas/disas-mon.c
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/codebase.rst
/qemu/docs/devel/memory.rst
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/qapi-domain.rst
/qemu/docs/devel/testing/ci-jobs.rst.inc
/qemu/docs/devel/testing/ci.rst
/qemu/docs/devel/testing/functional.rst
/qemu/docs/devel/testing/index.rst
/qemu/docs/devel/testing/main.rst
/qemu/docs/interop/qemu-ga-ref.rst
/qemu/docs/interop/qemu-qmp-ref.rst
/qemu/docs/interop/qemu-storage-daemon-qmp-ref.rst
/qemu/docs/sphinx/qmp_lexer.py
/qemu/docs/system/arm/imx8mp-evk.rst
/qemu/docs/system/arm/virt.rst
/qemu/hw/acpi/erst.c
/qemu/hw/acpi/ipmi.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/fsl-imx8mp.c
/qemu/hw/arm/imx8mp-evk.c
/qemu/hw/arm/strongarm.h
/qemu/hw/arm/virt.c
/qemu/hw/avr/atmega.c
/qemu/hw/avr/atmega.h
/qemu/hw/block/fdc-sysbus.c
/qemu/hw/block/m25p80.c
/qemu/hw/char/bcm2835_aux.c
/qemu/hw/core/cpu-system.c
/qemu/hw/core/loader-fit.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/display/apple-gfx.h
/qemu/hw/display/dm163.c
/qemu/hw/display/edid-region.c
/qemu/hw/display/framebuffer.h
/qemu/hw/display/vga_int.h
/qemu/hw/dma/i82374.c
/qemu/hw/hyperv/hv-balloon-our_range_memslots.h
/qemu/hw/hyperv/hyperv.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/acpi-microvm.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/intc/ioapic_internal.h
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/ipmi_bt.c
/qemu/hw/ipmi/ipmi_kcs.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/virt.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/bcm2835_cprman.c
/qemu/hw/misc/npcm_clk.c
/qemu/hw/misc/stm32l4x5_rcc.c
/qemu/hw/net/i82596.h
/qemu/hw/net/ne2000.c
/qemu/hw/net/pcnet.h
/qemu/hw/net/virtio-net.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/nvme.h
/qemu/hw/nvme/subsys.c
/qemu/hw/nvram/xlnx-efuse.c
/qemu/hw/pci-bridge/pci_bridge_dev.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/remote.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_nested.c
/qemu/hw/remote/iommu.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/remote/vfio-user-obj.c
/qemu/hw/rtc/goldfish_rtc.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib-kvm.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/sdhci-pci.c
/qemu/hw/sh4/sh7750.c
/qemu/hw/smbios/smbios.c
/qemu/hw/smbios/smbios_type_38.c
/qemu/hw/timer/sh_timer.c
/qemu/hw/tpm/tpm_ppi.h
/qemu/hw/ufs/ufs.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/vfio/common.c
/qemu/hw/vfio/container.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/vhost-iova-tree.h
/qemu/hw/xen/meson.build
/qemu/hw/xen/xen_stubs.c
/qemu/hw/xtensa/sim.c
/qemu/hw/xtensa/virt.c
/qemu/hw/xtensa/xtensa_memory.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/accel/tcg/cpu-mmu-index.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/cpu-ldst-common.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/ioport.h
/qemu/include/exec/memory-internal.h
/qemu/include/exec/memory_ldst.h.inc
/qemu/include/exec/memory_ldst_phys.h.inc
/qemu/include/exec/mmap-lock.h
/qemu/include/exec/page-protection.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/translator.h
/qemu/include/exec/tswap.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/acpi/ich9_tco.h
/qemu/include/hw/arm/fsl-imx25.h
/qemu/include/hw/arm/fsl-imx31.h
/qemu/include/hw/arm/fsl-imx6.h
/qemu/include/hw/arm/fsl-imx6ul.h
/qemu/include/hw/arm/fsl-imx8mp.h
/qemu/include/hw/arm/omap.h
/qemu/include/hw/arm/stm32l4x5_soc.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/parallel.h
/qemu/include/hw/char/riscv_htif.h
/qemu/include/hw/char/serial-mm.h
/qemu/include/hw/char/serial.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/display/macfb.h
/qemu/include/hw/fsi/aspeed_apb2opb.h
/qemu/include/hw/fsi/cfam.h
/qemu/include/hw/fsi/fsi-master.h
/qemu/include/hw/fsi/fsi.h
/qemu/include/hw/fsi/lbus.h
/qemu/include/hw/gpio/npcm7xx_gpio.h
/qemu/include/hw/i2c/npcm7xx_smbus.h
/qemu/include/hw/i2c/pm_smbus.h
/qemu/include/hw/i386/apic_internal.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/ide/ahci.h
/qemu/include/hw/ipmi/ipmi.h
/qemu/include/hw/isa/apm.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/m68k/q800.h
/qemu/include/hw/mem/npcm7xx_mc.h
/qemu/include/hw/mem/pc-dimm.h
/qemu/include/hw/mips/mips.h
/qemu/include/hw/misc/auxbus.h
/qemu/include/hw/misc/ivshmem-flat.h
/qemu/include/hw/misc/mac_via.h
/qemu/include/hw/misc/npcm7xx_mft.h
/qemu/include/hw/misc/npcm_clk.h
/qemu/include/hw/misc/npcm_gcr.h
/qemu/include/hw/misc/pvpanic.h
/qemu/include/hw/net/dp8393x.h
/qemu/include/hw/net/msf2-emac.h
/qemu/include/hw/nvram/mac_nvram.h
/qemu/include/hw/nvram/npcm7xx_otp.h
/qemu/include/hw/pci-host/fsl_imx8m_phy.h
/qemu/include/hw/pci-host/pam.h
/qemu/include/hw/pci-host/remote.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pcie_host.h
/qemu/include/hw/pci/shpc.h
/qemu/include/hw/ppc/mac_dbdma.h
/qemu/include/hw/ppc/pnv_lpc.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_sbe.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/ppc4xx.h
/qemu/include/hw/ppc/vof.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/register.h
/qemu/include/hw/remote/proxy-memory-listener.h
/qemu/include/hw/s390x/css.h
/qemu/include/hw/s390x/s390_flic.h
/qemu/include/hw/s390x/storage-attributes.h
/qemu/include/hw/s390x/storage-keys.h
/qemu/include/hw/sh4/sh_intc.h
/qemu/include/hw/southbridge/ich9.h
/qemu/include/hw/sysbus.h
/qemu/include/hw/timer/npcm7xx_timer.h
/qemu/include/hw/tricore/tricore.h
/qemu/include/hw/usb.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/vfio/vfio-container-base.h
/qemu/include/hw/virtio/vhost-backend.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/xen/xen-pvh-common.h
/qemu/include/hw/xtensa/mx_pic.h
/qemu/include/qemu/iova-tree.h
/qemu/include/qemu/job.h
/qemu/include/qemu/reserved-region.h
/qemu/include/system/dma.h
/qemu/include/system/hostmem.h
/qemu/include/system/kvm.h
/qemu/include/system/kvm_int.h
/qemu/include/system/memory.h
/qemu/include/system/vhost-user-backend.h
/qemu/include/system/xen-mapcache.h
/qemu/include/system/xen.h
/qemu/include/tcg/tcg-op.h
/qemu/job.c
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/elfload.c
/qemu/linux-user/flatload.c
/qemu/linux-user/mmap.c
/qemu/linux-user/syscall.c
dirtyrate.c
rdma.c
rdma.h
savevm.c
/qemu/monitor/hmp-cmds-target.c
/qemu/page-vary-target.c
/qemu/plugins/loader.c
/qemu/pythondeps.toml
/qemu/qapi/machine.json
/qemu/qapi/misc-target.json
/qemu/qapi/qapi-schema.json
/qemu/qapi/qdev.json
/qemu/qapi/rocker.json
/qemu/qemu-img.c
/qemu/qga/qapi-schema.json
/qemu/rust/hw/char/pl011/src/device.rs
/qemu/rust/hw/timer/hpet/src/hpet.rs
/qemu/rust/qemu-api/tests/vmstate_tests.rs
/qemu/rust/wrapper.h
/qemu/scripts/analyze-inclusions
/qemu/scripts/checkpatch.pl
/qemu/scripts/nsis.py
/qemu/scsi/utils.c
/qemu/semihosting/uaccess.c
/qemu/storage-daemon/qapi/qapi-schema.json
/qemu/stubs/ram-block.c
/qemu/system/dirtylimit.c
/qemu/system/ioport.c
/qemu/system/main.c
/qemu/system/memory.c
/qemu/system/memory_mapping.c
/qemu/system/meson.build
/qemu/system/physmem.c
/qemu/system/qtest.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper.c
/qemu/target/avr/cpu-param.h
/qemu/target/avr/cpu.c
/qemu/target/avr/cpu.h
/qemu/target/avr/disas.c
/qemu/target/avr/helper.c
/qemu/target/avr/helper.h
/qemu/target/avr/insn.decode
/qemu/target/avr/translate.c
/qemu/target/hppa/cpu.h
/qemu/target/hppa/mem_helper.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/emulate/meson.build
/qemu/target/i386/emulate/panic.h
/qemu/target/i386/emulate/x86.h
/qemu/target/i386/emulate/x86_decode.c
/qemu/target/i386/emulate/x86_decode.h
/qemu/target/i386/emulate/x86_emu.c
/qemu/target/i386/emulate/x86_emu.h
/qemu/target/i386/emulate/x86_flags.c
/qemu/target/i386/emulate/x86_flags.h
/qemu/target/i386/host-cpu.c
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/meson.build
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/hvf/x86.c
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_descr.h
/qemu/target/i386/hvf/x86_mmu.c
/qemu/target/i386/hvf/x86_task.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/kvm/vmsr_energy.c
/qemu/target/i386/meson.build
/qemu/target/i386/tcg/cc_helper_template.h.inc
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/translate.c
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/cpu_helper.c
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/mmu.c
/qemu/target/mips/cpu-param.h
/qemu/target/mips/cpu.h
/qemu/target/mips/tcg/system/cp0_helper.c
/qemu/target/mips/tcg/system/tlb_helper.c
/qemu/target/mips/tcg/tcg-internal.h
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/helper_regs.h
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/tcg-excp_helper.c
/qemu/target/riscv/bitmanip_helper.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/tricore/helper.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/mmu_helper.c
/qemu/tcg/tcg.c
/qemu/tests/Makefile.include
/qemu/tests/functional/aspeed.py
/qemu/tests/functional/meson.build
/qemu/tests/functional/qemu_test/__init__.py
/qemu/tests/functional/qemu_test/decorators.py
/qemu/tests/functional/qemu_test/ports.py
/qemu/tests/functional/qemu_test/tuxruntest.py
/qemu/tests/functional/qemu_test/uncompress.py
/qemu/tests/functional/reverse_debugging.py
/qemu/tests/functional/test_aarch64_aspeed.py
/qemu/tests/functional/test_aarch64_replay.py
/qemu/tests/functional/test_aarch64_reverse_debug.py
/qemu/tests/functional/test_aarch64_rme_sbsaref.py
/qemu/tests/functional/test_aarch64_rme_virt.py
/qemu/tests/functional/test_aarch64_sbsaref_alpine.py
/qemu/tests/functional/test_aarch64_sbsaref_freebsd.py
/qemu/tests/functional/test_aarch64_smmu.py
/qemu/tests/functional/test_aarch64_tcg_plugins.py
/qemu/tests/functional/test_aarch64_virt.py
/qemu/tests/functional/test_arm_aspeed_ast2500.py
/qemu/tests/functional/test_arm_aspeed_ast2600.py
/qemu/tests/functional/test_arm_aspeed_bletchley.py
/qemu/tests/functional/test_arm_aspeed_palmetto.py
/qemu/tests/functional/test_arm_aspeed_romulus.py
/qemu/tests/functional/test_arm_aspeed_witherspoon.py
/qemu/tests/functional/test_arm_bpim2u.py
/qemu/tests/functional/test_arm_cubieboard.py
/qemu/tests/functional/test_arm_orangepi.py
/qemu/tests/functional/test_arm_quanta_gsj.py
/qemu/tests/functional/test_arm_smdkc210.py
/qemu/tests/functional/test_i386_replay.py
/qemu/tests/functional/test_migration.py
/qemu/tests/functional/test_mips64_malta.py
/qemu/tests/functional/test_mips64el_malta.py
/qemu/tests/functional/test_mips64el_replay.py
/qemu/tests/functional/test_mips_malta.py
/qemu/tests/functional/test_mips_replay.py
/qemu/tests/functional/test_mipsel_malta.py
/qemu/tests/functional/test_mipsel_replay.py
/qemu/tests/functional/test_ppc64_hv.py
/qemu/tests/functional/test_ppc64_reverse_debug.py
/qemu/tests/functional/test_s390x_topology.py
/qemu/tests/functional/test_vnc.py
/qemu/tests/functional/test_x86_64_kvm_xen.py
/qemu/tests/functional/test_x86_64_replay.py
/qemu/tests/functional/test_x86_64_reverse_debug.py
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-good.txt
/qemu/tests/qemu-iotests/162
/qemu/tests/qemu-iotests/tests/qcow2-encryption
/qemu/tests/qemu-iotests/tests/qcow2-encryption.out
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/qos_fuzz.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/tcg/aarch64/system/boot.S
/qemu/tests/tcg/plugins/meson.build
/qemu/tests/tcg/plugins/reset.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-resv-mem.c
/qemu/ui/console.c
/qemu/util/vfio-helpers.c
c0b3242626-Mar-2025 Marco Cavenati <Marco.Cavenati@eurecom.fr>

migration: fix SEEK_CUR offset calculation in qio_channel_block_seek

The SEEK_CUR case in qio_channel_block_seek was incorrectly using the
'whence' parameter instead of the 'offset' parameter when c

migration: fix SEEK_CUR offset calculation in qio_channel_block_seek

The SEEK_CUR case in qio_channel_block_seek was incorrectly using the
'whence' parameter instead of the 'offset' parameter when calculating the
new position.

Fixes: 65cf200a51 ("migration: introduce a QIOChannel impl for BlockDriverState VMState")
Signed-off-by: Marco Cavenati <Marco.Cavenati@eurecom.fr>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Message-ID: <20250326162230.3323199-1-Marco.Cavenati@eurecom.fr>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...


/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.mailmap
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/VERSION
/qemu/backends/cryptodev-lkcf.c
/qemu/bsd-user/elfload.c
/qemu/configs/devices/i386-softmmu/default.mak
/qemu/docs/about/emulation.rst
/qemu/docs/conf.py
/qemu/docs/devel/qapi-domain.rst
/qemu/docs/devel/testing/functional.rst
/qemu/docs/interop/firmware.json
/qemu/docs/interop/qemu-ga-ref.rst
/qemu/docs/interop/qemu-qmp-ref.rst
/qemu/docs/interop/qemu-storage-daemon-qmp-ref.rst
/qemu/docs/specs/riscv-iommu.rst
/qemu/docs/sphinx/qapi_domain.py
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/system/arm/bananapi_m2u.rst
/qemu/docs/system/arm/orangepi.rst
/qemu/docs/system/devices/igb.rst
/qemu/docs/system/devices/net.rst
/qemu/docs/system/loongarch/virt.rst
/qemu/docs/system/target-loongarch.rst
/qemu/docs/system/targets.rst
/qemu/host/include/loongarch64/host/atomic128-ldst.h.inc
/qemu/host/include/loongarch64/host/bufferiszero.c.inc
/qemu/host/include/loongarch64/host/load-extract-al16-al8.h.inc
/qemu/hw/arm/Kconfig
/qemu/hw/block/block.c
/qemu/hw/char/Kconfig
/qemu/hw/char/meson.build
/qemu/hw/char/pl011.c
/qemu/hw/core/loader.c
/qemu/hw/core/qdev-properties.c
/qemu/hw/display/qxl.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/pc.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/aspeed_intc.c
/qemu/hw/intc/xive.c
/qemu/hw/intc/xive2.c
/qemu/hw/loongarch/virt.c
/qemu/hw/misc/aspeed_hace.c
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/ppc/amigaone.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/riscv/riscv-iommu-bits.h
/qemu/hw/riscv/riscv-iommu.c
/qemu/hw/riscv/virt.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/timer/Kconfig
/qemu/hw/timer/meson.build
/qemu/hw/uefi/Kconfig
/qemu/hw/uefi/var-service-core.c
/qemu/hw/uefi/var-service-json.c
/qemu/hw/virtio/meson.build
/qemu/hw/xen/xen-bus.c
/qemu/include/exec/cpu-all.h
/qemu/include/exec/poison.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/loader.h
/qemu/include/hw/ppc/pnv_pnor.h
/qemu/include/hw/qdev-properties.h
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/elfload.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/meson_options.txt
channel-block.c
/qemu/net/vhost-vdpa.c
/qemu/net/vmnet-common.m
/qemu/qapi/block-core.json
/qemu/qapi/qapi-schema.json
/qemu/qga/qapi-schema.json
/qemu/rust/hw/char/pl011/src/device.rs
/qemu/rust/hw/char/pl011/src/device_class.rs
/qemu/rust/hw/timer/Kconfig
/qemu/rust/hw/timer/hpet/src/hpet.rs
/qemu/rust/qemu-api/meson.build
/qemu/rust/qemu-api/src/assertions.rs
/qemu/rust/qemu-api/src/vmstate.rs
/qemu/rust/qemu-api/tests/tests.rs
/qemu/rust/qemu-api/tests/vmstate_tests.rs
/qemu/rust/wrapper.h
/qemu/scripts/meson-buildoptions.sh
/qemu/storage-daemon/qapi/qapi-schema.json
/qemu/system/physmem.c
/qemu/target/arm/arch_dump.c
/qemu/target/arm/cpregs.h
/qemu/target/arm/cpu.h
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/arm/tcg/hflags.c
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate-a64.h
/qemu/target/arm/tcg/translate.h
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/internals.h
/qemu/target/loongarch/kvm/kvm.c
/qemu/target/loongarch/tcg/csr_helper.c
/qemu/target/loongarch/tcg/tlb_helper.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/riscv/cpu.h
/qemu/target/riscv/csr.c
/qemu/target/riscv/insn_trans/trans_rvi.c.inc
/qemu/target/riscv/insn_trans/trans_rvzicfiss.c.inc
/qemu/target/riscv/kvm/kvm-cpu.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/translate.c
/qemu/target/riscv/vcrypto_helper.c
/qemu/target/riscv/vector_helper.c
/qemu/target/riscv/vector_internals.c
/qemu/target/riscv/vector_internals.h
/qemu/target/s390x/cpu.c
/qemu/tests/functional/meson.build
/qemu/tests/functional/qemu_test/testcase.py
/qemu/tests/functional/test_aarch64_rme_sbsaref.py
/qemu/tests/functional/test_aarch64_rme_virt.py
/qemu/tests/functional/test_aarch64_virt_gpu.py
/qemu/tests/functional/test_acpi_bits.py
/qemu/tests/functional/test_arm_bpim2u.py
/qemu/tests/functional/test_arm_cubieboard.py
/qemu/tests/functional/test_arm_orangepi.py
/qemu/tests/functional/test_migration.py
/qemu/tests/functional/test_ppc64_hv.py
/qemu/tests/functional/test_ppc64_replay.py
/qemu/tests/functional/test_vnc.py
/qemu/tests/functional/test_x86_64_kvm_xen.py
/qemu/tests/qtest/meson.build
/qemu/util/cacheflush.c
1632a20107-Mar-2025 Steve Sistare <steven.sistare@oracle.com>

migration: cpr_is_incoming

Define the cpr_is_incoming helper, to be used in several cpr fix patches.

Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
Reviewed-by: Peter Xu <peterx@redhat.co

migration: cpr_is_incoming

Define the cpr_is_incoming helper, to be used in several cpr fix patches.

Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Message-ID: <1741380954-341079-2-git-send-email-steven.sistare@oracle.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...


/qemu/.gitlab-ci.d/check-units.py
/qemu/.gitlab-ci.d/cirrus/freebsd-14.vars
/qemu/.gitlab-ci.d/cirrus/macos-14.vars
/qemu/.gitlab-ci.d/static_checks.yml
/qemu/MAINTAINERS
/qemu/block/block-backend.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/io_uring.c
/qemu/block/linux-aio.c
/qemu/block/snapshot.c
/qemu/bsd-user/meson.build
/qemu/bsd-user/plugin-api.c
/qemu/common-user/plugin-api.c.inc
/qemu/contrib/plugins/meson.build
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/conf.py
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/codebase.rst
/qemu/docs/devel/index-build.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/devel/qapi-domain.rst
/qemu/docs/glossary.rst
/qemu/docs/interop/qemu-qmp-ref.rst
/qemu/docs/sphinx-static/theme_overrides.css
/qemu/docs/sphinx/compat.py
/qemu/docs/sphinx/qapi_domain.py
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/sphinx/qapidoc_legacy.py
/qemu/docs/system/arm/bananapi_m2u.rst
/qemu/docs/system/arm/orangepi.rst
/qemu/docs/system/devices/igb.rst
/qemu/docs/system/ppc/amigang.rst
/qemu/docs/system/ppc/embedded.rst
/qemu/docs/system/ppc/powernv.rst
/qemu/hw/acpi/acpi-stub.c
/qemu/hw/acpi/core.c
/qemu/hw/arm/fsl-imx25.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/fsl-imx7.c
/qemu/hw/arm/fsl-imx8mp.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/ide/core.c
/qemu/hw/ide/macio.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/pnv_xive2.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xive.c
/qemu/hw/intc/xive2.c
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/smc91c111.c
/qemu/hw/pci-host/pnv_phb4_pec.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/amigaone.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nested.c
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rtc/Kconfig
/qemu/hw/rtc/meson.build
/qemu/hw/rtc/rs5c372.c
/qemu/hw/rtc/trace-events
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sd/sdhci.c
/qemu/hw/ssi/pnv_spi.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/iommufd.c
/qemu/hw/vfio/meson.build
/qemu/hw/vfio/migration-multifd.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/iothread-vq-mapping.c
/qemu/hw/virtio/meson.build
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/xen/xen-mapcache.c
/qemu/hw/xen/xen_pt.c
/qemu/include/block/aio.h
/qemu/include/block/raw-aio.h
/qemu/include/exec/ram_addr.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/hyperv/hyperv-proto.h
/qemu/include/hw/pci-host/pnv_phb4.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_pnor.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_nested.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/ppc/xive2.h
/qemu/include/hw/ppc/xive2_regs.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/sdhci.h
/qemu/include/hw/ssi/pnv_spi.h
/qemu/include/hw/virtio/iothread-vq-mapping.h
/qemu/include/hw/virtio/virtio-scsi.h
/qemu/include/hw/xen/arch_hvm.h
/qemu/include/migration/cpr.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/plugin-memory.h
/qemu/include/system/arch_init.h
/qemu/include/system/block-backend-global-state.h
/qemu/include/system/dma.h
/qemu/include/system/hostmem.h
/qemu/linux-user/meson.build
/qemu/linux-user/plugin-api.c
/qemu/meson.build
cpr.c
/qemu/net/net.c
/qemu/net/tap-linux.c
/qemu/net/vhost-vdpa.c
/qemu/pc-bios/README
/qemu/pc-bios/meson.build
/qemu/pc-bios/pnv-pnor.bin
/qemu/pc-bios/skiboot.lid
/qemu/pc-bios/slof.bin
/qemu/plugins/api-system.c
/qemu/plugins/api-user.c
/qemu/plugins/api.c
/qemu/plugins/core.c
/qemu/plugins/loader.c
/qemu/plugins/meson.build
/qemu/plugins/plugin.h
/qemu/plugins/system.c
/qemu/plugins/user.c
/qemu/qapi/qapi-schema.json
/qemu/roms/skiboot
/qemu/scripts/ci/setup/ubuntu/ubuntu-2204-aarch64.yaml
/qemu/scripts/ci/setup/ubuntu/ubuntu-2204-s390x.yaml
/qemu/scripts/qapi/main.py
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/source.py
/qemu/scripts/qcow2-to-stdout.py
/qemu/system/arch_init.c
/qemu/system/dma-helpers.c
/qemu/system/globals-target.c
/qemu/system/meson.build
/qemu/system/qdev-monitor.c
/qemu/system/vl.c
/qemu/target/i386/kvm/hyperv-proto.h
/qemu/target/ppc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/internal.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/machine.c
/qemu/target/ppc/meson.build
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu-radix64.c
/qemu/target/ppc/spr_common.h
/qemu/target/ppc/tcg-excp_helper.c
/qemu/target/ppc/translate.c
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos9.docker
/qemu/tests/docker/dockerfiles/debian-amd64-cross.docker
/qemu/tests/docker/dockerfiles/debian-arm64-cross.docker
/qemu/tests/docker/dockerfiles/debian-armhf-cross.docker
/qemu/tests/docker/dockerfiles/debian-i686-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/debian.docker
/qemu/tests/docker/dockerfiles/fedora-rust-nightly.docker
/qemu/tests/docker/dockerfiles/fedora-win64-cross.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/opensuse-leap.docker
/qemu/tests/docker/dockerfiles/ubuntu2204.docker
/qemu/tests/functional/meson.build
/qemu/tests/functional/qemu_test/__init__.py
/qemu/tests/functional/qemu_test/asset.py
/qemu/tests/functional/qemu_test/config.py
/qemu/tests/functional/qemu_test/testcase.py
/qemu/tests/functional/test_aarch64_rme_sbsaref.py
/qemu/tests/functional/test_aarch64_rme_virt.py
/qemu/tests/functional/test_aarch64_tcg_plugins.py
/qemu/tests/functional/test_aarch64_virt.py
/qemu/tests/functional/test_aarch64_virt_gpu.py
/qemu/tests/functional/test_ppc64_e500.py
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/lcitool/refresh
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/test-qapi.py
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/tests/qsd-migrate
/qemu/tests/qtest/m48t59-test.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/pnv-spi-seeprom-test.c
/qemu/tests/qtest/pnv-xive2-common.h
/qemu/tests/qtest/pnv-xive2-flush-sync.c
/qemu/tests/qtest/pnv-xive2-nvpg_bar.c
/qemu/tests/qtest/pnv-xive2-test.c
/qemu/tests/qtest/rs5c372-test.c
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/arm/Makefile.target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-avx.c
/qemu/tests/tcg/i386/test-i386-adcox.c
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/linux/test-vma.c
/qemu/tests/tcg/plugins/meson.build
/qemu/tests/vm/basevm.py
/qemu/tests/vm/generated/freebsd.json
/qemu/trace/control-target.c
/qemu/trace/meson.build
/qemu/util/aio-posix.c
/qemu/util/aio-posix.h
/qemu/util/async.c
/qemu/util/iov.c
baa41af105-Mar-2025 Li Zhijian <lizhijian@fujitsu.com>

migration: Prioritize RDMA in ram_save_target_page()

Address an error in RDMA-based migration by ensuring RDMA is prioritized
when saving pages in `ram_save_target_page()`.

Previously, the RDMA pro

migration: Prioritize RDMA in ram_save_target_page()

Address an error in RDMA-based migration by ensuring RDMA is prioritized
when saving pages in `ram_save_target_page()`.

Previously, the RDMA protocol's page-saving step was placed after other
protocols due to a refactoring in commit bc38dc2f5f3. This led to migration
failures characterized by unknown control messages and state loading errors
destination:
(qemu) qemu-system-x86_64: Unknown control message QEMU FILE
qemu-system-x86_64: error while loading state section id 1(ram)
qemu-system-x86_64: load of migration failed: Operation not permitted
source:
(qemu) qemu-system-x86_64: RDMA is in an error state waiting migration to abort!
qemu-system-x86_64: failed to save SaveStateEntry with id(name): 1(ram): -1
qemu-system-x86_64: rdma migration: recv polling control error!
qemu-system-x86_64: warning: Early error. Sending error.
qemu-system-x86_64: warning: rdma migration: send polling control error

RDMA migration implemented its own protocol/method to send pages to
destination side, hand over to RDMA first to prevent pages being saved by
other protocol.

Fixes: bc38dc2f5f3 ("migration: refactor ram_save_target_page functions")
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Message-ID: <20250305062825.772629-2-lizhijian@fujitsu.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

094a3dbc27-Feb-2025 Steve Sistare <steven.sistare@oracle.com>

migration: ram block cpr blockers

Unlike cpr-reboot mode, cpr-transfer mode cannot save volatile ram blocks
in the migration stream file and recreate them later, because the physical
memory for the

migration: ram block cpr blockers

Unlike cpr-reboot mode, cpr-transfer mode cannot save volatile ram blocks
in the migration stream file and recreate them later, because the physical
memory for the blocks is pinned and registered for vfio. Add a blocker
for volatile ram blocks.

Also add a blocker for RAM_GUEST_MEMFD. Preserving guest_memfd may be
sufficient for CPR, but it has not been tested yet.

Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-ID: <1740667681-257312-1-git-send-email-steven.sistare@oracle.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>

show more ...

12345678910>>...100