messages from 2022-06-24 07:18:08 to 2022-06-24 15:43:04 UTC [more...]
[PULL v2 00/20] Block layer patches
2022-06-24 15:40 UTC (3+ messages)
` [PULL v2 02/20] block: get rid of blk->guest_block_size
` [PULL v2 04/20] block: improve block_dirty_bitmap_merge(): don't allocate extra bitmap
[PATCH] meson: Prefix each element of firmware path
2022-06-24 15:40 UTC
[PATCH v3 00/51] target/arm: Scalable Matrix Extension
2022-06-24 15:30 UTC (23+ messages)
` [PATCH v3 22/51] target/arm: Trap AdvSIMD usage when Streaming SVE is active
` [PATCH v3 26/51] target/arm: Implement SME LD1, ST1
` [PATCH v3 30/51] target/arm: Implement FMOPA, FMOPS (non-widening)
` [PATCH v3 33/51] target/arm: Implement SME integer outer product
` [PATCH v3 34/51] target/arm: Implement PSEL
` [PATCH v3 35/51] target/arm: Implement REVD
` [PATCH v3 36/51] target/arm: Implement SCLAMP, UCLAMP
` [PATCH v3 37/51] target/arm: Reset streaming sve state on exception boundaries
` [PATCH v3 38/51] target/arm: Enable SME for -cpu max
[PATCH qemu v2] ppc: Define SETFIELD for the ppc target
2022-06-24 15:37 UTC (3+ messages)
[PATCH v3 1/2] hw: canokey: Remove HS support as not compliant to the spec
2022-06-24 15:29 UTC (2+ messages)
` [PATCH v3 2/2] docs/system/devices/canokey: Document limitations on usb-ehci
[PATCH v7 00/18] job: replace AioContext lock with job_mutex
2022-06-24 15:28 UTC (10+ messages)
` [PATCH v7 10/18] jobs: rename static functions called with job_mutex held
[PATCH v8 0/4] cutils: Introduce bundle mechanism
2022-06-24 15:31 UTC (8+ messages)
` [PATCH v8 1/4] tests/vm: do not specify -bios option
` [PATCH v8 2/4] cutils: Introduce bundle mechanism
` [PATCH v8 3/4] datadir: Use "
` [PATCH v8 4/4] module: "
[PATCH v2 1/2] hw: canokey: Remove HS support as not compliant to the spec
2022-06-24 15:26 UTC (2+ messages)
` [PATCH v2 2/2] docs/system/devices/canokey: Document limitations on usb-ehci
[PATCH] This fixes a bug in POSIX-compliant environments. Since we had allocated a buffer named 'tcg-jit' with read-write access protections we need a int type to combine these access flags and return it, whereas we had inexplicably return a bool type. It may cause an unnecessary protection change in tcg_region_init()
2022-06-24 14:57 UTC
[PATCH] tcg: Fix returned type in alloc_code_gen_buffer_splitwx_memfd()
2022-06-24 15:02 UTC
[PATCH v2 00/54] PS2 device QOMification - part 1
2022-06-24 15:12 UTC (66+ messages)
` [PATCH v2 01/54] ps2: checkpatch fixes
` [PATCH v2 02/54] ps2: QOMify PS2State
` [PATCH v2 03/54] ps2: QOMify PS2KbdState
` [PATCH v2 04/54] ps2: QOMify PS2MouseState
` [PATCH v2 05/54] ps2: move QOM type definitions from ps2.c to ps2.h
` [PATCH v2 06/54] ps2: improve function prototypes in ps2.c and ps2.h
` [PATCH v2 07/54] ps2: introduce PS2DeviceClass
` [PATCH v2 08/54] ps2: implement ps2_reset() for the PS2_DEVICE QOM type based upon ps2_common_reset()
` [PATCH v2 09/54] ps2: remove duplicate setting of scancode_set in ps2_kbd_init()
` [PATCH v2 10/54] ps2: implement ps2_kbd_realize() and use it to register ps2_keyboard_handler
` [PATCH v2 11/54] ps2: implement ps2_mouse_realize() and use it to register ps2_mouse_handler
` [PATCH v2 12/54] ps2: don't use vmstate_register() in ps2_kbd_init()
` [PATCH v2 13/54] ps2: don't use vmstate_register() in ps2_mouse_init()
` [PATCH v2 14/54] pl050: checkpatch fixes
` [PATCH v2 15/54] pl050: split pl050_update_irq() into separate pl050_set_irq() and pl050_update_irq() functions
` [PATCH v2 16/54] lasips2: spacing fixes
` [PATCH v2 17/54] lasips2: rename ps2dev_update_irq() to lasips2_port_set_irq()
` [PATCH v2 18/54] pckbd: checkpatch fixes
` [PATCH v2 19/54] pckbd: move KBDState from pckbd.c to i8042.h
` [PATCH v2 20/54] pckbd: move ISAKBDState "
` [PATCH v2 21/54] pckbd: introduce new I8042_MMIO QOM type
` [PATCH v2 22/54] pckbd: implement i8042_mmio_reset() for I8042_MMIO device
` [PATCH v2 23/54] pckbd: add mask qdev property to "
` [PATCH v2 24/54] pckbd: add size "
` [PATCH v2 25/54] pckbd: implement i8042_mmio_realize() function
` [PATCH v2 26/54] pckbd: implement i8042_mmio_init() function
` [PATCH v2 27/54] pckbd: alter i8042_mm_init() to return a I8042_MMIO device
` [PATCH v2 28/54] pckbd: move mapping of I8042_MMIO registers to MIPS magnum machine
` [PATCH v2 29/54] pckbd: more vmstate_register() from i8042_mm_init() to i8042_mmio_realize()
` [PATCH v2 30/54] pckbd: move ps2_kbd_init() and ps2_mouse_init() "
` [PATCH v2 31/54] ps2: make ps2_raise_irq() function static
` [PATCH v2 32/54] ps2: use ps2_raise_irq() instead of calling update_irq() directly
` [PATCH v2 33/54] ps2: introduce ps2_lower_irq() "
` [PATCH v2 34/54] ps2: add gpio for output IRQ and optionally use it in ps2_raise_irq() and ps2_lower_irq()
` [PATCH v2 35/54] pckbd: replace irq_kbd and irq_mouse with qemu_irq array in KBDState
` [PATCH v2 36/54] pl050: switch over from update_irq() function to PS2 device gpio
` [PATCH v2 37/54] pl050: add QEMU interface comment
` [PATCH v2 38/54] lasips2: QOMify LASIPS2State
` [PATCH v2 39/54] lasips2: move lasips2 QOM types from lasips2.c to lasips2.h
` [PATCH v2 40/54] lasips2: rename lasips2_init() to lasips2_initfn() and update it to return the LASIPS2 device
` [PATCH v2 41/54] lasips2: implement lasips2_init() function
` [PATCH v2 42/54] lasips2: move mapping of LASIPS2 registers to HPPA machine
` [PATCH v2 43/54] lasips2: move initialisation of PS2 ports from lasi_initfn() to lasi_init()
` [PATCH v2 44/54] lasips2: add base property
` [PATCH v2 45/54] lasips2: implement lasips2_realize()
` [PATCH v2 46/54] lasips2: use sysbus IRQ for output IRQ
` [PATCH v2 47/54] lasips2: switch over from update_irq() function to PS2 device gpio
` [PATCH v2 48/54] lasips2: add QEMU interface comment
` [PATCH v2 49/54] pckbd: switch I8042_MMIO device from update_irq() function to PS2 device gpio
` [PATCH v2 50/54] pckbd: add QEMU interface comment for I8042_MMIO device
` [PATCH v2 51/54] pckbd: add i8042_reset() function to I8042 device
` [PATCH v2 52/54] pckbd: switch I8042 device from update_irq() function to PS2 device gpio
` [PATCH v2 53/54] pckbd: add QEMU interface comment for I8042 device
` [PATCH v2 54/54] ps2: remove update_irq() function and update_arg parameter
[PATCH] msi: fix MSI vector limit check in msi_set_mask()
2022-06-24 15:10 UTC (2+ messages)
[PATCH] build: Do not depend on pc-bios for config-host.mak
2022-06-24 15:06 UTC (2+ messages)
[PATCH] qga: Relocate a path emitted in the help text
2022-06-24 15:07 UTC (2+ messages)
[PATCH 0/4] hmat acpi: Don't require initiator value in -numa
2022-06-24 15:04 UTC (2+ messages)
[PATCH v11 0/2] arm/virt: CXL support via pxb_cxl
2022-06-24 15:01 UTC (11+ messages)
` [PATCH v11 1/2] hw/arm/virt: Basic CXL enablement on pci_expander_bridge instances pxb-cxl
` [PATCH v11 2/2] qtest/cxl: Add aarch64 virt test for CXL
[PATCH] hw/net/rocker: avoid NULL pointer dereference in of_dpa_cmd_add_l2_flood
2022-06-24 14:39 UTC
[PATCH v2 0/8] aspeed: Add multi-SoC machine
2022-06-24 14:00 UTC (5+ messages)
` [PATCH v2 1/8] aspeed: Set CPU memory property explicitly
[PATCH v3 00/12] powernv: introduce pnv-phb base/proxy devices
2022-06-24 13:44 UTC (14+ messages)
` [PATCH v3 01/12] ppc/pnv: add PHB3 bus init helper
` [PATCH v3 02/12] ppc/pnv: add PnvPHB base/proxy device
` [PATCH v3 03/12] ppc/pnv: turn PnvPHB3 into a PnvPHB backend
` [PATCH v3 04/12] ppc/pnv: add PHB4 bus init helper
` [PATCH v3 05/12] ppc/pnv: turn PnvPHB4 into a PnvPHB backend
` [PATCH v3 06/12] ppc/pnv: add pnv-phb-root-port device
` [PATCH v3 07/12] ppc/pnv: remove pnv-phb3-root-port
` [PATCH v3 08/12] ppc/pnv: remove pnv-phb4-root-port
` [PATCH v3 09/12] ppc/pnv: remove root port name from pnv_phb_attach_root_port()
` [PATCH v3 10/12] ppc/pnv: remove pecc->rp_model
` [PATCH v3 11/12] ppc/pnv: remove PnvPHB4.version
` [PATCH v3 12/12] ppc/pnv: move attach_root_port helper to pnv-phb.c
[PATCH 00/50] PS2 device QOMification - part 1
2022-06-24 13:32 UTC (13+ messages)
` [PATCH 27/50] pckbd: alter i8042_mm_init() to return a I8042_MMIO device
` [PATCH 45/50] lasips2: use qdev gpio for output IRQ
[PATCH 0/3] ppc: Check for bad Radix configs
2022-06-24 13:22 UTC (9+ messages)
` [PATCH 2/3] target/ppc: Improve Radix xlate level validation
` [PATCH 3/3] target/ppc: Check page dir/table base alignment
[PATCH v2 0/2] vhost: implement VHOST_SET_VRING_ERR
2022-06-24 13:11 UTC (5+ messages)
` [PATCH v2 1/2] vhost: add method vhost_set_vring_err
` [PATCH v2 2/2] vhost: setup error eventfd and dump errors
[PATCH v6 0/8] KVM: mm: fd-based approach for supporting KVM guest private memory
2022-06-24 13:01 UTC (13+ messages)
` [PATCH v6 4/8] KVM: Extend the memslot to support fd-based "
` [PATCH v6 6/8] KVM: Handle page fault for "
` [PATCH v6 7/8] KVM: Enable and expose KVM_MEM_PRIVATE
Options to get started DAC - Design Automation Conference 2022
2022-06-24 13:07 UTC
Options to get started DAC - Design Automation Conference 2022
2022-06-24 13:02 UTC
[PATCH qemu v3] ppc/spapr: Implement H_WATCHDOG
2022-06-24 12:48 UTC (2+ messages)
[PATCH qemu] spapr/ddw: Implement 64bit query extension
2022-06-24 12:46 UTC (2+ messages)
[PATCH qemu v2] spapr/ddw: Reset DMA when the last non-default window is removed
2022-06-24 12:42 UTC (2+ messages)
[PATCH 0/2] Make local migration with TAP network device possible
2022-06-24 11:45 UTC (8+ messages)
` [PATCH 1/2] chardev: don't set O_NONBLOCK on SCM_RIGHTS file descriptors
[PATCH] Updating gdbstub to allow safe multithreading in usermode emulation
2022-06-24 10:37 UTC (2+ messages)
[PATCH 0/2] Fix booting from non-DASD disks with sector size of 4096
2022-06-24 10:00 UTC (5+ messages)
` [PATCH 1/2] pc-bios/s390-ccw/virtio-blkdev: Simplify/fix virtio_ipl_disk_is_valid()
` [PATCH 2/2] pc-bios/s390-ccw/virtio-blkdev: Remove virtio_assume_scsi()
[PULL 0/3] Linux user for 7.1 patches
2022-06-24 9:49 UTC (4+ messages)
` [PULL 1/3] linux-user/x86_64: Fix ELF_PLATFORM
` [PULL 2/3] linux-user: Add partial support for MADV_DONTNEED
` [PULL 3/3] linux-user: Adjust child_tidptr on set_tid_address() syscall
[RFC PATCH v4 00/11] qapi: net: add unix socket type support to netdev backend
2022-06-24 9:53 UTC (6+ messages)
` [RFC PATCH v4 03/11] qapi: net: introduce a way to bypass qemu_opts_parse_noisily()
` [RFC PATCH v4 04/11] qapi: net: add stream and dgram netdevs
[PATCH] virtio-iommu: Fix migration regression
2022-06-24 9:37 UTC
[PATCH v4 00/53] semihosting cleanup
2022-06-24 9:07 UTC (24+ messages)
` [PATCH v4 34/53] semihosting: Split out semihost_sys_flen
` [PATCH v4 35/53] semihosting: Split out semihost_sys_remove
` [PATCH v4 36/53] semihosting: Split out semihost_sys_rename
` [PATCH v4 37/53] semihosting: Split out semihost_sys_system
` [PATCH v4 38/53] semihosting: Create semihost_sys_{stat,fstat}
` [PATCH v4 39/53] semihosting: Create semihost_sys_gettimeofday
` [PATCH v4 40/53] gdbstub: Adjust gdb_syscall_complete_cb declaration
` [PATCH v4 41/53] semihosting: Fix docs comment for qemu_semihosting_console_inc
` [PATCH v4 42/53] semihosting: Pass CPUState to qemu_semihosting_console_inc
` [PATCH v4 43/53] semihosting: Expand qemu_semihosting_console_inc to read
` [PATCH v4 44/53] semihosting: Cleanup chardev init
[PATCH kvm-unit-tests] MAINTAINERS: Change drew's email address
2022-06-24 8:55 UTC (2+ messages)
[PULL 00/14] (Mostly) build system changes for 2022-06-24
2022-06-24 8:27 UTC (15+ messages)
` [PULL 01/14] tests/vm: do not specify -bios option
` [PULL 02/14] pc-bios/optionrom: use -m16 unconditionally
` [PULL 03/14] configure, pc-bios/optionrom: pass cross CFLAGS correctly
` [PULL 04/14] configure, pc-bios/s390-ccw: "
` [PULL 05/14] configure, pc-bios/vof: "
` [PULL 06/14] configure: allow more host/target combos to use the host compiler
` [PULL 07/14] configure: write EXTRA_CFLAGS for all sub-Makefiles
` [PULL 08/14] tests/tcg: compile system emulation tests as freestanding
` [PULL 09/14] build: try both native and cross compilers for linux-user tests
` [PULL 10/14] build: improve -fsanitize-coverage-allowlist check
` [PULL 11/14] fuzz: only use generic-fuzz targets on oss-fuzz
` [PULL 12/14] audio/dbus: fix building
` [PULL 13/14] meson.build: Require a recent version of libpng
` [PULL 14/14] accel: kvm: Fix memory leak in find_stats_descriptors
[PATCH 0/3] Add bypass mode support to assigned device
2022-06-24 8:28 UTC (6+ messages)
` [PATCH 1/3] virtio-iommu: "
[PULL 00/14] (Mostly) build system changes for 2022-06-24
2022-06-24 8:27 UTC
[PATCH v3 1/2] hw/pci-host/pam.c: Fully support RE^WE semantics of i440FX PAM
2022-06-24 8:19 UTC (2+ messages)
` [PATCH v3 2/2] tests/qtest/i440fx-test.c: Enable full test of i440FX PAM operation
[PATCH] meson.build: Require a recent version of libpng
2022-06-24 8:19 UTC (2+ messages)
[PATCH] accel: kvm: Fix memory leak in find_stats_descriptors
2022-06-24 8:19 UTC (2+ messages)
[PATCH] audio/dbus: fix building
2022-06-24 8:17 UTC (2+ messages)
[PATCH v2] fuzz: only use generic-fuzz targets on oss-fuzz
2022-06-24 8:16 UTC (2+ messages)
[PATCH 0/9] Add Qualcomm BMC machines
2022-06-24 7:32 UTC (5+ messages)
` [PATCH 4/9] hw/arm/aspeed: add Qualcomm Firework machine and FRU device
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).