qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-07-02 17:04:57 to 2025-07-03 07:05:58 UTC [more...]

[PATCH v4 00/65] accel: Preparatory cleanups for split-accel
 2025-07-03  7:26 UTC  (82+ messages)
` [PATCH v4 01/65] system/runstate: Document qemu_add_vm_change_state_handler()
` [PATCH v4 02/65] system/cpus: Defer memory layout changes until vCPUs are realized
` [PATCH v4 03/65] system/cpus: Assert interrupt handling is done with BQL locked
` [PATCH v4 04/65] accel: Keep reference to AccelOpsClass in AccelClass
` [PATCH v4 05/65] accel: Introduce AccelOpsClass::cpu_target_realize() hook
` [PATCH v4 06/65] accel/hvf: Add hvf_arch_cpu_realize() stubs
` [PATCH v4 07/65] accel/kvm: Remove kvm_init_cpu_signals() stub
` [PATCH v4 08/65] accel/kvm: Reduce kvm_create_vcpu() declaration scope
` [PATCH v4 09/65] accel: Propagate AccelState to AccelClass::init_machine()
` [PATCH v4 10/65] accel/kvm: Prefer local AccelState over global MachineState::accel
` [PATCH v4 11/65] accel/hvf: Re-use QOM allocated state
` [PATCH v4 12/65] accel/tcg: Prefer local AccelState over global current_accel()
` [PATCH v4 13/65] accel: Directly pass AccelState argument to AccelClass::has_memory()
` [PATCH v4 14/65] accel/kvm: Directly pass KVMState argument to do_kvm_create_vm()
` [PATCH v4 15/65] accel: Remove unused MachineState argument of AccelClass::setup_post()
` [PATCH v4 16/65] accel: Pass AccelState argument to gdbstub_supported_sstep_flags()
` [PATCH v4 17/65] accel: Move supports_guest_debug() declaration to AccelClass
` [PATCH v4 18/65] accel: Move cpus_are_resettable() "
` [PATCH v4 19/65] accel: Move cpu_common_[un]realize() declarations to AccelOpsClass
` [PATCH v4 20/65] accel/system: Convert pre_resume() from AccelOpsClass to AccelClass
` [PATCH v4 21/65] hw/core/machine: Display CPU model name in 'info cpus' command
` [PATCH v4 22/65] qapi: Move definitions related to accelerators in their own file
` [PATCH v4 23/65] accel/system: Introduce @x-accel-stats QMP command
` [PATCH v4 24/65] accel/system: Add 'info accel' on human monitor
` [PATCH v4 25/65] accel/tcg: Factor tcg_dump_flush_info() out
` [PATCH v4 26/65] accel/tcg: Implement get_[vcpu]_stats()
` [PATCH v4 27/65] accel/hvf: Implement get_vcpu_stats()
` [PATCH v4 28/65] accel/hvf: Report missing com.apple.security.hypervisor entitlement
` [PATCH v4 29/65] accel/hvf: Restrict internal declarations
` [PATCH v4 30/65] accel/hvf: Move per-cpu method declarations to hvf-accel-ops.c
` [PATCH v4 31/65] accel/hvf: Move generic method declarations to hvf-all.c
` [PATCH v4 32/65] cpus: Document CPUState::vcpu_dirty field
` [PATCH v4 33/65] accel/hvf: Replace @dirty field by generic "
` [PATCH v4 34/65] accel/nvmm: "
` [PATCH v4 35/65] accel/whpx: "
` [PATCH v4 36/65] accel/kvm: Remove kvm_cpu_synchronize_state() stub
` [PATCH v4 37/65] accel/system: Document cpu_synchronize_state()
` [PATCH v4 38/65] accel/system: Document cpu_synchronize_state_post_init/reset()
` [PATCH v4 39/65] accel/nvmm: Expose nvmm_enabled() to common code
` [PATCH v4 40/65] accel/whpx: Expose whpx_enabled() "
` [PATCH v4 41/65] accel/system: Introduce hwaccel_enabled() helper
` [PATCH v4 42/65] target/arm: Use generic hwaccel_enabled() to check 'host' cpu type
` [PATCH v4 43/65] accel/dummy: Extract 'dummy-cpus.h' header from 'system/cpus.h'
` [PATCH v4 44/65] accel/dummy: Factor dummy_thread_precreate() out
` [PATCH v4 45/65] accel/tcg: Factor tcg_vcpu_thread_precreate() out
` [PATCH v4 46/65] accel: Factor accel_create_vcpu_thread() out
` [PATCH v4 47/65] accel: Introduce AccelOpsClass::cpu_thread_routine handler
` [PATCH v4 48/65] accel/dummy: Convert to AccelOpsClass::cpu_thread_routine
` [PATCH v4 49/65] accel/tcg: "
` [PATCH v4 50/65] accel/hvf: "
` [PATCH v4 51/65] accel/kvm: "
` [PATCH v4 52/65] accel/nvmm: "
` [PATCH v4 53/65] accel/whpx: "
` [PATCH v4 54/65] accel: Factor accel_cpu_realize() out
` [PATCH v4 55/65] accel: Pass old/new interrupt mask to handle_interrupt() handler
` [PATCH v4 56/65] accel: Expose and register generic_handle_interrupt()
` [PATCH v4 57/65] accel: Always register AccelOpsClass::kick_vcpu_thread() handler
` [PATCH v4 58/65] accel: Always register AccelOpsClass::get_elapsed_ticks() handler
` [PATCH v4 59/65] accel: Always register AccelOpsClass::get_virtual_clock() handler
` [PATCH v4 60/65] system/memory: Restrict eventfd dispatch_write() to emulators
` [PATCH v4 61/65] accel/tcg: Factor tcg_vcpu_init() out for re-use
` [PATCH v4 62/65] accel/tcg: Factor mttcg_cpu_exec() "
` [PATCH v4 63/65] accel/tcg: Factor rr_cpu_exec() out
` [PATCH v4 64/65] accel/tcg: Clear exit_request once in tcg_cpu_exec()
` [PATCH v4 65/65] accel/tcg: Unregister the RCU before exiting RR thread

[PATCH 00/16] i386/cpu: Unify the cache model in X86CPUState
 2025-07-03  7:03 UTC  (8+ messages)
` [PATCH 04/16] i386/cpu: Present same cache model in CPUID 0x2 & 0x4
` [PATCH 05/16] i386/cpu: Consolidate CPUID 0x4 leaf
` [PATCH 06/16] i386/cpu: Drop CPUID 0x2 specific cache info in X86CPUState

