qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-08-08 04:22:49 to 2023-08-08 21:09:45 UTC [more...]

[PULL 00/14] linux-user image mapping fixes
 2023-08-08 21:08 UTC  (3+ messages)
` [PULL 04/14] linux-user: Use MAP_FIXED_NOREPLACE for initial image mmap
` [PULL 07/14] linux-user: Do not adjust image mapping for host page size

[PATCH 1/2] riscv: zicond: make non-experimental
 2023-08-08 21:06 UTC  (6+ messages)
` [PATCH 2/2] riscv: zicond: make default

[PATCH 00/33] Implement the stat system calls for FreeBSD
 2023-08-08 21:03 UTC  (37+ messages)
` [PATCH 01/33] Move _WANT_FREEBSD macros to include/qemu/osdep.h
` [PATCH 02/33] Disable clang warnings arising from bsd-user/qemu.h
` [PATCH 03/33] Update the definitions of __put_user and __get_user macros
` [PATCH 04/33] Declarations of h2t and t2h conversion functions
` [PATCH 05/33] Forward declare functions defined in os-stat.c
` [PATCH 06/33] Add struct target_freebsd11_stat to bsd-user/syscall_defs
` [PATCH 07/33] Add struct target_stat to bsd-user/syscall_defs.h
` [PATCH 08/33] Add structs target_freebsd11_nstat and target_freebsd11_statfs "
` [PATCH 09/33] Add struct target_statfs "
` [PATCH 10/33] Add struct target_freebsd_fhandle and fcntl flags "
` [PATCH 11/33] Define safe_fcntl macro in bsd-user/syscall_defs.h
` [PATCH 12/33] Rename target_freebsd_time_t to target_time_t
` [PATCH 13/33] Implement host-target convertion functions
` [PATCH 14/33] "
` [PATCH 15/33] "
` [PATCH 16/33] "
` [PATCH 17/33] Implement h2t_freebsd_stat and h2t_freebsd_statfs functions
` [PATCH 18/33] Implement stat related syscalls
` [PATCH 19/33] "
` [PATCH 20/33] "
` [PATCH 21/33] "
` [PATCH 22/33] "
` [PATCH 23/33] Implement freebsd11 "
` [PATCH 24/33] "
` [PATCH 25/33] "
` [PATCH 26/33] "
` [PATCH 27/33] "
` [PATCH 28/33] Implement do_freebsd_realpathat syscall
` [PATCH 29/33] Add os-stat.c to the build
` [PATCH 30/33] Add glue to call the following syscalls to the freebsd_syscall function:
` [PATCH 31/33] "
` [PATCH 32/33] "
` [PATCH 33/33] "

[PATCH v1 0/3] softmmu/physmem: file_ram_open() readonly improvements
 2023-08-08 21:01 UTC  (4+ messages)
` [PATCH v1 1/3] softmmu/physmem: fallback to opening guest RAM file as readonly in a MAP_PRIVATE mapping
` Re:[PATCH v1 0/3] softmmu/physmem: file_ram_open() readonly improvements

[PATCH for-8.2 v2 1/2] qapi/migration: Deduplicate migration parameter field comments
 2023-08-08 20:03 UTC  (11+ messages)

[PATCH v4 00/11] Add la32 & va32 mode for loongarch64-softmmu
 2023-08-08 19:26 UTC  (24+ messages)
