From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Johannes Berg <johannes.berg@intel.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 399/440] um: time-travel: fix signal blocking race/hang
Date: Tue, 30 Jul 2024 17:50:32 +0200 [thread overview]
Message-ID: <20240730151631.386573917@linuxfoundation.org> (raw)
In-Reply-To: <20240730151615.753688326@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Johannes Berg <johannes.berg@intel.com>
[ Upstream commit 2cf3a3c4b84def5406b830452b1cb8bbfffe0ebe ]
When signals are hard-blocked in order to do time-travel
socket processing, we set signals_blocked and then handle
SIGIO signals by setting the SIGIO bit in signals_pending.
When unblocking, we first set signals_blocked to 0, and
then handle all pending signals. We have to set it first,
so that we can again properly block/unblock inside the
unblock, if the time-travel handlers need to be processed.
Unfortunately, this is racy. We can get into this situation:
// signals_pending = SIGIO_MASK
unblock_signals_hard()
signals_blocked = 0;
if (signals_pending && signals_enabled) {
block_signals();
unblock_signals()
...
sig_handler_common(SIGIO, NULL, NULL);
sigio_handler()
...
sigio_reg_handler()
irq_do_timetravel_handler()
reg->timetravel_handler() ==
vu_req_interrupt_comm_handler()
vu_req_read_message()
vhost_user_recv_req()
vhost_user_recv()
vhost_user_recv_header()
// reads 12 bytes header of
// 20 bytes message
<-- receive SIGIO here <--
sig_handler()
int enabled = signals_enabled; // 1
if ((signals_blocked || !enabled) && (sig == SIGIO)) {
if (!signals_blocked && time_travel_mode == TT_MODE_EXTERNAL)
sigio_run_timetravel_handlers()
_sigio_handler()
sigio_reg_handler()
... as above ...
vhost_user_recv_header()
// reads 8 bytes that were message payload
// as if it were header - but aborts since
// it then gets -EAGAIN
...
--> end signal handler -->
// continue in vhost_user_recv()
// full_read() for 8 bytes payload busy loops
// entire process hangs here
Conceptually, to fix this, we need to ensure that the
signal handler cannot run while we hard-unblock signals.
The thing that makes this more complex is that we can be
doing hard-block/unblock while unblocking. Introduce a
new signals_blocked_pending variable that we can keep at
non-zero as long as pending signals are being processed,
then we only need to ensure it's decremented safely and
the signal handler will only increment it if it's already
non-zero (or signals_blocked is set, of course.)
Note also that only the outermost call to hard-unblock is
allowed to decrement signals_blocked_pending, since it
could otherwise reach zero in an inner call, and leave
the same race happening if the timetravel_handler loops,
but that's basically required of it.
Fixes: d6b399a0e02a ("um: time-travel/signals: fix ndelay() in interrupt")
Link: https://patch.msgid.link/20240703110144.28034-2-johannes@sipsolutions.net
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/um/os-Linux/signal.c | 118 +++++++++++++++++++++++++++++++-------
1 file changed, 98 insertions(+), 20 deletions(-)
diff --git a/arch/um/os-Linux/signal.c b/arch/um/os-Linux/signal.c
index 24a403a70a020..850d21e6473ee 100644
--- a/arch/um/os-Linux/signal.c
+++ b/arch/um/os-Linux/signal.c
@@ -8,6 +8,7 @@
#include <stdlib.h>
#include <stdarg.h>
+#include <stdbool.h>
#include <errno.h>
#include <signal.h>
#include <string.h>
@@ -65,9 +66,7 @@ static void sig_handler_common(int sig, struct siginfo *si, mcontext_t *mc)
int signals_enabled;
#ifdef UML_CONFIG_UML_TIME_TRAVEL_SUPPORT
-static int signals_blocked;
-#else
-#define signals_blocked 0
+static int signals_blocked, signals_blocked_pending;
#endif
static unsigned int signals_pending;
static unsigned int signals_active = 0;
@@ -76,14 +75,27 @@ void sig_handler(int sig, struct siginfo *si, mcontext_t *mc)
{
int enabled = signals_enabled;
- if ((signals_blocked || !enabled) && (sig == SIGIO)) {
+#ifdef UML_CONFIG_UML_TIME_TRAVEL_SUPPORT
+ if ((signals_blocked ||
+ __atomic_load_n(&signals_blocked_pending, __ATOMIC_SEQ_CST)) &&
+ (sig == SIGIO)) {
+ /* increment so unblock will do another round */
+ __atomic_add_fetch(&signals_blocked_pending, 1,
+ __ATOMIC_SEQ_CST);
+ return;
+ }
+#endif
+
+ if (!enabled && (sig == SIGIO)) {
/*
* In TT_MODE_EXTERNAL, need to still call time-travel
- * handlers unless signals are also blocked for the
- * external time message processing. This will mark
- * signals_pending by itself (only if necessary.)
+ * handlers. This will mark signals_pending by itself
+ * (only if necessary.)
+ * Note we won't get here if signals are hard-blocked
+ * (which is handled above), in that case the hard-
+ * unblock will handle things.
*/
- if (!signals_blocked && time_travel_mode == TT_MODE_EXTERNAL)
+ if (time_travel_mode == TT_MODE_EXTERNAL)
sigio_run_timetravel_handlers();
else
signals_pending |= SIGIO_MASK;
@@ -380,33 +392,99 @@ int um_set_signals_trace(int enable)
#ifdef UML_CONFIG_UML_TIME_TRAVEL_SUPPORT
void mark_sigio_pending(void)
{
+ /*
+ * It would seem that this should be atomic so
+ * it isn't a read-modify-write with a signal
+ * that could happen in the middle, losing the
+ * value set by the signal.
+ *
+ * However, this function is only called when in
+ * time-travel=ext simulation mode, in which case
+ * the only signal ever pending is SIGIO, which
+ * is blocked while this can be called, and the
+ * timer signal (SIGALRM) cannot happen.
+ */
signals_pending |= SIGIO_MASK;
}
void block_signals_hard(void)
{
- if (signals_blocked)
- return;
- signals_blocked = 1;
+ signals_blocked++;
barrier();
}
void unblock_signals_hard(void)
{
+ static bool unblocking;
+
if (!signals_blocked)
+ panic("unblocking signals while not blocked");
+
+ if (--signals_blocked)
return;
- /* Must be set to 0 before we check the pending bits etc. */
- signals_blocked = 0;
+ /*
+ * Must be set to 0 before we check pending so the
+ * SIGIO handler will run as normal unless we're still
+ * going to process signals_blocked_pending.
+ */
barrier();
- if (signals_pending && signals_enabled) {
- /* this is a bit inefficient, but that's not really important */
- block_signals();
- unblock_signals();
- } else if (signals_pending & SIGIO_MASK) {
- /* we need to run time-travel handlers even if not enabled */
- sigio_run_timetravel_handlers();
+ /*
+ * Note that block_signals_hard()/unblock_signals_hard() can be called
+ * within the unblock_signals()/sigio_run_timetravel_handlers() below.
+ * This would still be prone to race conditions since it's actually a
+ * call _within_ e.g. vu_req_read_message(), where we observed this
+ * issue, which loops. Thus, if the inner call handles the recorded
+ * pending signals, we can get out of the inner call with the real
+ * signal hander no longer blocked, and still have a race. Thus don't
+ * handle unblocking in the inner call, if it happens, but only in
+ * the outermost call - 'unblocking' serves as an ownership for the
+ * signals_blocked_pending decrement.
+ */
+ if (unblocking)
+ return;
+ unblocking = true;
+
+ while (__atomic_load_n(&signals_blocked_pending, __ATOMIC_SEQ_CST)) {
+ if (signals_enabled) {
+ /* signals are enabled so we can touch this */
+ signals_pending |= SIGIO_MASK;
+ /*
+ * this is a bit inefficient, but that's
+ * not really important
+ */
+ block_signals();
+ unblock_signals();
+ } else {
+ /*
+ * we need to run time-travel handlers even
+ * if not enabled
+ */
+ sigio_run_timetravel_handlers();
+ }
+
+ /*
+ * The decrement of signals_blocked_pending must be atomic so
+ * that the signal handler will either happen before or after
+ * the decrement, not during a read-modify-write:
+ * - If it happens before, it can increment it and we'll
+ * decrement it and do another round in the loop.
+ * - If it happens after it'll see 0 for both signals_blocked
+ * and signals_blocked_pending and thus run the handler as
+ * usual (subject to signals_enabled, but that's unrelated.)
+ *
+ * Note that a call to unblock_signals_hard() within the calls
+ * to unblock_signals() or sigio_run_timetravel_handlers() above
+ * will do nothing due to the 'unblocking' state, so this cannot
+ * underflow as the only one decrementing will be the outermost
+ * one.
+ */
+ if (__atomic_sub_fetch(&signals_blocked_pending, 1,
+ __ATOMIC_SEQ_CST) < 0)
+ panic("signals_blocked_pending underflow");
}
+
+ unblocking = false;
}
#endif
--
2.43.0
next prev parent reply other threads:[~2024-07-30 16:55 UTC|newest]
Thread overview: 460+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-30 15:43 [PATCH 6.1 000/440] 6.1.103-rc1 review Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 001/440] spi: spi-microchip-core: Fix the number of chip selects supported Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 002/440] spi: atmel-quadspi: Add missing check for clk_prepare Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 003/440] EDAC, i10nm: make skx_common.o a separate module Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 004/440] rcu/tasks: Fix stale task snaphot for Tasks Trace Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 005/440] md: fix deadlock between mddev_suspend and flush bio Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 006/440] platform/chrome: cros_ec_debugfs: fix wrong EC message version Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 007/440] ubd: refactor the interrupt handler Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 008/440] ubd: untagle discard vs write zeroes not support handling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 009/440] block: refactor to use helper Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 010/440] block: cleanup bio_integrity_prep Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 011/440] block: initialize integrity buffer to zero before writing it to media Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 012/440] hfsplus: fix to avoid false alarm of circular locking Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 013/440] x86/of: Return consistent error type from x86_of_pci_irq_enable() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 014/440] x86/pci/intel_mid_pci: Fix PCIBIOS_* return code handling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 015/440] x86/pci/xen: " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 016/440] x86/platform/iosf_mbi: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 017/440] kernfs: fix all kernel-doc warnings and multiple typos Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 018/440] kernfs: Convert kernfs_path_from_node_locked() from strlcpy() to strscpy() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 019/440] cgroup/cpuset: Prevent UAF in proc_cpuset_show() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 020/440] hwmon: (adt7475) Fix default duty on fan is disabled Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 021/440] block/mq-deadline: Fix the tag reservation code Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 022/440] pwm: stm32: Always do lazy disabling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 023/440] nvmet-auth: fix nvmet_auth hash error handling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 024/440] drm/meson: fix canvas release in bind function Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 025/440] pwm: atmel-tcb: Put per-channel data into driver data Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 026/440] pwm: atmel-tcb: Unroll atmel_tcb_pwm_set_polarity() into only caller Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 027/440] pwm: atmel-tcb: Dont track polarity in driver data Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 028/440] pwm: atmel-tcb: Fix race condition and convert to guards Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 029/440] hwmon: (max6697) Fix underflow when writing limit attributes Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 030/440] hwmon: (max6697) Fix swapped temp{1,8} critical alarms Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 031/440] arm64: dts: qcom: sdm845: add power-domain to UFS PHY Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 032/440] arm64: dts: qcom: sm6350: " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 033/440] arm64: dts: qcom: sm8250: switch UFS QMP PHY to new style of bindings Greg Kroah-Hartman
2024-10-01 17:27 ` Sumit Semwal
2024-10-01 18:01 ` Dmitry Baryshkov
2024-10-02 9:51 ` Greg Kroah-Hartman
2024-10-03 14:51 ` Sumit Semwal
2024-10-03 21:05 ` Dmitry Baryshkov
2024-10-02 9:51 ` Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 034/440] arm64: dts: qcom: sm8250: add power-domain to UFS PHY Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 035/440] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 036/440] arm64: dts: qcom: msm8996-xiaomi-common: drop excton from the USB PHY Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 037/440] arm64: dts: qcom: msm8998: enable adreno_smmu by default Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 038/440] soc: qcom: rpmh-rsc: Ensure irqs arent disabled by rpmh_rsc_send_data() callers Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 039/440] arm64: dts: rockchip: Add sdmmc related properties on rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 040/440] arm64: dts: rockchip: Add pinctrl for UART0 to rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 041/440] arm64: dts: rockchip: Add mdio and ethernet-phy nodes " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 042/440] arm64: dts: rockchip: Update WIFi/BT related nodes on rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 043/440] arm64: dts: qcom: msm8996: specify UFS core_clk frequencies Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 044/440] soc: xilinx: rename cpu_number1 to dummy_cpu_number Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 045/440] cpufreq: ti-cpufreq: Handle deferred probe with dev_err_probe() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 046/440] OPP: ti: Fix ti_opp_supply_probe wrong return values Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 047/440] memory: fsl_ifc: Make FSL_IFC config visible and selectable Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 048/440] soc: qcom: pdr: protect locator_addr with the main mutex Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 049/440] soc: qcom: pdr: fix parsing of domains lists Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 050/440] arm64: dts: rockchip: Increase VOP clk rate on RK3328 Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 051/440] arm64: dts: amlogic: sm1: fix spdif compatibles Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 052/440] ARM: dts: imx6qdl-kontron-samx6i: fix phy-mode Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 053/440] ARM: dts: imx6qdl-kontron-samx6i: fix PHY reset Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 054/440] ARM: dts: imx6qdl-kontron-samx6i: fix board reset Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 055/440] ARM: dts: imx6qdl-kontron-samx6i: fix SPI0 chip selects Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 056/440] ARM: dts: imx6qdl-kontron-samx6i: fix PCIe reset polarity Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 057/440] arm64: dts: mediatek: mt8183-kukui: Drop bogus output-enable property Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 058/440] arm64: dts: mediatek: mt7622: fix "emmc" pinctrl mux Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 059/440] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add ports node for anx7625 Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 060/440] arm64: dts: amlogic: gx: correct hdmi clocks Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 061/440] arm64: dts: rockchip: Drop invalid mic-in-differential on rk3568-rock-3a Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 062/440] arm64: dts: rockchip: Fix mic-in-differential usage on rk3568-evb1-v10 Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 063/440] arm64: dts: renesas: r8a779g0: Add L3 cache controller Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 064/440] arm64: dts: renesas: r8a779g0: Add secondary CA76 CPU cores Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 065/440] arm64: dts: renesas: Drop specifying the GIC_CPU_MASK_SIMPLE() for GICv3 systems Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 066/440] arm64: dts: renesas: r8a779a0: Add missing hypervisor virtual timer IRQ Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 067/440] arm64: dts: renesas: r8a779f0: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 068/440] arm64: dts: renesas: r8a779g0: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 069/440] arm64: dts: renesas: r9a07g043u: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 070/440] arm64: dts: renesas: r9a07g044: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 071/440] arm64: dts: renesas: r9a07g054: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 072/440] m68k: atari: Fix TT bootup freeze / unexpected (SCU) interrupt messages Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 073/440] x86/xen: Convert comma to semicolon Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 074/440] arm64: dts: rockchip: Add missing power-domains for rk356x vop_mmu Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 075/440] arm64: dts: qcom: sm6350: Add missing qcom,non-secure-domain property Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 076/440] m68k: cmpxchg: Fix return value for default case in __arch_xchg() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 077/440] ARM: spitz: fix GPIO assignment for backlight Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 078/440] vmlinux.lds.h: catch .bss..L* sections into BSS") Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 079/440] firmware: turris-mox-rwtm: Do not complete if there are no waiters Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 080/440] firmware: turris-mox-rwtm: Fix checking return value of wait_for_completion_timeout() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 081/440] firmware: turris-mox-rwtm: Initialize completion before mailbox Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 082/440] wifi: brcmsmac: LCN PHY code is used for BCM4313 2G-only device Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 083/440] bpftool: Un-const bpf_func_info to fix it for llvm 17 and newer Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 084/440] selftests/bpf: Fix prog numbers in test_sockmap Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 085/440] net: esp: cleanup esp_output_tail_tcp() in case of unsupported ESPINTCP Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 086/440] tcp: annotate lockless accesses to sk->sk_err_soft Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 087/440] tcp: annotate lockless access to sk->sk_err Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 088/440] tcp: add tcp_done_with_error() helper Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 089/440] tcp: fix race in tcp_write_err() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 090/440] tcp: fix races in tcp_v[46]_err() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 091/440] net/smc: set rmbs SG_MAX_SINGLE_ALLOC limitation only when CONFIG_ARCH_NO_SG_CHAIN is defined Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 092/440] selftests/bpf: Check length of recv in test_sockmap Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 093/440] lib: objagg: Fix general protection fault Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 094/440] mlxsw: spectrum_acl_erp: Fix object nesting warning Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 095/440] mlxsw: spectrum_acl: Fix ACL scale regression and firmware errors Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 096/440] perf/x86: Serialize set_attr_rdpmc() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 097/440] jump_label: Use atomic_try_cmpxchg() in static_key_slow_inc_cpuslocked() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 098/440] jump_label: Prevent key->enabled int overflow Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 099/440] jump_label: Fix concurrency issues in static_key_slow_dec() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 100/440] wifi: ath11k: fix wrong handling of CCMP256 and GCMP ciphers Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 101/440] wifi: cfg80211: fix typo in cfg80211_calculate_bitrate_he() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 102/440] wifi: cfg80211: handle 2x996 RU allocation " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 103/440] net: fec: Refactor: #define magic constants Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 104/440] net: fec: Fix FEC_ECR_EN1588 being cleared on link-down Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 105/440] libbpf: Checking the btf_type kind when fixing variable offsets Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 106/440] ipvs: Avoid unnecessary calls to skb_is_gso_sctp Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 107/440] netfilter: nf_tables: rise cap on SELinux secmark context Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 108/440] bpftool: Mount bpffs when pinmaps path not under the bpffs Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 109/440] perf/x86/intel/pt: Fix pt_topa_entry_for_page() address calculation Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 110/440] perf: Fix perf_aux_size() for greater-than 32-bit size Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 111/440] perf: Prevent passing zero nr_pages to rb_alloc_aux() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 112/440] perf: Fix default aux_watermark calculation Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 113/440] perf/x86/intel/cstate: Fix Alderlake/Raptorlake/Meteorlake Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 114/440] wifi: rtw89: Fix array index mistake in rtw89_sta_info_get_iter() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 115/440] wifi: virt_wifi: avoid reporting connection success with wrong SSID Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 116/440] gss_krb5: Fix the error handling path for crypto_sync_skcipher_setkey Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 117/440] wifi: virt_wifi: dont use strlen() in const context Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 118/440] locking/rwsem: Add __always_inline annotation to __down_write_common() and inlined callers Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 119/440] selftests/bpf: Close fd in error path in drop_on_reuseport Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 120/440] selftests/bpf: Close obj in error path in xdp_adjust_tail Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 121/440] bpf: annotate BTF show functions with __printf Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 122/440] bna: adjust name buf size of bna_tcb and bna_ccb structures Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 123/440] bpf: Eliminate remaining "make W=1" warnings in kernel/bpf/btf.o Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 124/440] bpf: Fix null pointer dereference in resolve_prog_type() for BPF_PROG_TYPE_EXT Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 125/440] selftests: forwarding: devlink_lib: Wait for udev events after reloading Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 126/440] xdp: fix invalid wait context of page_pool_destroy() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 127/440] net: bridge: mst: Check vlan state for egress decision Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 128/440] drm/rockchip: vop2: Fix the port mux of VP2 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 129/440] drm/mipi-dsi: Fix mipi_dsi_dcs_write_seq() macro definition format Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 130/440] drm/mipi-dsi: Fix theoretical int overflow in mipi_dsi_dcs_write_seq() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 131/440] drm/amd/pm: Fix aldebaran pcie speed reporting Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 132/440] drm/amdgpu: Check if NBIO funcs are NULL in amdgpu_device_baco_exit Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 133/440] drm/amdgpu: Remove GC HW IP 9.3.0 from noretry=1 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 134/440] drm/panel: boe-tv101wum-nl6: If prepare fails, disable GPIO before regulators Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 135/440] drm/panel: boe-tv101wum-nl6: Check for errors on the NOP in prepare() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 136/440] media: pci: ivtv: Add check for DMA map result Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 137/440] media: dvb-usb: Fix unexpected infinite loop in dvb_usb_read_remote_control() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 138/440] media: imon: Fix race getting ictx->lock Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 139/440] media: i2c: Fix imx412 exposure control Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 140/440] media: v4l: async: Fix NULL pointer dereference in adding ancillary links Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 141/440] s390/mm: Convert make_page_secure to use a folio Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 142/440] s390/mm: Convert gmap_make_secure " Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 143/440] s390/uv: Dont call folio_wait_writeback() without a folio reference Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 144/440] saa7134: Unchecked i2c_transfer function result fixed Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 145/440] media: uvcvideo: Override default flags Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 146/440] media: rcar-vin: Fix YUYV8_1X16 handling for CSI-2 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 147/440] media: rcar-csi2: Disable runtime_pm in probe error Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 148/440] media: rcar-csi2: Cleanup subdevice in remove() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 149/440] media: renesas: vsp1: Fix _irqsave and _irq mix Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 150/440] media: renesas: vsp1: Store RPF partition configuration per RPF instance Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 151/440] drm/mediatek: Add missing plane settings when async update Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 152/440] drm/mediatek: Add OVL compatible name for MT8195 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 153/440] leds: trigger: Unregister sysfs attributes before calling deactivate() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 154/440] drm/msm/dsi: set VIDEO_COMPRESSION_MODE_CTRL_WC Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 155/440] drm/msm/dpu: drop validity checks for clear_pending_flush() ctl op Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 156/440] perf test: Replace arm callgraph fp test workload with leafloop Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 157/440] perf tests arm_callgraph_fp: Address shellcheck warnings about signal names and adding double quotes for expression Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 158/440] perf tests: Fix test_arm_callgraph_fp variable expansion Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 159/440] perf test: Make test_arm_callgraph_fp.sh more robust Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 160/440] perf report: Fix condition in sort__sym_cmp() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 161/440] drm/etnaviv: fix DMA direction handling for cached RW buffers Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 162/440] drm/qxl: Add check for drm_cvt_mode Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 163/440] Revert "leds: led-core: Fix refcount leak in of_led_get()" Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 164/440] ext4: fix infinite loop when replaying fast_commit Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 165/440] media: venus: flush all buffers in output plane streamoff Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 166/440] perf intel-pt: Fix aux_watermark calculation for 64-bit size Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 167/440] perf intel-pt: Fix exclude_guest setting Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 168/440] mfd: rsmu: Split core code into separate module Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 169/440] mfd: omap-usb-tll: Use struct_size to allocate tll Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 170/440] xprtrdma: Fix rpcrdma_reqs_reset() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 171/440] SUNRPC: avoid soft lockup when transmitting UDP to reachable server Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 172/440] NFSv4.1 another fix for EXCHGID4_FLAG_USE_PNFS_DS for DS server Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 173/440] ext4: dont track ranges in fast_commit if inode has inlined data Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 174/440] ext4: avoid writing unitialized memory to disk in EA inodes Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 175/440] sparc64: Fix incorrect function signature and add prototype for prom_cif_init Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 176/440] SUNRPC: Fixup gss_status tracepoint error output Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 177/440] PCI: Fix resource double counting on remove & rescan Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 178/440] PCI: keystone: Relocate ks_pcie_set/clear_dbi_mode() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 179/440] PCI: keystone: Dont enable BAR 0 for AM654x Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 180/440] PCI: keystone: Fix NULL pointer dereference in case of DT error in ks_pcie_setup_rc_app_regs() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 181/440] PCI: rcar: Demote WARN() to dev_warn_ratelimited() in rcar_pcie_wakeup() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 182/440] clk: qcom: branch: Add helper functions for setting retain bits Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 183/440] clk: qcom: gcc-sc7280: Update force mem core bit for UFS ICE clock Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 184/440] clk: qcom: camcc-sc7280: Add parent dependency to all camera GDSCs Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 185/440] iio: frequency: adrf6780: rm clk provider include Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 186/440] coresight: Fix ref leak when of_coresight_parse_endpoint() fails Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 187/440] RDMA/mlx5: Set mkeys for dmabuf at PAGE_SIZE Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 188/440] powerpc/pseries: Fix alignment of PLPKS structures and buffers Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 189/440] powerpc/pseries: Move plpks.h to include directory Greg Kroah-Hartman
2024-07-31 14:22 ` Michael Ellerman
2024-07-30 15:47 ` [PATCH 6.1 190/440] powerpc/pseries: Expose PLPKS config values, support additional fields Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 191/440] powerpc/pseries: Add helper to get PLPKS password length Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 192/440] powerpc/kexec: make the update_cpus_node() function public Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 193/440] powerpc/kexec_file: fix cpus node update to FDT Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 194/440] RDMA/cache: Release GID table even if leak is detected Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 195/440] clk: qcom: gpucc-sm8350: Park RCGs clk source at XO during disable Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 196/440] interconnect: qcom: qcm2290: Fix mas_snoc_bimc RPM master ID Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 197/440] Input: qt1050 - handle CHIP_ID reading error Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 198/440] RDMA/mlx4: Fix truncated output warning in mad.c Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 199/440] RDMA/mlx4: Fix truncated output warning in alias_GUID.c Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 200/440] RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is disabled Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 201/440] RDMA/rxe: Dont set BTH_ACK_MASK for UC or UD QPs Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 202/440] ASoC: qcom: Adjust issues in case of DT error in asoc_qcom_lpass_cpu_platform_probe() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 203/440] powerpc/prom: Add CPU info to hardware description string later Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 204/440] ASoC: max98088: Check for clk_prepare_enable() error Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 205/440] mtd: make mtd_test.c a separate module Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 206/440] RDMA/device: Return error earlier if port in not valid Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 207/440] Input: elan_i2c - do not leave interrupt disabled on suspend failure Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 208/440] ASoC: amd: Adjust error handling in case of absent codec device Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 209/440] PCI: endpoint: Clean up error handling in vpci_scan_bus() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 210/440] PCI: endpoint: Fix error handling in epf_ntb_epc_cleanup() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 211/440] vhost/vsock: always initialize seqpacket_allow Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 212/440] net: missing check virtio Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 213/440] crypto: qat - extend scope of lock in adf_cfg_add_key_value_param() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 214/440] clk: qcom: Park shared RCGs upon registration Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 215/440] clk: en7523: fix rate divider for slic and spi clocks Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 216/440] MIPS: Octeron: remove source file executable bit Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 217/440] PCI: qcom-ep: Disable resources unconditionally during PERST# assert Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 218/440] PCI: dwc: Fix index 0 incorrectly being interpreted as a free ATU slot Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 219/440] powerpc/xmon: Fix disassembly CPU feature checks Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 220/440] macintosh/therm_windtunnel: fix module unload Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 221/440] RDMA/hns: Check atomic wr length Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 222/440] RDMA/hns: Fix unmatch exception handling when init eq table fails Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 223/440] RDMA/hns: Fix missing pagesize and alignment check in FRMR Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 224/440] RDMA/hns: Fix shift-out-bounds when max_inline_data is 0 Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 225/440] RDMA/hns: Fix undifined behavior caused by invalid max_sge Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 226/440] RDMA/hns: Fix insufficient extend DB for VFs Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 227/440] iommu/vt-d: Fix to convert mm pfn to dma pfn Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 228/440] iommu/vt-d: Fix identity map bounds in si_domain_init() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 229/440] bnxt_re: Fix imm_data endianness Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 230/440] netfilter: ctnetlink: use helper function to calculate expect ID Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 231/440] netfilter: nft_set_pipapo: constify lookup fn args where possible Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 232/440] netfilter: nf_set_pipapo: fix initial map fill Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 233/440] net: flow_dissector: use DEBUG_NET_WARN_ON_ONCE Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 234/440] ipv4: Fix incorrect TOS in route get reply Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 235/440] ipv4: Fix incorrect TOS in fibmatch " Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 236/440] net: dsa: mv88e6xxx: Limit chip-wide frame size config to CPU ports Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 237/440] net: dsa: b53: Limit chip-wide jumbo frame " Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 238/440] fs/ntfs3: Use ALIGN kernel macro Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 239/440] fs/ntfs3: Merge synonym COMPRESSION_UNIT and NTFS_LZNT_CUNIT Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 240/440] fs/ntfs3: Fix transform resident to nonresident for compressed files Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 241/440] fs/ntfs3: Missed NI_FLAG_UPDATE_PARENT setting Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 242/440] fs/ntfs3: Fix getting file type Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 243/440] fs/ntfs3: Add missing .dirty_folio in address_space_operations Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 244/440] pinctrl: rockchip: update rk3308 iomux routes Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 245/440] pinctrl: core: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 246/440] pinctrl: single: " Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 247/440] pinctrl: ti: ti-iodelay: Drop if block with always false condition Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 248/440] pinctrl: ti: ti-iodelay: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 249/440] pinctrl: freescale: mxs: Fix refcount of child Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 250/440] fs/ntfs3: Replace inode_trylock with inode_lock Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 251/440] fs/ntfs3: Fix field-spanning write in INDEX_HDR Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 252/440] pinctrl: renesas: r8a779g0: Fix CANFD5 suffix Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 253/440] pinctrl: renesas: r8a779g0: Fix FXR_TXEN[AB] suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 254/440] pinctrl: renesas: r8a779g0: Fix (H)SCIF1 suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 255/440] pinctrl: renesas: r8a779g0: Fix (H)SCIF3 suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 256/440] pinctrl: renesas: r8a779g0: Fix IRQ suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 257/440] pinctrl: renesas: r8a779g0: FIX PWM suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 258/440] pinctrl: renesas: r8a779g0: Fix TCLK suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 259/440] pinctrl: renesas: r8a779g0: Fix TPU suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 260/440] fs/proc/task_mmu: indicate PM_FILE for PMD-mapped file THP Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 261/440] nilfs2: avoid undefined behavior in nilfs_cnt32_ge macro Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 262/440] rtc: interface: Add RTC offset to alarm after fix-up Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 263/440] fs/ntfs3: Missed error return Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 264/440] fs/ntfs3: Keep runs for $MFT::$ATTR_DATA and $MFT::$ATTR_BITMAP Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 265/440] s390/dasd: fix error checks in dasd_copy_pair_store() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 266/440] sbitmap: remove unnecessary calculation of alloc_hint in __sbitmap_get_shallow Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 267/440] sbitmap: rewrite sbitmap_find_bit_in_index to reduce repeat code Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 268/440] sbitmap: use READ_ONCE to access map->word Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 269/440] sbitmap: fix io hung due to race on sbitmap_word::cleared Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 270/440] landlock: Dont lose track of restrictions on cred_transfer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 271/440] mm/hugetlb: fix possible recursive locking detected warning Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 272/440] mm/mglru: fix div-by-zero in vmpressure_calc_level() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 273/440] mm: mmap_lock: replace get_memcg_path_buf() with on-stack buffer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 274/440] x86/efistub: Avoid returning EFI_SUCCESS on error Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 275/440] x86/efistub: Revert to heap allocated boot_params for PE entrypoint Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 276/440] dt-bindings: thermal: correct thermal zone node name limit Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 277/440] tick/broadcast: Make takeover of broadcast hrtimer reliable Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 278/440] net: netconsole: Disable target before netpoll cleanup Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 279/440] af_packet: Handle outgoing VLAN packets without hardware offloading Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 280/440] kernel: rerun task_work while freezing in get_signal() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 281/440] ipv4: fix source address selection with route leak Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 282/440] ipv6: take care of scope when choosing the src addr Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 283/440] sched/fair: set_load_weight() must also call reweight_task() for SCHED_IDLE tasks Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 284/440] fuse: verify {g,u}id mount options correctly Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 285/440] char: tpm: Fix possible memory leak in tpm_bios_measurements_open() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 286/440] media: venus: fix use after free in vdec_close Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 287/440] ata: libata-scsi: Honor the D_SENSE bit for CK_COND=1 and no error Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 288/440] hfs: fix to initialize fields of hfs_inode_info after hfs_alloc_inode() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 289/440] ext2: Verify bitmap and itable block numbers before using them Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 290/440] drm/gma500: fix null pointer dereference in cdv_intel_lvds_get_modes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 291/440] drm/gma500: fix null pointer dereference in psb_intel_lvds_get_modes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 292/440] scsi: qla2xxx: Fix optrom version displayed in FDMI Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 293/440] drm/amd/display: Check for NULL pointer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 294/440] sched/fair: Use all little CPUs for CPU-bound workloads Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 295/440] apparmor: use kvfree_sensitive to free data->data Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 296/440] cifs: fix potential null pointer use in destroy_workqueue in init_cifs error path Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 297/440] cifs: fix reconnect with SMB1 UNIX Extensions Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 298/440] cifs: mount with "unix" mount option for SMB1 incorrectly handled Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 299/440] task_work: s/task_work_cancel()/task_work_cancel_func()/ Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 300/440] task_work: Introduce task_work_cancel() again Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 301/440] udf: Avoid using corrupted block bitmap buffer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 302/440] m68k: amiga: Turn off Warp1260 interrupts during boot Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 303/440] ext4: check dot and dotdot of dx_root before making dir indexed Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 304/440] ext4: make sure the first directory block is not a hole Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 305/440] io_uring: tighten task exit cancellations Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 306/440] trace/pid_list: Change gfp flags in pid_list_fill_irq() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 307/440] selftests/landlock: Add cred_transfer test Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 308/440] wifi: mwifiex: Fix interface type change Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 309/440] drivers: soc: xilinx: check return status of get_api_version() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 310/440] leds: ss4200: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 311/440] leds: mt6360: Fix memory leak in mt6360_init_isnk_properties() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 312/440] jbd2: make jbd2_journal_get_max_txn_bufs() internal Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 313/440] media: uvcvideo: Fix integer overflow calculating timestamp Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 314/440] KVM: VMX: Split out the non-virtualization part of vmx_interrupt_blocked() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 315/440] KVM: nVMX: Request immediate exit iff pending nested event needs injection Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 316/440] ALSA: usb-audio: Fix microphone sound on HD webcam Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 317/440] ALSA: usb-audio: Move HD Webcam quirk to the right place Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 318/440] ALSA: usb-audio: Add a quirk for Sonix HD USB Camera Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 319/440] tools/memory-model: Fix bug in lock.cat Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 320/440] hwrng: amd - Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 321/440] parisc: Fix warning at drivers/pci/msi/msi.h:121 Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 322/440] PCI: hv: Return zero, not garbage, when reading PCI_INTERRUPT_PIN Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 323/440] PCI: dw-rockchip: Fix initial PERST# GPIO value Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 324/440] PCI: rockchip: Use GPIOD_OUT_LOW flag while requesting ep_gpio Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 325/440] PCI: loongson: Enable MSI in LS7A Root Complex Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 326/440] binder: fix hang of unregistered readers Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 327/440] dev/parport: fix the array out-of-bounds risk Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 328/440] fs/ntfs3: Update log->page_{mask,bits} if log->page_size changed Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 329/440] scsi: qla2xxx: Return ENOBUFS if sg_cnt is more than one for ELS cmds Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 330/440] f2fs: fix to force buffered IO on inline_data inode Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 331/440] f2fs: fix to dont dirty inode for readonly filesystem Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 332/440] f2fs: fix return value of f2fs_convert_inline_inode() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 333/440] clk: davinci: da8xx-cfgchip: Initialize clk_init_data before use Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 334/440] ubi: eba: properly rollback inside self_check_eba Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 335/440] decompress_bunzip2: fix rare decompression failure Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 336/440] kbuild: Fix -S -c in x86 stack protector scripts Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 337/440] ASoC: amd: yc: Support mic on Lenovo Thinkpad E16 Gen 2 Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 338/440] kobject_uevent: Fix OOB access within zap_modalias_env() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 339/440] gve: Fix an edge case for TSO skb validity check Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 340/440] ice: Add a per-VF limit on number of FDIR filters Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 341/440] devres: Fix devm_krealloc() wasting memory Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 342/440] devres: Fix memory leakage caused by driver API devm_free_percpu() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 343/440] irqchip/imx-irqsteer: Handle runtime power management correctly Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 344/440] mm/numa_balancing: teach mpol_to_str about the balancing mode Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 345/440] rtc: cmos: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 346/440] scsi: qla2xxx: During vport delete send async logout explicitly Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 347/440] scsi: qla2xxx: Unable to act on RSCN for port online Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 348/440] scsi: qla2xxx: Fix for possible memory corruption Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 349/440] scsi: qla2xxx: Use QP lock to search for bsg Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 350/440] scsi: qla2xxx: Fix flash read failure Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 351/440] scsi: qla2xxx: Complete command early within lock Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 352/440] scsi: qla2xxx: validate nvme_local_port correctly Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 353/440] perf: Fix event leak upon exit Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 354/440] perf: Fix event leak upon exec and file release Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 355/440] perf/x86/intel/uncore: Fix the bits of the CHA extended umask for SPR Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 356/440] perf/x86/intel/pt: Fix topa_entry base length Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 357/440] perf/x86/intel/pt: Fix a topa_entry base address calculation Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 358/440] drm/i915/gt: Do not consider preemption during execlists_dequeue for gen8 Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 359/440] drm/amdgpu/sdma5.2: Update wptr registers as well as doorbell Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 360/440] drm/dp_mst: Fix all mstb marked as not probed after suspend/resume Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 361/440] drm/i915/dp: Reset intel_dp->link_trained before retraining the link Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 362/440] rtc: isl1208: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 363/440] watchdog/perf: properly initialize the turbo mode timestamp and rearm counter Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 364/440] platform: mips: cpu_hwmon: Disable driver on unsupported hardware Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 365/440] RDMA/iwcm: Fix a use-after-free related to destroying CM IDs Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 366/440] selftests/sigaltstack: Fix ppc64 GCC build Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 367/440] dm-verity: fix dm_is_verity_target() when dm-verity is builtin Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 368/440] rbd: dont assume rbd_is_lock_owner() for exclusive mappings Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 369/440] remoteproc: stm32_rproc: Fix mailbox interrupts queuing Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 370/440] remoteproc: imx_rproc: Skip over memory region when node value is NULL Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 371/440] remoteproc: imx_rproc: Fix refcount mistake in imx_rproc_addr_init Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 372/440] MIPS: dts: loongson: Add ISA node Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 373/440] MIPS: ip30: ip30-console: Add missing include Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 374/440] MIPS: dts: loongson: Fix GMAC phy node Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 375/440] MIPS: Loongson64: env: Hook up Loongsson-2K Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 376/440] MIPS: Loongson64: Remove memory node for builtin-dtb Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 377/440] MIPS: Loongson64: reset: Prioritise firmware service Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 378/440] MIPS: Loongson64: Test register availability before use Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 379/440] drm/etnaviv: dont block scheduler when GPU is still active Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 380/440] drm/panfrost: Mark simple_ondemand governor as softdep Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 381/440] rbd: rename RBD_LOCK_STATE_RELEASING and releasing_wait Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 382/440] rbd: dont assume RBD_LOCK_STATE_LOCKED for exclusive mappings Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 383/440] bpf: Synchronize dispatcher update with bpf_dispatcher_xdp_func Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 384/440] Bluetooth: btusb: Add RTL8852BE device 0489:e125 to device tables Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 385/440] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x13d3:0x3591 Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 386/440] nilfs2: handle inconsistent state in nilfs_btnode_create_block() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 387/440] PCI: Introduce cleanup helpers for device reference counts and locks Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 388/440] PCI/DPC: Fix use-after-free on concurrent DPC and hot-removal Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 389/440] io_uring/io-wq: limit retrying worker initialisation Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 390/440] wifi: mac80211: Allow NSS change only up to capability Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 391/440] wifi: mac80211: track capability/opmode NSS separately Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 392/440] wifi: mac80211: check basic rates validity Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 393/440] kdb: address -Wformat-security warnings Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 394/440] kdb: Use the passed prompt in kdb_position_cursor() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 395/440] jfs: Fix array-index-out-of-bounds in diFree Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 396/440] dmaengine: ti: k3-udma: Fix BCHAN count with UHC and HC channels Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 397/440] phy: cadence-torrent: Check return value on register read Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 398/440] um: time-travel: fix time-travel-start option Greg Kroah-Hartman
2024-07-30 15:50 ` Greg Kroah-Hartman [this message]
2024-07-30 15:50 ` [PATCH 6.1 400/440] f2fs: fix start segno of large section Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 401/440] watchdog: rzg2l_wdt: Use pm_runtime_resume_and_get() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 402/440] watchdog: rzg2l_wdt: Check return status of pm_runtime_put() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 403/440] f2fs: fix to update user block counts in block_operations() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 404/440] kbuild: avoid build error when single DTB is turned into composite DTB Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 405/440] libbpf: Fix no-args func prototype BTF dumping syntax Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 406/440] af_unix: Disable MSG_OOB handling for sockets in sockmap/sockhash Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 407/440] dma: fix call order in dmam_free_coherent Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 408/440] bpf, events: Use prog to emit ksymbol event for main program Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 409/440] tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 410/440] MIPS: SMP-CPS: Fix address for GCR_ACCESS register for CM3 and later Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 411/440] ipv4: Fix incorrect source address in Record Route option Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 412/440] net: bonding: correctly annotate RCU in bond_should_notify_peers() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 413/440] netfilter: nft_set_pipapo_avx2: disable softinterrupts Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 414/440] tipc: Return non-zero value from tipc_udp_addr2str() on error Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 415/440] net: stmmac: Correct byte order of perfect_match Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 416/440] net: nexthop: Initialize all fields in dumped nexthops Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 417/440] bpf: Fix a segment issue when downgrading gso_size Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 418/440] mISDN: Fix a use after free in hfcmulti_tx() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 419/440] apparmor: Fix null pointer deref when receiving skb during sock creation Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 420/440] powerpc: fix a file leak in kvm_vcpu_ioctl_enable_cap() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 421/440] lirc: rc_dev_get_from_fd(): fix file leak Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 422/440] auxdisplay: ht16k33: Drop reference after LED registration Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 423/440] ASoC: SOF: imx8m: Fix DSP control regmap retrieval Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 424/440] spi: microchip-core: fix the issues in the isr Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 425/440] spi: microchip-core: only disable SPI controller when register value change requires it Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 426/440] spi: microchip-core: switch to use modern name Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 427/440] spi: microchip-core: fix init function not setting the master and motorola modes Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 428/440] nvme-pci: Fix the instructions for disabling power management Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 429/440] spidev: Add Silicon Labs EM3581 device compatible Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 430/440] spi: spidev: order compatibles alphabetically Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 431/440] spi: spidev: add correct compatible for Rohm BH2228FV Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 432/440] ASoC: Intel: use soc_intel_is_byt_cr() only when IOSF_MBI is reachable Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 433/440] ceph: fix incorrect kmalloc size of pagevec mempool Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 434/440] s390/pci: Refactor arch_setup_msi_irqs() Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 435/440] s390/pci: Allow allocation of more than 1 MSI interrupt Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 436/440] s390/cpum_cf: Fix endless loop in CF_DIAG event stop Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 437/440] iommu: sprd: Avoid NULL deref in sprd_iommu_hw_en Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 438/440] io_uring: fix io_match_task must_hold Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 439/440] nvme-pci: add missing condition check for existence of mapped data Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 440/440] fs: dont allow non-init s_user_ns for filesystems without FS_USERNS_MOUNT Greg Kroah-Hartman
2024-07-30 22:40 ` [PATCH 6.1 000/440] 6.1.103-rc1 review Florian Fainelli
2024-07-30 23:18 ` Shuah Khan
2024-07-30 23:37 ` Frank Scheiner
2024-07-30 23:52 ` Shuah Khan
2024-07-30 23:24 ` Frank Scheiner
2024-07-31 6:07 ` Greg KH
2024-07-31 9:24 ` Naresh Kamboju
2024-07-31 16:13 ` Jens Axboe
2024-07-31 16:46 ` Dan Carpenter
2024-07-31 16:49 ` Jens Axboe
2024-07-31 14:42 ` Peter Schneider
2024-08-01 8:28 ` Shreeya Patel
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=20240730151631.386573917@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=johannes.berg@intel.com \
--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).