All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-08-02 19:02:32 to 2025-08-02 23:21:07 UTC [more...]

[PATCH v2 00/95] linux-user: Split up elfload.c
 2025-08-02 23:04 UTC  (69+ messages)
` [PATCH v2 01/95] semihosting: Retrieve stack top from image_info
` [PATCH v2 02/95] semihosting: Initialize heap once per process
` [PATCH v2 03/95] linux-user: Create target/elfload.c files
` [PATCH v2 04/95] linux-user: Move ppc uabi/asm/elf.h workaround to osdep.h
` [PATCH v2 05/95] linux-user: Move get_elf_cpu_model to target/elfload.c
` [PATCH v2 06/95] linux-user: Move get_elf_hwcap to {i386, x86_64}/elfload.c
` [PATCH v2 07/95] linux-user: Move hwcap functions to {arm, aarch64}/elfload.c
` [PATCH v2 08/95] linux-user: Move get_elf_hwcap to sparc/elfload.c
` [PATCH v2 09/95] linux-user: Move hwcap functions to ppc/elfload.c
` [PATCH v2 10/95] linux-user: Move get_elf_hwcap to loongarch64/elfload.c
` [PATCH v2 11/95] linux-user: Move get_elf_hwcap to mips/elfload.c
` [PATCH v2 12/95] linux-user: Move get_elf_hwcap to sh4/elfload.c
` [PATCH v2 13/95] linux-user: Move hwcap functions to s390x/elfload.c
` [PATCH v2 14/95] linux-user: Move get_elf_hwcap to riscv/elfload.c
` [PATCH v2 15/95] linux-user: Remove ELF_HWCAP
` [PATCH v2 16/95] linux-user: Remove ELF_HWCAP2
` [PATCH v2 17/95] linux-user: Move get_elf_platform to {i386, x86_64}/elfload.c
` [PATCH v2 18/95] linux-user/i386: Return const data from get_elf_platform
` [PATCH v2 19/95] linux-user: Move get_elf_platform to arm/elfload.c
` [PATCH v2 20/95] linux-user/loongarch64: Create get_elf_platform
` [PATCH v2 21/95] linux-user/hppa: "
` [PATCH v2 22/95] linux-user: Remove ELF_PLATFORM
` [PATCH v2 23/95] linux-user: Move get_elf_base_platform to mips/elfload.c
` [PATCH v2 24/95] linux-user: Move target_cpu_copy_regs decl to qemu.h
` [PATCH v2 25/95] linux-user: Create do_init_main_thread
` [PATCH v2 26/95] linux-user/i386: Create init_main_thread
` [PATCH v2 27/95] linux-user/arm: "
` [PATCH v2 28/95] linux-user/arm: Remove a.out startup remenents
` [PATCH v2 29/95] linux-user/aarch64: Create init_main_thread
` [PATCH v2 30/95] linux-user/sparc: "
` [PATCH v2 31/95] linux-user/ppc: "
` [PATCH v2 32/95] linux-user/loongarch64: "
` [PATCH v2 33/95] linux-user/mips: "
` [PATCH v2 34/95] linux-user/microblaze: "
` [PATCH v2 35/95] linux-user/openrisc: "
` [PATCH v2 36/95] linux-user/sh4: "
` [PATCH v2 39/95] linux-user/s390x: "
` [PATCH v2 40/95] linux-user/riscv: "
` [PATCH v2 41/95] linux-user/hppa: "
` [PATCH v2 42/95] linux-user/xtensa: "
` [PATCH v2 43/95] linux-user/hexagon: "
` [PATCH v2 45/95] linux-user: Remove target_elf_greg_t
` [PATCH v2 46/95] linux-user: Replace tswapreg with tswapl
` [PATCH v2 47/95] linux-user: Unify elf_core_copy_regs signatures
` [PATCH v2 48/95] linux-user: Declare elf_core_copy_regs in loader.h
` [PATCH v2 53/95] linux-user: Move elf_core_copy_regs to ppc/elfload.c
` [PATCH v2 54/95] linux-user: Move elf_core_copy_regs to loongarch64/elfload.c
` [PATCH v2 55/95] linux-user: Move elf_core_copy_regs to mips/elfload.c
` [PATCH v2 57/95] linux-user: Move elf_core_copy_regs to openrisc/elfload.c
` [PATCH v2 58/95] linux-user: Move elf_core_copy_regs to sh4/elfload.c
` [PATCH v2 61/95] linux-user: Move elf_core_copy_regs to xtensa/elfload.c
` [PATCH v2 62/95] linux-user: Move init_guest_commpage to x86_64/elfload.c
` [PATCH v2 63/95] linux-user: Move init_guest_commpage to arm/elfload.c
` [PATCH v2 65/95] linux-user: Replace init_guest_commpage macro with function
` [PATCH v2 68/95] linux-user: Remove redundant ELF_DATA definitons
` [PATCH v2 69/95] linux-user: Move elf parameters to {i386, x86_64}/target_elf.h
` [PATCH v2 72/95] linux-user: Move elf parameters to ppc/target_elf.h
` [PATCH v2 74/95] linux-user: Move elf parameters to {mips, mips64}/target_elf.h
` [PATCH v2 76/95] linux-user: Move elf parameters to openrisc/target_elf.h
` [PATCH v2 77/95] linux-user: Move elf parameters to sh4/target_elf.h
` [PATCH v2 79/95] linux-user: Move elf parameters to alpha/target_elf.h
` [PATCH v2 80/95] linux-user: Move elf parameters to s390x/target_elf.h
` [PATCH v2 81/95] linux-user: Move elf parameters to riscv/target_elf.h
` [PATCH v2 82/95] linux-user: Move elf parameters to hppa/target_elf.h
` [PATCH v2 84/95] linux-user: Move elf parameters to hexagon/target_elf.h
` [PATCH v2 87/95] linux-user: Remove ELIBBAD from elfload.c
` [PATCH v2 92/95] linux-user/microblaze: Move target_pt_regs to signal.c
` [PATCH v2 94/95] linux-user/s390x: Move target_psw_t "

