qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-02-03 19:13:09 to 2021-02-04 03:03:45 UTC [more...]

[PATCH 0/5] target/sh4: Pass MMUAccessType to get_physical_address()
 2021-02-04  2:42 UTC  (3+ messages)
` [PATCH 5/5] target/sh4: Remove unused definitions

[PATCH v2 00/93] TCI fixes and cleanups
 2021-02-04  1:58 UTC  (95+ messages)
` [PATCH v2 01/93] gdbstub: Fix handle_query_xfer_auxv
` [PATCH v2 02/93] tcg: Split out tcg_raise_tb_overflow
` [PATCH v2 03/93] configure: Fix --enable-tcg-interpreter
` [PATCH v2 04/93] tcg: Manage splitwx in tc_ptr_to_region_tree by hand
` [PATCH v2 05/93] tcg/tci: Make tci_tb_ptr thread-local
` [PATCH v2 06/93] tcg/tci: Implement INDEX_op_ld16s_i32
` [PATCH v2 07/93] tcg/tci: Implement INDEX_op_ld8s_i64
` [PATCH v2 08/93] tcg/tci: Inline tci_write_reg32s into the only caller
` [PATCH v2 09/93] tcg/tci: Inline tci_write_reg8 into its callers
` [PATCH v2 10/93] tcg/tci: Inline tci_write_reg16 into the only caller
` [PATCH v2 11/93] tcg/tci: Inline tci_write_reg32 into all callers
` [PATCH v2 12/93] tcg/tci: Inline tci_write_reg64 into 64-bit callers
` [PATCH v2 13/93] tcg/tci: Merge INDEX_op_ld8u_{i32,i64}
` [PATCH v2 14/93] tcg/tci: Merge INDEX_op_ld8s_{i32,i64}
` [PATCH v2 15/93] tcg/tci: Merge INDEX_op_ld16u_{i32,i64}
` [PATCH v2 16/93] tcg/tci: Merge INDEX_op_ld16s_{i32,i64}
` [PATCH v2 17/93] tcg/tci: Merge INDEX_op_{ld_i32,ld32u_i64}
` [PATCH v2 18/93] tcg/tci: Merge INDEX_op_st8_{i32,i64}
` [PATCH v2 19/93] tcg/tci: Merge INDEX_op_st16_{i32,i64}
` [PATCH v2 20/93] tcg/tci: Move stack bounds check to compile-time
` [PATCH v2 21/93] tcg/tci: Merge INDEX_op_{st_i32,st32_i64}
` [PATCH v2 22/93] tcg/tci: Use g_assert_not_reached
` [PATCH v2 23/93] tcg/tci: Remove dead code for TCG_TARGET_HAS_div2_*
` [PATCH v2 24/93] tcg/tci: Implement 64-bit division
` [PATCH v2 25/93] tcg/tci: Remove TODO as unused
` [PATCH v2 26/93] tcg/tci: Restrict TCG_TARGET_NB_REGS to 16
` [PATCH v2 27/93] tcg/tci: Fix TCG_REG_R4 misusage
` [PATCH v2 28/93] tcg/tci: Use bool in tcg_out_ri*
` [PATCH v2 29/93] tcg/tci: Remove TCG_CONST
` [PATCH v2 30/93] tcg/tci: Merge identical cases in generation
` [PATCH v2 31/93] tcg/tci: Remove tci_read_r8
` [PATCH v2 32/93] tcg/tci: Remove tci_read_r8s
` [PATCH v2 33/93] tcg/tci: Remove tci_read_r16
` [PATCH v2 34/93] tcg/tci: Remove tci_read_r16s
` [PATCH v2 35/93] tcg/tci: Remove tci_read_r32s
` [PATCH v2 36/93] tcg/tci: Reduce use of tci_read_r64
` [PATCH v2 37/93] tcg/tci: Merge basic arithmetic operations
` [PATCH v2 38/93] tcg/tci: Merge extension operations
` [PATCH v2 39/93] tcg/tci: Remove ifdefs for TCG_TARGET_HAS_ext32[us]_i64
` [PATCH v2 40/93] tcg/tci: Merge bswap operations
` [PATCH v2 41/93] tcg/tci: Merge mov, not and neg operations
` [PATCH v2 42/93] tcg/tci: Rename tci_read_r to tci_read_rval
` [PATCH v2 43/93] tcg/tci: Split out tci_args_rrs
` [PATCH v2 44/93] tcg/tci: Split out tci_args_rr
` [PATCH v2 45/93] tcg/tci: Split out tci_args_rrr
` [PATCH v2 46/93] tcg/tci: Split out tci_args_rrrc
` [PATCH v2 47/93] tcg/tci: Split out tci_args_l
` [PATCH v2 48/93] tcg/tci: Split out tci_args_rrrrrc
` [PATCH v2 49/93] tcg/tci: Split out tci_args_rrcl and tci_args_rrrrcl
` [PATCH v2 50/93] tcg/tci: Split out tci_args_ri and tci_args_rI
` [PATCH v2 51/93] tcg/tci: Reuse tci_args_l for calls
` [PATCH v2 52/93] tcg/tci: Reuse tci_args_l for exit_tb
` [PATCH v2 53/93] tcg/tci: Reuse tci_args_l for goto_tb
` [PATCH v2 54/93] tcg/tci: Split out tci_args_rrrrrr
` [PATCH v2 55/93] tcg/tci: Split out tci_args_rrrr
` [PATCH v2 56/93] tcg/tci: Clean up deposit operations
` [PATCH v2 57/93] tcg/tci: Reduce qemu_ld/st TCGMemOpIdx operand to 32-bits
` [PATCH v2 58/93] tcg/tci: Split out tci_args_{rrm,rrrm,rrrrm}
` [PATCH v2 59/93] tcg/tci: Hoist op_size checking into tci_args_*
` [PATCH v2 60/93] tcg/tci: Remove tci_disas
` [PATCH v2 61/93] tcg/tci: Implement the disassembler properly
` [PATCH v2 62/93] tcg: Build ffi data structures for helpers
` [PATCH v2 63/93] tcg/tci: Use ffi for calls
` [PATCH v2 64/93] tcg/tci: Improve tcg_target_call_clobber_regs
` [PATCH v2 65/93] tcg/tci: Move call-return regs to end of tcg_target_reg_alloc_order
` [PATCH v2 66/93] tcg/tci: Push opcode emit into each case
` [PATCH v2 67/93] tcg/tci: Split out tcg_out_op_rrs
` [PATCH v2 68/93] tcg/tci: Split out tcg_out_op_l
` [PATCH v2 69/93] tcg/tci: Split out tcg_out_op_p
` [PATCH v2 70/93] tcg/tci: Split out tcg_out_op_rr
` [PATCH v2 71/93] tcg/tci: Split out tcg_out_op_rrr
` [PATCH v2 72/93] tcg/tci: Split out tcg_out_op_rrrc
` [PATCH v2 73/93] tcg/tci: Split out tcg_out_op_rrrrrc
` [PATCH v2 74/93] tcg/tci: Split out tcg_out_op_rrrbb
` [PATCH v2 75/93] tcg/tci: Split out tcg_out_op_rrcl
` [PATCH v2 76/93] tcg/tci: Split out tcg_out_op_rrrrrr
` [PATCH v2 77/93] tcg/tci: Split out tcg_out_op_rrrr
` [PATCH v2 78/93] tcg/tci: Split out tcg_out_op_rrrrcl
` [PATCH v2 79/93] tcg/tci: Split out tcg_out_op_{rrm,rrrm,rrrrm}
` [PATCH v2 80/93] tcg/tci: Split out tcg_out_op_v
` [PATCH v2 81/93] tcg/tci: Split out tcg_out_op_np
` [PATCH v2 82/93] tcg/tci: Split out tcg_out_op_r[iI]
` [PATCH v2 83/93] tcg/tci: Reserve r13 for a temporary
` [PATCH v2 84/93] tcg/tci: Emit setcond before brcond
` [PATCH v2 85/93] tcg/tci: Remove tci_write_reg
` [PATCH v2 86/93] tcg/tci: Change encoding to uint32_t units
` [PATCH v2 87/93] tcg/tci: Implement goto_ptr
` [PATCH v2 88/93] tcg/tci: Implement movcond
` [PATCH v2 89/93] tcg/tci: Implement andc, orc, eqv, nand, nor
` [PATCH v2 90/93] tcg/tci: Implement extract, sextract
` [PATCH v2 91/93] tcg/tci: Implement clz, ctz, ctpop
` [PATCH v2 92/93] tcg/tci: Implement mulu2, muls2
` [PATCH v2 93/93] tcg/tci: Implement add2, sub2

