qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-01-10 10:48:04 to 2023-01-10 18:20:50 UTC [more...]

[PATCH 00/26] current maintainer trees (testing/semihosting/plugins)
 2023-01-10 17:39 UTC  (10+ messages)
` [PATCH 04/26] tests/unit: drop hacky race avoidance in test-io-channel-command
` [PATCH 05/26] build-sys: fix crlf-ending C code
` [PATCH 10/26] Update lcitool and fedora to 37
` [PATCH 11/26] lcitool: drop perl from QEMU project/dependencies
` [PATCH 16/26] semihosting: add semihosting section to the docs
` [PATCH 18/26] cpu: free cpu->tb_jmp_cache with RCU
` [PATCH 21/26] util/qht: use striped locks under TSAN
` [PATCH 22/26] plugins: make qemu_plugin_user_exit's locking order consistent with fork_start's
` [PATCH 23/26] plugins: fix optimization in plugin_gen_disable_mem_helpers

[PULL 00/29] Misc patches for 2023-01-10
 2023-01-10 16:02 UTC  (26+ messages)
` [PULL 01/29] configure: fix GLIB_VERSION for cross-compilation
` [PULL 04/29] KVM: keep track of running ioctls
` [PULL 05/29] kvm: Atomic memslot updates
` [PULL 07/29] chardev: clean up chardev-parallel.c
` [PULL 08/29] gitlab: remove redundant setting of PKG_CONFIG_PATH
` [PULL 09/29] disas: add G_GNUC_PRINTF to gstring_printf
` [PULL 10/29] hw/xen: use G_GNUC_PRINTF/SCANF for various functions
` [PULL 11/29] tools/virtiofsd: add G_GNUC_PRINTF for logging functions
` [PULL 12/29] util/error: add G_GNUC_PRINTF for various functions
` [PULL 13/29] tests: "
` [PULL 14/29] enforce use of G_GNUC_PRINTF attributes
` [PULL 15/29] hw/display: avoid creating empty loadable modules
` [PULL 16/29] libvhost-user: Provide _GNU_SOURCE when compiling outside of QEMU
` [PULL 17/29] libvhost-user: Replace typeof with __typeof__
` [PULL 18/29] libvhost-user: Cast rc variable to avoid compiler warning
` [PULL 19/29] libvhost-user: Use unsigned int i for some for-loop iterations
` [PULL 21/29] libvhost-user: Change dev->postcopy_ufd assignment to make it C90 compliant
` [PULL 22/29] libvduse: Provide _GNU_SOURCE when compiling outside of QEMU
` [PULL 23/29] libvduse: Switch to unsigned int for inuse field in struct VduseVirtq
` [PULL 24/29] libvduse: Fix assignment in vring_set_avail_event
` [PULL 25/29] libvhost-user: "
` [PULL 26/29] libvhost-user: Add extra compiler warnings
` [PULL 27/29] libvduse: "
` [PULL 28/29] target/i386: fix operand size of unary SSE operations
` [PULL 29/29] configure: remove backwards-compatibility code

[PATCH v6 00/51] Xen support under KVM
 2023-01-10 17:26 UTC  (71+ messages)
