qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-04-16 22:02:57 to 2021-04-18 23:46:58 UTC [more...]

[RFC PATCH 00/15] gitlab-ci: Allow forks to use different pipelines than mainstream
 2021-04-18 23:34 UTC  (13+ messages)
` [PATCH 01/15] gitlab-ci: Replace YAML anchors by extends (container_job)
` [PATCH 02/15] gitlab-ci: Replace YAML anchors by extends (native_build_job)
` [PATCH 03/15] gitlab-ci: Replace YAML anchors by extends (native_test_job)
` [PATCH 04/15] gitlab-ci: Replace YAML anchors by extends (acceptance_test_job)
` [PATCH 05/15] gitlab-ci: Rename acceptance_test_job -> integration_test_job
` [PATCH 06/15] gitlab-ci: Extract container job template to container-template.yml
` [PATCH 07/15] gitlab-ci: Extract crossbuild job templates to crossbuild-template.yml
` [PATCH 08/15] gitlab-ci: Extract DCO/style check jobs to checks.yml
` [PATCH 09/15] gitlab-ci: Extract build stages to stages.yml
` [PATCH 10/15] gitlab-ci: Extract all default build/test jobs to buildtest.yml
` [PATCH 11/15] gitlab-ci: Extract core container jobs to container-core.yml
` [NOTFORMERGE PATCH 15/15] gitlab-ci: Use my own set of jobs for CI pipeline

[PATCH v2 00/29] target/mips: Re-org to allow KVM-only builds
 2021-04-18 23:03 UTC  (31+ messages)
