qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-10-19 15:03:01 to 2021-10-20 03:32:17 UTC [more...]

[PATCH v6 00/15] target/riscv: Rationalize XLEN and operand length
 2021-10-20  3:17 UTC  (13+ messages)
` [PATCH v6 01/15] target/riscv: Move cpu_get_tb_cpu_state out of line
` [PATCH v6 02/15] target/riscv: Create RISCVMXL enumeration
` [PATCH v6 03/15] target/riscv: Split misa.mxl and misa.ext
` [PATCH v6 05/15] target/riscv: Add MXL/SXL/UXL to TB_FLAGS
` [PATCH v6 06/15] target/riscv: Use REQUIRE_64BIT in amo_check64
` [PATCH v6 07/15] target/riscv: Properly check SEW in amo_op
` [PATCH v6 08/15] target/riscv: Replace is_32bit with get_xl/get_xlen
` [PATCH v6 09/15] target/riscv: Replace DisasContext.w with DisasContext.ol
` [PATCH v6 10/15] target/riscv: Use gen_arith_per_ol for RVM
` [PATCH v6 11/15] target/riscv: Adjust trans_rev8_32 for riscv64
` [PATCH v6 12/15] target/riscv: Use gen_unary_per_ol for RVB
` [PATCH v6 14/15] target/riscv: Use riscv_csrrw_debug for cpu_dump

[PATCH V3] net/colo: check vnet_hdr_support flag when using virtio-net
 2021-10-20  3:13 UTC  (4+ messages)

[PATCH v4 1/8] target/riscv: zfh: half-precision load and store
 2021-10-20  3:06 UTC  (8+ messages)
` [PATCH v4 2/8] target/riscv: zfh: half-precision computational
` [PATCH v4 3/8] target/riscv: zfh: half-precision convert and move
` [PATCH v4 4/8] target/riscv: zfh: half-precision floating-point compare
` [PATCH v4 5/8] target/riscv: zfh: half-precision floating-point classify
` [PATCH v4 6/8] target/riscv: zfh: add Zfh cpu property
` [PATCH v4 7/8] target/riscv: zfh: implement zfhmin extension
` [PATCH v4 8/8] target/riscv: zfh: add Zfhmin cpu property

[PATCH v4 0/2] add APIs to handle alternative sNaN propagation for fmax/fmin
 2021-10-20  2:56 UTC  (3+ messages)
` [PATCH v4 2/2] target/riscv: change the api for RVF/RVD fmin/fmax

[PATCH V4 00/10] vhost-vDPA multiqueue
 2021-10-20  2:50 UTC  (4+ messages)
` [PATCH V4 03/10] vhost-vdpa: prepare for the multiqueue support

[PATCH v9 00/10] vhost-vdpa: add support for configure interrupt
 2021-10-20  2:31 UTC  (6+ messages)
` [PATCH v9 04/10] vhost: add new call back function for config interrupt

[RFC PATCH 0/3] Improve scalability of the SMP related Docs
 2021-10-20  2:20 UTC  (2+ messages)

[RFC PATCH v4 00/20] vDPA shadow virtqueue
 2021-10-20  2:07 UTC  (12+ messages)
` [RFC PATCH v4 11/20] vhost: Route host->guest notification through "
` [RFC PATCH v4 20/20] vdpa: Add custom IOTLB translations to SVQ

[PATCH 1/6] hw/riscv: microchip_pfsoc: Use MachineState::ram and MachineClass::default_ram_id
 2021-10-20  1:55 UTC  (3+ messages)

[PATCH v8 0/8] hw/arm/virt: Introduce cpu topology support
 2021-10-20  1:41 UTC  (6+ messages)
` [PATCH v8 6/8] tests/data/acpi/virt: Add an empty expected file for PPTT
` [PATCH v8 8/8] tests/data/acpi/virt: Update the "

[PATCH v2 0/6] hw/riscv: Use MachineState::ram and MachineClass::default_ram_id in all machines
 2021-10-20  1:41 UTC  (7+ messages)
` [PATCH v2 1/6] hw/riscv: microchip_pfsoc: Use MachineState::ram and MachineClass::default_ram_id
` [PATCH v2 2/6] hw/riscv: opentitan: "
` [PATCH v2 3/6] hw/riscv: shakti_c: "
` [PATCH v2 4/6] hw/riscv: sifive_e: "
` [PATCH v2 5/6] hw/riscv: sifive_u: "
` [PATCH v2 6/6] hw/riscv: spike: "

[PATCH 00/31] Add Loongarch softmmu support
 2021-10-20  1:36 UTC  (14+ messages)