` [PATCH v6 01/51] include: import Xen public headers to include/standard-headers/
` [PATCH v6 02/51] xen: add CONFIG_XENFV_MACHINE and CONFIG_XEN_EMU options for Xen emulation
` [PATCH v6 03/51] xen: Add XEN_DISABLED mode and make it default
` [PATCH v6 04/51] i386/kvm: Add xen-version KVM accelerator property and init KVM Xen support
` [PATCH v6 05/51] i386/kvm: handle Xen HVM cpuid leaves
` [PATCH v6 06/51] i386/hvm: Set Xen vCPU ID in KVM
` [PATCH v6 07/51] xen-platform: exclude vfio-pci from the PCI platform unplug
` [PATCH v6 08/51] xen-platform: allow its creation with XEN_EMULATE mode
` [PATCH v6 09/51] i386/xen: handle guest hypercalls
` [PATCH v6 10/51] i386/xen: implement HYPERVISOR_xen_version
` [PATCH v6 11/51] i386/xen: implement HYPERVISOR_sched_op, SCHEDOP_shutdown
` [PATCH v6 12/51] i386/xen: Implement SCHEDOP_poll and SCHEDOP_yield
` [PATCH v6 13/51] hw/xen: Add xen_overlay device for emulating shared xenheap pages
` [PATCH v6 14/51] i386/xen: add pc_machine_kvm_type to initialize XEN_EMULATE mode
` [PATCH v6 15/51] i386/xen: manage and save/restore Xen guest long_mode setting
` [PATCH v6 16/51] i386/xen: implement HYPERVISOR_memory_op
` [PATCH v6 17/51] i386/xen: implement XENMEM_add_to_physmap_batch
` [PATCH v6 18/51] i386/xen: implement HYPERVISOR_hvm_op
` [PATCH v6 19/51] i386/xen: implement HYPERVISOR_vcpu_op
` [PATCH v6 20/51] i386/xen: handle VCPUOP_register_vcpu_info
` [PATCH v6 21/51] i386/xen: handle VCPUOP_register_vcpu_time_info
` [PATCH v6 22/51] i386/xen: handle VCPUOP_register_runstate_memory_area
` [PATCH v6 23/51] i386/xen: implement HYPERVISOR_event_channel_op
` [PATCH v6 24/51] i386/xen: implement HVMOP_set_evtchn_upcall_vector
` [PATCH v6 25/51] i386/xen: implement HVMOP_set_param
` [PATCH v6 26/51] hw/xen: Add xen_evtchn device for event channel emulation
` [PATCH v6 27/51] i386/xen: Add support for Xen event channel delivery to vCPU
` [PATCH v6 28/51] hw/xen: Implement EVTCHNOP_status
` [PATCH v6 29/51] hw/xen: Implement EVTCHNOP_close
` [PATCH v6 30/51] hw/xen: Implement EVTCHNOP_unmask
` [PATCH v6 31/51] hw/xen: Implement EVTCHNOP_bind_virq
` [PATCH v6 32/51] hw/xen: Implement EVTCHNOP_bind_ipi
` [PATCH v6 33/51] hw/xen: Implement EVTCHNOP_send
` [PATCH v6 34/51] hw/xen: Implement EVTCHNOP_alloc_unbound
` [PATCH v6 35/51] hw/xen: Implement EVTCHNOP_bind_interdomain
` [PATCH v6 36/51] hw/xen: Implement EVTCHNOP_bind_vcpu
` [PATCH v6 37/51] hw/xen: Implement EVTCHNOP_reset
` [PATCH v6 38/51] i386/xen: add monitor commands to test event injection
` [PATCH v6 39/51] hw/xen: Support HVM_PARAM_CALLBACK_TYPE_GSI callback
` [PATCH v6 40/51] hw/xen: Support HVM_PARAM_CALLBACK_TYPE_PCI_INTX callback
` [PATCH v6 41/51] kvm/i386: Add xen-gnttab-max-frames property
` [PATCH v6 42/51] hw/xen: Add xen_gnttab device for grant table emulation
` [PATCH v6 43/51] hw/xen: Support mapping grant frames
` [PATCH v6 44/51] i386/xen: Implement HYPERVISOR_grant_table_op and GNTTABOP_[gs]et_verson
` [PATCH v6 45/51] hw/xen: Implement GNTTABOP_query_size
` [PATCH v6 46/51] i386/xen: handle PV timer hypercalls
` [PATCH v6 47/51] i386/xen: Reserve Xen special pages for console, xenstore rings
` [PATCH v6 48/51] i386/xen: handle HVMOP_get_param
` [PATCH v6 49/51] hw/xen: Add backend implementation of interdomain event channel support
` [PATCH v6 50/51] hw/xen: Add xen_xenstore device for xenstore emulation
` [PATCH v6 51/51] hw/xen: Add basic ring handling to xenstore
` [RFC PATCH v1 00/15] Xen PV backend support for KVM/Xen guests
  ` [RFC PATCH v1 02/15] hw/xen: Add emulated evtchn ops
  ` [RFC PATCH v1 03/15] hw/xen: Add gnttab operations to allow redirection to internal emulation
  ` [RFC PATCH v1 04/15] hw/xen: Pass grant ref to gnttab unmap
  ` [RFC PATCH v1 05/15] hw/xen: Add foreignmem operations to allow redirection to internal emulation
  ` [RFC PATCH v1 06/15] hw/xen: Add xenstore "
  ` [RFC PATCH v1 07/15] hw/xen: Move xenstore_store_pv_console_info to xen_console.c
  ` [RFC PATCH v1 08/15] hw/xen: Use XEN_PAGE_SIZE in PV backend drivers
  ` [RFC PATCH v1 09/15] hw/xen: Rename xen_common.h to xen_native.h
  ` [RFC PATCH v1 10/15] hw/xen: Build PV backend drivers for XENFV_MACHINE
  ` [RFC PATCH v1 11/15] hw/xen: Map guest XENSTORE_PFN grant in emulated Xenstore
  ` [RFC PATCH v1 12/15] hw/xen: Add backend implementation of grant table operations
  ` [RFC PATCH v1 13/15] hw/xen: Implement soft reset for emulated gnttab
  ` [RFC PATCH v1 14/15] hw/xen: Remove old version of Xen headers
  ` [RFC PATCH v1 15/15] i386/xen: Initialize XenBus and legacy backends from pc_init1()