` [PATCH v4 01/11] target/loongarch: Add macro to check current arch
` [PATCH v4 02/11] target/loongarch: Add new object class for loongarch32 cpus
` [PATCH v4 03/11] target/loongarch: Add GDB support for loongarch32 mode
` [PATCH v4 04/11] target/loongarch: Support LoongArch32 TLB entry
` [PATCH v4 05/11] target/loongarch: Support LoongArch32 DMW
` [PATCH v4 06/11] target/loongarch: Support LoongArch32 VPPN
` [PATCH v4 07/11] target/loongarch: Add LA32 & VA32 to DisasContext
` [PATCH v4 08/11] target/loongarch: Reject la64-only instructions in la32 mode
` [PATCH v4 09/11] target/loongarch: Truncate high 32 bits of address in VA32 mode
` [PATCH v4 10/11] target/loongarch: Sign extend results "
` [PATCH v4 11/11] target/loongarch: Add loongarch32 cpu la132

[PULL 0/3] fix ppc64le build, fully kill alpha and s390 linux-user
 2023-08-08 18:45 UTC  (4+ messages)
` [PULL 1/3] configure: fix detection for x32 linux-user
` [PULL 2/3] linux-user: cleanup unused linux-user/include/host directories
` [PULL 3/3] configure: unify case statements for CPU canonicalization

[PATCH 1/2] hw/intc: Fix upper/lower mtime write calculation
 2023-08-08 18:41 UTC  (4+ messages)
` [PATCH 2/2] hw/intc: Make rtc variable names consistent

[PATCH] target/loongarch: Split fcc register to fcc0-7 in gdbstub
 2023-08-08 18:40 UTC  (7+ messages)

[PATCH 0/2] block: change reqs_lock to QemuMutex
 2023-08-08 18:22 UTC  (5+ messages)
` [PATCH 1/2] block: minimize bs->reqs_lock section in tracked_request_end()
` [PATCH 2/2] block: change reqs_lock to QemuMutex

[PATCH v5 0/5] eBPF RSS through QMP support
 2023-08-08 17:43 UTC  (4+ messages)
` [PATCH v5 4/5] qmp: Added new command to retrieve eBPF blob

[PATCH for-8.1 v10 00/14] linux-user: image mapping fixes
 2023-08-08 17:40 UTC  (37+ messages)
` [PATCH for-8.1 v10 01/14] linux-user: Adjust task_unmapped_base for reserved_va
` [PATCH for-8.1 v10 02/14] linux-user: Define TASK_UNMAPPED_BASE in $guest/target_mman.h
` [PATCH for-8.1 v10 04/14] linux-user: Use MAP_FIXED_NOREPLACE for initial image mmap
` [PATCH for-8.1 v10 05/14] linux-user: Use elf_et_dyn_base for ET_DYN with interpreter
` [PATCH for-8.1 v10 06/14] linux-user: Adjust initial brk when interpreter is close to executable
` [PATCH for-8.1 v10 07/14] linux-user: Do not adjust image mapping for host page size
` [PATCH for-8.1 v10 08/14] linux-user: Do not adjust zero_bss "
` [PATCH for-8.1 v10 09/14] linux-user: Use zero_bss for PT_LOAD with no file contents too
` [PATCH for-8.1 v10 10/14] util/selfmap: Rewrite using qemu/interval-tree.h
` [PATCH for-8.1 v10 11/14] linux-user: Remove duplicate CPU_LOG_PAGE from probe_guest_base
` [PATCH for-8.1 v10 12/14] linux-user: Consolidate guest bounds check in probe_guest_base
` [PATCH for-8.1 v10 13/14] linux-user: Rewrite fixed probe_guest_base
` [PATCH for-8.1 v10 14/14] linux-user: Rewrite non-fixed probe_guest_base

[PATCH] i386/xen: Don't advertise XENFEAT_supervisor_mode_kernel
 2023-08-08 17:08 UTC 

[PATCH] block-migration: Ensure we don't crash during migration cleanup
 2023-08-08 17:08 UTC  (3+ messages)

[PATCH for-8.2 00/24] tcg: Introduce negsetcond opcodes
 2023-08-08 16:56 UTC  (14+ messages)
` [PATCH 02/24] tcg: Use tcg_gen_negsetcond_*
` [PATCH 07/24] target/ppc: "
` [PATCH 09/24] target/tricore: Replace gen_cond_w with tcg_gen_negsetcond_tl
` [PATCH 10/24] tcg/ppc: Implement negsetcond_*
` [PATCH 11/24] tcg/ppc: Use the Set Boolean Extension
` [PATCH 14/24] tcg/riscv: Implement negsetcond_*

[PATCH] qemu/osdep: Remove fallback for MAP_FIXED_NOREPLACE
 2023-08-08 16:44 UTC 

[PATCH for-8.1] linux-user: Define real MAP_FIXED_NOREPLACE value
 2023-08-08 16:19 UTC  (4+ messages)

cpu/i386: update xsave components after CPUID filtering
 2023-08-08 15:58 UTC 

[RFC v1 0/3] Initial support for SPDM
 2023-08-08 15:51 UTC  (4+ messages)
` [RFC v1 1/3] subprojects: libspdm: Initial support
` [RFC v1 2/3] hw: nvme: ctrl: Initial support for DOE
` [RFC v1 3/3] hw: nvme: ctrl: Process SPDM requests

