messages from 2021-01-11 23:13:13 to 2021-01-12 10:36:29 UTC [more...]
[PATCH v6 00/72] support vector extension v1.0
2021-01-12 9:39 UTC (63+ messages)
` [PATCH v6 01/72] target/riscv: drop vector 0.7.1 and add 1.0 support
` [PATCH v6 02/72] target/riscv: Use FIELD_EX32() to extract wd field
` [PATCH v6 03/72] target/riscv: rvv-1.0: add mstatus VS field
` [PATCH v6 04/72] target/riscv: rvv-1.0: add sstatus "
` [PATCH v6 05/72] target/riscv: rvv-1.0: introduce writable misa.v field
` [PATCH v6 06/72] target/riscv: rvv-1.0: add translation-time vector context status
` [PATCH v6 07/72] target/riscv: rvv-1.0: remove rvv related codes from fcsr registers
` [PATCH v6 08/72] target/riscv: rvv-1.0: add vcsr register
` [PATCH v6 09/72] target/riscv: rvv-1.0: add vlenb register
` [PATCH v6 10/72] target/riscv: rvv-1.0: check MSTATUS_VS when accessing vector csr registers
` [PATCH v6 11/72] target/riscv: rvv-1.0: remove MLEN calculations
` [PATCH v6 12/72] target/riscv: rvv-1.0: add fractional LMUL
` [PATCH v6 13/72] target/riscv: rvv-1.0: add VMA and VTA
` [PATCH v6 14/72] target/riscv: rvv-1.0: update check functions
` [PATCH v6 15/72] target/riscv: introduce more imm value modes in translator functions
` [PATCH v6 16/72] target/riscv: rvv:1.0: add translation-time nan-box helper function
` [PATCH v6 17/72] target/riscv: rvv-1.0: configure instructions
` [PATCH v6 18/72] target/riscv: rvv-1.0: stride load and store instructions
` [PATCH v6 19/72] target/riscv: rvv-1.0: index "
` [PATCH v6 20/72] target/riscv: rvv-1.0: fix address index overflow bug of indexed load/store insns
` [PATCH v6 21/72] target/riscv: rvv-1.0: fault-only-first unit stride load
` [PATCH v6 22/72] target/riscv: rvv-1.0: amo operations
` [PATCH v6 23/72] target/riscv: rvv-1.0: load/store whole register instructions
` [PATCH v6 24/72] target/riscv: rvv-1.0: update vext_max_elems() for load/store insns
` [PATCH v6 25/72] target/riscv: rvv-1.0: take fractional LMUL into vector max elements calculation
` [PATCH v6 26/72] target/riscv: rvv-1.0: floating-point square-root instruction
` [PATCH v6 27/72] target/riscv: rvv-1.0: floating-point classify instructions
` [PATCH v6 28/72] target/riscv: rvv-1.0: mask population count instruction
` [PATCH v6 29/72] target/riscv: rvv-1.0: find-first-set mask bit instruction
` [PATCH v6 30/72] target/riscv: rvv-1.0: set-X-first mask bit instructions
` [PATCH v6 31/72] target/riscv: rvv-1.0: iota instruction
` [PATCH v6 32/72] target/riscv: rvv-1.0: element index instruction
` [PATCH v6 33/72] target/riscv: rvv-1.0: allow load element with sign-extended
` [PATCH v6 34/72] target/riscv: rvv-1.0: register gather instructions
` [PATCH v6 35/72] target/riscv: rvv-1.0: integer scalar move instructions
` [PATCH v6 36/72] target/riscv: rvv-1.0: floating-point move instruction
` [PATCH v6 37/72] target/riscv: rvv-1.0: floating-point scalar move instructions
` [PATCH v6 38/72] target/riscv: rvv-1.0: whole register "
` [PATCH v6 39/72] target/riscv: rvv-1.0: integer extension instructions
` [PATCH v6 40/72] target/riscv: rvv-1.0: single-width averaging add and subtract instructions
` [PATCH v6 41/72] target/riscv: rvv-1.0: single-width bit shift instructions
` [PATCH v6 42/72] target/riscv: rvv-1.0: integer add-with-carry/subtract-with-borrow
` [PATCH v6 43/72] target/riscv: rvv-1.0: narrowing integer right shift instructions
` [PATCH v6 44/72] target/riscv: rvv-1.0: widening integer multiply-add instructions
` [PATCH v6 45/72] target/riscv: rvv-1.0: single-width saturating add and subtract instructions
` [PATCH v6 46/72] target/riscv: rvv-1.0: integer comparison instructions
` [PATCH v6 47/72] target/riscv: rvv-1.0: floating-point compare instructions
` [PATCH v6 48/72] target/riscv: rvv-1.0: mask-register logical instructions
` [PATCH v6 49/72] target/riscv: rvv-1.0: slide instructions
` [PATCH v6 50/72] target/riscv: rvv-1.0: floating-point "
` [PATCH v6 51/72] target/riscv: rvv-1.0: narrowing fixed-point clip instructions
` [PATCH v6 53/72] target/riscv: rvv-1.0: widening floating-point reduction instructions
` [PATCH v6 55/72] target/riscv: rvv-1.0: remove widening saturating scaled multiply-add
` [PATCH v6 56/72] target/riscv: rvv-1.0: remove vmford.vv and vmford.vf
` [PATCH v6 58/72] target/riscv: rvv-1.0: floating-point min/max instructions
` [PATCH v6 59/72] target/riscv: introduce floating-point rounding mode enum
` [PATCH v6 61/72] target/riscv: rvv-1.0: widening floating-point/integer type-convert
` [PATCH v6 62/72] target/riscv: add "set round to odd" rounding mode helper function
` [PATCH v6 65/72] target/riscv: rvv-1.0: implement vstart CSR
` [PATCH v6 66/72] target/riscv: rvv-1.0: trigger illegal instruction exception if frm is not valid
` [PATCH v6 67/72] target/riscv: rvv-1.0: set mstatus.SD bit when writing vector CSRs
` [PATCH v6 69/72] target/riscv: gdb: support vector registers for rv64 & rv32
[PATCH] hw/block/nvme: fix zone write finalize
2021-01-12 9:42 UTC
[PATCH v6 00/35] Hexagon patch series
2021-01-12 9:35 UTC (6+ messages)
` [PATCH v6 05/35] Hexagon (disas) disassembler
[PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
2021-01-12 9:34 UTC (2+ messages)
[RFC PATCH] Makefile: add GNU global tags support
2021-01-12 9:27 UTC (5+ messages)
[RFC v6 00/11] i386 cleanup
2021-01-12 9:23 UTC (15+ messages)
` [RFC v6 08/11] accel: extend AccelState and AccelClass to user-mode
` [RFC v6 10/11] accel: introduce AccelCPUClass extending CPUClass
What's the correct way to implement rfi and related instruction
2021-01-12 9:23 UTC (6+ messages)
[PATCH] cirrus.yml: Replace the hard-coded python-sphinx version with the generic one
2021-01-12 9:12 UTC (3+ messages)
[Bug 1911075] [NEW] [OSS-Fuzz] ahci: stack overflow in ahci_cond_start_engines
2021-01-12 8:59 UTC (2+ messages)
` [Bug 1911075] "
[PATCH v2 0/2] Fixing several GCC 11 warnings
2021-01-12 9:09 UTC (3+ messages)
` [PATCH v2 2/2] s390x: Use strpadcpy for copying vm name
[PATCHv4 00/18] ARMv8.4-A Secure EL2
2021-01-12 9:04 UTC (22+ messages)
` [PATCH 07/18] target/arm: add 64-bit S-EL2 to EL exception table
` [PATCH 09/18] target/arm: add ARMv8.4-SEL2 system registers
` [PATCH 12/18] target/arm: translate NS bit in page-walks
` [PATCH 13/18] target/arm: generalize 2-stage page-walk condition
` [PATCH 14/18] target/arm: secure stage 2 translation regime
` [PATCH 15/18] target/arm: set HPFAR_EL2.NS on secure stage 2 faults
` [PATCH 16/18] target/arm: add ARMv8.4-SEL2 extension
` [PATCH 18/18] target/arm: refactor vae1_tlbmask()
[PATCH v6 00/13] Generalize memory encryption models
2021-01-12 8:36 UTC (17+ messages)
` [PATCH v6 01/13] qom: Allow optional sugar props
` [PATCH v6 02/13] confidential guest support: Introduce new confidential guest support class
` [PATCH v6 03/13] sev: Remove false abstraction of flash encryption
` [PATCH v6 04/13] confidential guest support: Move side effect out of machine_set_memory_encryption()
` [PATCH v6 05/13] confidential guest support: Rework the "memory-encryption" property
` [PATCH v6 06/13] sev: Add Error ** to sev_kvm_init()
` [PATCH v6 07/13] confidential guest support: Introduce cgs "ready" flag
` [PATCH v6 08/13] confidential guest support: Move SEV initialization into arch specific code
` [PATCH v6 09/13] confidential guest support: Update documentation
` [PATCH v6 10/13] spapr: Add PEF based confidential guest support
` [PATCH v6 11/13] spapr: PEF: prevent migration
` [PATCH v6 12/13] confidential guest support: Alter virtio default properties for protected guests
` [PATCH v6 13/13] s390: Recognize confidential-guest-support option
[PATCH v2 0/3] Fix up sam460ex fixes
2021-01-12 6:22 UTC (2+ messages)
[for-6.0 v5 11/13] spapr: PEF: prevent migration
2021-01-12 8:19 UTC (12+ messages)
` "
` [EXTERNAL] "
[PATCH v3 0/5] s390x/tcg: fix booting Linux kernels compiled with clang-11 and clang-12
2021-01-12 8:16 UTC (5+ messages)
` [PATCH v3 4/5] tests/tcg/s390x: Fix EXRL tests
[PATCH 0/6] Update git repo URLs to GitLab
2021-01-12 8:01 UTC (14+ messages)
` [PATCH 1/6] .github: point Repo Lockdown bot to GitLab repo
` [PATCH 2/6] gitmodules: use GitLab repos instead of qemu.org
` [PATCH 3/6] gitlab-ci: remove redundant GitLab repo URL command
` [PATCH 4/6] docs: update README to use GitLab repo URLs
` [PATCH 5/6] pc-bios: update mirror URLs to GitLab
` [PATCH 6/6] get_maintainer: update repo URL "
[PATCH] hvf: guard xgetbv call
2021-01-12 7:49 UTC (9+ messages)
[PATCH v2 0/1] add smart_critical_warning property for nvme
2021-01-12 7:49 UTC (2+ messages)
` [PATCH v2 1/1] hw/block/nvme: add smart_critical_warning property
[PATCH v2] hvf: guard xgetbv call
2021-01-12 7:46 UTC (4+ messages)
[PULL v2 00/15] Testing, CI and bsd-user patches
2021-01-12 7:44 UTC (3+ messages)
[PATCH] machine: add missing doc for memory-backend option
2021-01-12 7:39 UTC (2+ messages)
[PATCH] Dump NT_FILE note when generate coredump
2021-01-12 5:09 UTC
[RFC v3 00/16] support subsets of bitmanip extension
2021-01-12 5:47 UTC (24+ messages)
` [RFC v3 01/16] target/riscv: reformat @sh format encoding for B-extension
` [RFC v3 02/16] target/riscv: rvb: count leading/trailing zeros
` [RFC v3 03/16] target/riscv: rvb: count bits set
` [RFC v3 04/16] target/riscv: rvb: logic-with-negate
` [RFC v3 05/16] target/riscv: rvb: pack two words into one register
` [RFC v3 06/16] target/riscv: rvb: min/max instructions
` [RFC v3 07/16] target/riscv: rvb: sign-extend instructions
` [RFC v3 08/16] target/riscv: add gen_shifti() and gen_shiftiw() helper functions
` [RFC v3 09/16] target/riscv: rvb: single-bit instructions
` [RFC v3 10/16] target/riscv: rvb: shift ones
` [RFC v3 11/16] target/riscv: rvb: rotate (left/right)
` [RFC v3 12/16] target/riscv: rvb: generalized reverse
` [RFC v3 13/16] target/riscv: rvb: generalized or-combine
` [RFC v3 14/16] target/riscv: rvb: address calculation
` [RFC v3 15/16] target/riscv: rvb: add/shift with prefix zero-extend
` [RFC v3 16/16] target/riscv: rvb: support and turn on B-extension from command line
[PATCH 0/4] target/riscv: Generate the GDB XML file for CSR registers dynamically
2021-01-12 4:52 UTC (5+ messages)
` [PATCH 1/4] target/riscv: Make csr_ops[CSR_TABLE_SIZE] external
` [PATCH 2/4] target/riscv: Add CSR name in the CSR function table
` [PATCH 3/4] target/riscv: Generate the GDB XML file for CSR registers dynamically
` [PATCH 4/4] target/riscv: Remove built-in GDB XML files for CSRs
[PATCH 0/5] net/tap: some fixes and refactorings
2021-01-12 4:53 UTC (3+ messages)
` [PATCH 5/5] net/tap: net_init_tap_one(): fix net-client leak on failure path
[Qemu-devel] [Bug 1782300] [NEW] COLO unable to failover to secondary VM
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1782300] "
[Qemu-devel] [Bug 1782107] [NEW] Random errors when emulating armv7 and using dh
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1782107] "
[Qemu-devel] [Bug 1791947] [NEW] isochronous usb device forwarding with windows 10 and xhci freezes
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1791947] "
[Qemu-devel] [Bug 786208] [NEW] Missing checks for non-existent device in ide_exec_cmd
2021-01-12 4:17 UTC (2+ messages)
` [Bug 786208] "
[Qemu-devel] [Bug 1626596] [NEW] Lockup with vhost network
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1626596] "
[Bug 1794950] Re: qemu hangs when guest is using linux kernel 4.16+
2021-01-12 4:17 UTC
[Qemu-devel] [Bug 670769] [NEW] CDROM size not updated when changing image files
2021-01-12 4:17 UTC (2+ messages)
` [Bug 670769] "
[Qemu-devel] [Bug 1626207] [NEW] -device usb-host failing with usbip_vudc-vhdi_hcd gadget
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1626207] "
[Qemu-devel] [Bug 1780815] [NEW] SDL Doesn't Rescale Image on Resolution Change
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1780815] "
[Qemu-devel] [Bug 1795369] [NEW] Record/replay (icount rr) causes emulation hang or exit with error about missing events in log
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1795369] "
[Qemu-devel] [Bug 1779649] [NEW] Suspending a domain works with a 3.16 gues kernel but not with a 4.16 one
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1779649] "
[Qemu-devel] [Bug 1781515] [NEW] Resolution switch leads to the screen/image being corrupted
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1781515] "
[Bug 1793297] Re: windows's paint software cross-shadped cursor offset a pixel in guest windows which is generated by qemu-kvm
2021-01-12 4:17 UTC
[Bug 1794285] Re: 100% Host CPU usage while guest idling
2021-01-12 4:17 UTC
[Qemu-devel] [Bug 1779120] [NEW] disk missing in the guest contingently when hotplug several virtio scsi disks consecutively
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1779120] "
[Qemu-devel] [Bug 1795799] [NEW] Cirrus video, graphical corruption, bad fonts
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1795799] "
[Bug 1793791] Re: Crash with nbd_reply_chunk_iter_receive: Assertion `chunk->flags & NBD_REPLY_FLAG_DONE' failed
2021-01-12 4:17 UTC
[Qemu-devel] [Bug 1792193] [NEW] AMD Athlon(tm) X2 Dual-Core QL-64 bug
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1792193] "
[Qemu-devel] [Bug 1796816] [NEW] Wrong keyboard in QEMU Windows for OpenSUSE PowerPC
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1796816] "
[Bug 1903833] [NEW] User mode qemu-aarch: SIGGSEGV signal handler works wrong
2021-01-12 4:17 UTC (2+ messages)
` [Bug 1903833] "
[PATCH] hw/intc/ppc-uic: Make default dcr-base 0xc0, not 0x30
2021-01-12 4:18 UTC (4+ messages)
[for-6.0 v5 00/13] Generalize memory encryption models
2021-01-12 3:49 UTC (9+ messages)
` [for-6.0 v5 03/13] securable guest memory: Handle memory encryption via interface
` [for-6.0 v5 06/13] securable guest memory: Decouple kvm_memcrypt_*() helpers from KVM
[PATCH 0/2] hw/mips/loongson3_virt: Add TCG SMP support
2021-01-12 3:32 UTC (3+ messages)
` [PATCH 1/2] hw/intc: Add Loongson Inter Processor Interrupt controller
` [PATCH 2/2] hw/mips/loongson3_virt: Add TCG SMP support
[PATCH] scsi: allow user to set werror as report
2021-01-12 2:39 UTC (6+ messages)
[PATCH] tests/acceptance: Test PMON with Loongson-3A1000 CPU
2021-01-12 2:07 UTC
[PATCH] hw/intc/loongson_liointc: Fix per core ISR handling
2021-01-12 1:25 UTC
[PATCH] hw/block: m25p80: Fix fast read for SST flashes
2021-01-12 1:10 UTC (15+ messages)
[PULL 00/35] MIPS patches for 2021-01-03
2021-01-12 0:35 UTC (10+ messages)
` [PULL 23/35] hw/intc: Rework Loongson LIOINTC
qemu bsd-user plans
2021-01-12 0:33 UTC (3+ messages)
[PATCH 0/2] sysemu: Let VMChangeStateHandler take boolean 'running' argument
2021-01-12 0:17 UTC (3+ messages)
` [PATCH 2/2] "
[PATCH v7 0/3] target/arm: Implement an IMPDEF pauth algorithm
2021-01-11 23:57 UTC (4+ messages)
` [PATCH v7 1/3] "
` [PATCH v7 2/3] target/arm: Add cpu properties to control pauth
` [PATCH v7 3/3] target/arm: Use object_property_add_bool for "sve" property
[PATCHv2 1/2] target/arm: ARMv8.4-TTST extension
2021-01-12 0:02 UTC (2+ messages)
[PATCHv2 2/2] target/arm: enable Small Translation tables in max CPU
2021-01-12 0:01 UTC (2+ messages)
[PATCH v6 0/3] target/arm: Implement an IMPDEF pauth algorithm
2021-01-11 23:54 UTC (5+ messages)
` [PATCH v6 1/3] "
` [PATCH v6 2/3] target/arm: Add cpu properties to control pauth
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).