` [PATCH v2 01/29] target/mips: Simplify meson TCG rules
` [PATCH v2 02/29] target/mips: Move IEEE rounding mode array to new source file
` [PATCH v2 03/29] target/mips: Move msa_reset() "
` [PATCH v2 04/29] target/mips: Make CPU/FPU regnames[] arrays global
` [PATCH v2 05/29] target/mips: Optimize CPU/FPU regnames[] arrays
` [PATCH v2 06/29] target/mips: Restrict mips_cpu_dump_state() to cpu.c
` [PATCH v2 07/29] target/mips: Turn printfpr() macro into a proper function
` [PATCH v2 08/29] target/mips: Declare mips_cpu_set_error_pc() inlined in "internal.h"
` [PATCH v2 09/29] target/mips: Extract load/store helpers to ldst_helper.c
` [PATCH v2 10/29] meson: Introduce meson_user_arch source set for arch-specific user-mode
` [PATCH v2 11/29] target/mips: Introduce tcg-internal.h for TCG specific declarations
` [PATCH v2 12/29] target/mips: Add simple user-mode mips_cpu_do_interrupt()
` [PATCH v2 13/29] target/mips: Add simple user-mode mips_cpu_tlb_fill()
` [PATCH v2 14/29] target/mips: Move cpu_signal_handler definition around
` [PATCH v2 15/29] target/mips: Move sysemu specific files under sysemu/ subfolder
` [PATCH v2 16/29] target/mips: Move physical addressing code to sysemu/physaddr.c
` [PATCH v2 17/29] target/mips: Restrict cpu_mips_get_random() / update_pagemask() to TCG
` [PATCH v2 18/29] target/mips: Move sysemu TCG-specific code to tcg/sysemu/ subfolder
` [PATCH v2 19/29] target/mips: Restrict mmu_init() to TCG
` [PATCH v2 20/29] target/mips: Move tlb_helper.c to tcg/sysemu/
` [PATCH v2 21/29] target/mips: Restrict CPUMIPSTLBContext::map_address() handlers scope
` [PATCH v2 22/29] target/mips: Move Special opcodes to tcg/sysemu/special_helper.c
` [PATCH v2 23/29] target/mips: Move helper_cache() "
` [PATCH v2 24/29] target/mips: Move TLB management helpers to tcg/sysemu/tlb_helper.c
` [PATCH v2 25/29] target/mips: Move exception management code to exception.c
` [PATCH v2 26/29] target/mips: Move CP0 helpers to sysemu/cp0.c
` [PATCH v2 27/29] target/mips: Move TCG source files under tcg/ sub directory
` [PATCH v2 28/29] hw/mips: Restrict non-virtualized machines to TCG
` [PATCH v2 29/29] gitlab-ci: Add KVM mips64el cross-build jobs

[PATCH 00/26] target/mips: Re-org to allow KVM-only builds
 2021-04-18 22:46 UTC  (58+ messages)
` [PATCH 01/26] target/mips: Simplify meson TCG rules
` [PATCH 02/26] target/mips: Move IEEE rounding mode array to new source file
` [PATCH 03/26] target/mips: Move msa_reset() "
` [PATCH 04/26] target/mips: Make CPU/FPU regnames[] arrays global
` [PATCH 05/26] target/mips: Restrict mips_cpu_dump_state() to cpu.c
` [PATCH 06/26] target/mips: Extract load/store helpers to ldst_helper.c
` [PATCH 07/26] meson: Introduce meson_user_arch source set for arch-specific user-mode
` [PATCH 08/26] target/mips: Introduce tcg-internal.h for TCG specific declarations
` [PATCH 09/26] target/mips: Add simple user-mode mips_cpu_do_interrupt()
` [PATCH 10/26] target/mips: Add simple user-mode mips_cpu_tlb_fill()
` [PATCH 11/26] target/mips: Move cpu_signal_handler definition around
` [PATCH 12/26] target/mips: Move sysemu specific files under sysemu/ subfolder
` [PATCH 13/26] target/mips: Move code related to physical addressing to sysemu/phys.c
` [PATCH 14/26] target/mips: Move sysemu TCG-specific code to tcg/sysemu/ subfolder
` [PATCH 15/26] target/mips: Restrict mmu_init() to TCG
` [PATCH 16/26] target/mips: Move tlb_helper.c to tcg/sysemu/
` [PATCH 17/26] target/mips: Restrict CPUMIPSTLBContext::map_address() handlers scope
` [PATCH 18/26] target/mips: Move Special opcodes to tcg/sysemu/special_helper.c
` [PATCH 19/26] target/mips: Move helper_cache() "
` [PATCH 20/26] target/mips: Move TLB management helpers to tcg/sysemu/tlb_helper.c
` [PATCH 21/26] target/mips: Move exception management code to exception.c
` [PATCH 22/26] target/mips: Move CP0 helpers to sysemu/cp0.c
` [PATCH 23/26] target/mips: Move helper.h -> tcg/helper.h.inc
` [PATCH 24/26] target/mips: Move TCG source files under tcg/ sub directory
` [PATCH 25/26] hw/mips: Restrict non-virtualized machines to TCG
` [PATCH 26/26] gitlab-ci: Add KVM mips64el cross-build jobs

[Bug 1921061] [NEW] Corsair iCUE Install Fails, qemu VM Reboots
 2021-04-18 22:16 UTC  (2+ messages)
` [Bug 1921061] "

[PATCH v4 00/12] target/hexagon: introduce idef-parser
 2021-04-18 21:43 UTC  (15+ messages)
` [PATCH v4 01/12] tcg: expose TCGCond manipulation routines
` [PATCH v4 02/12] target/hexagon: update MAINTAINERS for idef-parser
` [PATCH v4 04/12] target/hexagon: make slot number an unsigned
` [PATCH v4 05/12] target/hexagon: make helper functions non-static
` [PATCH v4 06/12] target/hexagon: introduce new helper functions
` [PATCH v4 07/12] target/hexagon: expose next PC in DisasContext
` [PATCH v4 08/12] target/hexagon: prepare input for the idef-parser

Resetting non-qdev children in a 3-phase reset device
 2021-04-18 20:16 UTC  (2+ messages)

[PATCH v2] hw/mips/jazz: Remove confusing ifdef'ry
 2021-04-18 19:51 UTC  (3+ messages)

[PULL 0/7] queue of proposed rc4 fixes
 2021-04-18 16:31 UTC  (11+ messages)
` [PULL 1/7] osdep: include glib-compat.h before other QEMU headers
` [PULL 2/7] osdep: protect qemu/osdep.h with extern "C"
` [PULL 3/7] include/qemu/osdep.h: Move system includes to top
` [PULL 4/7] hw/arm/armsse: Give SSE-300 its own Property array
` [PULL 5/7] hw/arm/armsse: Make SSE-300 use Cortex-M55
` [PULL 6/7] target/arm: drop CF_LAST_IO/dc->condjump check
` [PULL 7/7] accel/tcg: avoid re-translating one-shot instructions

