From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Adhemerval Zanella <adhemerval.zanella@linaro.org>,
Helge Deller <deller@gmx.de>, Arnd Bergmann <arnd@arndb.de>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 079/163] parisc: use generic sys_fanotify_mark implementation
Date: Tue, 2 Jul 2024 19:03:13 +0200 [thread overview]
Message-ID: <20240702170236.052358221@linuxfoundation.org> (raw)
In-Reply-To: <20240702170233.048122282@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Arnd Bergmann <arnd@arndb.de>
[ Upstream commit 403f17a330732a666ae793f3b15bc75bb5540524 ]
The sys_fanotify_mark() syscall on parisc uses the reverse word order
for the two halves of the 64-bit argument compared to all syscalls on
all 32-bit architectures. As far as I can tell, the problem is that
the function arguments on parisc are sorted backwards (26, 25, 24, 23,
...) compared to everyone else, so the calling conventions of using an
even/odd register pair in native word order result in the lower word
coming first in function arguments, matching the expected behavior
on little-endian architectures. The system call conventions however
ended up matching what the other 32-bit architectures do.
A glibc cleanup in 2020 changed the userspace behavior in a way that
handles all architectures consistently, but this inadvertently broke
parisc32 by changing to the same method as everyone else.
The change made it into glibc-2.35 and subsequently into debian 12
(bookworm), which is the latest stable release. This means we
need to choose between reverting the glibc change or changing the
kernel to match it again, but either hange will leave some systems
broken.
Pick the option that is more likely to help current and future
users and change the kernel to match current glibc. This also
means the behavior is now consistent across architectures, but
it breaks running new kernels with old glibc builds before 2.35.
Link: https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=d150181d73d9
Link: https://git.kernel.org/pub/scm/linux/kernel/git/history/history.git/commit/arch/parisc/kernel/sys_parisc.c?h=57b1dfbd5b4a39d
Cc: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Tested-by: Helge Deller <deller@gmx.de>
Acked-by: Helge Deller <deller@gmx.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
I found this through code inspection, please double-check to make
sure I got the bug and the fix right.
The alternative is to fix this by reverting glibc back to the
unusual behavior.
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/parisc/Kconfig | 1 +
arch/parisc/kernel/sys_parisc32.c | 9 ---------
arch/parisc/kernel/syscalls/syscall.tbl | 2 +-
3 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig
index 4adeb73d5885c..722e83edad282 100644
--- a/arch/parisc/Kconfig
+++ b/arch/parisc/Kconfig
@@ -14,6 +14,7 @@ config PARISC
select ARCH_HAS_UBSAN_SANITIZE_ALL
select ARCH_HAS_PTE_SPECIAL
select ARCH_NO_SG_CHAIN
+ select ARCH_SPLIT_ARG64 if !64BIT
select ARCH_SUPPORTS_HUGETLBFS if PA20
select ARCH_SUPPORTS_MEMORY_FAILURE
select ARCH_STACKWALK
diff --git a/arch/parisc/kernel/sys_parisc32.c b/arch/parisc/kernel/sys_parisc32.c
index 2a12a547b447b..826c8e51b5853 100644
--- a/arch/parisc/kernel/sys_parisc32.c
+++ b/arch/parisc/kernel/sys_parisc32.c
@@ -23,12 +23,3 @@ asmlinkage long sys32_unimplemented(int r26, int r25, int r24, int r23,
current->comm, current->pid, r20);
return -ENOSYS;
}
-
-asmlinkage long sys32_fanotify_mark(compat_int_t fanotify_fd, compat_uint_t flags,
- compat_uint_t mask0, compat_uint_t mask1, compat_int_t dfd,
- const char __user * pathname)
-{
- return sys_fanotify_mark(fanotify_fd, flags,
- ((__u64)mask1 << 32) | mask0,
- dfd, pathname);
-}
diff --git a/arch/parisc/kernel/syscalls/syscall.tbl b/arch/parisc/kernel/syscalls/syscall.tbl
index 47b3bb90080de..73f560e309573 100644
--- a/arch/parisc/kernel/syscalls/syscall.tbl
+++ b/arch/parisc/kernel/syscalls/syscall.tbl
@@ -364,7 +364,7 @@
320 common accept4 sys_accept4
321 common prlimit64 sys_prlimit64
322 common fanotify_init sys_fanotify_init
-323 common fanotify_mark sys_fanotify_mark sys32_fanotify_mark
+323 common fanotify_mark sys_fanotify_mark compat_sys_fanotify_mark
324 32 clock_adjtime sys_clock_adjtime32
324 64 clock_adjtime sys_clock_adjtime
325 common name_to_handle_at sys_name_to_handle_at
--
2.43.0
next prev parent reply other threads:[~2024-07-02 17:22 UTC|newest]
Thread overview: 178+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-02 17:01 [PATCH 6.6 000/163] 6.6.37-rc1 review Greg Kroah-Hartman
2024-07-02 17:01 ` [PATCH 6.6 001/163] iio: pressure: fix some word spelling errors Greg Kroah-Hartman
2024-07-02 17:01 ` [PATCH 6.6 002/163] iio: pressure: bmp280: Fix BMP580 temperature reading Greg Kroah-Hartman
2024-07-02 17:01 ` [PATCH 6.6 003/163] usb: typec: ucsi: Never send a lone connector change ack Greg Kroah-Hartman
2024-07-02 17:01 ` [PATCH 6.6 004/163] usb: typec: ucsi: Ack also failed Get Error commands Greg Kroah-Hartman
2024-07-02 17:01 ` [PATCH 6.6 005/163] x86/mm/numa: Use NUMA_NO_NODE when calling memblock_set_node() Greg Kroah-Hartman
2024-07-03 6:41 ` Mike Rapoport
2024-07-02 17:02 ` [PATCH 6.6 006/163] Input: ili210x - fix ili251x_read_touch_data() return value Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 007/163] pinctrl: fix deadlock in create_pinctrl() when handling -EPROBE_DEFER Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 008/163] pinctrl: rockchip: fix pinmux bits for RK3328 GPIO2-B pins Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 009/163] pinctrl: rockchip: fix pinmux bits for RK3328 GPIO3-B pins Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 010/163] pinctrl: rockchip: use dedicated pinctrl type for RK3328 Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 011/163] pinctrl: rockchip: fix pinmux reset in rockchip_pmx_set Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 012/163] MIPS: pci: lantiq: restore reset gpio polarity Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 013/163] selftests: mptcp: print_test out of verify_listener_events Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 014/163] selftests: mptcp: userspace_pm: fixed subtest names Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 015/163] wifi: mac80211: Use flexible array in struct ieee80211_tim_ie Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 016/163] ASoC: rockchip: i2s-tdm: Fix trcm mode by setting clock on right mclk Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 017/163] ASoC: mediatek: mt8183-da7219-max98357: Fix kcontrol name collision Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 018/163] ASoC: atmel: convert not to use asoc_xxx() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 019/163] ASoC: atmel: atmel-classd: Re-add dai_link->platform to fix card init Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 020/163] workqueue: Increase worker descs length to 32 Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 021/163] ASoC: q6apm-lpass-dai: close graph on prepare errors Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 022/163] bpf: Add missed var_off setting in set_sext32_default_val() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 023/163] bpf: Add missed var_off setting in coerce_subreg_to_size_sx() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 024/163] s390/pci: Add missing virt_to_phys() for directed DIBV Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 025/163] ASoC: amd: acp: add a null check for chip_pdev structure Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 026/163] ASoC: amd: acp: remove i2s configuration check in acp_i2s_probe() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 027/163] ASoC: fsl-asoc-card: set priv->pdev before using it Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 028/163] net: dsa: microchip: fix initial port flush problem Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 029/163] openvswitch: get related ct labels from its master if it is not confirmed Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 030/163] mlxsw: spectrum_buffers: Fix memory corruptions on Spectrum-4 systems Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 031/163] bpf: Fix overrunning reservations in ringbuf Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 032/163] ibmvnic: Free any outstanding tx skbs during scrq reset Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 033/163] net: phy: micrel: add Microchip KSZ 9477 to the device table Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 034/163] net: dsa: microchip: use collision based back pressure mode Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 035/163] ice: Rebuild TC queues on VSI queue reconfiguration Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 036/163] xdp: Remove WARN() from __xdp_reg_mem_model() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 037/163] netfilter: fix undefined reference to netfilter_lwtunnel_* when CONFIG_SYSCTL=n Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 038/163] btrfs: use NOFS context when getting inodes during logging and log replay Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 039/163] Fix race for duplicate reqsk on identical SYN Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 040/163] ALSA: seq: Fix missing channel at encoding RPN/NRPN MIDI2 messages Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 041/163] net: dsa: microchip: fix wrong register write when masking interrupt Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 042/163] sparc: fix old compat_sys_select() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 043/163] sparc: fix compat recv/recvfrom syscalls Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 044/163] parisc: use correct " Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 045/163] powerpc: restore some missing spu syscalls Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 046/163] tcp: fix tcp_rcv_fastopen_synack() to enter TCP_CA_Loss for failed TFO Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 047/163] ALSA: seq: Fix missing MSB in MIDI2 SPP conversion Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 048/163] netfilter: nf_tables: fully validate NFT_DATA_VALUE on store to data registers Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 049/163] tracing/net_sched: NULL pointer dereference in perf_trace_qdisc_reset() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 050/163] net: mana: Fix possible double free in error handling path Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 051/163] bpf: Take return from set_memory_ro() into account with bpf_prog_lock_ro() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 052/163] bpf: Take return from set_memory_rox() into account with bpf_jit_binary_lock_ro() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 053/163] drm/panel: ilitek-ili9881c: Fix warning with GPIO controllers that sleep Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 054/163] vduse: validate block features only with block devices Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 055/163] vduse: Temporarily fail if control queue feature requested Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 056/163] x86/fpu: Fix AMD X86_BUG_FXSAVE_LEAK fixup Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 057/163] mtd: partitions: redboot: Added conversion of operands to a larger type Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 058/163] wifi: ieee80211: check for NULL in ieee80211_mle_size_ok() Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 059/163] bpf: Mark bpf prog stack with kmsan_unposion_memory in interpreter mode Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 060/163] RDMA/restrack: Fix potential invalid address access Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 061/163] net/iucv: Avoid explicit cpumask var allocation on stack Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 062/163] net/dpaa2: " Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 063/163] crypto: ecdh - explicitly zeroize private_key Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 064/163] ALSA: emux: improve patch ioctl data validation Greg Kroah-Hartman
2024-07-02 17:02 ` [PATCH 6.6 065/163] media: dvbdev: Initialize sbuf Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 066/163] irqchip/loongson: Select GENERIC_IRQ_EFFECTIVE_AFF_MASK if SMP for IRQ_LOONGARCH_CPU Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 067/163] soc: ti: wkup_m3_ipc: Send NULL dummy message instead of pointer message Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 068/163] gfs2: Fix NULL pointer dereference in gfs2_log_flush Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 069/163] drm/radeon/radeon_display: Decrease the size of allocated memory Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 070/163] nvme: fixup comment for nvme RDMA Provider Type Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 071/163] drm/panel: simple: Add missing display timing flags for KOE TX26D202VM0BWA Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 072/163] gpio: davinci: Validate the obtained number of IRQs Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 073/163] RISC-V: fix vector insn load/store width mask Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 074/163] drm/amdgpu: Fix pci state save during mode-1 reset Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 075/163] riscv: stacktrace: convert arch_stack_walk() to noinstr Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 076/163] gpiolib: cdev: Disallow reconfiguration without direction (uAPI v1) Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 077/163] randomize_kstack: Remove non-functional per-arch entropy filtering Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 078/163] x86: stop playing stack games in profile_pc() Greg Kroah-Hartman
2024-07-02 17:03 ` Greg Kroah-Hartman [this message]
2024-07-02 17:03 ` [PATCH 6.6 080/163] Revert "MIPS: pci: lantiq: restore reset gpio polarity" Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 081/163] pinctrl: qcom: spmi-gpio: drop broken pm8008 support Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 082/163] ocfs2: fix DIO failure due to insufficient transaction credits Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 083/163] nfs: drop the incorrect assertion in nfs_swap_rw() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 084/163] mm: fix incorrect vbq reference in purge_fragmented_block Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 085/163] mmc: sdhci-pci-o2micro: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 086/163] mmc: sdhci-brcmstb: check R1_STATUS for erase/trim/discard Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 087/163] mmc: sdhci-pci: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 088/163] mmc: sdhci: Do not invert write-protect twice Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 089/163] mmc: sdhci: Do not lock spinlock around mmc_gpio_get_ro() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 090/163] iio: xilinx-ams: Dont include ams_ctrl_channels in scan_mask Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 091/163] counter: ti-eqep: enable clock at probe Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 092/163] kbuild: doc: Update default INSTALL_MOD_DIR from extra to updates Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 093/163] kbuild: Fix build target deb-pkg: ln: failed to create hard link Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 094/163] i2c: testunit: dont erase registers after STOP Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 095/163] i2c: testunit: discard write requests while old command is running Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 096/163] ata: libata-core: Fix null pointer dereference on error Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 097/163] ata,scsi: libata-core: Do not leak memory for ata_port struct members Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 098/163] iio: adc: ad7266: Fix variable checking bug Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 099/163] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 100/163] iio: chemical: bme680: Fix pressure value output Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 101/163] iio: chemical: bme680: Fix calibration data variable Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 102/163] iio: chemical: bme680: Fix overflows in compensate() functions Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 103/163] iio: chemical: bme680: Fix sensor data read operation Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 104/163] net: usb: ax88179_178a: improve link status logs Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 105/163] usb: gadget: printer: SS+ support Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 106/163] usb: gadget: printer: fix races against disable Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 107/163] usb: musb: da8xx: fix a resource leak in probe() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 108/163] usb: atm: cxacru: fix endpoint checking in cxacru_bind() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 109/163] usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 110/163] usb: gadget: aspeed_udc: fix device address configuration Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 111/163] usb: typec: ucsi: glink: fix child node release in probe function Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 112/163] usb: ucsi: stm32: fix command completion handling Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 113/163] usb: dwc3: core: Add DWC31 version 2.00a controller Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 114/163] usb: dwc3: core: Workaround for CSR read timeout Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 115/163] Revert "serial: core: only stop transmit when HW fifo is empty" Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 116/163] serial: 8250_omap: Implementation of Errata i2310 Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 117/163] serial: imx: set receiver level before starting uart Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 118/163] serial: core: introduce uart_port_tx_limited_flags() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 119/163] serial: bcm63xx-uart: fix tx after conversion to uart_port_tx_limited() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 120/163] ALSA: hda/realtek: fix mute/micmute LEDs dont work for EliteBook 645/665 G11 Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 121/163] tty: mcf: MCF54418 has 10 UARTS Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 122/163] net: can: j1939: Initialize unused data in j1939_send_one() Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 123/163] net: can: j1939: recover socket queue on CAN bus error during BAM transmission Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 124/163] net: can: j1939: enhanced error handling for tightly received RTS messages in xtp_rx_rts_session_new Greg Kroah-Hartman
2024-07-02 17:03 ` [PATCH 6.6 125/163] PCI/MSI: Fix UAF in msi_capability_init Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 126/163] cpufreq: intel_pstate: Use HWP to initialize ITMT if CPPC is missing Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 127/163] irqchip/loongson-eiointc: Use early_cpu_to_node() instead of cpu_to_node() Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 128/163] cpu/hotplug: Fix dynstate assignment in __cpuhp_setup_state_cpuslocked() Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 129/163] irqchip/loongson-liointc: Set different ISRs for different cores Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 130/163] kbuild: Install dtb files as 0644 in Makefile.dtbinst Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 131/163] sh: rework sync_file_range ABI Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 132/163] btrfs: zoned: fix initial free space detection Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 133/163] csky, hexagon: fix broken sys_sync_file_range Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 134/163] hexagon: fix fadvise64_64 calling conventions Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 135/163] drm/drm_file: Fix pid refcounting race Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 136/163] drm/nouveau/dispnv04: fix null pointer dereference in nv17_tv_get_ld_modes Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 137/163] drm/fbdev-dma: Only set smem_start is enable per module option Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 138/163] drm/amdgpu: avoid using null object of framebuffer Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 139/163] drm/i915/gt: Fix potential UAF by revoke of fence registers Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 140/163] drm/nouveau/dispnv04: fix null pointer dereference in nv17_tv_get_hd_modes Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 141/163] drm/amd/display: Send DP_TOTAL_LTTPR_CNT during detection if LTTPR is present Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 142/163] drm/amdgpu/atomfirmware: fix parsing of vram_info Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 143/163] batman-adv: Dont accept TT entries for out-of-spec VIDs Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 144/163] can: mcp251xfd: fix infinite loop when xmit fails Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 145/163] ata: ahci: Clean up sysfs file on error Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 146/163] ata: libata-core: Fix double free " Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 147/163] ftruncate: pass a signed offset Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 148/163] syscalls: fix compat_sys_io_pgetevents_time64 usage Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 149/163] syscalls: fix sys_fanotify_mark prototype Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 150/163] erofs: fix NULL dereference of dif->bdev_handle in fscache mode Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 151/163] pwm: stm32: Refuse too small period requests Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 152/163] Revert "cpufreq: amd-pstate: Fix the inconsistency in max frequency units" Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 153/163] mm/page_alloc: Separate THP PCP into movable and non-movable categories Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 154/163] arm64: dts: rockchip: Fix SD NAND and eMMC init on rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 155/163] arm64: dts: rockchip: Rename LED related pinctrl nodes " Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 156/163] arm64: dts: rockchip: Fix the value of `dlg,jack-det-rate` mismatch on rk3399-gru Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 157/163] ARM: dts: rockchip: rk3066a: add #sound-dai-cells to hdmi node Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 158/163] arm64: dts: rockchip: make poweroff(8) work on Radxa ROCK 5A Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 159/163] arm64: dts: rockchip: fix PMIC interrupt pin on ROCK Pi E Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 160/163] arm64: dts: rockchip: Add sound-dai-cells for RK3368 Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 161/163] cxl/region: Move cxl_dpa_to_region() work to the region driver Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 162/163] cxl/region: Avoid null pointer dereference in region lookup Greg Kroah-Hartman
2024-07-02 17:04 ` [PATCH 6.6 163/163] cxl/region: check interleave capability Greg Kroah-Hartman
2024-07-02 19:18 ` [PATCH 6.6 000/163] 6.6.37-rc1 review SeongJae Park
2024-07-02 21:39 ` Mark Brown
2024-07-02 23:43 ` Shuah Khan
2024-07-03 8:13 ` Jon Hunter
2024-07-03 8:57 ` Naresh Kamboju
2024-07-03 12:34 ` Naresh Kamboju
2024-07-04 7:30 ` Greg Kroah-Hartman
2024-07-03 12:54 ` Takeshi Ogasawara
2024-07-03 15:05 ` Peter Schneider
2024-07-03 17:29 ` Harshit Mogalapalli
2024-07-03 17:31 ` Kelsey Steele
2024-07-03 21:16 ` Ron Economos
2024-07-04 15:12 ` Florian Fainelli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240702170236.052358221@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=adhemerval.zanella@linaro.org \
--cc=arnd@arndb.de \
--cc=deller@gmx.de \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).