[PATCH 0/2] linux-user: revert previous workaround for glibc >= 2.36
 2023-01-10 17:48 UTC 

[PATCH 00/18] hw/arm: Move various objects to softmmu_ss to build them once (part 1)
 2023-01-10 16:44 UTC  (12+ messages)
` [PATCH 01/18] hw/arm: Move various units to softmmu_ss[]
` [PATCH 02/18] hw/arm/boot: Include missing 'exec/cpu-all.h' header
` [PATCH 03/18] target/arm/cpregs: Include missing 'target/arm/cpu.h' header
` [PATCH 04/18] hw/arm: Use full "target/arm/cpu.h" path to include target's "cpu.h"
` [PATCH 07/18] hw/arm: Move more units to softmmu_ss[]
` [PATCH 08/18] hw/arm: Move units to softmmu[] by replacing "{target -> hw}/arm/cpu.h"
` [PATCH 09/18] hw/arm/armv7m: Remove 'target/arm/cpu.h' from NVIC header
` [PATCH 10/18] hw/arm: Move various armv7m-related units to softmmu_ss[]
` [PATCH 13/18] hw/arm/fsl-imx: Correct GPIO/GPT index in QOM tree
` [PATCH 15/18] hw/arm/fsl-imx31: Replace object_initialize(ARMCPU) by object_new()
` [PATCH 16/18] hw/arm/fsl-imx7: "

[PATCH v2 0/3] python/qemu/machine: fix potential hang in QMP accept
 2023-01-10 17:45 UTC  (6+ messages)

[PATCH qemu v2] x86: don't let decompressed kernel image clobber setup_data
 2023-01-10 17:50 UTC  (5+ messages)
` [PATCH qemu v3] "

[RFC v4 0/3] migration: reduce time of loading non-iterable vmstate
 2023-01-10 14:45 UTC  (8+ messages)
` [RFC v4 2/3] memory: add depth assert in address_space_to_flatview

[PATCH] Makefile: allow 'make uninstall'
 2023-01-10 17:22 UTC  (4+ messages)

[PATCH v4 0/8] Fix win32/msys2 shader compilation & update lcitool deps
 2023-01-10 16:35 UTC  (15+ messages)
` [PATCH v4 1/8] build-sys: fix crlf-ending C code
` [PATCH v4 2/8] .gitlab-ci.d/windows: do not disable opengl
` [PATCH v4 3/8] configure: replace Perl usage with sed
` [PATCH v4 4/8] meson: replace Perl usage with Python
` [PATCH v4 5/8] docs: drop texinfo options
` [PATCH v4 6/8] Update lcitool and fedora to 37
` [PATCH v4 7/8] lcitool: drop perl from QEMU project/dependencies
` [PATCH v4 8/8] lcitool: drop texinfo "

make vm-build-freebsd appears to require . in PATH
 2023-01-10 16:37 UTC  (4+ messages)

[PATCH] block/iscsi: fix double-free on BUSY or similar statuses
 2023-01-10 16:36 UTC 

[PATCH v5 00/14] vfio/migration: Implement VFIO migration protocol v2
 2023-01-10 16:19 UTC  (8+ messages)
` [PATCH v5 10/14] "

[PATCH] Makefile: allow 'make uninstall'
 2023-01-10 15:12 UTC 

[PATCH v2 0/5] tsan fixes
 2023-01-10 15:50 UTC  (3+ messages)

[PATCH v1 0/3] contrib/elf2dmp: Windows Server 2022 support
 2023-01-10 15:41 UTC  (2+ messages)

[RFC PATCH v2 00/19] target/arm: Allow CONFIG_TCG=n builds
 2023-01-10 14:02 UTC  (11+ messages)