` [PATCH 02/31] target/loongarch: Add CSR registers definition
` [PATCH 03/31] target/loongarch: Set default csr values
` [PATCH 04/31] target/loongarch: Add basic vmstate description of CPU
` [PATCH 05/31] target/loongarch: Implement qmp_query_cpu_definitions()
  ` [PATCH 23/31] hw/loongarch: Add default bios startup support
  ` [PATCH 01/31] target/loongarch: Upate the README for the softmmu
  ` [PATCH 06/31] target/loongarch: Add mmu support for Loongarch CPU
  ` [PATCH 07/31] target/loongarch: Add loongarch csr/iocsr instruction support

[PATCH] hw/qdev-core: Add compatibility for (non)-transitional devs
 2021-10-20  1:31 UTC  (9+ messages)

[PATCH v5 00/16] target/riscv: Rationalize XLEN and operand length
 2021-10-19 23:10 UTC  (21+ messages)
` [PATCH v5 01/16] target/riscv: Move cpu_get_tb_cpu_state out of line
` [PATCH v5 02/16] target/riscv: Create RISCVMXL enumeration
` [PATCH v5 03/16] target/riscv: Split misa.mxl and misa.ext
` [PATCH v5 04/16] target/riscv: Replace riscv_cpu_is_32bit with riscv_cpu_mxl
` [PATCH v5 05/16] target/riscv: Add MXL/SXL/UXL to TB_FLAGS
` [PATCH v5 06/16] target/riscv: Use REQUIRE_64BIT in amo_check64
` [PATCH v5 07/16] target/riscv: Properly check SEW in amo_op
` [PATCH v5 08/16] target/riscv: Replace is_32bit with get_xl/get_xlen
` [PATCH v5 09/16] target/riscv: Replace DisasContext.w with DisasContext.ol
` [PATCH v5 10/16] target/riscv: Use gen_arith_per_ol for RVM
` [PATCH v5 11/16] target/riscv: Adjust trans_rev8_32 for riscv64
` [PATCH v5 12/16] target/riscv: Use gen_unary_per_ol for RVB
` [PATCH v5 13/16] target/riscv: Use gen_shift*_per_ol for RVB, RVI
` [PATCH v5 14/16] target/riscv: Align gprs and fprs in cpu_dump
` [PATCH v5 15/16] target/riscv: Use riscv_csrrw_debug for cpu_dump
` [PATCH v5 16/16] target/riscv: Compute mstatus.sd on demand

[PATCH 00/64] Patch Round-up for stable 6.0.1, freeze on 2021-10-26
 2021-10-19 23:05 UTC  (42+ messages)
` [PATCH 03/64] docs/system: Document the removal of "compat" property for POWER CPUs
` [PATCH 04/64] monitor/qmp: fix race on CHR_EVENT_CLOSED without OOB
` [PATCH 05/64] migration/rdma: Fix cm_event used before being initialized
` [PATCH 06/64] target/i386: Exit tb after wrmsr
` [PATCH 07/64] target/ppc: Fix load endianness for lxvwsx/lxvdsx
` [PATCH 08/64] vl: allow not specifying size in -m when using -M memory-backend
` [PATCH 24/64] tcg/sparc: Fix temp_allocate_frame vs sparc stack bias
` [PATCH 25/64] tcg: Allocate sufficient storage in temp_allocate_frame
` [PATCH 30/64] qemu-nbd: Use qcrypto_tls_creds_check_endpoint()
` [PATCH 35/64] yank: Unregister function when using TLS migration
` [PATCH 37/64] acpi: pc: revert back to v5.2 PCI slot enumeration
` [PATCH 38/64] tests: acpi: pc: update expected DSDT blobs
` [PATCH 40/64] hw/nvme: fix missing check for PMR capability
` [PATCH 41/64] hw/nvme: fix pin-based interrupt behavior (again)
` [PATCH 44/64] hw/sd/sdcard: Document out-of-range addresses for SEND_WRITE_PROT
` [PATCH 45/64] hw/sd/sdcard: Fix assertion accessing out-of-range addresses with CMD30
` [PATCH 46/64] audio: Never send migration section
` [PATCH 47/64] target/arm: Don't skip M-profile reset entirely in user mode
` [PATCH 48/64] virtio-net: fix use after unmap/free for sg
` [PATCH 50/64] hmp: Unbreak "change vnc"
` [PATCH 51/64] virtio-mem-pci: Fix memory leak when creating MEMORY_DEVICE_SIZE_CHANGE event
` [PATCH 52/64] uas: add stream number sanity checks
` [PATCH 53/64] usb/redir: avoid dynamic stack allocation (CVE-2021-3527)
` [PATCH 54/64] usb: limit combined packets to 1 MiB (CVE-2021-3527)
` [PATCH 55/64] vhost-user-gpu: fix memory disclosure in virgl_cmd_get_capset_info (CVE-2021-3545)
` [PATCH 56/64] vhost-user-gpu: fix resource leak in 'vg_resource_create_2d' (CVE-2021-3544)
` [PATCH 57/64] vhost-user-gpu: fix memory leak in vg_resource_attach_backing (CVE-2021-3544)
` [PATCH 58/64] vhost-user-gpu: fix memory leak while calling 'vg_resource_unref' (CVE-2021-3544)
` [PATCH 59/64] vhost-user-gpu: fix memory leak in 'virgl_cmd_resource_unref' (CVE-2021-3544)
` [PATCH 60/64] vhost-user-gpu: fix memory leak in 'virgl_resource_attach_backing' (CVE-2021-3544)
` [PATCH 61/64] vhost-user-gpu: fix OOB write in 'virgl_cmd_get_capset' (CVE-2021-3546)
` [PATCH 62/64] hw/rdma: Fix possible mremap overflow in the pvrdma device (CVE-2021-3582)
` [PATCH 63/64] pvrdma: Ensure correct input on ring init (CVE-2021-3607)
` [PATCH 64/64] pvrdma: Fix the ring init error flow (CVE-2021-3608)