[PATCH v3 00/68] accel: Preparatory cleanups for split-accel
 2025-07-03  7:14 UTC  (9+ messages)
` [PATCH v3 26/68] accel/tcg: Implement get_[vcpu]_stats()
` [PATCH v3 57/68] accel/tcg: Expose vcpu_[un]register() for MTTCG
` [PATCH v3 67/68] accel: Have each accelerator implement the handle_interrupt() hook

Emulate Tasmota in Qemu
 2025-07-03  4:05 UTC 

[PATCH] meson: Add most 3rd-party includes as system includes
 2025-07-03  6:25 UTC  (2+ messages)

[PATCH] Makefile: prune quilt source files for cscope
 2025-07-03  6:22 UTC  (3+ messages)

[PATCH] b4: Drop linktrailermask
 2025-07-03  6:22 UTC  (5+ messages)

[PATCH V6 00/21] Live update: vfio and iommufd
 2025-07-03  6:22 UTC  (28+ messages)
` [PATCH V6 01/21] vfio-pci: preserve MSI
` [PATCH V6 02/21] vfio-pci: preserve INTx
` [PATCH V6 03/21] migration: close kvm after cpr
` [PATCH V6 04/21] migration: cpr_get_fd_param helper
` [PATCH V6 05/21] backends/iommufd: iommufd_backend_map_file_dma
` [PATCH V6 06/21] backends/iommufd: change process ioctl
` [PATCH V6 07/21] physmem: qemu_ram_get_fd_offset
` [PATCH V6 08/21] vfio/iommufd: use IOMMU_IOAS_MAP_FILE
` [PATCH V6 09/21] vfio/iommufd: invariant device name
` [PATCH V6 10/21] vfio/iommufd: add vfio_device_free_name
` [PATCH V6 11/21] vfio/iommufd: device name blocker
` [PATCH V6 12/21] vfio/iommufd: register container for cpr
` [PATCH V6 13/21] migration: vfio cpr state hook
` [PATCH V6 14/21] vfio/iommufd: cpr state
` [PATCH V6 15/21] vfio/iommufd: preserve descriptors
` [PATCH V6 16/21] vfio/iommufd: reconstruct device
` [PATCH V6 17/21] vfio/iommufd: reconstruct hwpt
` [PATCH V6 18/21] vfio/iommufd: change process
` [PATCH V6 19/21] iommufd: preserve DMA mappings
` [PATCH V6 20/21] vfio/container: delete old cpr register
` [PATCH V6 21/21] vfio: doc changes for cpr

