qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-07-07 15:06:51 to 2020-07-07 19:16:54 UTC [more...]

[PATCH v4] nvme: allow cmb and pmr emulation on same device
 2020-07-07 19:15 UTC  (4+ messages)
` [PATCH v4 1/2] nvme: indicate CMB support through controller capabilities register

[PATCH v12 0/8] error: auto propagated local_err part I
 2020-07-07 19:02 UTC  (12+ messages)
` [PATCH v12 1/8] error: New macro ERRP_AUTO_PROPAGATE()
` [PATCH v12 2/8] scripts: Coccinelle script to use ERRP_AUTO_PROPAGATE()
` [PATCH v12 3/8] sd: Use ERRP_AUTO_PROPAGATE()
` [PATCH v12 4/8] pflash: "
` [PATCH v12 5/8] fw_cfg: "
` [PATCH v12 6/8] virtio-9p: "
` [PATCH v12 7/8] nbd: "
` [PATCH v12 8/8] xen: "

QEMU | Pipeline #164053628 has failed for master | c8eaf81f
 2020-07-07 18:51 UTC 

[PULL 00/53] Misc patches for QEMU 5.1 soft freeze
 2020-07-07 18:48 UTC  (4+ messages)

[PATCH v4 00/12] Add Nuvoton NPCM730/NPCM750 SoCs and two BMC machines
 2020-07-07 18:47 UTC  (13+ messages)
` [PATCH v4 01/12] npcm7xx: Add config symbol
` [PATCH v4 02/12] hw/misc: Add NPCM7xx System Global Control Registers device model
` [PATCH v4 03/12] hw/misc: Add NPCM7xx Clock Controller "
` [PATCH v4 04/12] hw/timer: Add NPCM7xx Timer "
` [PATCH v4 05/12] hw/arm: Add NPCM730 and NPCM750 SoC models
` [PATCH v4 06/12] hw/arm: Add two NPCM7xx-based machines
` [PATCH v4 07/12] hw/arm: Load -bios image as a boot ROM for npcm7xx
` [PATCH v4 08/12] hw/nvram: NPCM7xx OTP device model
` [PATCH v4 09/12] hw/mem: Stubbed out NPCM7xx Memory Controller model
` [PATCH v4 10/12] hw/ssi: NPCM7xx Flash Interface Unit device model
` [PATCH v4 11/12] hw/arm: Wire up BMC boot flash for npcm750-evb and quanta-gsj
` [PATCH v4 12/12] docs/system: Add Nuvoton machine documentation

[PATCH] load_elf: Remove unused address variables from callers
 2020-07-07 18:54 UTC  (3+ messages)

[PATCH v4 0/2] net: tap: check file descriptor can be used
 2020-07-07 18:46 UTC  (4+ messages)
` [PATCH v4 1/2] net: check if the file descriptor is valid before using it
` [PATCH v4 2/2] net: detect errors from probing vnet hdr flag for TAP devices

[PATCH v4 00/45] Less clumsy error checking
 2020-07-07 18:46 UTC  (51+ messages)
` [PATCH v4 01/45] error: Fix examples in error.h's big comment
` [PATCH v4 02/45] error: Improve "
` [PATCH v4 03/45] error: Document Error API usage rules
` [PATCH v4 04/45] qdev: Use returned bool to check for qdev_realize() etc. failure
` [PATCH v4 05/45] macio: Tidy up error handling in macio_newworld_realize()
` [PATCH v4 06/45] virtio-crypto-pci: Tidy up virtio_crypto_pci_realize()
` [PATCH v4 07/45] qemu-option: Check return value instead of @err where convenient
` [PATCH v4 08/45] qemu-option: Make uses of find_desc_by_name() more similar
` [PATCH v4 09/45] qemu-option: Factor out helper find_default_by_name()
` [PATCH v4 10/45] qemu-option: Simplify around find_default_by_name()
` [PATCH v4 11/45] qemu-option: Factor out helper opt_create()
` [PATCH v4 12/45] qemu-option: Replace opt_set() by cleaner opt_validate()
` [PATCH v4 13/45] qemu-option: Make functions taking Error ** return bool, not void
` [PATCH v4 14/45] qemu-option: Use returned bool to check for failure
` [PATCH v4 15/45] block: Avoid error accumulation in bdrv_img_create()
` [PATCH v4 16/45] hmp: Eliminate a variable in hmp_migrate_set_parameter()
` [PATCH v4 17/45] qapi: Make visitor functions taking Error ** return bool, not void
` [PATCH v4 18/45] qapi: Use returned bool to check for failure, Coccinelle part
` [PATCH v4 19/45] qapi: Use returned bool to check for failure, manual part
` [PATCH v4 20/45] s390x/pci: Fix harmless mistake in zpci's property fid's setter
` [PATCH v4 21/45] qom: Use error_reportf_err() instead of g_printerr() in examples
` [PATCH v4 22/45] qom: Rename qdev_get_type() to object_get_type()
` [PATCH v4 23/45] qom: Crash more nicely on object_property_get_link() failure
` [PATCH v4 24/45] qom: Don't handle impossible "
` [PATCH v4 25/45] qom: Use return values to check for error where that's simpler
` [PATCH v4 26/45] qom: Put name parameter before value / visitor parameter
` [PATCH v4 27/45] qom: Make functions taking Error ** return bool, not void
` [PATCH v4 28/45] qom: Use returned bool to check for failure, Coccinelle part
` [PATCH v4 29/45] qom: Use returned bool to check for failure, manual part
` [PATCH v4 30/45] qom: Make functions taking Error ** return bool, not 0/-1
` [PATCH v4 31/45] qdev: Make functions taking Error ** return bool, not void
` [PATCH v4 32/45] qdev: Use returned bool to check for failure, Coccinelle part
` [PATCH v4 33/45] error: Avoid unnecessary error_propagate() after error_setg()
` [PATCH v4 34/45] error: Eliminate error_propagate() with Coccinelle, part 1
` [PATCH v4 35/45] error: Eliminate error_propagate() with Coccinelle, part 2
` [PATCH v4 36/45] error: Eliminate error_propagate() manually
` [PATCH v4 37/45] error: Reduce unnecessary error propagation
` [PATCH v4 38/45] block/parallels: Simplify parallels_open() after previous commit
` [PATCH v4 39/45] qapi: Smooth another visitor error checking pattern
` [PATCH v4 40/45] qapi: Smooth visitor error checking in generated code
` [PATCH v4 41/45] qapi: Purge error_propagate() from QAPI core
` [PATCH v4 42/45] error: Avoid error_propagate() after migrate_add_blocker()
` [PATCH v4 43/45] qemu-img: Ignore Error objects where the return value suffices
` [PATCH v4 44/45] qdev: "
` [PATCH v4 45/45] hmp: "

