qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-10-25 10:26:46 to 2021-10-25 20:57:55 UTC [more...]

[PATCH] hvf: arm: Ignore cache operations on MMIO
 2021-10-25 20:57 UTC  (2+ messages)

[ PATCH v3 00/10] Improve PMU support
 2021-10-25 19:56 UTC  (11+ messages)
` [ PATCH v3 01/10] target/riscv: Fix PMU CSR predicate function
` [ PATCH v3 02/10] target/riscv: Implement PMU CSR predicate function for
` [ PATCH v3 03/10] target/riscv: pmu: Rename the counters extension to pmu
` [ PATCH v3 04/10] target/riscv: pmu: Make number of counters configurable
` [ PATCH v3 05/10] target/riscv: Implement mcountinhibit CSR
` [ PATCH v3 06/10] target/riscv: Add support for hpmcounters/hpmevents
` [ PATCH v3 07/10] target/riscv: Support mcycle/minstret write operation
` [ PATCH v3 08/10] target/riscv: Add sscofpmf extension support
` [ PATCH v3 09/10] target/riscv: Add few cache related PMU events
` [ PATCH v3 10/10] hw/riscv: virt: Add PMU DT node to the device tree

[PATCH v4 00/19] target/ppc: DFP instructions using decodetree
 2021-10-25 20:31 UTC  (21+ messages)
` [PATCH v4 01/19] host-utils: move checks out of divu128/divs128
` [PATCH v4 02/19] host-utils: move udiv_qrnnd() to host-utils
` [PATCH v4 03/19] host-utils: add 128-bit quotient support to divu128/divs128
` [PATCH v4 04/19] host-utils: add unit tests for divu128/divs128
` [PATCH v4 05/19] libdecnumber: introduce decNumberFrom[U]Int128
` [PATCH v4 06/19] target/ppc: Move REQUIRE_ALTIVEC/VECTOR to translate.c
` [PATCH v4 07/19] target/ppc: Introduce REQUIRE_FPU
` [PATCH v4 08/19] target/ppc: Implement DCFFIXQQ
` [PATCH v4 09/19] host-utils: Introduce mulu128
` [PATCH v4 10/19] libdecnumber: Introduce decNumberIntegralToInt128
` [PATCH v4 11/19] target/ppc: Implement DCTFIXQQ
` [PATCH v4 12/19] target/ppc: Do not update nip on DFP instructions
` [PATCH v4 13/19] target/ppc: Move dtstdc[q]/dtstdg[q] to decodetree
` [PATCH v4 14/19] target/ppc: Move d{add, sub, mul, div, iex}[q] "
` [PATCH v4 15/19] target/ppc: Move dcmp{u, o}[q], dts{tex, tsf, tsfi}[q] "
` [PATCH v4 16/19] target/ppc: Move dquai[q], drint{x, n}[q] "
` [PATCH v4 17/19] target/ppc: Move dqua[q], drrnd[q] "
` [PATCH v4 18/19] target/ppc: Move dct{dp, qpq}, dr{sp, dpq}, dc{f, t}fix[q], dxex[q] "
` [PATCH v4 19/19] target/ppc: Move ddedpd[q], denbcd[q], dscli[q], dscri[q] "

[PATCH 0/9] Configurable policy for handling unstable interfaces
 2021-10-25 19:40 UTC  (23+ messages)
` [PATCH 1/9] qapi: New special feature flag "unstable"
` [PATCH 2/9] qapi: Mark unstable QMP parts with feature 'unstable'
` [PATCH 3/9] qapi: Eliminate QCO_NO_OPTIONS for a slight simplification
` [PATCH 4/9] qapi: Tools for sets of special feature flags in generated code
` [PATCH 5/9] qapi: Generalize struct member policy checking
` [PATCH 6/9] qapi: Generalize command "
` [PATCH 7/9] qapi: Generalize enum member "
` [PATCH 8/9] qapi: Factor out compat_policy_input_ok()
` [PATCH 9/9] qapi: Extend -compat to set policy for unstable interfaces

[PATCH v4 00/17] Adding partial support for 128-bit riscv target
 2021-10-25 20:16 UTC  (26+ messages)