[PATCH] Add a feature for mapping a host unix socket to a guest tcp socket
 2025-08-02 23:09 UTC  (2+ messages)

[syzbot] [block?] possible deadlock in __del_gendisk
 2025-08-02 23:17 UTC 

[PATCH] btrfs-progs: Fix get_partition_sector_size_sysfs() to handle loopback and device mapper devices
 2025-08-02 23:16 UTC  (6+ messages)

[PATCH] i2c: Force DLL0945 touchpad i2c freq to 100khz
 2025-08-02 23:15 UTC  (2+ messages)
` [PATCH v1] "

[PATCHv4 6/8] blk-mq-dma: add support for mapping integrity metadata
 2025-08-02 23:11 UTC  (2+ messages)

[syzbot] [net?] WARNING in __linkwatch_sync_dev (2)
 2025-08-02 23:09 UTC  (2+ messages)

[mripard:drm/tidss/field-api 11/60] arch/arm64/boot/dts/ti/k3-am625-sk-microtips-mf101hie-panel.dtb: display (microtips,mf-101hiebcaf0): Unevaluated properties are not allowed ('compatible' was unexpected)
 2025-08-02 23:01 UTC 

[PATCH v2] usb: renesas-xhci: Fix External ROM access timeouts
 2025-08-02 22:55 UTC 

[PATCH] usb: renesas-xhci: Fix External ROM access timeouts
 2025-08-02 22:54 UTC  (5+ messages)

[PATCH 8/9] powerpc/pseries: Enable hvpipe with ibm,set-system-parameter RTAS
 2025-08-02 22:51 UTC  (2+ messages)

[syzbot] [block?] possible deadlock in __del_gendisk
 2025-08-02 22:44 UTC 

[syzbot] [block?] possible deadlock in __del_gendisk
 2025-08-02 22:33 UTC 

[melver:cap-analysis/dev 32/33] crypto/crypto_engine.c:48:17: sparse: sparse: incorrect type in argument 1 (different base types)
 2025-08-02 22:29 UTC 

[PATCH v9 00/23] Add support for MT8195/88 HDMIv2 and DDCv2
 2025-08-02 22:23 UTC  (2+ messages)

[Possible bug]: thermal and an scaling governor issues
 2025-08-02 22:21 UTC 

[sean-jc:x86/fastpath_cleanups 5/18] arch/x86/kvm/lapic.c:1503:13: warning: 'kvm_apic_send_ipi_fast' defined but not used
 2025-08-02 22:19 UTC 

[PATCH] irqchip/riscv-imsic: Fix 'imsic' dereferenced before NULL check
 2025-08-02 22:19 UTC  (3+ messages)

[syzbot] [gfs2?] kernel BUG in do_qc
 2025-08-02 22:19 UTC  (2+ messages)

[PATCH] archive: flush deflate stream until Z_STREAM_END
 2025-08-02 22:08 UTC 

[PATCH v3 0/4] rockchip: Add support for RAM boot from maskrom mode
 2025-08-02 22:07 UTC  (5+ messages)
` [PATCH v3 1/4] rockchip: Move TEXT_BASE to 8 MiB offset from start of DRAM
` [PATCH v3 2/4] rockchip: Add support for RAM boot from maskrom mode
` [PATCH v3 3/4] rockchip: sdram: Add fallback that fixup DRAM gaps on RK3588
` [PATCH v3 4/4] HACK: rockchip: Add miniall.ini files to simplify test of RAM boot

[PATCH for-10.2 00/89] linux-user: Split up elfload.c
 2025-08-02 22:05 UTC  (63+ messages)
` [PATCH 61/89] linux-user: Move get_elf_cpu_model to target/elfload.c
` [PATCH 62/89] linux-user: Move ppc uabi/asm/elf.h workaround to osdep.h
` [PATCH 63/89] linux-user: Move elf parameters to {i386, x86_64}/target_elf.h
` [PATCH 64/89] linux-user: Move elf parameters to {arm, aarch64}/target_elf.h
` [PATCH 65/89] linux-user: Move elf parameters to sparc/target_elf.h
` [PATCH 66/89] linux-user: Move elf parameters to ppc/target_elf.h
` [PATCH 67/89] linux-user: Move elf parameters to loongarch64/target_elf.h
` [PATCH 68/89] linux-user: Move elf parameters to {mips, mips64}/target_elf.h
` [PATCH 69/89] linux-user: Move elf parameters to microblaze/target_elf.h
` [PATCH 70/89] linux-user: Move elf parameters to openrisc/target_elf.h
` [PATCH 71/89] linux-user: Move elf parameters to sh4/target_elf.h
` [PATCH 72/89] linux-user: Move elf parameters to m68k/target_elf.h
` [PATCH 73/89] linux-user: Move elf parameters to alpha/target_elf.h
` [PATCH 74/89] linux-user: Move elf parameters to s390x/target_elf.h
` [PATCH 75/89] linux-user: Move elf parameters to riscv/target_elf.h
` [PATCH 76/89] linux-user: Move elf parameters to hppa/target_elf.h
` [PATCH 77/89] linux-user: Move elf parameters to xtensa/target_elf.h
` [PATCH 78/89] linux-user: Move elf parameters to hexagon/target_elf.h
` [PATCH 79/89] linux-user: Standardize on ELF_MACHINE not ELF_ARCH
` [PATCH 80/89] linux-user: Rename elf_check_arch
` [PATCH 81/89] linux-user: Remove ELIBBAD from elfload.c
` [PATCH 82/89] linux-user: Remove MAP_DENYWRITE "
` [PATCH 83/89] linux-user: Move arch_parse_elf_property to aarch64/elfload.c
` [PATCH 84/89] linux-user: Remove a.out declarations from elfload.c
` [PATCH 85/89] linux-user/sparc: Move target_pt_regs to signal.c
` [PATCH 86/89] linux-user/microblaze: "
` [PATCH 87/89] linux-user/openrisc: "
` [PATCH 88/89] linux-user/s390x: Move target_psw_t "
` [PATCH 89/89] linux-user: Remove struct target_pt_regs from target_syscall.h