[PATCH v4 00/10] hw/sd: convert legacy SDHCI devices to the SDBus API
 2020-07-07 18:31 UTC  (3+ messages)
` [PATCH v4 04/10] hw/arm/versatilepb: Comment to remember some IRQs lines are left unwired

[PULL 0/3] MIPS + TCG Continuous Benchmarking queue for July 7th, 2020
 2020-07-07 18:23 UTC  (5+ messages)
` [PULL 1/3] target/mips: fpu: Fix recent regression in add.s after 1ace099f2a
` [PULL 2/3] disas: mips: Add Loongson 2F disassembler
` [PULL 3/3] scripts/performance: Add dissect.py script

[PULL 00/32] AVR port
 2020-07-07 18:17 UTC  (33+ messages)
` [PULL 01/32] target/avr: Add basic parameters of the new platform
` [PULL 02/32] target/avr: Introduce basic CPU class object
` [PULL 03/32] target/avr: CPU class: Add interrupt handling support
` [PULL 04/32] target/avr: CPU class: Add memory menagement support
` [PULL 05/32] target/avr: CPU class: Add migration support
` [PULL 06/32] target/avr: CPU class: Add GDB support
` [PULL 07/32] target/avr: Introduce enumeration AVRFeature
` [PULL 08/32] target/avr: Add definitions of AVR core types
` [PULL 09/32] target/avr: Add instruction helpers
` [PULL 10/32] target/avr: Add instruction translation - Register definitions
` [PULL 11/32] target/avr: Add instruction translation - Arithmetic and Logic Instructions
` [PULL 12/32] target/avr: Add instruction translation - Branch Instructions
` [PULL 13/32] target/avr: Add instruction translation - Data Transfer Instructions
` [PULL 14/32] target/avr: Add instruction translation - Bit and Bit-test Instructions
` [PULL 15/32] target/avr: Add instruction translation - MCU Control Instructions
` [PULL 16/32] target/avr: Add instruction translation - CPU main translation function
` [PULL 17/32] target/avr: Initialize TCG register variables
` [PULL 18/32] target/avr: Add support for disassembling via option '-d in_asm'
` [PULL 19/32] target/avr: Register AVR support with the rest of QEMU
` [PULL 20/32] tests/machine-none: Add AVR support
` [PULL 21/32] hw/char: avr: Add limited support for USART peripheral
` [PULL 22/32] hw/timer: avr: Add limited support for 16-bit timer peripheral
` [PULL 23/32] hw/misc: avr: Add limited support for power reduction device
` [PULL 24/32] hw/avr: Add support for loading ELF/raw binaries
` [PULL 25/32] hw/avr: Add some ATmega microcontrollers
` [PULL 26/32] hw/avr: Add limited support for some Arduino boards
` [PULL 27/32] tests/boot-serial: Test some Arduino boards (AVR based)
` [PULL 28/32] tests/acceptance: Test the Arduino MEGA2560 board
` [PULL 29/32] target/avr: Add section into QEMU documentation
` [PULL 30/32] target/avr/cpu: Drop tlb_flush() in avr_cpu_reset()
` [PULL 31/32] target/avr/cpu: Fix $PC displayed address
` [PULL 32/32] target/avr/disas: Fix store instructions display order