` [RFC PATCH v2 07/19] target/arm: Move helper_set_pstate_* into cpregs.c
` [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

[PATCH 0/4] plugin patches to fix #1381
 2023-01-10 15:29 UTC  (9+ messages)
` [PATCH 1/4] plugins: fix optimization in plugin_gen_disable_mem_helpers
` [PATCH 2/4] translator: always pair plugin_gen_insn_{start, end} calls
  ` [PATCH 2/4] translator: always pair plugin_gen_insn_{start,end} calls
` [PATCH 4/4] cpu-exec: assert that plugin_mem_cbs is NULL after execution

[PATCH v2 0/8] QEMU CXL Provide mock CXL events and irq support
 2023-01-10 15:38 UTC  (5+ messages)
` [PATCH v2 8/8] hw/cxl/events: Add in inject general media event

[PATCH 1/1] qemu-iotests/stream-under-throttle: do not shutdown QEMU
 2023-01-10 13:21 UTC  (2+ messages)

[PATCH] tests/qemu-iotests/312: Mark "quorum" as required driver
 2023-01-10 13:04 UTC  (2+ messages)

[PATCH 0/5] migration: Modified 'migrate' QAPI command for migration
 2023-01-10 14:09 UTC  (6+ messages)
` [PATCH 1/5] migration: Updated QAPI format for 'migrate' qemu monitor command

[PATCH 2/2] tpm: add backend for mssim
 2023-01-10 15:00 UTC  (20+ messages)

[PATCH v2] pflash: Only read non-zero parts of backend image
 2023-01-10 14:08 UTC  (2+ messages)

[PULL 0/4] hw/nvme updates
 2023-01-10 14:04 UTC  (3+ messages)

[PATCH v8] xen/pt: reserve PCI slot 2 for Intel igd-passthru
 2023-01-10 13:09 UTC  (3+ messages)

[PATCH v14 00/11] s390x: CPU Topology
 2023-01-10 14:29 UTC  (7+ messages)
` [PATCH v14 01/11] s390x/cpu topology: adding s390 specificities to CPU topology
` [PATCH v14 02/11] s390x/cpu topology: add topology entries on CPU hotplug
` [PATCH v14 03/11] target/s390x/cpu topology: handle STSI(15) and build the SYSIB

[PATCH v4 00/11] iotests: use vm.cmd()
 2023-01-10 13:24 UTC  (6+ messages)
` [PATCH v4 01/11] python: rename QEMUMonitorProtocol.cmd() to cmd_raw()
` [PATCH v4 02/11] python/qemu: rename command() to cmd()

[PATCH] hw/display/xlnx_dp: fix overflow in xlnx_dp_aux_push_tx_fifo()
 2023-01-10 13:57 UTC  (3+ messages)

[PATCH] tests/qemu-iotests/262: Check for availability of "blkverify" first
 2023-01-10 13:18 UTC  (2+ messages)

[RFC PATCH 0/4] qom: Introduce object_class_property_deprecate()
 2023-01-10 13:02 UTC  (2+ messages)

[PATCH] usb-ccid: make ids and descriptor configurable
 2023-01-10 13:18 UTC 

[PATCH v3 0/8] Fix win32/msys2 shader compilation & update lcitool deps
 2023-01-10 12:58 UTC  (5+ messages)

[PATCH 00/14] hw/arm: QOM OBJECT_DECLARE_SIMPLE_TYPE cleanups
 2023-01-10 12:00 UTC  (5+ messages)
` [PATCH 13/14] hw/intc/xilinx_intc: Use 'XpsIntc' typedef instead of 'struct xlx_pic'
` [PATCH 14/14] hw/timer/xilinx_timer: Use XpsTimerState instead of 'struct timerblock'

[PATCH v3 0/6] virtio-mem: Handle preallocation with migration
 2023-01-10 11:52 UTC  (9+ messages)
` [PATCH v3 1/6] migration: Allow immutable device state to be migrated early (i.e., before RAM)

[PATCH v5 00/11] riscv: OpenSBI boot test and cleanups
 2023-01-10 11:43 UTC  (4+ messages)
` [PATCH v5 10/11] hw/riscv/boot.c: consolidate all kernel init in riscv_load_kernel()

[PATCH] mips: always include nanomips disassembler
 2023-01-10 11:29 UTC  (3+ messages)

[PATCH v4 00/12] Compiler warning fixes for libvhost-user,libvduse
 2023-01-10  9:54 UTC  (3+ messages)
  ` [PATCH v4 00/12] Compiler warning fixes for libvhost-user, libvduse

[PATCH] remove unnecessary extern "C" blocks
 2023-01-10 10:53 UTC  (2+ messages)

[PATCH v4] qapi/qmp: Add timestamps to qmp command responses
 2023-01-10 10:32 UTC  (2+ messages)

[PATCH v2 0/5] hw/i2c: Rename TYPE_VERSATILE_I2C -> TYPE_ARM_SBCON_I2C
 2023-01-10  8:25 UTC  (2+ messages)
` [PATCH v2 4/5] hw/i2c/versatile_i2c: Use ARM_SBCON_I2C() macro

[PATCH v6 0/4] Make the mc146818 RTC device target independent
 2023-01-10 10:21 UTC  (2+ messages)


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).