qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-02-13 02:31:32 to 2023-02-13 10:56:55 UTC [more...]

[RFC PATCH 0/3] qdev: Introduce QDEV_DECLARE_DEV_BUS_TYPES() macro
 2023-02-13 10:56 UTC  (2+ messages)
` [RFC PATCH 3/3] hw/usb: Use USB_DEVICE_GET_BUS() macro

[PATCH v2 0/9] hw/qdev: Housekeeping around qdev_get_parent_bus()
 2023-02-13 10:53 UTC  (15+ messages)
` [PATCH v2 1/9] hw/qdev: Constify DeviceState* argument of qdev_get_parent_bus()
` [PATCH v2 2/9] hw/audio: Replace dev->parent_bus by qdev_get_parent_bus(dev)
` [PATCH v2 3/9] hw/block: "
` [PATCH v2 4/9] hw/net: "
` [PATCH v2 5/9] hw/pci: "
` [PATCH v2 6/9] hw/ppc: "
` [PATCH v2 7/9] hw/usb: "
` [PATCH v2 8/9] hw: Use qdev_get_parent_bus() in qdev_get_own_fw_dev_path_from_handler()
` [PATCH v2 9/9] qdev-monitor: Use qdev_get_parent_bus() in bus_print_dev()

[PATCH 0/3] TSA: make sure QEMU compiles when using clang TSA
 2023-02-13 10:44 UTC  (2+ messages)

[PATCH 1/1] block: improve error logging in bdrv_reopen_prepare()
 2023-02-13 10:31 UTC 

[PATCH] target/riscv: Fix vslide1up.vf and vslide1down.vf
 2023-02-13 10:29 UTC  (2+ messages)

[RFC 00/52] Introduce hybrid CPU topology
 2023-02-13 10:16 UTC  (56+ messages)
` [RFC 01/52] hw/smbios: Fix smbios_smp_sockets caculation
` [RFC 02/52] hw/smbios: Fix thread count in type4
` [RFC 03/52] hw/smbios: Fix core "
` [RFC 04/52] i386/WHPX: Fix error message when fail to set ProcessorCount
` [RFC 05/52] hw/core/machine: Rename machine-smp.c to machine-topo.c
` [RFC 06/52] hw/cpu: Introduce hybrid CPU topology
` [RFC 07/52] hw/core/machine: Add the new topology support in MachineState
` [RFC 08/52] machine: Add helpers to get cpu topology info from MachineState.topo
` [RFC 09/52] hw/machine: Introduce core type for hybrid topology
` [RFC 10/52] machine: Replace MachineState.topo.smp access with topology helpers
` [RFC 11/52] accel/kvm: Add hybrid info when check cpu num
` [RFC 12/52] hw/acpi: Replace MachineState.smp access with topology helpers
` [RFC 13/52] cpu/core: Use generic topology helper for "help" to set nr_threads
` [RFC 14/52] hw/smbios: Use generic topology name and helper
` [RFC 15/52] migration/postcopy-ram: "
` [RFC 16/52] plugins: "
` [RFC 17/52] softmmu/cpus: Use generic topology helper in vcpus initialization
` [RFC 18/52] general: Replace MachineState.smp access with topology helpers
` [RFC 19/52] i386: "
` [RFC 20/52] s390x: "
` [RFC 21/52] ppc: "
` [RFC 22/52] riscv: "
` [RFC 23/52] arm: "
` [RFC 24/52] loongarch: "
` [RFC 25/52] mips: "
` [RFC 26/52] hw: Replace MachineState.smp access with topology helpers for all remaining archs
` [RFC 27/52] test/test-smp-parse: Check fields of MachineState.topo.smp
` [RFC 28/52] hw/core/machine: Remove support of MachineState.smp
` [RFC 29/52] hw/core/cpu: Introduce TopologyState in CPUState
` [RFC 30/52] i386: Drop nr_dies and nr_modules CPUX86State
` [RFC 31/52] i386/cpu: Use CPUState.topo to replace X86CPUTopoInfo to get topology info
` [RFC 32/52] i386: Rename X86CPUTopoInfo and its members to reflect relationship with APIC ID
` [RFC 33/52] i386: Rename init_topo_info() to init_apic_topo_info()
` [RFC 34/52] i386: Rename variable topo_info to apicid_topo
` [RFC 35/52] i386: Support APIC ID topology for hybrid CPU topology
` [RFC 36/52] i386: Use init_apicid_topo_info() to initialize APIC ID topology for system emulator
` [RFC 37/52] i386: Update X86CPUTopoIDs generating rule for hybrid topology
` [RFC 38/52] i386: Introduce hybrid_core_type to CPUX86State
` [RFC 39/52] i386/cpu: Add Intel hybrid related CPUID support
` [RFC 40/52] qapi: Introduce hybrid options
` [RFC 41/52] machine: Introduce core_type() hook
` [RFC 42/52] hw/machine: Add hybrid_supported in generic topo properties
` [RFC 43/52] hw/machine: Rename MachineClass.smp_props to MachineClass.topo_props
` [RFC 44/52] machine: Add "-hybrid" parsing rule
` [RFC 45/52] hw/machine: Add hybrid cpu topology validation
` [RFC 46/52] hw/machine: build core level hybrid topology form HybridCorePack
` [RFC 47/52] hw/machine: Use opts_visitor to parse hybrid topo
` [RFC 48/52] machine: Support "-hybrid" command
` [RFC 49/52] i386/pc: Support hybrid cpu topology
` [RFC 50/52] qemu-options: Add the document of hybrid command
` [RFC 51/52] qapi: Expose CPU topology info in query_cpus_fast
` [RFC 52/52] i386: Support cpu_index_to_core_type() for x86