[PATCH v8 00/10] acpi: Error Record Serialization Table, ERST, support for QEMU
 2021-10-19 22:32 UTC  (4+ messages)
` [PATCH v8 10/10] ACPI ERST: step 6 of bios-tables-test.c

[PATCH v14 0/8] RISC-V Pointer Masking implementation
 2021-10-19 22:27 UTC  (3+ messages)
` [PATCH v14 3/8] [RISCV_PM] Support CSRs required for RISC-V PM extension except for the h-mode

Deprecate the ppc405 boards in QEMU? (was: [PATCH v3 4/7] MAINTAINERS: Orphan obscure ppc platforms)
 2021-10-19 21:30 UTC  (23+ messages)
  ` Deprecate the ppc405 boards in QEMU?

[PATCH 0/2] Support fd-based KVM stats
 2021-10-19 20:29 UTC  (3+ messages)
` [PATCH 1/2] qmp: Support fd-based KVM stats query
` [PATCH 2/2] hmp: "

[PATCH v4 00/12] virtiofsd: Allow using file handles instead of O_PATH FDs
 2021-10-19 20:02 UTC  (5+ messages)
` [PATCH v4 10/12] virtiofsd: Add inodes_by_handle hash table
` [PATCH v4 11/12] virtiofsd: Optionally fill lo_inode.fhandle

[PULL 00/29] pc,pci,virtio: features, fixes
 2021-10-19 18:38 UTC  (2+ messages)

[PATCH v3 00/21] Adding partial support for 128-bit riscv target
 2021-10-19 18:15 UTC  (5+ messages)
` [PATCH v3 02/21] memory: add a few defines for octo (128-bit) values
` [PATCH v3 03/21] Int128.h: addition of a few 128-bit operations

[PATCH] gdbstub: Switch to the thread receiving a signal
 2021-10-19 17:53 UTC  (8+ messages)
` [PATCH v2] "

[PATCH 00/24] bsd-user: arm (32-bit) support
 2021-10-19 16:44 UTC  (25+ messages)
` [PATCH 01/24] bsd-user/arm/target_arch_sysarch.h: Use consistent include guards
` [PATCH 02/24] bsd-user/arm/target_syscall.h: Add copyright and update name
` [PATCH 03/24] bsd-user/arm/target_arch_cpu.c: Target specific TLS routines
` [PATCH 04/24] bsd-user/arm/target_arch_cpu.h: CPU Loop definitions
` [PATCH 05/24] bsd-user/arm/target_arch_cpu.h: Implement target_cpu_clone_regs
` [PATCH 06/24] bsd-user/arm/target_arch_cpu.h: Dummy target_cpu_loop implementation
` [PATCH 07/24] bsd-user/arm/target_arch_cpu.h: Implment trivial EXCP exceptions
` [PATCH 08/24] bsd-user/arm/target_arch_cpu.h: Implement data abort exceptions
` [PATCH 09/24] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch
` [PATCH 10/24] bsd-user/arm/target_arch_reg.h: Implement core dump register copying
` [PATCH 11/24] bsd-user/arm/target_arch_vmparam.h: Parameters for arm address space
` [PATCH 12/24] bsd-user/arm/target_arch_sigtramp.h: Signal Trampoline for arm
` [PATCH 13/24] bsd-user/arm/target_arch_thread.h: Routines to create and switch to a thread
` [PATCH 14/24] bsd-user/arm/target_arch_elf.h: arm defines for ELF
` [PATCH 15/24] bsd-user/arm/target_arch_elf.h: arm get hwcap
` [PATCH 16/24] bsd-user/arm/target_arch_elf.h: arm get_hwcap2 impl
` [PATCH 17/24] bsd-user/arm/target_arch_signal.h: arm specific signal registers and stack
` [PATCH 18/24] bsd-user/arm/target_arch_signal.h: arm machine context for signals
` [PATCH 19/24] bsd-user/arm/target_arch_signal.h: arm user context and trapframe "
` [PATCH 20/24] bsd-user/arm/target_arch_signal.h: arm set_sigtramp_args
` [PATCH 21/24] bsd-user/arm/target_arch_signal.h: arm get_mcontext
` [PATCH 22/24] bsd-user/arm/target_arch_signal.h: arm set_mcontext
` [PATCH 23/24] bsd-user/arm/target_arch_signal.h: arm get_ucontext_sigreturn
` [PATCH 24/24] bsd-user: add arm target build