[PATCH] Add support of callbacks after instructions to plugin api
 2023-08-08 15:48 UTC  (4+ messages)

[PATCH] vfio/pci: hide ROM BAR on SFC9220 10/40G Ethernet Controller PF
 2023-08-08 15:40 UTC  (2+ messages)

[PATCH] thunk: Delete checks for old host definitions
 2023-08-08 15:32 UTC  (2+ messages)

[PATCH] util: Delete a check for IA-64
 2023-08-08 15:23 UTC  (2+ messages)

[PATCH 0/2] hw/nvme: two fixes
 2023-08-08 15:16 UTC  (3+ messages)
` [PATCH 1/2] hw/nvme: fix null pointer access in directive receive
` [PATCH 2/2] hw/nvme: fix null pointer access in ruh update

[PATCH for-8.1 v2] linux-user: Define real MAP_FIXED_NOREPLACE value
 2023-08-08 15:06 UTC 

[PATCH v3] hw/cxl: Fix CFMW config memory leak
 2023-08-08 14:44 UTC  (5+ messages)

[PATCH] linux-user/riscv: Use abi_ulong for target_ucontext
 2023-08-08 14:28 UTC  (3+ messages)

[PATCH RFC 0/1] tcg: Always pass the full write size to notdirty_write()
 2023-08-08 14:23 UTC  (5+ messages)
` [PATCH RFC 1/1] "

[RFC v4 00/11] Native Library Calls
 2023-08-08 14:17 UTC  (12+ messages)
` [RFC v4 01/11] build: Implement logic for sharing cross-building config files
` [RFC v4 02/11] build: Implement libnative library and the build machinery for libnative
` [RFC v4 03/11] linux-user: Implement envlist_appendenv and add tests for envlist
` [RFC v4 04/11] linux-user: Implement native-bypass option support
` [RFC v4 05/11] linux-user/elfload: Add support for parsing symbols of native libraries
` [RFC v4 06/11] tcg: Add tcg opcodes and helpers for native library calls
` [RFC v4 07/11] target/i386: Add support "
` [RFC v4 08/11] target/mips: "
` [RFC v4 09/11] target/arm: "
` [RFC v4 10/11] tests/tcg/multiarch: Add nativecall.c test
` [RFC v4 11/11] docs/user: Add doc for native library calls

[PULL v2] hw/nvme fixes
 2023-08-08 13:35 UTC 

[PATCH v2 0/3] linux-user, configure: fix CPU canonicalization
 2023-08-08 12:55 UTC  (9+ messages)
` [PATCH v2 1/3] configure: fix detection for x32 linux-user
` [PATCH v2 2/3] linux-user: cleanup unused linux-user/include/host directories
` [PATCH v2 3/3] configure: unify case statements for CPU canonicalization

[PATCH for-8.2 v3 0/6] vfio/migration: Add P2P support for VFIO migration
 2023-08-08 12:46 UTC  (5+ messages)
` [PATCH for-8.2 v3 1/6] vfio/migration: Move from STOP_COPY to STOP in vfio_save_cleanup()