[PATCH 00/13] target/mips: Replace integer by MMUAccessType enum when possible
 2021-02-04  2:39 UTC  (4+ messages)
` [PATCH 07/13] target/mips: Let page_table_walk_refill() take MMUAccessType argument

[PATCH v5 00/15] qapi: static typing conversion, pt2
 2021-02-04  0:32 UTC  (16+ messages)
` [PATCH v5 01/15] qapi/introspect.py: assert schema is not None
` [PATCH v5 02/15] qapi/introspect.py: use _make_tree for features nodes
` [PATCH v5 03/15] qapi/introspect.py: add _gen_features helper
` [PATCH v5 04/15] qapi/introspect.py: guard against ifcond/comment misuse
` [PATCH v5 05/15] qapi/introspect.py: Unify return type of _make_tree()
` [PATCH v5 06/15] qapi/introspect.py: replace 'extra' dict with 'comment' argument
` [PATCH v5 07/15] qapi/introspect.py: Always define all 'extra' dict keys
` [PATCH v5 08/15] qapi/introspect.py: Introduce preliminary tree typing
` [PATCH v5 09/15] qapi/introspect.py: create a typed 'Annotated' data strutcure
` [PATCH v5 10/15] qapi/introspect.py: improve _tree_to_qlit error message
` [PATCH v5 11/15] qapi/introspect.py: improve readability of _tree_to_qlit
` [PATCH v5 12/15] qapi/introspect.py: add type hint annotations
` [PATCH v5 13/15] qapi/introspect.py: add introspect.json dummy types
` [PATCH v5 14/15] qapi/introspect.py: Add docstring to _tree_to_qlit
` [PATCH v5 15/15] qapi/introspect.py: Update copyright and authors list