[PULL 0/7] Migration.next patches
 2021-10-19 16:55 UTC  (2+ messages)

[PATCH] multiboot: Use DMA instead port-based transfer
 2021-10-19 16:45 UTC  (2+ messages)

[PATCH v5 0/4] VNC-related HMP/QMP fixes
 2021-10-19 15:54 UTC  (5+ messages)
` [PATCH v5 1/4] monitor/hmp: add support for flag argument with value
` [PATCH v5 2/4] qapi/monitor: refactor set/expire_password with enums
` [PATCH v5 3/4] qapi/monitor: allow VNC display id in set/expire_password
` [PATCH v5 4/4] qapi/monitor: only allow 'keep' SetPasswordAction for VNC and deprecate

[PATCH v2 00/48] tcg: optimize redundant sign extensions
 2021-10-19 16:13 UTC  (18+ messages)
` [PATCH v2 01/48] tcg/optimize: Rename "mask" to "z_mask"
` [PATCH v2 02/48] tcg/optimize: Split out OptContext
` [PATCH v2 03/48] tcg/optimize: Remove do_default label
` [PATCH v2 04/48] tcg/optimize: Change tcg_opt_gen_{mov, movi} interface
` [PATCH v2 05/48] tcg/optimize: Move prev_mb into OptContext
` [PATCH v2 06/48] tcg/optimize: Split out init_arguments
` [PATCH v2 40/48] tcg/optimize: Expand fold_addsub2_i32 to 64-bit ops

[PATCH v5 0/3] hw/arm/virt_acpi_build: Generate DBG2 table
 2021-10-19 16:09 UTC  (2+ messages)

[PATCH v2 00/15] python/iotests: Run iotest linters during Python CI
 2021-10-19 14:49 UTC  (16+ messages)
` [PATCH v2 01/15] iotests/297: Move pylint config into pylintrc
` [PATCH v2 02/15] iotests/297: Split mypy configuration out into mypy.ini
` [PATCH v2 03/15] iotests/297: Add get_files() function
` [PATCH v2 04/15] iotests/297: Create main() function
` [PATCH v2 05/15] iotests/297: Don't rely on distro-specific linter binaries
` [PATCH v2 06/15] iotests/297: Split run_linters apart into run_pylint and run_mypy
` [PATCH v2 07/15] iotests/297: refactor run_[mypy|pylint] as generic execution shim
` [PATCH v2 08/15] iotests/297: Change run_linter() to raise an exception on failure
` [PATCH v2 09/15] iotests/297: update tool availability checks
` [PATCH v2 10/15] iotests/297: split test into sub-cases
` [PATCH v2 11/15] iotests: split linters.py out from 297
` [PATCH v2 12/15] iotests/linters: Add entry point for linting via Python CI
` [PATCH v2 13/15] iotests/linters: Add workaround for mypy bug #9852
` [PATCH v2 14/15] python: Add iotest linters to test suite
` [PATCH v2 15/15] iotests: [RFC] drop iotest 297

[PATCH v4 00/11] virtio-iommu: Add ACPI support
 2021-10-19 15:39 UTC  (5+ messages)

[PATCH 0/7] tests: docker images for hexagon, nios2, microblaze
 2021-10-19 14:46 UTC  (2+ messages)

[PATCH v6] Work around vhost-user-blk-test hang
 2021-10-19 14:39 UTC  (3+ messages)

[PATCH] hw/ppc/ppc4xx_pci: Fix ppc4xx_pci_map_irq() for recent Linux kernels
 2021-10-19 14:45 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).