[PATCH 0/8] Adds CPU hot-plug support to Loongarch
 2023-08-08 12:30 UTC  (13+ messages)
` [PATCH 3/8] Introduced a new function to disconnect GPIO connections
` [PATCH 6/8] Add support of *unrealize* for loongarch cpu
` [PATCH 7/8] Update the ACPI table for the Loongarch CPU
` [PATCH 8/8] Turn on CPU hot-(un)plug customization for loongarch

[RFC PATCH 0/5] hw/arm: MPAM Emulation + PPTT cache description
 2023-08-08 11:57 UTC  (6+ messages)
` [RFC PATCH 1/5] hw/acpi: Add PPTT cache descriptions
` [RFC PATCH 2/5] HACK: target/arm/tcg: Add some more caches to cpu=max
` [RFC PATCH 3/5] target/arm: Add support for MPAM CPU registers
` [RFC PATCH 4/5] hw/arm: Add MPAM emulation
` [RFC PATCH 5/5] hw/arm/virt: Add MPAM MSCs for memory controllers and caches

[PATCH v3 00/17] Support smp.clusters for x86
 2023-08-08 11:52 UTC  (4+ messages)

[RFC PATCH] hw/riscv: hart: allow other cpu instance
 2023-08-08 11:27 UTC  (4+ messages)

[PATCH 1/2] target/s390x: Use a 16-bit immediate in VREP
 2023-08-08 10:01 UTC  (6+ messages)

[PATCH v3] target/riscv: don't read CSR in riscv_csrrw_do64
 2023-08-08  9:09 UTC 

[PATCH v2 00/12] tests: enable meson test timeouts to improve debuggability
 2023-08-08  8:57 UTC  (2+ messages)

[PATCH for-8.2 0/3] pnv/lpc: Hook up xscoms for LPC
 2023-08-08  8:34 UTC  (4+ messages)
` [PATCH for-8.2 1/3] pnv/lpc: Place mmio regs in their own memory region
` [PATCH for-8.2 2/3] pnv/lpc: Hook up xscom region for P9/P10
` [PATCH for-8.2 3/3] HACK: pnv/lpc: Set up XSCOM dt for P9

[PULL 00/47] tcg + linux-user patch queue
 2023-08-08  7:19 UTC  (3+ messages)
` [PULL 15/47] include/exec/user: Set ABI_LLONG_ALIGNMENT to 4 for nios2

[PATCH] linux-user/elfload: Set V in ELF_HWCAP for RISC-V
 2023-08-08  6:36 UTC  (2+ messages)

[PULL 0/2] hw/nvme late fix
 2023-08-08  6:27 UTC  (3+ messages)
` [PULL 1/2] hw/nvme: fix CRC64 for guard tag
` [PULL 2/2] docs: update hw/nvme documentation for protection information

[PATCH] hw/nvme: fix oob memory read in fdp events log
 2023-08-08  6:15 UTC  (2+ messages)

[PATCH 0/3] hw/nvme: bug fixes and doc update
 2023-08-08  6:06 UTC  (9+ messages)
    ` [PATCH 2/3] hw/nvme: fix disable pi checks for Type 3 protection
    ` [PATCH 1/3] hw/nvme: fix CRC64 for guard tag
    ` [PATCH 3/3] docs: update hw/nvme documentation for protection information

[PATCH v2 for-8.2 00/19] ppc: record-replay enablement and fixes
 2023-08-08  4:19 UTC  (4+ messages)
` [PATCH v2 05/19] host-utils: Add muldiv64_round_up
` [PATCH v2 13/19] target/ppc: Fix CPU reservation migration for record-replay
` [PATCH v2 16/19] spapr: Fix record-replay machine reset consuming too many events


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