[PATCH v1] aspeed: Deprecate the ast2700a0-evb machine
 2025-07-03  5:24 UTC 

[PATCH v4 00/32] ACPI PCI Hotplug support on ARM
 2025-07-03  5:12 UTC  (5+ messages)
` [PATCH v4 19/32] tests/qtest/bios-tables-test: Update ARM DSDT reference blobs

[PATCH v8 2/2] hw/i386: Add the ramfb romfile compatibility
 2025-07-03  4:54 UTC 

[PULL 00/35] RISCV, i386, endianness fixes for 2025-05-20
 2025-07-03  4:51 UTC  (16+ messages)
` [PULL 35/35] qom: reverse order of instance_post_init calls
  ` [Regression] "

[QEMU PATCH v4 00/10] CXL: FMAPI DCD Management Commands 0x5600-0x5605
 2025-07-03  4:21 UTC  (7+ messages)
` [QEMU PATCH v4 08/10] hw/cxl: create helper function to create DC Event Records from extents
` [QEMU PATCH v4 09/10] cxl-mailbox-utils: 0x5604 - FMAPI Initiate DC Add
` [QEMU PATCH v4 10/10] cxl-mailbox-utils: 0x5605 - FMAPI Initiate DC Release

[PATCH 0/4] TDX: Update the handling of <GetTdVmCallInfo> and implement <SetupEventNotifyInterrupt>
 2025-07-03  2:40 UTC  (5+ messages)
` [PATCH 1/4] i386/tdx: Remove enumeration of GetQuote in tdx_handle_get_tdvmcall_info()
` [PATCH 2/4] update Linux headers to KVM tree master
` [PATCH 3/4] i386/tdx: Set value of <GetTdVmCallInfo> based on capabilities of both KVM and QEMU
` [PATCH 4/4] i386/tdx: handle TDVMCALL_SETUP_EVENT_NOTIFY_INTERRUPT

[PATCH v3 0/9] hw/loongarch: add the advanced extended interrupt controllers (AVECINTC) support
 2025-07-03  2:27 UTC  (6+ messages)
` [PATCH v3 7/9] hw/loongarch: Implement avec set irq

[PATCH v2 00/13] Pegasos2 clean up and pegasos1 emulation
 2025-07-02 22:38 UTC  (14+ messages)
` [PATCH v2 01/13] ppc/vof: Make nextprop behave more like Open Firmware
` [PATCH v2 02/13] hw/ppc/pegasos2: Remove explicit name properties from device tree
` [PATCH v2 03/13] hw/ppc/pegasos2: Change device tree generation
` [PATCH v2 04/13] hw/ppc/pegasos2: Remove fdt pointer from machine state
` [PATCH v2 05/13] hw/ppc/pegasos2: Rename mv field in "
` [PATCH v2 06/13] hw/ppc/pegasos2: Add south bridge pointer in the "
` [PATCH v2 07/13] hw/ppc/pegasos2: Move PCI IRQ routing setup to a function
` [PATCH v2 08/13] hw/ppc/pegasos2: Move hardware specific parts out of machine reset
` [PATCH v2 09/13] hw/ppc/pegasos2: Introduce abstract superclass
` [PATCH v2 10/13] hw/ppc/pegasos2: Add bus frequency to machine state
` [PATCH v2 11/13] hw/boards: Extend DEFINE_MACHINE macro to cover more use cases
` [PATCH v2 12/13] hw/ppc/pegasos2: Add Pegasos I emulation
` [PATCH v2 13/13] hw/ppc/pegasos2: Add VOF support for pegasos1