[PATCH v2 00/19] hw: Use QOM macros and remove DO_UPCAST() uses
 2023-02-13 10:12 UTC  (27+ messages)
` [PATCH v2 01/19] hw/char/serial-pci: Replace DO_UPCAST(PCISerialState) by PCI_SERIAL()
` [PATCH v2 02/19] hw/char/serial-pci-multi: Batch register types using DEFINE_TYPES macro
` [PATCH v2 03/19] hw/char/serial-pci-multi: Introduce PCI_MULTISERIAL QOM abstract parent
` [PATCH v2 04/19] hw/char/serial-pci-multi: Factor multi_serial_class_initfn() out
` [PATCH v2 05/19] hw/char/serial-pci-multi: Replace DO_UPCAST() by PCI_MULTISERIAL()
` [PATCH v2 06/19] hw/ide/qdev: Replace DO_UPCAST(IDEDevice) by IDE_DEVICE()
` [PATCH v2 07/19] hw/ide/qdev: Replace DO_UPCAST(IDEBus) by IDE_BUS()
` [PATCH v2 08/19] hw/net/eepro100: Introduce TYPE_EEPRO100 QOM abstract parent
` [PATCH v2 09/19] hw/net/eepro100: Replace DO_UPCAST(EEPRO100State) by EEPRO100()
` [PATCH v2 10/19] hw/net/ne2000-pci: Replace DO_UPCAST(PCINE2000State) by PCI_NE2000()
` [PATCH v2 11/19] hw/net/tulip: Finish QOM conversion
` [PATCH v2 12/19] hw/pci/pci: Replace DO_UPCAST(PCIBus) by PCI_BUS()
` [PATCH v2 13/19] hw/scsi/scsi-bus: Replace DO_UPCAST(SCSIBus) by SCSI_BUS()
` [PATCH v2 14/19] hw/scsi/scsi-bus: Inline two uses of scsi_bus_from_device()
` [PATCH v2 15/19] hw/s390x/event-facility: Replace DO_UPCAST(SCLPEvent) by SCLP_EVENT()
` [PATCH v2 16/19] hw/vfio/ccw: Replace DO_UPCAST(VFIOCCWDevice) by VFIO_CCW()
` [PATCH v2 17/19] hw/usb/dev-hub: Use QOM USB_HUB() macro instead of casting
` [PATCH v2 18/19] hw/usb: Replace DO_UPCAST(USBBus) by USB_BUS()
` [RFC PATCH v2 19/19] hw/usb: Inline usb_bus_from_device()

[PATCH v2 0/7] hw/net/eepro100: Finish QDev conversion
 2023-02-13 10:10 UTC  (8+ messages)
` [PATCH v2 1/7] hw/net/eepro100: Abort if pci_add_capability() ever fail
` [PATCH v2 2/7] hw/net/eepro100: Introduce TYPE_EEPRO100 QOM abstract parent
` [PATCH v2 3/7] hw/net/eepro100: Convert reset handler to DeviceReset
` [PATCH v2 4/7] hw/net/eepro100: Pass E100PCIDeviceInfo as class init data
` [PATCH v2 5/7] hw/net/eepro100: Remove instance EEPRO100State::has_extended_tcb_support
` [PATCH v2 6/7] hw/net/eepro100: Remove instance's EEPRO100State::device
` [PATCH v2 7/7] hw/net/eepro100: Replace DO_UPCAST(EEPRO100State) by EEPRO100()