[PATCH v6 1/3] bootimg_pcbios: initial import of grub legacy bios boot
 2025-08-02 22:02 UTC  (3+ messages)
` [PATCH v6 2/3] bootimg_pcbios: final "
` [PATCH v6 3/3] oe-selftest: add wic.Wic.test_grub_install_pcbios

[PATCH v2] kcov, usb: Fix invalid context sleep in softirq path on PREEMPT_RT
 2025-08-02 22:01 UTC  (4+ messages)

Unsubscribe
 2025-08-02 22:00 UTC 

[meta-oe][scarthgap][PATCH] jq: add Upstream-Status and CVE tags into .patch files
 2025-08-02 21:55 UTC 

[melver:cap-analysis/dev 29/33] lib/rhashtable.c:1039:9: sparse: sparse: incorrect type in argument 1 (different base types)
 2025-08-02 21:47 UTC 

[GIT PULL] md-6.17-20250803
 2025-08-02 21:42 UTC  (3+ messages)

[PATCH 1/2] Input: Add key event code for Fn + P
 2025-08-02 21:35 UTC  (2+ messages)
` [PATCH 2/2] platform/x86: hp-wmi: Add support for Fn+P hotkey

[PATCH] ethdev: Reject conflicting TX offloads configuration
 2025-08-02 21:33 UTC  (3+ messages)

[PATCH] rust: list: remove nonexistent insert_at() from the comments
 2025-08-02 21:31 UTC  (2+ messages)

[RFC 00/10] ftrace,bpf: Use single direct ops for bpf trampolines
 2025-08-02 21:26 UTC  (3+ messages)

[PATCH v12 0/3] Rust Abstractions for PWM subsystem with TH1520 PWM driver
 2025-08-02 21:19 UTC  (5+ messages)
  ` [PATCH v12 2/3] rust: pwm: Add Kconfig and basic data structures