[PATCH] hw/arm/highbank: Mark the "highbank" and the "midway" machine as deprecated
 2025-07-02 22:21 UTC  (2+ messages)

[PATCH v2 00/14] hw/pci-host/raven clean ups
 2025-07-02 22:09 UTC  (15+ messages)
` [PATCH v2 01/14] hw/pci-host/raven: Simplify PCI facing part
` [PATCH v2 02/14] hw/pci-host/raven: Simplify host bridge type declaration
` [PATCH v2 03/14] hw/pci-host/raven: Use DEFINE_TYPES macro
` [PATCH v2 04/14] hw/pci-host/raven: Simplify PCI bus creation
` [PATCH v2 05/14] hw/pci-host/raven: Simplify PCI interrupt routing
` [PATCH v2 06/14] hw/pci-host/raven: Simplify direct config access address decoding
` [PATCH v2 07/14] hw/pci-host/raven: Rename direct config access ops
` [PATCH v2 08/14] hw/pci-host/raven: Use correct parameter in direct "
` [PATCH v2 09/14] hw/pci-host/raven: Do not use parent object for mmcfg region
` [PATCH v2 10/14] hw/pci-host/raven: Fix PCI config direct access region
` [PATCH v2 11/14] hw/pci-host/raven: Simpify discontiguous IO access
` [PATCH v2 12/14] hw/pci-host/raven: Move bus master address space creation to one place
` [PATCH v2 13/14] hw/pci-host/raven: Do not map regions in init method
` [PATCH v2 14/14] hw/ppc/prep: Fix non-contiguous IO control bit

[PATCH 0/4] Add support for gb200-bmc machine
 2025-07-02 22:04 UTC  (18+ messages)
` [PATCH 1/4] hw/arm: Add PCA9554 to ARM target
` [PATCH 2/4] hw/arm/aspeed: Add second SPI chip to Aspeed model
` [PATCH 4/4] hw/arm/aspeed: Add GB200 BMC target

[PATCH V5 00/38] Live update: vfio and iommufd
 2025-07-02 20:57 UTC  (15+ messages)
` [PATCH V5 19/38] vfio-pci: preserve INTx
` [PATCH V5 20/38] migration: close kvm after cpr
` [PATCH V5 35/38] vfio/iommufd: change process
` [PATCH V5 38/38] vfio: doc changes for cpr

[PATCH v2] tests/functional: test device passthrough on aarch64
 2025-07-02 20:08 UTC  (8+ messages)

[PATCH v4 0/7] Move memory listener register to vhost_vdpa_init
 2025-07-02 19:31 UTC  (11+ messages)

Build platform guarantees, docs, tests, and snakes in the garden
 2025-07-02 19:24 UTC  (5+ messages)

[PATCH preview 0/3] reviving minimal QAPI generation from 2021
 2025-07-02 19:09 UTC  (8+ messages)

[PATCH v3 00/10] target/arm: SME1/SVE2 fixes
 2025-07-02 18:15 UTC  (3+ messages)
` [PATCH v3 06/10] target/arm: Disable FEAT_F64MM if maximum SVE vector size too small

[PATCH v2] target: riscv: Add Svrsw60t59b extension support
 2025-07-02 17:57 UTC  (2+ messages)

[PATCH] hw/mips: Restrict ITU to TCG
 2025-07-02 17:39 UTC  (2+ messages)

[PATCH 0/3] VFIO multifd device state transfer patches for QEMU 10.1
 2025-07-02 17:27 UTC  (4+ messages)
` [PATCH 2/3] vfio/migration: Add x-migration-load-config-after-iter VFIO property

[PULL 0/9] Various fixes for MAINTAINERS, s390x and tests
 2025-07-02 17:02 UTC  (6+ messages)
` [PULL 1/9] MAINTAINERS: update docs file extensions (.txt -> .rst)
` [PULL 3/9] MAINTAINERS: fix VMware filename typo (vwm -> vmw)
` [PULL 5/9] treewide: fix paths for relocated files in comments
` [PULL 6/9] MAINTAINERS: fix paths for relocated files
` [PULL 9/9] tests/functional/test_aarch64_sbsaref_freebsd: Fix the URL of the ISO image


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).