From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
syzbot+78ce4489b812515d5e4d@syzkaller.appspotmail.com,
Oliver Hartkopp <socketcan@hartkopp.net>,
Vincent Mailhol <mailhol.vincent@wanadoo.fr>,
Marc Kleine-Budde <mkl@pengutronix.de>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 297/423] can: statistics: use atomic access in hot path
Date: Tue, 8 Apr 2025 12:50:23 +0200 [thread overview]
Message-ID: <20250408104852.707028022@linuxfoundation.org> (raw)
In-Reply-To: <20250408104845.675475678@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Oliver Hartkopp <socketcan@hartkopp.net>
[ Upstream commit 80b5f90158d1364cbd80ad82852a757fc0692bf2 ]
In can_send() and can_receive() CAN messages and CAN filter matches are
counted to be visible in the CAN procfs files.
KCSAN detected a data race within can_send() when two CAN frames have
been generated by a timer event writing to the same CAN netdevice at the
same time. Use atomic operations to access the statistics in the hot path
to fix the KCSAN complaint.
Reported-by: syzbot+78ce4489b812515d5e4d@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/all/67cd717d.050a0220.e1a89.0006.GAE@google.com
Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
Reviewed-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Link: https://patch.msgid.link/20250310143353.3242-1-socketcan@hartkopp.net
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/can/af_can.c | 12 ++++++------
net/can/af_can.h | 12 ++++++------
net/can/proc.c | 46 +++++++++++++++++++++++++++-------------------
3 files changed, 39 insertions(+), 31 deletions(-)
diff --git a/net/can/af_can.c b/net/can/af_can.c
index 01f3fbb3b67dc..65230e81fa08c 100644
--- a/net/can/af_can.c
+++ b/net/can/af_can.c
@@ -287,8 +287,8 @@ int can_send(struct sk_buff *skb, int loop)
netif_rx(newskb);
/* update statistics */
- pkg_stats->tx_frames++;
- pkg_stats->tx_frames_delta++;
+ atomic_long_inc(&pkg_stats->tx_frames);
+ atomic_long_inc(&pkg_stats->tx_frames_delta);
return 0;
@@ -647,8 +647,8 @@ static void can_receive(struct sk_buff *skb, struct net_device *dev)
int matches;
/* update statistics */
- pkg_stats->rx_frames++;
- pkg_stats->rx_frames_delta++;
+ atomic_long_inc(&pkg_stats->rx_frames);
+ atomic_long_inc(&pkg_stats->rx_frames_delta);
/* create non-zero unique skb identifier together with *skb */
while (!(can_skb_prv(skb)->skbcnt))
@@ -669,8 +669,8 @@ static void can_receive(struct sk_buff *skb, struct net_device *dev)
consume_skb(skb);
if (matches > 0) {
- pkg_stats->matches++;
- pkg_stats->matches_delta++;
+ atomic_long_inc(&pkg_stats->matches);
+ atomic_long_inc(&pkg_stats->matches_delta);
}
}
diff --git a/net/can/af_can.h b/net/can/af_can.h
index 7c2d9161e2245..22f3352c77fec 100644
--- a/net/can/af_can.h
+++ b/net/can/af_can.h
@@ -66,9 +66,9 @@ struct receiver {
struct can_pkg_stats {
unsigned long jiffies_init;
- unsigned long rx_frames;
- unsigned long tx_frames;
- unsigned long matches;
+ atomic_long_t rx_frames;
+ atomic_long_t tx_frames;
+ atomic_long_t matches;
unsigned long total_rx_rate;
unsigned long total_tx_rate;
@@ -82,9 +82,9 @@ struct can_pkg_stats {
unsigned long max_tx_rate;
unsigned long max_rx_match_ratio;
- unsigned long rx_frames_delta;
- unsigned long tx_frames_delta;
- unsigned long matches_delta;
+ atomic_long_t rx_frames_delta;
+ atomic_long_t tx_frames_delta;
+ atomic_long_t matches_delta;
};
/* persistent statistics */
diff --git a/net/can/proc.c b/net/can/proc.c
index bbce97825f13f..25fdf060e30d0 100644
--- a/net/can/proc.c
+++ b/net/can/proc.c
@@ -118,6 +118,13 @@ void can_stat_update(struct timer_list *t)
struct can_pkg_stats *pkg_stats = net->can.pkg_stats;
unsigned long j = jiffies; /* snapshot */
+ long rx_frames = atomic_long_read(&pkg_stats->rx_frames);
+ long tx_frames = atomic_long_read(&pkg_stats->tx_frames);
+ long matches = atomic_long_read(&pkg_stats->matches);
+ long rx_frames_delta = atomic_long_read(&pkg_stats->rx_frames_delta);
+ long tx_frames_delta = atomic_long_read(&pkg_stats->tx_frames_delta);
+ long matches_delta = atomic_long_read(&pkg_stats->matches_delta);
+
/* restart counting in timer context on user request */
if (user_reset)
can_init_stats(net);
@@ -127,35 +134,33 @@ void can_stat_update(struct timer_list *t)
can_init_stats(net);
/* prevent overflow in calc_rate() */
- if (pkg_stats->rx_frames > (ULONG_MAX / HZ))
+ if (rx_frames > (LONG_MAX / HZ))
can_init_stats(net);
/* prevent overflow in calc_rate() */
- if (pkg_stats->tx_frames > (ULONG_MAX / HZ))
+ if (tx_frames > (LONG_MAX / HZ))
can_init_stats(net);
/* matches overflow - very improbable */
- if (pkg_stats->matches > (ULONG_MAX / 100))
+ if (matches > (LONG_MAX / 100))
can_init_stats(net);
/* calc total values */
- if (pkg_stats->rx_frames)
- pkg_stats->total_rx_match_ratio = (pkg_stats->matches * 100) /
- pkg_stats->rx_frames;
+ if (rx_frames)
+ pkg_stats->total_rx_match_ratio = (matches * 100) / rx_frames;
pkg_stats->total_tx_rate = calc_rate(pkg_stats->jiffies_init, j,
- pkg_stats->tx_frames);
+ tx_frames);
pkg_stats->total_rx_rate = calc_rate(pkg_stats->jiffies_init, j,
- pkg_stats->rx_frames);
+ rx_frames);
/* calc current values */
- if (pkg_stats->rx_frames_delta)
+ if (rx_frames_delta)
pkg_stats->current_rx_match_ratio =
- (pkg_stats->matches_delta * 100) /
- pkg_stats->rx_frames_delta;
+ (matches_delta * 100) / rx_frames_delta;
- pkg_stats->current_tx_rate = calc_rate(0, HZ, pkg_stats->tx_frames_delta);
- pkg_stats->current_rx_rate = calc_rate(0, HZ, pkg_stats->rx_frames_delta);
+ pkg_stats->current_tx_rate = calc_rate(0, HZ, tx_frames_delta);
+ pkg_stats->current_rx_rate = calc_rate(0, HZ, rx_frames_delta);
/* check / update maximum values */
if (pkg_stats->max_tx_rate < pkg_stats->current_tx_rate)
@@ -168,9 +173,9 @@ void can_stat_update(struct timer_list *t)
pkg_stats->max_rx_match_ratio = pkg_stats->current_rx_match_ratio;
/* clear values for 'current rate' calculation */
- pkg_stats->tx_frames_delta = 0;
- pkg_stats->rx_frames_delta = 0;
- pkg_stats->matches_delta = 0;
+ atomic_long_set(&pkg_stats->tx_frames_delta, 0);
+ atomic_long_set(&pkg_stats->rx_frames_delta, 0);
+ atomic_long_set(&pkg_stats->matches_delta, 0);
/* restart timer (one second) */
mod_timer(&net->can.stattimer, round_jiffies(jiffies + HZ));
@@ -214,9 +219,12 @@ static int can_stats_proc_show(struct seq_file *m, void *v)
struct can_rcv_lists_stats *rcv_lists_stats = net->can.rcv_lists_stats;
seq_putc(m, '\n');
- seq_printf(m, " %8ld transmitted frames (TXF)\n", pkg_stats->tx_frames);
- seq_printf(m, " %8ld received frames (RXF)\n", pkg_stats->rx_frames);
- seq_printf(m, " %8ld matched frames (RXMF)\n", pkg_stats->matches);
+ seq_printf(m, " %8ld transmitted frames (TXF)\n",
+ atomic_long_read(&pkg_stats->tx_frames));
+ seq_printf(m, " %8ld received frames (RXF)\n",
+ atomic_long_read(&pkg_stats->rx_frames));
+ seq_printf(m, " %8ld matched frames (RXMF)\n",
+ atomic_long_read(&pkg_stats->matches));
seq_putc(m, '\n');
--
2.39.5
next prev parent reply other threads:[~2025-04-08 12:54 UTC|newest]
Thread overview: 433+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-08 10:45 [PATCH 6.12 000/423] 6.12.23-rc1 review Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 001/423] watch_queue: fix pipe accounting mismatch Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 002/423] x86/mm/pat: cpa-test: fix length for CPA_ARRAY test Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 003/423] cpufreq: scpi: compare kHz instead of Hz Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 004/423] smack: dont compile ipv6 code unless ipv6 is configured Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 005/423] smack: ipv4/ipv6: tcp/dccp/sctp: fix incorrect child socket label Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 006/423] sched: Cancel the slice protection of the idle entity Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 007/423] sched/eevdf: Force propagating min_slice of cfs_rq when {en,de}queue tasks Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 008/423] cpufreq: governor: Fix negative idle_time handling in dbs_update() Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 009/423] EDAC/{skx_common,i10nm}: Fix some missing error reports on Emerald Rapids Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 010/423] x86/fpu: Fix guest FPU state buffer allocation size Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 011/423] x86/fpu: Avoid copying dynamic FP state from init_task in arch_dup_task_struct() Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 012/423] x86/platform: Only allow CONFIG_EISA for 32-bit Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 013/423] x86/sev: Add missing RIP_REL_REF() invocations during sme_enable() Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 014/423] lockdep/mm: Fix might_fault() lockdep check of current->mm->mmap_lock Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 015/423] PM: sleep: Adjust check before setting power.must_resume Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 016/423] cpufreq: tegra194: Allow building for Tegra234 Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 017/423] RISC-V: KVM: Disable the kernel perf counter during configure Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 018/423] kunit/stackinit: Use fill byte different from Clang i386 pattern Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 019/423] watchdog/hardlockup/perf: Fix perf_event memory leak Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 020/423] selinux: Chain up tool resolving errors in install_policy.sh Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 021/423] EDAC/ie31200: Fix the size of EDAC_MC_LAYER_CHIP_SELECT layer Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 022/423] EDAC/ie31200: Fix the DIMM size mask for several SoCs Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 023/423] EDAC/ie31200: Fix the error path order of ie31200_init() Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 024/423] x86/resctrl: Fix allocation of cleanest CLOSID on platforms with no monitors Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 025/423] thermal: int340x: Add NULL check for adev Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 026/423] PM: sleep: Fix handling devices with direct_complete set on errors Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 027/423] lockdep: Dont disable interrupts on RT in disable_irq_nosync_lockdep.*() Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 028/423] perf/ring_buffer: Allow the EPOLLRDNORM flag for poll Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 029/423] x86/traps: Make exc_double_fault() consistently noreturn Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 030/423] x86/fpu/xstate: Fix inconsistencies in guest FPU xfeatures Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 031/423] x86/entry: Add __init to ia32_emulation_override_cmdline() Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 032/423] regulator: pca9450: Fix enable register for LDO5 Greg Kroah-Hartman
2025-04-08 10:45 ` [PATCH 6.12 033/423] auxdisplay: MAX6959 should select BITREVERSE Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 034/423] media: verisilicon: HEVC: Initialize start_bit field Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 035/423] media: platform: allgro-dvt: unregister v4l2_device on the error path Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 036/423] auxdisplay: panel: Fix an API misuse in panel.c Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 037/423] platform/x86: lenovo-yoga-tab2-pro-1380-fastcharger: Make symbol static Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 038/423] platform/x86: dell-uart-backlight: Make dell_uart_bl_serdev_driver static Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 039/423] platform/x86: dell-ddv: Fix temperature calculation Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 040/423] ASoC: cs35l41: check the return value from spi_setup() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 041/423] ASoC: amd: acp: Fix for enabling DMIC on acp platforms via _DSD entry Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 042/423] HID: remove superfluous (and wrong) Makefile entry for CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 043/423] dt-bindings: vendor-prefixes: add GOcontroll Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 044/423] ALSA: hda/realtek: Always honor no_shutup_pins Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 045/423] ASoC: ti: j721e-evm: Fix clock configuration for ti,j7200-cpb-audio compatible Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 046/423] ALSA: timer: Dont take register_mutex with copy_from/to_user() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 047/423] drm/bridge: ti-sn65dsi86: Fix multiple instances Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 048/423] drm/ssd130x: Set SPI .id_table to prevent an SPI core warning Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 049/423] drm/ssd130x: fix ssd132x encoding Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 050/423] drm/ssd130x: ensure ssd132x pitch is correct Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 051/423] drm/dp_mst: Fix drm RAD print Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 052/423] drm/bridge: it6505: fix HDCP V match check is not performed correctly Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 053/423] drm: xlnx: zynqmp: Fix max dma segment size Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 054/423] drm/vkms: Fix use after free and double free on init error Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 055/423] gpu: cdns-mhdp8546: fix call balance of mhdp->clk handling routines Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 056/423] drm/amdgpu: refine smu send msg debug log format Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 057/423] drm/amdgpu/umsch: fix ucode check Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 058/423] PCI: Use downstream bridges for distributing resources Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 059/423] PCI: Remove add_align overwrite unrelated to size0 Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 060/423] drm/mediatek: mtk_hdmi: Unregister audio platform device on failure Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 061/423] drm/mediatek: mtk_hdmi: Fix typo for aud_sampe_size member Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 062/423] PCI/ASPM: Fix link state exit during switch upstream function removal Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 063/423] drm/panel: ilitek-ili9882t: fix GPIO name in error message Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 064/423] PCI/ACS: Fix pci=config_acs= parameter Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 065/423] drm/amd/display: fix an indent issue in DML21 Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 066/423] drm/msm/dpu: dont use active in atomic_check() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 067/423] drm/msm/dsi/phy: Program clock inverters in correct register Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 068/423] drm/msm/dsi: Use existing per-interface slice count in DSC timing Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 069/423] drm/msm/dsi: Set PHY usescase (and mode) before registering DSI host Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 070/423] drm/amdkfd: Fix Circular Locking Dependency in svm_range_cpu_invalidate_pagetables Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 071/423] PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 072/423] PCI: brcmstb: Set generation limit before PCIe link up Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 073/423] PCI: brcmstb: Use internal register to change link capability Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 074/423] PCI: brcmstb: Fix error path after a call to regulator_bulk_get() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 075/423] PCI: brcmstb: Fix potential premature regulator disabling Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 076/423] PCI/portdrv: Only disable pciehp interrupts early when needed Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 077/423] PCI: Avoid reset when disabled via sysfs Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 078/423] drm/panthor: Update CS_STATUS_ defines to correct values Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 079/423] drm/amd/display: fix type mismatch in CalculateDynamicMetadataParameters() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 080/423] drm/msm/a6xx: Fix a6xx indexed-regs in devcoreduump Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 081/423] crypto: powerpc: Mark ghashp8-ppc.o as an OBJECT_FILES_NON_STANDARD Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 082/423] powerpc/kexec: fix physical address calculation in clear_utlb_entry() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 083/423] PCI: Remove stray put_device() in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 084/423] PCI: xilinx-cpm: Fix IRQ domain leak in error path of probe Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 085/423] drm/mediatek: Fix config_updating flag never false when no mbox channel Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 086/423] drm/mediatek: dp: drm_err => dev_err in HPD path to avoid NULL ptr Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 087/423] drm/mediatek: dsi: fix error codes in mtk_dsi_host_transfer() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 088/423] drm/amd/display: avoid NPD when ASIC does not support DMUB Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 089/423] PCI: dwc: ep: Return -ENOMEM for allocation failures Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 090/423] PCI: histb: Fix an error handling path in histb_pcie_probe() Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 091/423] PCI: Fix BAR resizing when VF BARs are assigned Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 092/423] PCI: pciehp: Dont enable HPIE when resuming in poll mode Greg Kroah-Hartman
2025-04-08 10:46 ` [PATCH 6.12 093/423] fbdev: au1100fb: Move a variable assignment behind a null pointer check Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 094/423] dummycon: fix default rows/cols Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 095/423] mdacon: rework dependency list Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 096/423] fbdev: sm501fb: Add some geometry checks Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 097/423] crypto: iaa - Test the correct request flag Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 098/423] crypto: qat - set parity error mask for qat_420xx Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 099/423] crypto: tegra - Use separate buffer for setkey Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 100/423] crypto: tegra - check return value for hash do_one_req Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 101/423] crypto: bpf - Add MODULE_DESCRIPTION for skcipher Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 102/423] crypto: tegra - Use HMAC fallback when keyslots are full Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 103/423] clk: amlogic: gxbb: drop incorrect flag on 32k clock Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 104/423] crypto: hisilicon/sec2 - fix for aead authsize alignment Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 105/423] crypto: hisilicon/sec2 - fix for sec spec check Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 106/423] RDMA/mlx5: Fix page_size variable overflow Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 107/423] remoteproc: core: Clear table_sz when rproc_shutdown Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 108/423] of: property: Increase NR_FWNODE_REFERENCE_ARGS Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 109/423] pinctrl: renesas: rzg2l: Suppress binding attributes Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 110/423] remoteproc: qcom_q6v5_pas: Make single-PD handling more robust Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 111/423] libbpf: Fix hypothetical STT_SECTION extern NULL deref case Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 112/423] selftests/bpf: Fix string read in strncmp benchmark Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 113/423] x86/mm/pat: Fix VM_PAT handling when fork() fails in copy_page_range() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 114/423] clk: renesas: r8a08g045: Check the source of the CPU PLL settings Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 115/423] remoteproc: qcom: pas: add minidump_id to SC7280 WPSS Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 116/423] clk: samsung: Fix UBSAN panic in samsung_clk_init() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 117/423] pinctrl: nuvoton: npcm8xx: Fix error handling in npcm8xx_gpio_fw() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 118/423] crypto: tegra - Fix CMAC intermediate result handling Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 119/423] clk: qcom: gcc-msm8953: fix stuck venus0_core0 clock Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 120/423] s390: Remove ioremap_wt() and pgprot_writethrough() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 121/423] RDMA/mana_ib: Ensure variable err is initialized Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 122/423] crypto: tegra - Set IV to NULL explicitly for AES ECB Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 123/423] remoteproc: qcom_q6v5_pas: Use resource with CX PD for MSM8226 Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 124/423] clk: qcom: gcc-x1e80100: Unregister GCC_GPU_CFG_AHB_CLK/GCC_DISP_XO_CLK Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 125/423] bpf: Use preempt_count() directly in bpf_send_signal_common() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 126/423] lib: 842: Improve error handling in sw842_compress() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 127/423] pinctrl: renesas: rza2: Fix missing of_node_put() call Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 128/423] pinctrl: renesas: rzg2l: " Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 129/423] RDMA/mlx5: Fix MR cache initialization error flow Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 130/423] selftests/bpf: Fix freplace_link segfault in tailcalls prog test Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 131/423] clk: rockchip: rk3328: fix wrong clk_ref_usb3otg parent Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 132/423] RDMA/core: Dont expose hw_counters outside of init net namespace Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 133/423] RDMA/mlx5: Fix calculation of total invalidated pages Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 134/423] RDMA/erdma: Prevent use-after-free in erdma_accept_newconn() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 135/423] remoteproc: qcom_q6v5_mss: Handle platforms with one power domain Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 136/423] power: supply: bq27xxx_battery: do not update cached flags prematurely Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 137/423] crypto: api - Fix larval relookup type and mask Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 138/423] IB/mad: Check available slots before posting receive WRs Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 139/423] pinctrl: tegra: Set SFIO mode to Mux Register Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 140/423] clk: amlogic: g12b: fix cluster A parent data Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 141/423] clk: amlogic: gxbb: drop non existing 32k clock parent Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 142/423] selftests/bpf: Select NUMA_NO_NODE to create map Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 143/423] rust: fix signature of rust_fmt_argument Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 144/423] pinctrl: npcm8xx: Fix incorrect struct npcm8xx_pincfg assignment Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 145/423] crypto: qat - remove access to parity register for QAT GEN4 Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 146/423] clk: clk-imx8mp-audiomix: fix dsp/ocram_a clock parents Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 147/423] clk: amlogic: g12a: fix mmc A peripheral clock Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 148/423] x86/entry: Fix ORC unwinder for PUSH_REGS with save_ret=1 Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 149/423] power: supply: max77693: Fix wrong conversion of charge input threshold value Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 150/423] crypto: nx - Fix uninitialised hv_nxc on error Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 151/423] clk: qcom: gcc-sm8650: Do not turn off USB GDSCs during gdsc_disable() Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 152/423] bpf: Fix array bounds error with may_goto Greg Kroah-Hartman
2025-04-08 10:47 ` [PATCH 6.12 153/423] RDMA/mlx5: Fix mlx5_poll_one() cur_qp update flow Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 154/423] pinctrl: renesas: rzv2m: Fix missing of_node_put() call Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 155/423] mfd: sm501: Switch to BIT() to mitigate integer overflows Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 156/423] leds: Fix LED_OFF brightness race Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 157/423] x86/dumpstack: Fix inaccurate unwinding from exception stacks due to misplaced assignment Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 158/423] RDMA/core: Fix use-after-free when rename device name Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 159/423] crypto: hisilicon/sec2 - fix for aead auth key length Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 160/423] pinctrl: intel: Fix wrong bypass assignment in intel_pinctrl_probe_pwm() Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 161/423] clk: qcom: mmcc-sdm660: fix stuck video_subcore0 clock Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 162/423] perf stat: Fix find_stat for mixed legacy/non-legacy events Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 163/423] perf: Always feature test reallocarray Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 164/423] w1: fix NULL pointer dereference in probe Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 165/423] fs/ntfs3: Update inode->i_mapping->a_ops on compression state Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 166/423] phy: phy-rockchip-samsung-hdptx: Dont use dt aliases to determine phy-id Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 167/423] isofs: fix KMSAN uninit-value bug in do_isofs_readdir() Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 168/423] soundwire: slave: fix an OF node reference leak in soundwire slave device Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 169/423] perf report: Switch data file correctly in TUI Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 170/423] greybus: gb-beagleplay: Add error handling for gb_greybus_init Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 171/423] coresight: catu: Fix number of pages while using 64k pages Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 172/423] vhost-scsi: Fix handling of multiple calls to vhost_scsi_set_endpoint Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 173/423] coresight-etm4x: add isb() before reading the TRCSTATR Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 174/423] perf pmu: Dont double count common sysfs and json events Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 175/423] tools/x86: Fix linux/unaligned.h include path in lib/insn.c Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 176/423] perf build: Fix in-tree build due to symbolic link Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 177/423] ucsi_ccg: Dont show failed to get FW build information error Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 178/423] iio: accel: mma8452: Ensure error return on failure to matching oversampling ratio Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 179/423] iio: accel: msa311: Fix failure to release runtime pm if direct mode claim fails Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 180/423] iio: backend: make sure to NULL terminate stack buffer Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 181/423] perf arm-spe: Fix load-store operation checking Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 182/423] perf bench: Fix perf bench syscall loop count Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 183/423] usb: xhci: correct debug message page size calculation Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 184/423] fs/ntfs3: Fix a couple integer overflows on 32bit systems Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 185/423] fs/ntfs3: Prevent integer overflow in hdr_first_de() Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 186/423] dmaengine: fsl-edma: cleanup chan after dma_async_device_unregister Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 187/423] dmaengine: fsl-edma: free irq correctly in remove path Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 188/423] iio: adc: ad4130: Fix comparison of channel setups Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 189/423] iio: adc: ad7124: Fix comparison of channel configs Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 190/423] iio: adc: ad7173: " Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 191/423] iio: adc: ad7768-1: set MOSI idle state to prevent accidental reset Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 192/423] iio: light: Add check for array bounds in veml6075_read_int_time_ms Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 193/423] perf debug: Avoid stack overflow in recursive error message Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 194/423] perf evlist: Add success path to evlist__create_syswide_maps Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 195/423] perf units: Fix insufficient array space Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 196/423] kernel/events/uprobes: handle device-exclusive entries correctly in __replace_page() Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 197/423] kexec: initialize ELF lowest address to ULONG_MAX Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 198/423] ocfs2: validate l_tree_depth to avoid out-of-bounds access Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 199/423] arch/powerpc: drop GENERIC_PTDUMP from mpc885_ads_defconfig Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 200/423] NFSv4: Dont trigger uneccessary scans for return-on-close delegations Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 201/423] NFSv4: Avoid unnecessary scans of filesystems for returning delegations Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 202/423] NFSv4: Avoid unnecessary scans of filesystems for expired delegations Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 203/423] NFSv4: Avoid unnecessary scans of filesystems for delayed delegations Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 204/423] NFS: fix open_owner_id_maxsz and related fields Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 205/423] fuse: fix dax truncate/punch_hole fault path Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 206/423] selftests/mm/cow: fix the incorrect error handling Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 207/423] um: Pass the correct Rust target and options with gcc Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 208/423] um: remove copy_from_kernel_nofault_allowed Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 209/423] um: hostfs: avoid issues on inode number reuse by host Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 210/423] i3c: master: svc: Fix missing the IBI rules Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 211/423] perf python: Fixup description of sample.id event member Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 212/423] perf python: Decrement the refcount of just created event on failure Greg Kroah-Hartman
2025-04-08 10:48 ` [PATCH 6.12 213/423] perf python: Dont keep a raw_data pointer to consumed ring buffer space Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 214/423] perf python: Check if there is space to copy all the event Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 215/423] perf dso: fix dso__is_kallsyms() check Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 216/423] perf: intel-tpebs: Fix incorrect usage of zfree() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 217/423] staging: rtl8723bs: select CONFIG_CRYPTO_LIB_AES Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 218/423] staging: vchiq_arm: Register debugfs after cdev Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 219/423] staging: vchiq_arm: Fix possible NPR of keep-alive thread Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 220/423] tty: n_tty: use uint for space returned by tty_write_room() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 221/423] perf vendor events arm64 AmpereOneX: Fix frontend_bound calculation Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 222/423] fs/procfs: fix the comment above proc_pid_wchan() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 223/423] perf tools: annotate asm_pure_loop.S Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 224/423] perf bpf-filter: Fix a parsing error with comma Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 225/423] thermal: core: Remove duplicate struct declaration Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 226/423] objtool, nvmet: Fix out-of-bounds stack access in nvmet_ctrl_state_show() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 227/423] objtool, media: dib8000: Prevent divide-by-zero in dib8000_set_dds() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 228/423] NFS: Shut down the nfs_client only after all the superblocks Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 229/423] smb: client: Fix netns refcount imbalance causing leaks and use-after-free Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 230/423] exfat: fix the infinite loop in exfat_find_last_cluster() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 231/423] exfat: fix missing shutdown check Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 232/423] rtnetlink: Allocate vfinfo size for VF GUIDs when supported Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 233/423] rndis_host: Flag RNDIS modems as WWAN devices Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 234/423] ksmbd: use aead_request_free to match aead_request_alloc Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 235/423] ksmbd: fix multichannel connection failure Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 236/423] ksmbd: fix r_count dec/increment mismatch Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 237/423] net/mlx5e: SHAMPO, Make reserved size independent of page size Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 238/423] ring-buffer: Fix bytes_dropped calculation issue Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 239/423] objtool: Fix segfault in ignore_unreachable_insn() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 240/423] LoongArch: Fix help text of CMDLINE_EXTEND in Kconfig Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 241/423] LoongArch: Fix device node refcount leak in fdt_cpu_clk_init() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 242/423] LoongArch: Rework the arch_kgdb_breakpoint() implementation Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 243/423] ACPI: processor: idle: Return an error if both P_LVL{2,3} idle states are invalid Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 244/423] net: phy: broadcom: Correct BCM5221 PHY model detection Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 245/423] octeontx2-af: Fix mbox INTR handler when num VFs > 64 Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 246/423] octeontx2-af: Free NIX_AF_INT_VEC_GEN irq Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 247/423] objtool: Fix verbose disassembly if CROSS_COMPILE isnt set Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 248/423] sched/smt: Always inline sched_smt_active() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 249/423] context_tracking: Always inline ct_{nmi,irq}_{enter,exit}() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 250/423] rcu-tasks: Always inline rcu_irq_work_resched() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 251/423] objtool/loongarch: Add unwind hints in prepare_frametrace() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 252/423] nfs: Add missing release on error in nfs_lock_and_join_requests() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 253/423] wifi: mac80211: Cleanup sta TXQs on flush Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 254/423] wifi: mac80211: remove debugfs dir for virtual monitor Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 255/423] wifi: iwlwifi: fw: allocate chained SG tables for dump Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 256/423] wifi: iwlwifi: mvm: use the right version of the rate API Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 257/423] ntsync: Set the permissions to be 0666 Greg Kroah-Hartman
2025-04-09 19:36 ` Elizabeth Figura
2025-04-09 20:23 ` Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 258/423] nvme-tcp: fix possible UAF in nvme_tcp_poll Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 259/423] nvme-pci: clean up CMBMSC when registering CMB fails Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 260/423] nvme-pci: skip CMB blocks incompatible with PCI P2P DMA Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 261/423] wifi: brcmfmac: keep power during suspend if board requires it Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 262/423] affs: generate OFS sequence numbers starting at 1 Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 263/423] affs: dont write overlarge OFS data block size fields Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 264/423] ALSA: hda/realtek: Fix Asus Z13 2025 audio Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 265/423] ALSA: hda: Fix speakers on ASUS EXPERTBOOK P5405CSA 1.0 Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 266/423] perf/core: Fix perf_pmu_register() vs. perf_init_event() Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 267/423] smb: common: change the data type of num_aces to le16 Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 268/423] cifs: fix incorrect validation for num_aces field of smb_acl Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 269/423] platform/x86: intel-hid: fix volume buttons on Microsoft Surface Go 4 tablet Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 270/423] platform/x86/intel/vsec: Add Diamond Rapids support Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 271/423] net: dsa: rtl8366rb: dont prompt users for LED control Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 272/423] HID: i2c-hid: improve i2c_hid_get_report error message Greg Kroah-Hartman
2025-04-08 10:49 ` [PATCH 6.12 273/423] platform/x86/amd/pmf: Propagate PMF-TA return codes Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 274/423] platform/x86/amd/pmf: Update PMF Driver for Compatibility with new PMF-TA Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 275/423] exfat: add a check for invalid data size Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 276/423] ALSA: hda/realtek: Add support for ASUS ROG Strix G814 Laptop using CS35L41 HDA Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 277/423] ALSA: hda/realtek: Add support for ASUS ROG Strix GA603 Laptops " Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 278/423] ALSA: hda/realtek: Add support for ASUS ROG Strix G614 " Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 279/423] ALSA: hda/realtek: Add support for various ASUS " Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 280/423] ALSA: hda/realtek: Add support for ASUS B3405 and B3605 " Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 281/423] ALSA: hda/realtek: Add support for ASUS B5405 and B5605 " Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 282/423] ALSA: hda/realtek: Add support for ASUS Zenbook UM3406KA " Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 283/423] sched/deadline: Use online cpus for validating runtime Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 284/423] x86/hyperv/vtl: Stop kernel from probing VTL0 low memory Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 285/423] ASoC: codecs: wsa884x: report temps to hwmon in millidegree of Celsius Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 286/423] ASoC: rt1320: set wake_capable = 0 explicitly Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 287/423] wifi: mac80211: flush the station before moving it to UN-AUTHORIZED state Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 288/423] wifi: mac80211: fix SA Query processing in MLO Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 289/423] locking/semaphore: Use wake_q to wake up processes outside lock critical section Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 290/423] x86/hyperv: Fix output argument to hypercall that changes page visibility Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 291/423] x86/sgx: Warn explicitly if X86_FEATURE_SGX_LC is not enabled Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 292/423] nvme-pci: fix stuck reset on concurrent DPC and HP Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 293/423] drm/amd: Keep display off while going into S4 Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 294/423] net: devmem: do not WARN conditionally after netdev_rx_queue_restart() Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 295/423] selftests: netfilter: skip br_netfilter queue tests if kernel is tainted Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 296/423] ALSA: hda/realtek: Add mute LED quirk for HP Pavilion x360 14-dy1xxx Greg Kroah-Hartman
2025-04-08 10:50 ` Greg Kroah-Hartman [this message]
2025-04-08 10:50 ` [PATCH 6.12 298/423] memory: omap-gpmc: drop no compatible check Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 299/423] hwmon: (nct6775-core) Fix out of bounds access for NCT679{8,9} Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 300/423] netfs: Fix netfs_unbuffered_read() to return ssize_t rather than int Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 301/423] spufs: fix a leak on spufs_new_file() failure Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 302/423] spufs: fix gang directory lifetimes Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 303/423] spufs: fix a leak in spufs_create_context() Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 304/423] fs/9p: fix NULL pointer dereference on mkdir Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 305/423] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 306/423] ntb_hw_switchtec: Fix shift-out-of-bounds in switchtec_ntb_mw_set_trans Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 307/423] ntb: intel: Fix using link status DBs Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 308/423] firmware: cs_dsp: Ensure cs_dsp_load[_coeff]() returns 0 on success Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 309/423] ALSA: hda/realtek: Fix built-in mic breakage on ASUS VivoBook X515JA Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 310/423] RISC-V: errata: Use medany for relocatable builds Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 311/423] x86/uaccess: Improve performance by aligning writes to 8 bytes in copy_user_generic(), on non-FSRM/ERMS CPUs Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 312/423] ublk: make sure ubq->canceling is set when queue is frozen Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 313/423] s390/entry: Fix setting _CIF_MCCK_GUEST with lowcore relocation Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 314/423] ASoC: codecs: rt5665: Fix some error handling paths in rt5665_probe() Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 315/423] spi: cadence: Fix out-of-bounds array access in cdns_mrvl_xspi_setup_clock() Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 316/423] riscv: Fix hugetlb retrieval of number of ptes in case of !present pte Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 317/423] riscv/kexec_file: Handle R_RISCV_64 in purgatory relocator Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 318/423] riscv/purgatory: 4B align purgatory_start Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 319/423] nvme/ioctl: dont warn on vectorized uring_cmd with fixed buffer Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 320/423] ASoC: imx-card: Add NULL check in imx_card_probe() Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 321/423] spi: bcm2835: Do not call gpiod_put() on invalid descriptor Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 322/423] ALSA: hda/realtek: Fix built-in mic on another ASUS VivoBook model Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 323/423] spi: bcm2835: Restore native CS probing when pinctrl-bcm2835 is absent Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 324/423] e1000e: change k1 configuration on MTP and later platforms Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 325/423] idpf: fix adapter NULL pointer dereference on reboot Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 326/423] netfilter: nft_set_hash: GC reaps elements with conncount for dynamic sets only Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 327/423] netfilter: nf_tables: dont unregister hook when table is dormant Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 328/423] netlabel: Fix NULL pointer exception caused by CALIPSO on IPv4 sockets Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 329/423] net_sched: skbprio: Remove overly strict queue assertions Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 330/423] sctp: add mutual exclusion in proc_sctp_do_udp_port() Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 331/423] net: mvpp2: Prevent parser TCAM memory corruption Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 332/423] udp: Fix multiple wraparounds of sk->sk_rmem_alloc Greg Kroah-Hartman
2025-04-08 10:50 ` [PATCH 6.12 333/423] udp: Fix memory accounting leak Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 334/423] vsock: avoid timeout during connect() if the socket is closing Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 335/423] tunnels: Accept PACKET_HOST in skb_tunnel_check_pmtu() Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 336/423] net: decrease cached dst counters in dst_release Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 337/423] netfilter: nft_tunnel: fix geneve_opt type confusion addition Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 338/423] ipv6: fix omitted netlink attributes when using RTEXT_FILTER_SKIP_STATS Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 339/423] net: dsa: mv88e6xxx: propperly shutdown PPU re-enable timer on destroy Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 340/423] net: fix geneve_opt length integer overflow Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 341/423] ipv6: Start path selection from the first nexthop Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 342/423] ipv6: Do not consider link down nexthops in path selection Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 343/423] arcnet: Add NULL check in com20020pci_probe() Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 344/423] net: ibmveth: make veth_pool_store stop hanging Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 345/423] kbuild: deb-pkg: dont set KBUILD_BUILD_VERSION unconditionally Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 346/423] drm/amdgpu/gfx11: fix num_mec Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 347/423] drm/amdgpu/gfx12: " Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 348/423] perf/core: Fix child_total_time_enabled accounting bug at task exit Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 349/423] tools/power turbostat: report CoreThr per measurement interval Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 350/423] tracing: Switch trace_events_hist.c code over to use guard() Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 351/423] tracing/hist: Add poll(POLLIN) support on hist file Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 352/423] tracing/hist: Support POLLPRI event for poll on histogram Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 353/423] tracing: Correct the refcount if the hist/hist_debug file fails to open Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 354/423] arm64: dts: rockchip: Add missing PCIe supplies to RockPro64 board dtsi Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 355/423] cgroup/rstat: Tracking cgroup-level niced CPU time Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 356/423] cgroup/rstat: Fix forceidle time in cpu.stat Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 357/423] tty: serial: fsl_lpuart: Use u32 and u8 for register variables Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 358/423] tty: serial: fsl_lpuart: use port struct directly to simply code Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 359/423] tty: serial: lpuart: only disable CTS instead of overwriting the whole UARTMODIR register Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 360/423] wifi: mac80211: Fix sparse warning for monitor_sdata Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 361/423] usbnet:fix NPE during rx_complete Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 362/423] rust: Fix enabling Rust and building with GCC for LoongArch Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 363/423] LoongArch: Increase ARCH_DMA_MINALIGN up to 16 Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 364/423] LoongArch: Increase MAX_IO_PICS up to 8 Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 365/423] LoongArch: BPF: Fix off-by-one error in build_prologue() Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 366/423] LoongArch: BPF: Dont override subprogs return value Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 367/423] LoongArch: BPF: Use move_addr() for BPF_PSEUDO_FUNC Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 368/423] x86/hyperv: Fix check of return value from snp_set_vmsa() Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 369/423] KVM: x86: block KVM_CAP_SYNC_REGS if guest state is protected Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 370/423] x86/microcode/AMD: Fix __apply_microcode_amd()s return value Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 371/423] x86/mce: use is_copy_from_user() to determine copy-from-user context Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 372/423] x86/tdx: Fix arch_safe_halt() execution for TDX VMs Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 373/423] ACPI: x86: Extend Lenovo Yoga Tab 3 quirk with skip GPIO event-handlers Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 374/423] platform/x86: thinkpad_acpi: disable ACPI fan access for T495* and E560 Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 375/423] platform/x86: ISST: Correct command storage data length Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 376/423] ntb_perf: Delete duplicate dmaengine_unmap_put() call in perf_copy_chunk() Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 377/423] perf/x86/intel: Apply static call for drain_pebs Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 378/423] perf/x86/intel: Avoid disable PMU if !cpuc->enabled in sample read Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 379/423] uprobes/x86: Harden uretprobe syscall trampoline check Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 380/423] idpf: Dont hard code napi_struct size Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 381/423] x86/Kconfig: Add cmpxchg8b support back to Geode CPUs Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 382/423] x86/tsc: Always save/restore TSC sched_clock() on suspend/resume Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 383/423] x86/mm: Fix flush_tlb_range() when used for zapping normal PMDs Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 384/423] wifi: mt76: mt7925: remove unused acpi function for clc Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 385/423] acpi: nfit: fix narrowing conversion in acpi_nfit_ctl Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 386/423] ACPI: resource: Skip IRQ override on ASUS Vivobook 14 X1404VAP Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 387/423] ARM: 9444/1: add KEEP() keyword to ARM_VECTORS Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 388/423] media: omap3isp: Handle ARM dma_iommu_mapping Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 389/423] Remove unnecessary firmware version check for gc v9_4_2 Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 390/423] mmc: omap: Fix memory leak in mmc_omap_new_slot Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 391/423] mmc: sdhci-pxav3: set NEED_RSP_BUSY capability Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 392/423] mmc: sdhci-omap: Disable MMC_CAP_AGGRESSIVE_PM for eMMC/SD Greg Kroah-Hartman
2025-04-08 10:51 ` [PATCH 6.12 393/423] KVM: SVM: Dont change target vCPU state on AP Creation VMGEXIT error Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 394/423] ksmbd: add bounds check for durable handle context Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 395/423] ksmbd: add bounds check for create lease context Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 396/423] ksmbd: fix use-after-free in ksmbd_sessions_deregister() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 397/423] ksmbd: fix session use-after-free in multichannel connection Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 398/423] ksmbd: fix overflow in dacloffset bounds check Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 399/423] ksmbd: validate zero num_subauth before sub_auth is accessed Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 400/423] ksmbd: fix null pointer dereference in alloc_preauth_hash() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 401/423] exfat: fix random stack corruption after get_block Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 402/423] exfat: fix potential wrong error return from get_block Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 403/423] tracing: Fix use-after-free in print_graph_function_flags during tracer switching Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 404/423] tracing: Ensure module defining synth event cannot be unloaded while tracing Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 405/423] tracing: Fix synth event printk format for str fields Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 406/423] tracing/osnoise: Fix possible recursive locking for cpus_read_lock() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 407/423] mm/gup: reject FOLL_SPLIT_PMD with hugetlb VMAs Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 408/423] arm64: Dont call NULL in do_compat_alignment_fixup() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 409/423] wifi: mt76: mt7921: fix kernel panic due to null pointer dereference Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 410/423] ext4: dont over-report free space or inodes in statvfs Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 411/423] ext4: fix OOB read when checking dotdot dir Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 412/423] jfs: fix slab-out-of-bounds read in ea_get() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 413/423] jfs: add index corruption check to DT_GETPAGE() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 414/423] mm: zswap: fix crypto_free_acomp() deadlock in zswap_cpu_comp_dead() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 415/423] exec: fix the racy usage of fs_struct->in_exec Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 416/423] media: vimc: skip .s_stream() for stopped entities Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 417/423] media: streamzap: fix race between device disconnection and urb callback Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 418/423] nfsd: allow SC_STATUS_FREEABLE when searching via nfs4_lookup_stateid() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 419/423] nfsd: put dl_stid if fail to queue dl_recall Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 420/423] nfsd: fix management of listener transports Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 421/423] NFSD: nfsd_unlink() clobbers non-zero status returned from fh_fill_pre_attrs() Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 422/423] NFSD: Never return NFS4ERR_FILE_OPEN when removing a directory Greg Kroah-Hartman
2025-04-08 10:52 ` [PATCH 6.12 423/423] NFSD: Skip sending CB_RECALL_ANY when the backchannel isnt up Greg Kroah-Hartman
2025-04-08 13:05 ` [PATCH 6.12 000/423] 6.12.23-rc1 review Harshit Mogalapalli
2025-04-08 13:11 ` Dragan Simic
2025-04-08 15:13 ` Greg Kroah-Hartman
2025-04-08 15:01 ` Mark Brown
2025-04-08 15:02 ` Mark Brown
2025-04-08 15:18 ` Greg Kroah-Hartman
2025-04-08 15:39 ` Markus Reichelt
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=20250408104852.707028022@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=mailhol.vincent@wanadoo.fr \
--cc=mkl@pengutronix.de \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=socketcan@hartkopp.net \
--cc=stable@vger.kernel.org \
--cc=syzbot+78ce4489b812515d5e4d@syzkaller.appspotmail.com \
/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).