[PATCH RFC] migration: warn about non-migratable configurations unless '--no-migration' was specified
 2021-04-18 15:53 UTC  (8+ messages)

[Bug 1924912] [NEW] VirtIO drivers don't work on Windows: "GLib: Too many handles to wait for!" crash
 2021-04-18 14:34 UTC  (3+ messages)
` [Bug 1924912] "

[Bug 1924914] [NEW] Running sway in a QEMU VM results in a GPU hang of the guest (virtio-gpu driver)
 2021-04-18 13:40 UTC  (2+ messages)
` [Bug 1924914] "

[PATCH v5 1/1] docs/devel: Add VFIO device migration documentation
 2021-04-18 12:22 UTC 

any remaining for-6.0 issues?
 2021-04-18 10:38 UTC  (5+ messages)

[PATCH-for-6.0] target/mips: Correct the license text
 2021-04-18  8:03 UTC 

[Bug 1923197] [NEW] RISC-V priviledged instruction error
 2021-04-18  6:37 UTC  (3+ messages)
` [Bug 1923197] "

[PATCH v4] memory: Directly dispatch alias accesses on origin memory region
 2021-04-18  5:57 UTC 

[PATCH-for-6.0? v2] mptsas: Remove unused MPTSASState 'pending' field (CVE-2021-3392)
 2021-04-18  5:31 UTC  (2+ messages)

[PATCH] mptsas: remove unused MPTSASState.pending (CVE-2021-3392)
 2021-04-18  5:16 UTC  (5+ messages)
` [PATCH-for-6.0?] "

[PATCH v2 0/2] hw/elf_ops: clear uninitialized segment space
 2021-04-17 15:36 UTC  (3+ messages)
` [PATCH v2 2/2] "

[PATCH v2] memory: Initialize MemoryRegionOps for RAM memory regions
 2021-04-17 14:09 UTC 

[PATCH v3] memory: Directly dispatch alias accesses on origin memory region
 2021-04-17 14:02 UTC 

[PATCH v4 00/19] qapi: static typing conversion, pt3
 2021-04-17 13:18 UTC  (9+ messages)
` [PATCH v4 02/19] flake8: Enforce shorter line length for comments and docstrings
` [PATCH v4 16/19] qapi/expr.py: Add docstrings

[PATCH] memory: Forbid memory_region_set_address() on AS root
 2021-04-17 12:59 UTC  (2+ messages)

[PATCH v2 0/8] qapi: static typing conversion, pt4
 2021-04-17 12:10 UTC  (8+ messages)
` [PATCH v2 4/8] qapi/error: Change assertion

[PATCH v2 00/11] memory: Forbid mapping AddressSpace root MemoryRegion
 2021-04-17 10:30 UTC  (12+ messages)
` [PATCH v2 01/11] hw/arm/aspeed: Do not directly map ram container onto main address bus
` [PATCH v2 02/11] hw/aspeed/smc: Use the RAM memory region for DMAs
` [PATCH v2 03/11] hw/arm/aspeed: Do not sysbus-map mmio flash region directly, use alias
` [PATCH v2 04/11] hw/pci-host: Rename Raven ASIC PCI bridge as raven.c
` [PATCH v2 05/11] hw/pci-host/raven: Add PCI_IO_BASE_ADDR definition
` [PATCH v2 06/11] hw/pci-host/raven: Assert PCI I/O AddressSpace is based at 0x80000000
` [PATCH v2 07/11] hw/pci-host/raven: Use MR alias for AS root, not sysbus mapped MR
` [RFC PATCH v2 08/11] hw/pci-host/raven: Remove pointless alias mapping onto system bus
` [PATCH v2 09/11] hw/pci-host/prep: Do not directly map bus-master region onto main bus
` [PATCH v2 10/11] memory: Make sure root MR won't be added as subregion
` [PATCH v2 11/11] hw/pci-host/raven: Remove temporary assertion 'root MR is zero-based'

[PATCH for-6.1 0/4] Remove more superfluous include statements
 2021-04-17  9:50 UTC  (5+ messages)
` [PATCH 2/4] Do not include hw/boards.h if it's not really necessary