[PATCH] ossaudio: fix out of bounds write
 2020-07-07 18:08 UTC 

[PATCH v2 0/4] target/avr: Few fixes
 2020-07-07 17:58 UTC  (11+ messages)
` [PATCH v2 1/4] target/avr/cpu: Drop tlb_flush() in avr_cpu_reset()
` [PATCH v2 2/4] target/avr/cpu: Fix $PC displayed address
` [PATCH v2 3/4] target/avr/disas: Fix store instructions display order
` [RFC PATCH v2 4/4] target/avr/translate: Fix SBRC/SBRS instructions

[PATCH rc6 00/30] target/avr merger
 2020-07-07 17:57 UTC  (2+ messages)

[PATCH v4 0/4] Add OpenSBI dynamic firmware support
 2020-07-07 17:43 UTC  (4+ messages)
` [PATCH v4 4/4] RISC-V: Support 64 bit start address

[PULL v2 00/41] virtio,acpi: features, fixes, cleanups
 2020-07-07 17:50 UTC  (4+ messages)

[PATCH v2 0/2] tpm: Some fixes
 2020-07-07 17:43 UTC  (4+ messages)
` [PATCH v2 2/2] tests: Skip over pcrUpdateCounter byte in result comparison

[Bug 1869006] [NEW] PCIe cards passthrough to TCG guest works on 2GB of guest memory but fails on 4GB (vfio_dma_map invalid arg)
 2020-07-07 17:27 UTC  (2+ messages)
` [Bug 1869006] "

[PATCH v1 0/3] A few RISC-V fixes
 2020-07-07 17:23 UTC  (7+ messages)
` [PATCH v1 1/3] hw/char: Convert the Ibex UART to use the qdev Clock model
` [PATCH v1 3/3] target/riscv: Regen floating point rounding mode in dynamic mode

[PATCH v1] configure: fix malloc check
 2020-07-07 17:13 UTC 

[PATCH v3 0/3] Make hcd-xhci independent of pci hooks
 2020-07-07 16:44 UTC  (4+ messages)
` [PATCH v3 1/3] usb/hcd-xhci: Make dma read/writes hooks pci free
` [PATCH v3 2/3] usb/hcd-xhci: Move qemu-xhci device to hcd-xhci-pci.c
` [PATCH v3 3/3] usb/hcd-xhci: Split pci wrapper for xhci base model

[PATCH] linux-user: fix the errno value in print_syscall_err()
 2020-07-07 17:11 UTC 

QEMU | Pipeline #164014449 has failed for master | 710fb08f
 2020-07-07 16:50 UTC 

[PATCH v2 01/21] softfloat: make NO_SIGNALING_NANS runtime property
 2020-07-07 16:46 UTC 

[RFC v2 0/6] QEMU cpus.c refactoring part2
 2020-07-07 17:01 UTC  (5+ messages)
` [RFC v2 1/6] cpus: extract out TCG-specific code to accel/tcg
` [RFC v2 3/6] cpus: extract out kvm-specific code to accel/kvm

[PULL 00/12] Block layer patches
 2020-07-07 16:35 UTC  (13+ messages)