[melver:cap-analysis/dev 23/33] mm/page_alloc.c:1413 free_one_page() error: uninitialized symbol 'flags'
 2025-08-02 21:16 UTC 

[GIT PULL] Rust for 6.17
 2025-08-02 21:13 UTC 

[PATCH 0/3] Automatically add compile_commands.json to ${S}
 2025-08-02 21:13 UTC  (4+ messages)
` [PATCH 1/2] cmake.bbclass: inherit compile_commands.bbclass
` [PATCH 2/2] meson.bbclass: "
` [PATCH 3/3] "

[PATCH 7/9] powerpc/pseries: Enable HVPIPE event message interrupt
 2025-08-02 21:03 UTC  (2+ messages)

[PATCH 0/2] Automatically add compile_commands.json to ${S}
 2025-08-02 21:01 UTC  (3+ messages)
` [PATCH 1/2] cmake.bbclass: inherit compile_commands.bbclass
` [PATCH 2/2] meson.bbclass: "

[PATCH] staging: axis-fifo: fix maximum TX packet length check
 2025-08-02 20:59 UTC 

[PATCH 0/3] common/sfc_efx/base: fix compiler warnings in X4 netport API
 2025-08-02 20:59 UTC  (3+ messages)
` [PATCH v2 0/2] "

[PATCH v5 0/3] rust: add `ww_mutex` support
 2025-08-02 20:58 UTC  (15+ messages)
` [PATCH v5 2/3] implement ww_mutex abstraction for the Rust tree

[mripard:drm/tidss/field-api 11/60] arch/arm64/boot/dts/ti/k3-am625-sk-microtips-mf101hie-panel.dtb: display (microtips,mf-101hiebcaf0): 'power-supply' is a required property
 2025-08-02 20:53 UTC 

[ANNOUNCE] Git Rev News edition 125
 2025-08-02 20:38 UTC  (2+ messages)

[melver:cap-analysis/dev 14/33] include/net/sock.h:2179:17: sparse: sparse: incorrect type in assignment (different base types)
 2025-08-02 20:32 UTC 

[tip: x86/urgent] x86/irq: Plug vector setup race
 2025-08-02 20:08 UTC 

Missing pipe /var/lib/nfs/rpc_pipefs/nfsd/cld on OpenWrt
 2025-08-02 20:06 UTC 

[Buildroot] [PATCH] package/ngrep: fix implicit function declaration
 2025-08-02 20:03 UTC  (2+ messages)

[Bug 211741] amd-hid: add support for SW_TABLET_MODE
 2025-08-02 20:03 UTC 

[melver:cap-analysis/dev 14/33] include/net/sock.h:2180 sk_dst_set() error: uninitialized symbol 'old_dst'
 2025-08-02 20:00 UTC 

[android-common:android16-6.12 1/1] arch/arm64/boot/dts/mediatek/mt8188-evb.dtb: /soc/pwrap@10024000/pmic/rtc: failed to match any schema with compatible: ['mediatek,mt6358-rtc']
 2025-08-02 20:00 UTC 

[melver:cap-analysis/dev 29/33] WARNING: modpost: "rhashtable_insert_slow" [fs/dlm/dlm.ko] has no CRC!
 2025-08-02 20:00 UTC 

[PATCH v2 00/11] single-binary: compile once semihosting
 2025-08-02 19:58 UTC  (3+ messages)
` [PATCH v2 04/11] semihosting/arm-compat-semi: remove common_semi_sys_exit_extended