` [PATCH v4 01/17] exec/memop: Rename MO_Q definition as MO_UQ and add MO_UO
` [PATCH v4 02/17] qemu/int128: addition of a few 128-bit operations
` [PATCH v4 03/17] target/riscv: additional macros to check instruction support
` [PATCH v4 04/17] target/riscv: separation of bitwise logic and aritmetic helpers
` [PATCH v4 05/17] target/riscv: array for the 64 upper bits of 128-bit registers
` [PATCH v4 06/17] target/riscv: setup everything so that riscv128-softmmu compiles
` [PATCH v4 07/17] target/riscv: moving some insns close to similar insns
` [PATCH v4 08/17] target/riscv: accessors to registers upper part and 128-bit load/store
` [PATCH v4 09/17] target/riscv: support for 128-bit bitwise instructions
` [PATCH v4 10/17] target/riscv: support for 128-bit U-type instructions
` [PATCH v4 11/17] target/riscv: support for 128-bit shift instructions
` [PATCH v4 12/17] target/riscv: support for 128-bit arithmetic instructions
` [PATCH v4 13/17] target/riscv: support for 128-bit M extension
` [PATCH v4 14/17] target/riscv: adding high part of some csrs
` [PATCH v4 15/17] target/riscv: helper functions to wrap calls to 128-bit csr insns
` [PATCH v4 16/17] target/riscv: modification of the trans_csrxx for 128-bit support
` [PATCH v4 17/17] target/riscv: actual functions to realize crs 128-bit insns

[PATCH v4] isa-applesmc: provide OSK forwarding on Apple hosts
 2021-10-25 19:45 UTC  (9+ messages)

[PATCH] hvf: Avoid mapping regions < PAGE_SIZE as ram
 2021-10-25 19:10 UTC  (4+ messages)

[PATCH v3 0/3] plugins: add a drcov plugin
 2021-10-25 19:03 UTC  (4+ messages)
` [PATCH v3 1/3] src/plugins: sorted list

[PATCH v3 00/22] target/ppc: DFP instructions using decodetree
 2021-10-25 18:52 UTC  (10+ messages)
` [PATCH v3 07/22] host-utils: add 128-bit quotient support to divu128/divs128
` [PATCH v3 15/22] target/ppc: Implement DCTFIXQQ
` [PATCH v3 16/22] target/ppc: Move dtstdc[q]/dtstdg[q] to decodetree

[PATCH] virtiofsd: Error on bad socket group name
 2021-10-25 18:47 UTC  (4+ messages)
` [Virtio-fs] "

[PATCH v17 0/8] RISC-V Pointer Masking implementation
 2021-10-25 18:46 UTC  (10+ messages)
` [PATCH v17 1/8] target/riscv: Add J-extension into RISC-V
` [PATCH v17 2/8] target/riscv: Add CSR defines for RISC-V PM extension
` [PATCH v17 3/8] target/riscv: Support CSRs required for RISC-V PM extension except for the h-mode
` [PATCH v17 4/8] target/riscv: Add J extension state description
` [PATCH v17 5/8] target/riscv: Print new PM CSRs in QEMU logs
` [PATCH v17 6/8] target/riscv: Support pointer masking for RISC-V for i/c/f/d/a types of instructions
` [PATCH v17 7/8] target/riscv: Implement address masking functions required for RISC-V Pointer Masking extension
` [PATCH v17 8/8] target/riscv: Allow experimental J-ext to be turned on

[PATCH v3 00/48] tcg: optimize redundant sign extensions
 2021-10-25 18:35 UTC  (13+ messages)
` [PATCH v3 34/48] tcg/optimize: Split out fold_to_not
` [PATCH v3 35/48] tcg/optimize: Split out fold_sub_to_neg
` [PATCH v3 36/48] tcg/optimize: Split out fold_xi_to_x
` [PATCH v3 37/48] tcg/optimize: Split out fold_ix_to_i

[PATCH 00/13] virtiofsd: Support notification queue and
 2021-10-25 18:00 UTC  (2+ messages)

[PATCH] virtiofsd: xattr mapping add a new type "unsupported"
 2021-10-25 17:48 UTC  (2+ messages)

configure --extra-cflags and --extra-ldflags values not propagating to meson?
 2021-10-25 17:26 UTC  (3+ messages)

[RFC 0/2] tls: add macros for coroutine-safe TLS variables
 2021-10-25 17:19 UTC  (7+ messages)
` [RFC 1/2] "
` [RFC 2/2] util/async: replace __thread with QEMU TLS macros

[PATCH v2] hw/i386: Rename default_bus_bypass_iommu
 2021-10-25 17:14 UTC  (2+ messages)

[PATCH] configure: do not duplicate CPU_CFLAGS into QEMU_LDFLAGS
 2021-10-25 17:13 UTC  (3+ messages)

ACPI endianness
 2021-10-25 17:10 UTC  (6+ messages)

[PATCH] qmp: Stabilize preconfig
 2021-10-25 17:01 UTC  (3+ messages)

MMIO/PIO dispatch file descriptors (ioregionfd) design discussion
 2021-10-25 16:56 UTC  (4+ messages)

[PATCH 00/33] target/mips: Fully convert MSA opcodes to decodetree
 2021-10-25 16:43 UTC  (6+ messages)
` [PATCH 17/33] target/mips: Convert MSA FILL opcode "

[PATCH v2 0/4] qemu-img compare --stat
 2021-10-25 16:40 UTC  (3+ messages)
` [PATCH v2 1/4] qemu-img: implement "

[PATCH v5] isa-applesmc: provide OSK forwarding on Apple hosts
 2021-10-25 15:09 UTC  (3+ messages)

[PATCH] configure: remove useless NPTL probe
 2021-10-25 15:08 UTC  (2+ messages)

[PATCH v2 0/3] virtio: increase VIRTQUEUE_MAX_SIZE to 32k
 2021-10-25 15:03 UTC  (6+ messages)

[PATCH v6 00/15] target/riscv: Rationalize XLEN and operand length
 2021-10-25 14:58 UTC  (5+ messages)