[PATCH v3 0/3]
 2021-02-03 23:45 UTC  (5+ messages)
` [PATCH v3 1/3] slirp: Placeholder for libslirp ipv6 hostfwd support
` [PATCH v3 2/3] net/slirp.c: Refactor address parsing
` [PATCH v3 3/3] net: Add -ipv6-hostfwd option, ipv6_hostfwd_add/remove commands

[PATCH v4 00/14] qapi: static typing conversion, pt2
 2021-02-03 23:27 UTC  (18+ messages)
` [PATCH v4 04/14] qapi/introspect.py: guard against ifcond/comment misuse
` [PATCH v4 06/14] qapi/introspect.py: replace 'extra' dict with 'comment' argument
` [PATCH v4 07/14] qapi/introspect.py: Introduce preliminary tree typing
` [PATCH v4 08/14] qapi/introspect.py: create a typed 'Annotated' data strutcure
` [PATCH v4 11/14] qapi/introspect.py: add type hint annotations

gitlab containers are broken
 2021-02-03 23:04 UTC 

[PATCH v2 0/2] Add support for ipv6 host forwarding
 2021-02-03 22:31 UTC  (9+ messages)
` [PATCH v2 1/2] net/slirp.c: Refactor address parsing
` [PATCH v2 2/2] net: Add -ipv6-hostfwd option, ipv6_hostfwd_add/remove commands

[PATCH 00/20] Various vhost-user-gpu & UI fixes
 2021-02-03 22:21 UTC  (4+ messages)
` [PATCH 11/20] ui: add an optional get_flags callback to GraphicHwOps

[RFC PATCH v1 00/01] PCIe DOE for PCIe and CXL 2.0
 2021-02-03 17:23 UTC  (3+ messages)
` [RFC PATCH v1 01/01] "

[PATCH v15 00/23] i386 cleanup PART 2
 2021-02-03 22:07 UTC  (4+ messages)

cdrom scsi passthough not working well
 2021-02-03 16:56 UTC  (2+ messages)

[PATCH v2 00/36] block: update graph permissions update
 2021-02-03 21:33 UTC  (7+ messages)
` [PATCH v2 20/36] block: add bdrv_attach_child_common() transaction action
` [PATCH v2 22/36] block: split out bdrv_replace_node_noperm()
` [PATCH v2 23/36] block: adapt bdrv_append() for inserting filters

[PATCH] MAINTAINERS: Fix the location of virtiofsd.rst
 2021-02-03 21:19 UTC 

[PATCH v4 0/3] virtiofsd: prevent opening of special files (CVE-2020-35517)
 2021-02-03 21:14 UTC  (7+ messages)
` [PATCH v4 3/3] "

[RFC 0/4] New APIs for the Clock framework
 2021-02-03 21:14 UTC  (4+ messages)
` [RFC 3/4] clock: Add clock_ns_to_ticks() function

[PATCH v4 0/4] GitLab Custom Runners and Jobs (was: QEMU Gating CI)
 2021-02-03 21:06 UTC  (3+ messages)

[PATCH v4 0/4] target/arm: Add support for FEAT_DIT, Data Independent Timing
 2021-02-03 20:36 UTC  (5+ messages)
` [PATCH v4 2/4] target/arm: Support AA32 DIT by moving PSTATE_SS from cpsr into env->pstate

[PATCH v2] virtiofsd: vu_dispatch locking should never fail
 2021-02-03 20:23 UTC  (2+ messages)

[PATCH v4 00/18] Support Multifd for RDMA migration
 2021-02-03 20:19 UTC  (11+ messages)