[tip:x86/urgent 2/2] irq.c:undefined reference to `lock_vector_lock'
 2025-08-02 19:58 UTC  (2+ messages)

[PATCH v3 6/7] t/t1517: move verify-commit -h test to t1517
 2025-08-02 19:56 UTC  (5+ messages)
` [PATCH v4 0/2] refactor t1517 to focus on help output outside a repository
  ` [PATCH v4 1/2] t/t1517: automate `git subcmd -h` tests "

Fetching upstream remote fails if repo was a blobless clone
 2025-08-02 19:55 UTC  (6+ messages)

Text mode VGA-console scrolling is broken in upstream & stable trees
 2025-08-02 19:54 UTC  (4+ messages)

[cocci] Searching for questionable call pairs (with SmPL)?
 2025-08-02 19:48 UTC  (26+ messages)
  ` [cocci] Searching for lock calls without unlocking "
                                                ` [cocci] Evolution of software documentation?

[GIT PULL] Scheduler updates for v6.17
 2025-08-02 19:46 UTC  (4+ messages)

[PATCH] fbdev: Fix vmalloc out-of-bounds write in fast_imageblit
 2025-08-02 19:30 UTC  (2+ messages)

[Bug 220391] New: Headset is disconnected immediately
 2025-08-02 19:30 UTC  (2+ messages)
` [Bug 220391] "

[openeuler:OLK-6.6 2630/2630] drivers/crypto/ccp/hygon/hct.c:1730:51: error: 'struct device' has no member named 'numa_node'
 2025-08-02 19:29 UTC 

No console output on Raspberry Pi Compute Module 5
 2025-08-02 19:27 UTC 

[PATCH v2 0/9] Add watchdog driver support for RZ/T2H and RZ/N2H SoCs
 2025-08-02 19:26 UTC  (10+ messages)
` [PATCH v2 7/9] watchdog: rzv2h: Set min_timeout based on max_hw_heartbeat_ms

[PATCH 0/2] accel/rocket: Fix build errors and sparse warning
 2025-08-02 19:25 UTC  (3+ messages)
` [PATCH 1/2] accel/rocket: Fix Rockchip NPU compilation
` [PATCH 2/2] accel/rocket: Fix undeclared const rocket_pm_ops

[syzbot] [block?] general protection fault in zcomp_available_show
 2025-08-02 19:20 UTC 

[GIT PULL] pin control bulk changes for v6.17
 2025-08-02 19:20 UTC  (2+ messages)

[syzbot] [block?] possible deadlock in __del_gendisk
 2025-08-02 19:11 UTC  (2+ messages)
` Forwarded: "

[RFC] Next steps for MISRA C Rule 17.7 in XEN
 2025-08-02 19:10 UTC  (2+ messages)

[merged mm-stable] mm-shmem-fix-the-shmem-large-folio-allocation-for-the-i915-driver.patch removed from -mm tree
 2025-08-02 19:06 UTC  (3+ messages)

[merged mm-nonmm-stable] tools-getdelays-add-backward-compatibility-for-taskstats-version.patch removed from -mm tree
 2025-08-02 19:02 UTC 

[merged mm-nonmm-stable] kho-add-test-for-kexec-handover.patch removed from -mm tree
 2025-08-02 19:02 UTC 

[merged mm-nonmm-stable] delaytop-enhance-error-logging-and-add-psi-feature-description.patch removed from -mm tree
 2025-08-02 19:02 UTC 


This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.