` [PULL 01/12] qemu-img map: Don't limit block status request size
` [PULL 02/12] file-posix: Mitigate file fragmentation with extent size hints
` [PULL 03/12] qemu-img: Flush stdout before before potential stderr messages
` [PULL 04/12] block: Finish deprecation of 'qemu-img convert -n -o'
` [PULL 05/12] sheepdog: Add trivial backing_fmt support
` [PULL 06/12] vmdk: "
` [PULL 07/12] qcow: Tolerate backing_fmt=
` [PULL 08/12] block: Error if backing file fails during creation without -u
` [PULL 09/12] qcow2: Deprecate use of qemu-img amend to change backing file
` [PULL 10/12] iotests: Specify explicit backing format where sensible
` [PULL 11/12] block: Add support to warn on backing file change without format
` [PULL 12/12] qemu-img: Deprecate use of -b without -F

[PATCH 00/21] target/xtensa: implement double precision FPU
 2020-07-07 16:56 UTC  (3+ messages)

[PATCH] ppc/pnv: Make PSI device types not user creatable
 2020-07-07 16:35 UTC 

[PATCH 0/4] hw/sd/milkymist: Do not create SD card within the SDHCI controller
 2020-07-07 16:30 UTC  (8+ messages)
` [PATCH 2/4] hw/lm32/milkymist: Comment to remember some IRQs lines are left unwired

[PATCH] Fix MIPS add.s after 1ace099f2acb952eaaef0ba7725879949a7e4406
 2020-07-07 16:26 UTC  (2+ messages)

[PATCH] net/tap-solaris.c: Include qemu-common.h for TFR macro
 2020-07-07 16:18 UTC  (6+ messages)

[PATCH 0/5] preallocate filter
 2020-07-07 16:10 UTC  (5+ messages)
` [PATCH 1/5] block/io: introduce bdrv_try_mark_request_serialising
` [PATCH 2/5] block/io: introduce bdrv_co_range_try_lock

[PATCH v6 00/10] Tighten qemu-img rules on missing backing format
 2020-07-07 16:08 UTC  (4+ messages)
` [PATCH v6 08/10] iotests: Specify explicit backing format where sensible

[PATCH 0/2] hw/sd/sdcard: Fix CVE-2020-13253 (Do not allow invalid SD card sizes)
 2020-07-07 16:11 UTC  (8+ messages)
` [PATCH 1/2] tests/acceptance/boot_linux: Truncate SD card image to power of 2
` [PATCH 2/2] hw/sd/sdcard: Do not allow invalid SD card sizes

[PATCH for-5.1] file-posix: Mitigate file fragmentation with extent size hints
 2020-07-07 16:17 UTC  (2+ messages)

[PATCH] hw/register: Document register_init_block @memory_size
 2020-07-07 16:00 UTC  (2+ messages)

[Bug 1886602] [NEW] Windows 10 very slow with OVMF
 2020-07-07 15:47 UTC  (2+ messages)
` [Bug 1886602] "

DMA region abruptly removed from PCI device
 2020-07-07 15:54 UTC  (4+ messages)

[PATCH v5 0/5] virtio-pci: enable blk and scsi multi-queue by default
 2020-07-07 15:46 UTC  (5+ messages)
` [PATCH v5 1/5] virtio-pci: add virtio_pci_optimal_num_queues() helper
` [PATCH v5 3/5] virtio-scsi: default num_queues to -smp N

[PATCH] disas/riscv: Fix incorrect disassembly for `imm20` operand
 2020-07-07 15:43 UTC 

[PATCH] target/arm: Don't do raw writes for PMINTENCLR
 2020-07-07 15:26 UTC 

hw/intc/xics.c:605: ics_realize: Assertion `ics->xics' failed
 2020-07-07 15:31 UTC  (3+ messages)

[PATCH] qemu-img map: Don't limit block status request size
 2020-07-07 15:30 UTC  (4+ messages)

[PULL 00/12] Block patches
 2020-07-07 15:28 UTC  (4+ messages)

[PATCH] MAINTAINERS: update nvme entry
 2020-07-07 15:26 UTC  (2+ messages)

[PULL 0/1] Tracing patches
 2020-07-07 15:20 UTC  (2+ messages)
` [PULL 1/1] tracetool: work around ust <sys/sdt.h> include conflict

[PULL 0/6] qtest and misc patches
 2020-07-07 15:20 UTC  (2+ messages)

[qemu-web PATCH] new page: conservancy.md
 2020-07-07 15:19 UTC  (2+ messages)

[PULL 00/15] Renesas hardware patches for 2020-06-21
 2020-07-07 15:06 UTC  (7+ messages)
` [PULL 07/15] hw/timer: RX62N 8-Bit timer (TMR)


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