[PATCHv2 1/1] Support monitor chardev hotswap with QMP
 2021-04-17  8:05 UTC  (7+ messages)

[Bug 1922102] [NEW] Broken tap networking on macOS host
 2021-04-17  7:40 UTC  (2+ messages)
` [Bug 1922102] "

[PATCH v2 0/4] ppc: rework AIL logic, add POWER10 exception model
 2021-04-17  3:31 UTC  (7+ messages)
` [PATCH v2 3/4] target/ppc: Rework AIL logic in interrupt delivery
` [PATCH v2 4/4] target/ppc: Add POWER10 exception model

[RFC PATCH v2 0/6] hw/arm/virt: Introduce cpu topology support
 2021-04-17  2:36 UTC  (4+ messages)
` [RFC PATCH v2 1/6] device_tree: Add qemu_fdt_add_path

[PATCH v1 for-6.1 00/11] target/arm: Implement BFloat16
 2021-04-16 23:59 UTC  (12+ messages)
` [PATCH v1 01/11] target/arm: Add isar_feature_{aa32, aa64, aa64_sve}_bf16
` [PATCH v1 02/11] target/arm: Unify unallocated path in disas_fp_1src
` [PATCH v1 03/11] target/arm: Implement scalar float32 to bfloat16 conversion
` [PATCH v1 04/11] target/arm: Implement vector "
` [PATCH v1 05/11] fpu: Add float_round_to_odd_inf
` [PATCH v1 06/11] target/arm: Implement bfloat16 dot product (vector)
` [PATCH v1 07/11] target/arm: Implement bfloat16 dot product (indexed)
` [PATCH v1 08/11] target/arm: Implement bfloat16 matrix multiply accumulate
` [PATCH v1 09/11] target/arm: Implement bfloat widening fma (vector)
` [PATCH v1 10/11] target/arm: Implement bfloat widening fma (indexed)
` [PATCH v1 11/11] target/arm: Enable BFloat16 extensions

[PATCH v5 for-6.1 00/81] target/arm: Implement SVE2
 2021-04-16 22:46 UTC  (15+ messages)
` [PATCH v5 49/81] target/arm: Pass separate addend to FCMLA helpers
` [PATCH v5 55/81] target/arm: Implement SVE2 saturating multiply-add (indexed)
` [PATCH v5 59/81] target/arm: Implement SVE mixed sign dot product (indexed)
` [PATCH v5 63/81] target/arm: Implement SVE2 crypto constructive binary operations
` [PATCH v5 66/81] target/arm: Implement SVE2 FCVTLT
` [PATCH v5 67/81] target/arm: Implement SVE2 FCVTXNT, FCVTX
` [PATCH v5 68/81] target/arm: Implement SVE2 FLOGB
` [PATCH v5 70/81] target/arm: Implement SVE2 LD1RO
` [PATCH v5 72/81] target/arm: Implement SVE2 bitwise shift immediate
` [PATCH v5 76/81] target/arm: Remove unused fpst from VDOT_scalar
` [PATCH v5 78/81] target/arm: Split decode of VSDOT and VUDOT
` [PATCH v5 80/81] target/arm: Implement integer matrix multiply accumulate
` [PATCH v5 81/81] target/arm: Enable SVE2 and some extensions

[PATCH 0/1] pSeries: handle hotunplug errors in drc_unisolate_logical()
 2021-04-16 21:09 UTC  (2+ messages)
` [PATCH 1/1] spapr_drc.c: "


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