[RFC v2 00/13] Dinamycally switch to vhost shadow virtqueues at vdpa net migration
 2023-02-13  9:47 UTC  (6+ messages)
` [RFC v2 11/13] vdpa: add vdpa net migration state notifier

[PATCH] target/i386/gdbstub: Fix a bug about order of FPU stack in 'g' packets
 2023-02-13  9:38 UTC  (3+ messages)
` [PATCH v2] [PING^3] "

[PATCH RESEND 00/18] Support smp.clusters for x86
 2023-02-13  9:36 UTC  (19+ messages)
` [PATCH RESEND 01/18] machine: Fix comment of machine_parse_smp_config()
` [PATCH RESEND 02/18] tests: Rename test-x86-cpuid.c to test-x86-apicid.c
` [PATCH RESEND 03/18] softmmu: Fix CPUSTATE.nr_cores' calculation
` [PATCH RESEND 04/18] i386/cpu: Fix number of addressable IDs in CPUID.04H
` [PATCH RESEND 05/18] i386/cpu: Consolidate the use of topo_info in cpu_x86_cpuid()
` [PATCH RESEND 06/18] i386: Introduce module-level cpu topology to CPUX86State
` [PATCH RESEND 07/18] i386: Support modules_per_die in X86CPUTopoInfo
` [PATCH RESEND 08/18] i386: Support module_id in X86CPUTopoIDs
` [PATCH RESEND 09/18] i386: Fix comment style in topology.h
` [PATCH RESEND 10/18] i386: Update APIC ID parsing rule to support module level
` [PATCH RESEND 11/18] i386/cpu: Introduce cluster-id to X86CPU
` [PATCH RESEND 12/18] tests: Add test case of APIC ID for module level parsing
` [PATCH RESEND 13/18] hw/i386/pc: Support smp.clusters for x86 PC machine
` [PATCH RESEND 14/18] i386: Add cache topology info in CPUCacheInfo
` [PATCH RESEND 15/18] i386: Use CPUCacheInfo.share_level to encode CPUID[4].EAX[bits 25:14]
` [PATCH RESEND 16/18] i386: Fix NumSharingCache for CPUID[0x8000001D].EAX[bits 25:14]
` [PATCH RESEND 17/18] i386: Use CPUCacheInfo.share_level to encode "
` [PATCH RESEND 18/18] i386: Add new property to control L2 cache topo in CPUID.04H

[PATCH v3 00/15] pci hotplug tracking
 2023-02-13  9:30 UTC  (5+ messages)
` [PATCH v3 14/15] qapi: introduce DEVICE_ON event

[RFC PATCH 0/1] QEMU: Dirty quota-based throttling of vcpus
 2023-02-13  9:17 UTC  (5+ messages)
` [RFC PATCH 1/1] "

[PATCH v5 0/3] Eliminate multifd flush
 2023-02-13  9:15 UTC  (4+ messages)
` [PATCH v5 1/3] multifd: Create property multifd-sync-after-each-section
` [PATCH v5 2/3] multifd: Protect multifd_send_sync_main() calls
` [PATCH v5 3/3] multifd: Only sync once each full round of memory

[PATCH v5 0/8] Eliminate multifd flush
 2023-02-13  9:02 UTC  (8+ messages)
` [PATCH v5 1/8] migration/multifd: Change multifd_load_cleanup() signature and usage
` [PATCH v5 2/8] migration/multifd: Remove unnecessary assignment on multifd_load_cleanup()
` [PATCH v5 3/8] migration/multifd: Join all multifd threads in order to avoid leaks
` [PATCH v5 4/8] migration/multifd: Move load_cleanup inside incoming_state_destroy
` [PATCH v5 5/8] ram: Document migration ram flags
` [PATCH v5 6/8] multifd: Create property multifd-sync-after-each-section

[PATCH v2] vhost: avoid a potential use of an uninitialized variable in vhost_svq_poll()
 2023-02-13  8:57 UTC 

[RFC PATCH 00/43] Add LoongArch LSX instructions
 2023-02-13  8:24 UTC  (4+ messages)
` [RFC PATCH 01/43] target/loongarch: Add vector data type vec_t