` [PATCH v4 11/18] migration/rdma: record host_port for multifd RDMA
` [PATCH v4 12/18] migration/rdma: Create the multifd send channels for RDMA
` [PATCH v4 13/18] migration/rdma: Add the function for dynamic page registration
` [PATCH v4 14/18] migration/rdma: register memory for multifd RDMA channels
` [PATCH v4 16/18] migration/rdma: add rdma_channel into Migrationstate field

[PATCH 0/6] Move remaining x86 Travis jobs to the gitlab-CI
 2021-02-03 20:15 UTC  (6+ messages)
` [PATCH 1/6] travis.yml: Move gprof/gcov test across to gitlab
` [PATCH 6/6] travis.yml: Move the -fsanitize=thread compile-testing to the gitlab-CI

ARM Snapshots Not Backwards-Compatible
 2021-02-03 20:06 UTC  (3+ messages)
` [PATCH] target/arm: Don't migrate CPUARMState.features

[PATCH v21 00/20] Initial support for multi-process Qemu
 2021-02-03 20:02 UTC  (3+ messages)

[PATCH 0/4] Remove the deprecated pc-1.x machine types and related stuff
 2021-02-03 19:42 UTC  (3+ messages)
` [PATCH 3/4] hw/virtio/virtio-balloon: Remove the "class" property

[PATCH v5 00/31] target-arm: Implement ARMv8.5-MemTag, user mode
 2021-02-03 19:57 UTC  (34+ messages)
` [PATCH v5 01/31] tcg: Introduce target-specific page data for user-only
` [PATCH v5 02/31] linux-user: Introduce PAGE_ANON
` [PATCH v5 03/31] exec: Use uintptr_t for guest_base
` [PATCH v5 04/31] exec: Use uintptr_t in cpu_ldst.h
` [PATCH v5 05/31] exec: Improve types for guest_addr_valid
` [PATCH v5 06/31] linux-user: Check for overflow in access_ok
` [PATCH v5 07/31] linux-user: Tidy VERIFY_READ/VERIFY_WRITE
` [PATCH v5 08/31] bsd-user: "
` [PATCH v5 11/31] exec: Introduce cpu_untagged_addr
` [PATCH v5 12/31] exec: Use cpu_untagged_addr in g2h; split out g2h_untagged
` [PATCH v5 13/31] linux-user: Explicitly untag memory management syscalls
` [PATCH v5 14/31] linux-user: Use guest_range_valid in access_ok
` [PATCH v5 15/31] exec: Rename guest_{addr,range}_valid to *_untagged
` [PATCH v5 16/31] linux-user: Use cpu_untagged_addr in access_ok; split out *_untagged
` [PATCH v5 17/31] linux-user: Move lock_user et al out of line
` [PATCH v5 18/31] linux-user: Fix types in uaccess.c
` [PATCH v5 19/31] linux-user: Handle tags in lock_user/unlock_user
` [PATCH v5 20/31] linux-user/aarch64: Implement PR_TAGGED_ADDR_ENABLE
` [PATCH v5 21/31] target/arm: Improve gen_top_byte_ignore
` [PATCH v5 22/31] target/arm: Use the proper TBI settings for linux-user
` [PATCH v5 23/31] linux-user/aarch64: Implement PR_MTE_TCF and PR_MTE_TAG
` [PATCH v5 24/31] linux-user/aarch64: Implement PROT_MTE
` [PATCH v5 25/31] target/arm: Split out syndrome.h from internals.h
` [PATCH v5 26/31] linux-user/aarch64: Pass syndrome to EXC_*_ABORT
` [PATCH v5 27/31] linux-user/aarch64: Signal SEGV_MTESERR for sync tag check fault
` [PATCH v5 28/31] linux-user/aarch64: Signal SEGV_MTEAERR for async tag check error
` [PATCH v5 29/31] target/arm: Add allocation tag storage for user mode
` [PATCH v5 30/31] target/arm: Enable MTE for user-only
` [PATCH v5 31/31] tests/tcg/aarch64: Add mte smoke tests

[PULL v2 00/20] NBD patches for 2021-02-02
 2021-02-03 19:35 UTC  (2+ messages)

[PATCH v7 0/6] RISC-V Pointer Masking implementation
 2021-02-03 19:27 UTC  (8+ messages)
` [PATCH v7 2/6] [RISCV_PM] Support CSRs required for RISC-V PM extension except for the ones required for hypervisor mode
` [PATCH v7 4/6] [RISCV_PM] Support pointer masking for RISC-V for i/c/f/d/a types of instructions
` [PATCH v7 5/6] [RISCV_PM] Implement address masking functions required for RISC-V Pointer Masking extension

[PATCH v3 0/2] pci: add romsize property
 2021-02-03 19:14 UTC  (3+ messages)
` [PATCH v3 2/2] "


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