[PATCH 0/3] linux-aio: allow block devices to limit aio-max-batch
 2021-10-25 14:42 UTC  (8+ messages)
` [PATCH 1/3] file-posix: add `aio-max-batch` option

[PATCH v4 00/25] block layer: split block APIs in global state and I/O
 2021-10-25 14:10 UTC  (30+ messages)
` [PATCH v4 01/25] main-loop.h: introduce qemu_in_main_thread()
` [PATCH v4 02/25] include/block/block: split header into I/O and global state API
` [PATCH v4 03/25] assertions for block "
` [PATCH v4 05/25] block/block-backend.c: assertions for block-backend
` [PATCH v4 06/25] include/block/block_int: split header into I/O and global state API
` [PATCH v4 07/25] assertions for block_int "
` [PATCH v4 08/25] block: introduce assert_bdrv_graph_writable
` [PATCH v4 09/25] include/block/blockjob_int.h: split header into I/O and GS API
` [PATCH v4 10/25] assertions for blockjob_int.h
` [PATCH v4 11/25] include/block/blockjob.h: global state API
` [PATCH v4 12/25] assertions for blockob.h "
` [PATCH v4 13/25] include/sysemu/blockdev.h: move drive_add and inline drive_def
` [PATCH v4 14/25] include/systemu/blockdev.h: global state API
` [PATCH v4 15/25] assertions for blockdev.h "
` [PATCH v4 16/25] include/block/snapshot: global state API + assertions
` [PATCH v4 17/25] block/copy-before-write.h: "
` [PATCH v4 18/25] block/coroutines: I/O API
` [PATCH v4 19/25] block_int-common.h: split function pointers in BlockDriver
` [PATCH v4 20/25] block_int-common.h: assertion in the callers of BlockDriver function pointers
` [PATCH v4 21/25] block_int-common.h: split function pointers in BdrvChildClass
` [PATCH v4 22/25] block_int-common.h: assertions in the callers of BdrvChildClass function pointers
` [PATCH v4 23/25] block-backend-common.h: split function pointers in BlockDevOps
` [PATCH v4 24/25] job.h: split function pointers in JobDriver
` [PATCH v4 25/25] job.h: assertions in the callers of JobDriver funcion pointers

[PATCH-for-5.2? 0/5] tests/acceptance: Only run tests tagged 'gating-ci' on GitLab CI
 2021-10-25 14:06 UTC  (3+ messages)
` [RFC PATCH-for-5.2? 4/5] "

[PATCH v4 0/6] tests/acceptance: Add bFLT loader linux-user test
 2021-10-25 13:44 UTC  (2+ messages)

[PATCH] block/export/fuse.c: fix musl build
 2021-10-25 13:42 UTC  (4+ messages)

[PATCH 0/5] hw/sh4: Codeing style fixes
 2021-10-25 13:34 UTC  (2+ messages)

[PATCH v2] hvf: Avoid mapping regions < PAGE_SIZE as ram
 2021-10-25 13:26 UTC  (2+ messages)

[PATCH v4 0/8] Switch iotests to using Async QMP
 2021-10-25 13:20 UTC  (4+ messages)
` [PATCH v4 6/8] iotests/300: avoid abnormal shutdown race condition

[PATCH 0/8] pci/iommu: Fail early if vfio-pci detected before vIOMMU
 2021-10-25 13:16 UTC  (9+ messages)
` [PATCH 5/8] pci: Add pci_for_each_root_bus()
` [PATCH 7/8] pci: Add pci_for_each_device_all()

[PATCH v5 0/6] block/rbd: migrate to coroutines and add write zeroes support
 2021-10-25 12:58 UTC  (6+ messages)

[PATCH v2 0/2] mconfigptr support
 2021-10-25 12:43 UTC  (3+ messages)
` [PATCH v2 1/2] target/riscv: Add priv spec 1.12.0 version check
` [PATCH v2 2/2] target/riscv: csr: Implement mconfigptr CSR

gitlab/cirrus auth token failure
 2021-10-25 12:39 UTC  (5+ messages)

[PATCH 0/5] trace: inroduce qmp: trace namespace
 2021-10-25 12:28 UTC  (4+ messages)

[PATCH v2 0/4] hw/usb/vt82c686-uhci-pci: Use ISA instead of PCI interrupts
 2021-10-25 12:20 UTC  (6+ messages)
` [PATCH v2 3/4] usb/uhci: Replace pci_set_irq with qemu_set_irq
` [PATCH v2 4/4] hw/usb/vt82c686-uhci-pci: Use ISA instead of PCI interrupts
` [PATCH v2 2/4] usb/uhci: Disallow user creating a vt82c686-uhci-pci device
` [PATCH v2 1/4] usb/uhci: Misc clean up

[PATCH] Add a comment about endian-ness of capabilities recorded in pci config space
 2021-10-25 12:08 UTC  (2+ messages)

[PATCH v5 00/12] virtio-iommu: Add ACPI support
 2021-10-25 11:23 UTC  (4+ messages)
` [PATCH v5 04/12] hw/i386/pc: Allow instantiating a virtio-iommu device


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