[PATCH 0/4] win32: do not mix SOCKET and fd space
 2023-02-13  8:04 UTC  (5+ messages)
` [PATCH 1/4] tests: use closesocket()
` [PATCH 2/4] io: "

[PATCH v1] Adding new machine Yosemitev2 in QEMU
 2023-02-13  8:03 UTC  (2+ messages)

[PATCH v1] Adding new machine Tiogapass in QEMU
 2023-02-13  7:54 UTC  (2+ messages)

[PATCH v2 00/13] Dynamycally switch to vhost shadow virtqueues at vdpa net migration
 2023-02-13  6:50 UTC  (7+ messages)
` [PATCH v2 01/13] vdpa net: move iova tree creation from init to start
` [PATCH v2 07/13] vdpa: add vdpa net migration state notifier
` [PATCH v2 09/13] vdpa net: block migration if the device has CVQ

[PATCH] target/riscv: Smepmp: Skip applying default rules when address matches
 2023-02-13  5:42 UTC  (4+ messages)

[PULL 00/11] Net patches
 2023-02-13  3:59 UTC  (6+ messages)

[PATCH v1 RFC Zisslpcfi 1/9] target/riscv: adding zimops and zisslpcfi extension to RISCV cpu config
 2023-02-13  3:21 UTC  (6+ messages)
` [PATCH v1 RFC Zisslpcfi 2/9] target/riscv: zisslpcfi CSR, bit positions and other definitions

[PATCH v5 0/3] Eliminate multifd flush
 2023-02-13  2:57 UTC  (2+ messages)
` [PATCH v5 1/3] multifd: Create property multifd-sync-after-each-section

[PATCH v5 0/3] Eliminate multifd flush
 2023-02-13  2:57 UTC  (2+ messages)
` [PATCH v5 1/3] multifd: Create property multifd-sync-after-each-section

[PULL 00/22] Migration 20230213 patches
 2023-02-13  2:51 UTC  (23+ messages)
` [PULL 01/22] migration: Remove spurious files
` [PULL 02/22] multifd: cleanup the function multifd_channel_connect
` [PULL 03/22] multifd: Remove some redundant code
` [PULL 04/22] linux-headers: Update to v6.1
` [PULL 05/22] util/userfaultfd: Support /dev/userfaultfd
` [PULL 06/22] migration: Simplify ram_find_and_save_block()
` [PULL 07/22] migration: Make find_dirty_block() return a single parameter
` [PULL 08/22] migration: Split ram_bytes_total_common() in two functions
` [PULL 09/22] migration: Calculate ram size once
` [PULL 10/22] migration: Make ram_save_target_page() a pointer
` [PULL 11/22] migration: I messed state_pending_exact/estimate
` [PULL 12/22] AVX512 support for xbzrle_encode_buffer
` [PULL 13/22] Update bench-code for addressing CI problem
` [PULL 14/22] migration: Rework multi-channel checks on URI
` [PULL 15/22] migration: Cleanup postcopy_preempt_setup()
` [PULL 16/22] migration: Add a semaphore to count PONGs
` [PULL 17/22] migration: Postpone postcopy preempt channel to be after main
` [PULL 18/22] migration/multifd: Change multifd_load_cleanup() signature and usage
` [PULL 19/22] migration/multifd: Remove unnecessary assignment on multifd_load_cleanup()
` [PULL 20/22] migration/multifd: Join all multifd threads in order to avoid leaks
` [PULL 21/22] migration/multifd: Move load_cleanup inside incoming_state_destroy
` [PULL 22/22] ram: Document migration ram flags

[PULL 00/22] Migration 20230213 patches
 2023-02-13  2:43 UTC  (12+ messages)
` [PULL 06/22] migration: Simplify ram_find_and_save_block()
` [PULL 07/22] migration: Make find_dirty_block() return a single parameter
` [PULL 09/22] migration: Calculate ram size once
` [PULL 10/22] migration: Make ram_save_target_page() a pointer
` [PULL 11/22] migration: I messed state_pending_exact/estimate
` [PULL 12/22] AVX512 support for xbzrle_encode_buffer
` [PULL 14/22] migration: Rework multi-channel checks on URI
` [PULL 17/22] migration: Postpone postcopy preempt channel to be after main
` [PULL 18/22] migration/multifd: Change multifd_load_cleanup() signature and usage
` [PULL 19/22] migration/multifd: Remove unnecessary assignment on multifd_load_cleanup()


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