public inbox for patches@lists.linux.dev
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Tom Chung <chiahsuan.chung@amd.com>,
	Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>,
	Roman Li <roman.li@amd.com>, Alex Hung <alex.hung@amd.com>,
	Aurabindo Pillai <aurabindo.pillai@amd.com>,
	Harry Wentland <harry.wentland@amd.com>,
	Hamza Mahfooz <hamza.mahfooz@amd.com>,
	Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>,
	Alex Deucher <alexander.deucher@amd.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 474/798] drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream
Date: Mon, 14 Oct 2024 16:17:08 +0200	[thread overview]
Message-ID: <20241014141236.597871981@linuxfoundation.org> (raw)
In-Reply-To: <20241014141217.941104064@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>

[ Upstream commit 66d71a72539e173a9b00ca0b1852cbaa5f5bf1ad ]

This commit addresses a null pointer dereference issue in the
`commit_planes_for_stream` function at line 4140. The issue could occur
when `top_pipe_to_program` is null.

The fix adds a check to ensure `top_pipe_to_program` is not null before
accessing its stream_res. This prevents a null pointer dereference.

Reported by smatch:
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:4140 commit_planes_for_stream() error: we previously assumed 'top_pipe_to_program' could be null (see line 3906)

Cc: Tom Chung <chiahsuan.chung@amd.com>
Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Cc: Roman Li <roman.li@amd.com>
Cc: Alex Hung <alex.hung@amd.com>
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Cc: Harry Wentland <harry.wentland@amd.com>
Cc: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
Reviewed-by: Tom Chung <chiahsuan.chung@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/amd/display/dc/core/dc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index d7bca680805d3..b424465238afc 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -3727,7 +3727,8 @@ static void commit_planes_for_stream(struct dc *dc,
 	}
 
 	if ((update_type != UPDATE_TYPE_FAST) && stream->update_flags.bits.dsc_changed)
-		if (top_pipe_to_program->stream_res.tg->funcs->lock_doublebuffer_enable) {
+		if (top_pipe_to_program &&
+		    top_pipe_to_program->stream_res.tg->funcs->lock_doublebuffer_enable) {
 			top_pipe_to_program->stream_res.tg->funcs->wait_for_state(
 				top_pipe_to_program->stream_res.tg,
 				CRTC_STATE_VACTIVE);
-- 
2.43.0




  parent reply	other threads:[~2024-10-14 15:16 UTC|newest]

Thread overview: 813+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-14 14:09 [PATCH 6.1 000/798] 6.1.113-rc1 review Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 001/798] EDAC/synopsys: Fix ECC status and IRQ control race condition Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 002/798] EDAC/synopsys: Fix error injection on Zynq UltraScale+ Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 003/798] wifi: rtw88: always wait for both firmware loading attempts Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 004/798] crypto: xor - fix template benchmarking Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 005/798] ACPI: PMIC: Remove unneeded check in tps68470_pmic_opregion_probe() Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 006/798] wifi: ath9k: fix parameter check in ath9k_init_debug() Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 007/798] wifi: ath9k: Remove error checks when creating debugfs entries Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 008/798] net: stmmac: dwmac-loongson: Init ref and PTP clocks rate Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 009/798] wifi: rtw88: remove CPT execution branch never used Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 010/798] RISC-V: KVM: Fix sbiret init before forwarding to userspace Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 011/798] fs/namespace: fnic: Switch to use %ptTd Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 012/798] mount: handle OOM on mnt_warn_timestamp_expiry Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 013/798] kselftest/arm64: Dont pass headers to the compiler as source Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 014/798] kselftest/arm64: Verify simultaneous SSVE and ZA context generation Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 015/798] kselftest/arm64: Fix enumeration of systems without 128 bit SME for SSVE+ZA Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 016/798] kselftest/arm64: signal: fix/refactor SVE vector length enumeration Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 017/798] drivers/perf: Fix ali_drw_pmu driver interrupt status clearing Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 018/798] wifi: mac80211: dont use rate mask for offchannel TX either Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 019/798] wifi: iwlwifi: mvm: increase the time between ranging measurements Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 020/798] ACPICA: Implement ACPI_WARNING_ONCE and ACPI_ERROR_ONCE Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 021/798] ACPICA: executer/exsystem: Dont nag user about every Stall() violating the spec Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 022/798] padata: Honor the callers alignment in case of chunk_size 0 Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 023/798] drivers/perf: hisi_pcie: Record hardware counts correctly Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 024/798] kselftest/arm64: Actually test SME vector length changes via sigreturn Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 025/798] can: j1939: use correct function name in comment Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 026/798] ACPI: CPPC: Fix MASK_VAL() usage Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 027/798] netfilter: nf_tables: elements with timeout below CONFIG_HZ never expire Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 028/798] netfilter: nf_tables: reject element expiration with no timeout Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 029/798] netfilter: nf_tables: reject expiration higher than timeout Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 030/798] netfilter: nf_tables: remove annotation to access set timeout while holding lock Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 031/798] perf/arm-cmn: Rework DTC counters (again) Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 032/798] perf/arm-cmn: Improve debugfs pretty-printing for large configs Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 033/798] perf/arm-cmn: Refactor node ID handling. Again Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 034/798] perf/arm-cmn: Ensure dtm_idx is big enough Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 035/798] cpufreq: ti-cpufreq: Introduce quirks to handle syscon fails appropriately Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 036/798] x86/sgx: Fix deadlock in SGX NUMA node search Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 037/798] crypto: hisilicon/hpre - enable sva error interrupt event Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 038/798] crypto: hisilicon/hpre - mask cluster timeout error Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 039/798] crypto: hisilicon/qm - fix coding style issues Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 040/798] crypto: hisilicon/qm - reset device before enabling it Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 041/798] crypto: hisilicon/qm - inject error before stopping queue Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 042/798] wifi: cfg80211: fix UBSAN noise in cfg80211_wext_siwscan() Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 043/798] wifi: mt76: mt7915: fix rx filter setting for bfee functionality Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 044/798] wifi: cfg80211: fix two more possible UBSAN-detected off-by-one errors Greg Kroah-Hartman
2024-10-14 14:09 ` [PATCH 6.1 045/798] wifi: mac80211: use two-phase skb reclamation in ieee80211_do_stop() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 046/798] wifi: wilc1000: fix potential RCU dereference issue in wilc_parse_join_bss_param Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 047/798] Bluetooth: hci_core: Fix sending MGMT_EV_CONNECT_FAILED Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 048/798] Bluetooth: hci_sync: Ignore errors from HCI_OP_REMOTE_NAME_REQ_CANCEL Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 049/798] sock_map: Add a cond_resched() in sock_hash_free() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 050/798] can: bcm: Clear bo->bcm_proc_read after remove_proc_entry() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 051/798] can: m_can: Remove repeated check for is_peripheral Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 052/798] can: m_can: enable NAPI before enabling interrupts Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 053/798] can: m_can: m_can_close(): stop clocks after device has been shut down Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 054/798] Bluetooth: btusb: Fix not handling ZPL/short-transfer Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 055/798] bareudp: Pull inner IP header in bareudp_udp_encap_recv() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 056/798] bareudp: Pull inner IP header on xmit Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 057/798] net: enetc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 058/798] r8169: disable ALDPS per default for RTL8125 Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 059/798] net: ipv6: rpl_iptunnel: Fix memory leak in rpl_input Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 060/798] net: tipc: avoid possible garbage value Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 061/798] ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 062/798] nbd: fix race between timeout and normal completion Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 063/798] block, bfq: fix possible UAF for bfqq->bic with merge chain Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 064/798] block, bfq: choose the last bfqq from merge chain in bfq_setup_cooperator() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 065/798] block, bfq: dont break merge chain in bfq_split_bfqq() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 066/798] block: print symbolic error name instead of error code Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 067/798] block: fix potential invalid pointer dereference in blk_add_partition Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 068/798] spi: ppc4xx: handle irq_of_parse_and_map() errors Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 069/798] arm64: dts: exynos: exynos7885-jackpotlte: Correct RAM amount to 4GB Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 070/798] firmware: arm_scmi: Fix double free in OPTEE transport Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 071/798] spi: ppc4xx: Avoid returning 0 when failed to parse and map IRQ Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 072/798] regulator: Return actual error in of_regulator_bulk_get_all() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 073/798] arm64: dts: renesas: r9a07g043u: Correct GICD and GICR sizes Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 074/798] arm64: dts: renesas: r9a07g054: " Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 075/798] arm64: dts: renesas: r9a07g044: " Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 076/798] ARM: dts: microchip: sam9x60: Fix rtc/rtt clocks Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 077/798] arm64: dts: ti: k3-j721e-sk: Fix reversed C6x carveout locations Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 078/798] ARM: dts: microchip: sama7g5: Fix RTT clock Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 079/798] ARM: dts: imx7d-zii-rmu2: fix Ethernet PHY pinctrl property Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 080/798] ARM: versatile: fix OF node leak in CPUs prepare Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 081/798] reset: berlin: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 082/798] reset: k210: " Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 083/798] clocksource/drivers/qcom: Add missing iounmap() on errors in msm_dt_timer_init() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 084/798] ASoC: rt5682s: Return devm_of_clk_add_hw_provider to transfer the error Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 085/798] ALSA: hda: cs35l41: fix module autoloading Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 086/798] m68k: Fix kernel_clone_args.flags in m68k_clone() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 087/798] hwmon: (max16065) Fix overflows seen when writing limits Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 088/798] i2c: Add i2c_get_match_data() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 089/798] hwmon: (max16065) Remove use of i2c_match_id() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 090/798] hwmon: (max16065) Fix alarm attributes Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 091/798] mtd: slram: insert break after errors in parsing the map Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 092/798] hwmon: (ntc_thermistor) fix module autoloading Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 093/798] power: supply: axp20x_battery: Remove design from min and max voltage Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 094/798] power: supply: max17042_battery: Fix SOC threshold calc w/ no current sense Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 095/798] fbdev: hpfb: Fix an error handling path in hpfb_dio_probe() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 096/798] iommu/amd: Do not set the D bit on AMD v2 table entries Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 097/798] mtd: powernv: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 098/798] rcu/nocb: Fix RT throttling hrtimer armed from offline CPU Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 099/798] mtd: rawnand: mtk: Use for_each_child_of_node_scoped() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 100/798] mtd: rawnand: mtk: Factorize out the logic cleaning mtk chips Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 101/798] mtd: rawnand: mtk: Fix init error path Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 102/798] pmdomain: core: Harden inter-column space in debug summary Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 103/798] drm/stm: Fix an error handling path in stm_drm_platform_probe() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 104/798] drm/stm: ltdc: check memory returned by devm_kzalloc() Greg Kroah-Hartman
2024-10-14 14:10 ` [PATCH 6.1 105/798] drm/amd/display: Add null check for set_output_gamma in dcn30_set_output_transfer_func Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 106/798] drm/amdgpu: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 107/798] drm/amdgpu: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 108/798] drm/radeon: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 109/798] drm/radeon: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 110/798] scsi: smartpqi: revert propagate-the-multipath-failure-to-SML-quickly Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 111/798] scsi: NCR5380: Check for phase match during PDMA fixup Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 112/798] drm/amd/amdgpu: Properly tune the size of struct Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 113/798] drm/rockchip: vop: Allow 4096px width scaling Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 114/798] drm/rockchip: dw_hdmi: Fix reading EDID when using a forced mode Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 115/798] drm/radeon/evergreen_cs: fix int overflow errors in cs track offsets Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 116/798] drm/bridge: lontium-lt8912b: Validate mode in drm_bridge_funcs::mode_valid() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 117/798] drm/vc4: hdmi: Handle error case of pm_runtime_resume_and_get Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 118/798] scsi: elx: libefc: Fix potential use after free in efc_nport_vport_del() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 119/798] jfs: fix out-of-bounds in dbNextAG() and diAlloc() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 120/798] drm/mediatek: Fix missing configuration flags in mtk_crtc_ddp_config() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 121/798] drm/mediatek: Use spin_lock_irqsave() for CRTC event lock Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 122/798] powerpc/8xx: Fix initial memory mapping Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 123/798] powerpc/8xx: Fix kernel vs user address comparison Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 124/798] drm/msm: Fix incorrect file name output in adreno_request_fw() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 125/798] drm/msm/a5xx: disable preemption in submits by default Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 126/798] drm/msm/a5xx: properly clear preemption records on resume Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 127/798] drm/msm/a5xx: fix races in preemption evaluation stage Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 128/798] drm/msm/a5xx: workaround early ring-buffer emptiness check Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 129/798] ipmi: docs: dont advertise deprecated sysfs entries Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 130/798] drm/msm: fix %s null argument error Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 131/798] drivers:drm:exynos_drm_gsc:Fix wrong assignment in gsc_bind() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 132/798] xen: use correct end address of kernel for conflict checking Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 133/798] HID: wacom: Support sequence numbers smaller than 16-bit Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 134/798] HID: wacom: Do not warn about dropped packets for first packet Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 135/798] xen/swiotlb: add alignment check for dma buffers Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 136/798] xen/swiotlb: fix allocated size Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 137/798] tpm: Clean up TPM space after command failure Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 138/798] selftests/bpf: Add selftest deny_namespace to s390x deny list Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 139/798] selftests/bpf: Add tests for _opts variants of bpf_*_get_fd_by_id() Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 140/798] selftests/bpf: Workaround strict bpf_lsm return value check Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 141/798] selftests/bpf: Use pid_t consistently in test_progs.c Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 142/798] selftests/bpf: Fix compile error from rlim_t in sk_storage_map.c Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 143/798] selftests/bpf: Fix error compiling bpf_iter_setsockopt.c with musl libc Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 144/798] selftests/bpf: Fix missing ARRAY_SIZE() definition in bench.c Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 145/798] selftests/bpf: Fix missing UINT_MAX definitions in benchmarks Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 146/798] selftests/bpf: Fix missing BUILD_BUG_ON() declaration Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 147/798] selftests/bpf: Replace CHECK with ASSERT_* in ns_current_pid_tgid test Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 148/798] selftests/bpf: Refactor out some functions " Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 149/798] selftests/bpf: Add a cgroup prog bpf_get_ns_current_pid_tgid() test Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 150/798] selftests/bpf: Fix include of <sys/fcntl.h> Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 151/798] selftests/bpf: Fix compiling kfree_skb.c with musl-libc Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 152/798] selftests/bpf: Fix compiling flow_dissector.c " Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 153/798] selftests/bpf: Fix compiling tcp_rtt.c " Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 154/798] selftests/bpf: Fix compiling core_reloc.c " Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 155/798] selftests/bpf: Fix errors compiling cg_storage_multi.h with musl libc Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 156/798] selftests/bpf: Fix error compiling test_lru_map.c Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 157/798] selftests/bpf: Fix C++ compile error from missing _Bool type Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 158/798] selftests/bpf: Replace extract_build_id with read_build_id Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 159/798] selftests/bpf: Move test_progs helpers to testing_helpers object Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 160/798] selftests/bpf: Fix compile if backtrace support missing in libc Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 161/798] bpf: correctly handle malformed BPF_CORE_TYPE_ID_LOCAL relos Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 162/798] xz: cleanup CRC32 edits from 2018 Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 163/798] kthread: fix task state in kthread worker if being frozen Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 164/798] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard Greg Kroah-Hartman
2024-10-14 14:11 ` [PATCH 6.1 165/798] smackfs: Use rcu_assign_pointer() to ensure safe assignment in smk_set_cipso Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 166/798] ext4: avoid buffer_head leak in ext4_mark_inode_used() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 167/798] ext4: avoid potential buffer_head leak in __ext4_new_inode() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 168/798] ext4: avoid negative min_clusters in find_group_orlov() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 169/798] ext4: return error on ext4_find_inline_entry Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 170/798] ext4: avoid OOB when system.data xattr changes underneath the filesystem Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 171/798] nilfs2: fix potential null-ptr-deref in nilfs_btree_insert() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 172/798] nilfs2: determine empty node blocks as corrupted Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 173/798] nilfs2: fix potential oob read in nilfs_btree_check_delete() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 174/798] bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 175/798] bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 176/798] bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of error Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 177/798] perf mem: Free the allocated sort string, fixing a leak Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 178/798] perf inject: Fix leader sampling inserting additional samples Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 179/798] perf sched timehist: Fix missing free of session in perf_sched__timehist() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 180/798] perf stat: Display iostat headers correctly Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 181/798] perf sched timehist: Fixed timestamp error when unable to confirm event sched_in time Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 182/798] perf time-utils: Fix 32-bit nsec parsing Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 183/798] clk: imx: composite-8m: Less function calls in __imx8m_clk_hw_composite() after error detection Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 184/798] clk: imx: composite-8m: Enable gate clk with mcore_booted Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 185/798] clk: imx: composite-7ulp: Check the PCC present bit Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 186/798] clk: imx: fracn-gppll: support integer pll Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 187/798] clk: imx: fracn-gppll: fix fractional part of PLL getting lost Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 188/798] clk: imx: imx8mp: fix clock tree update of TF-A managed clocks Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 189/798] clk: imx: imx8qxp: Register dc0_bypass0_clk before disp clk Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 190/798] clk: imx: imx8qxp: Parent should be initialized earlier than the clock Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 191/798] remoteproc: imx_rproc: Correct ddr alias for i.MX8M Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 192/798] remoteproc: imx_rproc: Initialize workqueue earlier Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 193/798] clk: rockchip: Set parent rate for DCLK_VOP clock on RK3228 Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 194/798] Input: ilitek_ts_i2c - avoid wrong input subsystem sync Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 195/798] Input: ilitek_ts_i2c - add report id message validation Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 196/798] drivers: media: dvb-frontends/rtl2832: fix an out-of-bounds write error Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 197/798] drivers: media: dvb-frontends/rtl2830: " Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 198/798] PCI/PM: Increase wait time after resume Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 199/798] PCI/PM: Drop pci_bridge_wait_for_secondary_bus() timeout parameter Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 200/798] PCI: Wait for Link before restoring Downstream Buses Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 201/798] PCI: keystone: Fix if-statement expression in ks_pcie_quirk() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 202/798] clk: qcom: dispcc-sm8250: use special function for Lucid 5LPE PLL Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 203/798] nvdimm: Fix devs leaks in scan_labels() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 204/798] PCI: xilinx-nwl: Fix register misspelling Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 205/798] PCI: xilinx-nwl: Clean up clock on probe failure/removal Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 206/798] RDMA/iwcm: Fix WARNING:at_kernel/workqueue.c:#check_flush_dependency Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 207/798] pinctrl: single: fix missing error code in pcs_probe() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 208/798] RDMA/rtrs: Reset hb_missed_cnt after receiving other traffic from peer Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 209/798] RDMA/rtrs-clt: Reset cid to con_num - 1 to stay in bounds Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 210/798] clk: ti: dra7-atl: Fix leak of of_nodes Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 211/798] nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 212/798] nfsd: fix refcount leak when file is unhashed after being found Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 213/798] pinctrl: mvebu: Use devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 214/798] pinctrl: mvebu: Fix devinit_dove_pinctrl_probe function Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 215/798] IB/core: Fix ib_cache_setup_one error flow cleanup Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 216/798] PCI: kirin: Fix buffer overflow in kirin_pcie_parse_port() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 217/798] RDMA/erdma: Return QP state in erdma_query_qp Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 218/798] watchdog: imx_sc_wdt: Dont disable WDT in suspend Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 219/798] RDMA/hns: Dont modify rq next block addr in HIP09 QPC Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 220/798] RDMA/hns: Fix Use-After-Free of rsv_qp on HIP08 Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 221/798] RDMA/hns: Fix the overflow risk of hem_list_calc_ba_range() Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 222/798] RDMA/hns: Fix spin_unlock_irqrestore() called with IRQs enabled Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 223/798] RDMA/hns: Fix VF triggering PF reset in abnormal interrupt handler Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 224/798] RDMA/hns: Fix 1bit-ECC recovery address in non-4K OS Greg Kroah-Hartman
2024-10-14 14:12 ` [PATCH 6.1 225/798] RDMA/hns: Optimize hem allocation performance Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 226/798] riscv: Fix fp alignment bug in perf_callchain_user() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 227/798] RDMA/cxgb4: Added NULL check for lookup_atid Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 228/798] RDMA/irdma: fix error message in irdma_modify_qp_roce() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 229/798] ntb: intel: Fix the NULL vs IS_ERR() bug for debugfs_create_dir() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 230/798] ntb_perf: Fix printk format Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 231/798] ntb: Force physically contiguous allocation of rx ring buffers Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 232/798] nfsd: call cache_put if xdr_reserve_space returns NULL Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 233/798] nfsd: return -EINVAL when namelen is 0 Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 234/798] f2fs: fix to update i_ctime in __f2fs_setxattr() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 235/798] f2fs: remove unneeded check condition " Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 236/798] f2fs: reduce expensive checkpoint trigger frequency Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 237/798] f2fs: factor the read/write tracing logic into a helper Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 238/798] f2fs: fix to avoid racing in between read and OPU dio write Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 239/798] f2fs: fix to wait page writeback before setting gcing flag Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 240/798] f2fs: atomic: fix to truncate pagecache before on-disk metadata truncation Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 241/798] f2fs: clean up w/ dotdot_name Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 242/798] f2fs: get rid of online repaire on corrupted directory Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 243/798] spi: atmel-quadspi: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 244/798] spi: spi-fsl-lpspi: " Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 245/798] lib/sbitmap: define swap_lock as raw_spinlock_t Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 246/798] nvme-multipath: system fails to create generic nvme device Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 247/798] iio: adc: ad7606: fix oversampling gpio array Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 248/798] iio: adc: ad7606: fix standby gpio state to match the documentation Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 249/798] ABI: testing: fix admv8818 attr description Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 250/798] iio: chemical: bme680: Fix read/write ops to device by adding mutexes Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 251/798] iio: magnetometer: ak8975: Convert enum->pointer for data in the match tables Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 252/798] iio: magnetometer: ak8975: drop incorrect AK09116 compatible Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 253/798] dt-bindings: iio: asahi-kasei,ak8975: " Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 254/798] coresight: tmc: sg: Do not leak sg_table Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 255/798] cxl/pci: Break out range register decoding from cxl_hdm_decode_init() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 256/798] cxl/pci: Fix to record only non-zero ranges Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 257/798] vdpa: Add eventfd for the vdpa callback Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 258/798] vhost_vdpa: assign irq bypass producer token correctly Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 259/798] ep93xx: clock: Fix off by one in ep93xx_div_recalc_rate() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 260/798] Revert "dm: requeue IO if mapping table not yet available" Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 261/798] net: xilinx: axienet: Schedule NAPI in two steps Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 262/798] net: xilinx: axienet: Fix packet counting Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 263/798] netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 264/798] net: seeq: Fix use after free vulnerability in ether3 Driver Due to Race Condition Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 265/798] net: ipv6: select DST_CACHE from IPV6_RPL_LWTUNNEL Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 266/798] tcp: check skb is non-NULL in tcp_rto_delta_us() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 267/798] net: qrtr: Update packets cloning when broadcasting Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 268/798] bonding: Fix unnecessary warnings and logs from bond_xdp_get_xmit_slave() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 269/798] net: stmmac: set PP_FLAG_DMA_SYNC_DEV only if XDP is enabled Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 270/798] netfilter: nf_tables: Keep deleted flowtable hooks until after RCU Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 271/798] netfilter: ctnetlink: compile ctnetlink_label_size with CONFIG_NF_CONNTRACK_EVENTS Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 272/798] io_uring/sqpoll: do not allow pinning outside of cpuset Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 273/798] drm/amd/display: Fix Synaptics Cascaded Panamera DSC Determination Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 274/798] io_uring/io-wq: do not allow pinning outside of cpuset Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 275/798] io_uring/io-wq: inherit cpuset of cgroup in io worker Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 276/798] vfio/pci: fix potential memory leak in vfio_intx_enable() Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 277/798] selinux,smack: dont bypass permissions check in inode_setsecctx hook Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 278/798] drm/vmwgfx: Prevent unmapping active read buffers Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 279/798] io_uring/sqpoll: retain test for whether the CPU is valid Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 280/798] io_uring/sqpoll: do not put cpumask on stack Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 281/798] Remove *.orig pattern from .gitignore Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 282/798] PCI: imx6: Fix missing call to phy_power_off() in error handling Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 283/798] PCI: xilinx-nwl: Fix off-by-one in INTx IRQ handler Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 284/798] ASoC: rt5682: Return devm_of_clk_add_hw_provider to transfer the error Greg Kroah-Hartman
2024-10-14 14:13 ` [PATCH 6.1 285/798] soc: versatile: integrator: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 286/798] Revert "media: tuners: fix error return code of hybrid_tuner_request_state()" Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 287/798] Input: adp5588-keys - fix check on return code Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 288/798] Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk table Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 289/798] Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 " Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 290/798] Input: i8042 - add another board name for TUXEDO Stellaris Gen5 AMD line Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 291/798] KVM: x86: Enforce x2APICs must-be-zero reserved ICR bits Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 292/798] KVM: x86: Move x2APIC ICR helper above kvm_apic_write_nodecode() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 293/798] drm/amd/display: Skip Recompute DSC Params if no Stream on Link Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 294/798] drm/amd/display: Round calculated vtotal Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 295/798] drm/amd/display: Validate backlight caps are sane Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 296/798] KEYS: prevent NULL pointer dereference in find_asymmetric_key() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 297/798] fs: Create a generic is_dot_dotdot() utility Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 298/798] ksmbd: make __dir_empty() compatible with POSIX Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 299/798] ksmbd: allow write with FILE_APPEND_DATA Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 300/798] ksmbd: handle caseless file creation Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 301/798] scsi: sd: Fix off-by-one error in sd_read_block_characteristics() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 302/798] scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 303/798] scsi: mac_scsi: Refactor polling loop Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 304/798] scsi: mac_scsi: Disallow bus errors during PDMA send Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 305/798] usbnet: fix cyclical race on disconnect with work queue Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 306/798] arm64: dts: mediatek: mt8195-cherry: Mark USB 3.0 on xhci1 as disabled Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 307/798] USB: appledisplay: close race between probe and completion handler Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 308/798] USB: misc: cypress_cy7c63: check for short transfer Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 309/798] USB: class: CDC-ACM: fix race between get_serial and set_serial Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 310/798] usb: cdnsp: Fix incorrect usb_request status Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 311/798] usb: dwc2: drd: fix clock gating on USB role switch Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 312/798] bus: integrator-lm: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 313/798] bus: mhi: host: pci_generic: Fix the name for the Telit FE990A Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 314/798] firmware_loader: Block path traversal Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 315/798] tty: rp2: Fix reset with non forgiving PCIe host bridges Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 316/798] xhci: Set quirky xHC PCI hosts to D3 _after_ stopping and freeing them Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 317/798] crypto: ccp - Properly unregister /dev/sev on sev PLATFORM_STATUS failure Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 318/798] drbd: Fix atomicity violation in drbd_uuid_set_bm() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 319/798] drbd: Add NULL check for net_conf to prevent dereference in state validation Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 320/798] ACPI: sysfs: validate return type of _STR method Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 321/798] ACPI: resource: Add another DMI match for the TongFang GMxXGxx Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 322/798] efistub/tpm: Use ACPI reclaim memory for event log to avoid corruption Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 323/798] perf/x86/intel/pt: Fix sampling synchronization Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 324/798] wifi: rtw88: 8822c: Fix reported RX band width Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 325/798] wifi: mt76: mt7615: check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 326/798] debugobjects: Fix conditions in fill_pool() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 327/798] f2fs: fix several potential integer overflows in file offsets Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 328/798] f2fs: prevent possible int overflow in dir_block_index() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 329/798] f2fs: avoid potential int overflow in sanity_check_area_boundary() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 330/798] f2fs: fix to check atomic_file in f2fs ioctl interfaces Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 331/798] hwrng: mtk - Use devm_pm_runtime_enable Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 332/798] hwrng: bcm2835 - Add missing clk_disable_unprepare in bcm2835_rng_init Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 333/798] hwrng: cctrng - Add missing clk_disable_unprepare in cctrng_resume Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 334/798] arm64: dts: rockchip: Raise Pinebook Pros panel backlight PWM frequency Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 335/798] arm64: dts: rockchip: Correct the Pinebook Pro battery design capacity Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 336/798] vfs: fix race between evice_inodes() and find_inode()&iput() Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 337/798] fs: Fix file_set_fowner LSM hook inconsistencies Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 338/798] nfs: fix memory leak in error path of nfs4_do_reclaim Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 339/798] EDAC/igen6: Fix conversion of system address to physical memory address Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 340/798] padata: use integer wrap around to prevent deadlock on seq_nr overflow Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 341/798] soc: versatile: realview: fix memory leak during device remove Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 342/798] soc: versatile: realview: fix soc_dev " Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 343/798] powerpc/64: Option to build big-endian with ELFv2 ABI Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 344/798] powerpc/64: Add support to build with prefixed instructions Greg Kroah-Hartman
2024-10-14 14:14 ` [PATCH 6.1 345/798] powerpc/atomic: Use YZ constraints for DS-form instructions Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 346/798] usb: yurex: Replace snprintf() with the safer scnprintf() variant Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 347/798] USB: misc: yurex: fix race between read and write Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 348/798] xhci: fix event ring segment table related masks and variables in header Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 349/798] xhci: remove xhci_test_trb_in_td_math early development check Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 350/798] xhci: Refactor interrupter code for initial multi interrupter support Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 351/798] xhci: Preserve RsvdP bits in ERSTBA register correctly Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 352/798] xhci: Add a quirk for writing ERST in high-low order Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 353/798] usb: xhci: fix loss of data on Cadence xHC Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 354/798] pps: remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 355/798] pps: add an error check in parport_attach Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 356/798] x86/idtentry: Incorporate definitions/declarations of the FRED entries Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 357/798] x86/entry: Remove unwanted instrumentation in common_interrupt() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 358/798] mm/filemap: return early if failed to allocate memory for split Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 359/798] lib/xarray: introduce a new helper xas_get_order Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 360/798] mm/filemap: optimize filemap folio adding Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 361/798] icmp: Add counters for rate limits Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 362/798] icmp: change the order of " Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 363/798] bpf: lsm: Set bpf_lsm_blob_sizes.lbs_task to 0 Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 364/798] lockdep: fix deadlock issue between lockdep and rcu Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 365/798] mm: only enforce minimum stack gap size if its sensible Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 366/798] module: Fix KCOV-ignored file name Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 367/798] mm/damon/vaddr: protect vma traversal in __damon_va_thre_regions() with rcu read lock Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 368/798] i2c: aspeed: Update the stop sw state when the bus recovery occurs Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 369/798] i2c: isch: Add missed else Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 370/798] usb: yurex: Fix inconsistent locking bug in yurex_read() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 371/798] perf/arm-cmn: Fail DTC counter allocation correctly Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 372/798] iio: magnetometer: ak8975: Fix Unexpected device error Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 373/798] powerpc: Allow CONFIG_PPC64_BIG_ENDIAN_ELF_ABI_V2 with ld.lld 15+ Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 374/798] PCI/PM: Mark devices disconnected if upstream PCIe link is down on resume Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 375/798] x86/tdx: Fix "in-kernel MMIO" check Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 376/798] wifi: mt76: do not run mt76_unregister_device() on unregistered hw Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 377/798] static_call: Handle module init failure correctly in static_call_del_module() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 378/798] static_call: Replace pointless WARN_ON() in static_call_module_notify() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 379/798] jump_label: Simplify and clarify static_key_fast_inc_cpus_locked() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 380/798] jump_label: Fix static_key_slow_dec() yet again Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 381/798] scsi: pm8001: Do not overwrite PCI queue mapping Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 382/798] mailbox: rockchip: fix a typo in module autoloading Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 383/798] mailbox: bcm2835: Fix timeout during suspend mode Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 384/798] ceph: remove the incorrect Fw reference check when dirtying pages Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 385/798] ieee802154: Fix build error Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 386/798] net: sparx5: Fix invalid timestamps Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 387/798] net/mlx5: Fix error path in multi-packet WQE transmit Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 388/798] net/mlx5: Added cond_resched() to crdump collection Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 389/798] net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 390/798] netfilter: uapi: NFTA_FLOWTABLE_HOOK is NLA_NESTED Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 391/798] net: ieee802154: mcr20a: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 392/798] net: wwan: qcom_bam_dmux: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 393/798] selftests: netfilter: Fix nft_audit.sh for newer nft binaries Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 394/798] netfilter: nf_tables: prevent nf_skb_duplicated corruption Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 395/798] Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 396/798] net: ethernet: lantiq_etop: fix memory disclosure Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 397/798] net: avoid potential underflow in qdisc_pkt_len_init() with UFO Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 398/798] net: add more sanity checks to qdisc_pkt_len_init() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 399/798] net: stmmac: dwmac4: extend timeout for VLAN Tag register busy bit check Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 400/798] ipv4: ip_gre: Fix drops of small packets in ipgre_xmit Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 401/798] ppp: do not assume bh is held in ppp_channel_bridge_input() Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 402/798] fsdax,xfs: port unshare to fsdax Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 403/798] iomap: constrain the file range passed to iomap_file_unshare Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 404/798] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start Greg Kroah-Hartman
2024-10-14 14:15 ` [PATCH 6.1 405/798] i2c: xiic: improve error message when transfer fails to start Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 406/798] i2c: xiic: Try re-initialization on bus busy timeout Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 407/798] loop: dont set QUEUE_FLAG_NOMERGES Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 408/798] Bluetooth: hci_sock: Fix not validating setsockopt user input Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 409/798] media: usbtv: Remove useless locks in usbtv_video_free() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 410/798] ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream runtime is uninitialized Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 411/798] ALSA: mixer_oss: Remove some incorrect kfree_const() usages Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 412/798] ALSA: hda/realtek: Fix the push button function for the ALC257 Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 413/798] ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 414/798] ASoC: imx-card: Set card.owner to avoid a warning calltrace if SND=m Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 415/798] ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 416/798] f2fs: Require FMODE_WRITE for atomic write ioctls Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 417/798] wifi: ath9k: fix possible integer overflow in ath9k_get_et_stats() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 418/798] wifi: ath9k_htc: Use __skb_set_length() for resetting urb before resubmit Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 419/798] ice: Adjust over allocation of memory in ice_sched_add_root_node() and ice_sched_add_node() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 420/798] wifi: iwlwifi: mvm: Fix a race in scan abort flow Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 421/798] wifi: cfg80211: Set correct chandef when starting CAC Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 422/798] net/xen-netback: prevent UAF in xenvif_flush_hash() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 423/798] net: hisilicon: hip04: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 424/798] net: hisilicon: hns_dsaf_mac: fix OF node leak in hns_mac_get_info() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 425/798] net: hisilicon: hns_mdio: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 426/798] ACPI: PAD: fix crash in exit_round_robin() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 427/798] ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 428/798] ACPICA: Fix memory leak if acpi_ps_get_next_field() fails Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 429/798] wifi: mt76: mt7915: disable tx worker during tx BA session enable/disable Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 430/798] net: sched: consistently use rcu_replace_pointer() in taprio_change() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 431/798] Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0489:0xe122 Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 432/798] ACPI: video: Add force_vendor quirk for Panasonic Toughbook CF-18 Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 433/798] blk_iocost: fix more out of bound shifts Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 434/798] nvme-pci: qdepth 1 quirk Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 435/798] wifi: ath11k: fix array out-of-bound access in SoC stats Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 436/798] wifi: rtw88: select WANT_DEV_COREDUMP Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 437/798] ACPI: EC: Do not release locks during operation region accesses Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 438/798] ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in acpi_db_convert_to_package() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 439/798] tipc: guard against string buffer overrun Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 440/798] net: mvpp2: Increase size of queue_name buffer Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 441/798] bnxt_en: Extend maximum length of version string by 1 byte Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 442/798] ipv4: Check !in_dev earlier for ioctl(SIOCSIFADDR) Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 443/798] wifi: rtw89: correct base HT rate mask for firmware Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 444/798] ipv4: Mask upper DSCP bits and ECN bits in NETLINK_FIB_LOOKUP family Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 445/798] net: atlantic: Avoid warning about potential string truncation Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 446/798] crypto: simd - Do not call crypto_alloc_tfm during registration Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 447/798] tcp: avoid reusing FIN_WAIT2 when trying to find port in connect() process Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 448/798] wifi: mac80211: fix RCU list iterations Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 449/798] ACPICA: iasl: handle empty connection_node Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 450/798] proc: add config & param to block forcing mem writes Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 451/798] wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx worker Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 452/798] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_cmd_802_11_scan_ext() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 453/798] nfp: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 454/798] ALSA: usb-audio: Add input value sanity checks for standard types Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 455/798] x86/ioapic: Handle allocation failures gracefully Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 456/798] ALSA: usb-audio: Define macros for quirk table entries Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 457/798] ALSA: usb-audio: Replace complex quirk lines with macros Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 458/798] ALSA: usb-audio: Add logitech Audio profile quirk Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 459/798] ASoC: codecs: wsa883x: Handle reading version failure Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 460/798] tools/x86/kcpuid: Protect against faulty "max subleaf" values Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 461/798] x86/kexec: Add EFI config table identity mapping for kexec kernel Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 462/798] ALSA: asihpi: Fix potential OOB array access Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 463/798] ALSA: hdsp: Break infinite MIDI input flush loop Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 464/798] selftests/nolibc: avoid passing NULL to printf("%s") Greg Kroah-Hartman
2024-10-14 14:16 ` [PATCH 6.1 465/798] x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 466/798] fbdev: pxafb: Fix possible use after free in pxafb_task() Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 467/798] rcuscale: Provide clear error when async specified without primitives Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 468/798] iommu/arm-smmu-qcom: hide last LPASS SMMU context bank from linux Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 469/798] power: reset: brcmstb: Do not go into infinite loop if reset fails Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 470/798] iommu/vt-d: Always reserve a domain ID for identity setup Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 471/798] iommu/vt-d: Fix potential lockup if qi_submit_sync called with 0 count Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 472/798] drm/stm: Avoid use-after-free issues with crtc and plane Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 473/798] drm/amdgpu: disallow multiple BO_HANDLES chunks in one submit Greg Kroah-Hartman
2024-10-14 14:17 ` Greg Kroah-Hartman [this message]
2024-10-14 14:17 ` [PATCH 6.1 475/798] ata: pata_serverworks: Do not use the term blacklist Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 476/798] ata: sata_sil: Rename sil_blacklist to sil_quirks Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 477/798] drm/amd/display: Handle null stream_status in planes_changed_for_existing_stream Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 478/798] drm/amd/display: Check null pointers before using dc->clk_mgr Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 479/798] drm/amd/display: Add null check for afb in amdgpu_dm_plane_handle_cursor_update (v2) Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 480/798] jfs: UBSAN: shift-out-of-bounds in dbFindBits Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 481/798] jfs: Fix uaf in dbFreeBits Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 482/798] jfs: check if leafidx greater than num leaves per dmap tree Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 483/798] scsi: smartpqi: correct stream detection Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 484/798] jfs: Fix uninit-value access of new_ea in ea_buffer Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 485/798] drm/amdgpu: add raven1 gfxoff quirk Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 486/798] drm/amdgpu: enable gfxoff quirk on HP 705G4 Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 487/798] drm/amdkfd: Fix resource leak in criu restore queue Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 488/798] HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd Portfolio Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 489/798] platform/x86: touchscreen_dmi: add nanote-next quirk Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 490/798] drm/stm: ltdc: reset plane transparency after plane disable Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 491/798] drm/amd/display: Check stream before comparing them Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 492/798] drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 493/798] drm/amd/display: Fix index out of bounds in " Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 494/798] drm/amd/display: Fix index out of bounds in DCN30 color transformation Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 495/798] drm/amd/display: Initialize get_bytes_per_elements default to 1 Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 496/798] drm/printer: Allow NULL data in devcoredump printer Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 497/798] perf,x86: avoid missing caller address in stack traces captured in uprobe Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 498/798] scsi: aacraid: Rearrange order of struct aac_srb_unit Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 499/798] scsi: lpfc: Update PRLO handling in direct attached topology Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 500/798] drm/amdgpu: fix unchecked return value warning for amdgpu_gfx Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 501/798] scsi: NCR5380: Initialize buffer for MSG IN and STATUS transfers Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 502/798] drm/radeon/r100: Handle unknown family in r100_cp_init_microcode() Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 503/798] drm/amd/pm: ensure the fw_info is not null before using it Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 504/798] of/irq: Refer to actual buffer size in of_irq_parse_one() Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 505/798] powerpc/pseries: Use correct data types from pseries_hp_errorlog struct Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 506/798] ext4: ext4_search_dir should return a proper error Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 507/798] ext4: avoid use-after-free in ext4_ext_show_leaf() Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 508/798] ext4: fix i_data_sem unlock order in ext4_ind_migrate() Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 509/798] iomap: handle a post-direct I/O invalidate race in iomap_write_delalloc_release Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 510/798] blk-integrity: use sysfs_emit Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 511/798] blk-integrity: convert to struct device_attribute Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 512/798] blk-integrity: register sysfs attributes on struct device Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 513/798] spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 514/798] spi: s3c64xx: fix timeout counters in flush_fifo Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 515/798] selftests: breakpoints: use remaining time to check if suspend succeed Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 516/798] selftests: vDSO: fix vDSO name for powerpc Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 517/798] selftests: vDSO: fix vdso_config " Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 518/798] selftests: vDSO: fix vDSO symbols lookup for powerpc64 Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 519/798] selftests/mm: fix charge_reserved_hugetlb.sh test Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 520/798] powerpc/vdso: Fix VDSO data access when running in a non-root time namespace Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 521/798] selftests: vDSO: fix ELF hash table entry size for s390x Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 522/798] selftests: vDSO: fix vdso_config for s390 Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 523/798] Revert "ALSA: hda: Conditionally use snooping for AMD HDMI" Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 524/798] platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug Greg Kroah-Hartman
2024-10-14 14:17 ` [PATCH 6.1 525/798] i2c: stm32f7: Do not prepare/unprepare clock during runtime suspend/resume Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 526/798] i2c: qcom-geni: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 527/798] i2c: xiic: Wait for TX empty to avoid missed TX NAKs Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 528/798] media: i2c: ar0521: Use cansleep version of gpiod_set_value() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 529/798] firmware: tegra: bpmp: Drop unused mbox_client_to_bpmp() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 530/798] spi: bcm63xx: Fix module autoloading Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 531/798] power: supply: hwmon: Fix missing temp1_max_alarm attribute Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 532/798] perf/core: Fix small negative period being ignored Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 533/798] parisc: Fix itlb miss handler for 64-bit programs Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 534/798] drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 535/798] ALSA: core: add isascii() check to card ID generator Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 536/798] ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 537/798] ALSA: usb-audio: Add native DSD support for Luxman D-08u Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 538/798] ALSA: line6: add hw monitor volume control to POD HD500X Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 539/798] ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 540/798] ALSA: hda/realtek: Add a quirk for HP Pavilion 15z-ec200 Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 541/798] ext4: no need to continue when the number of entries is 1 Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 542/798] ext4: correct encrypted dentry name hash when not casefolded Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 543/798] ext4: fix slab-use-after-free in ext4_split_extent_at() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 544/798] ext4: propagate errors from ext4_find_extent() in ext4_insert_range() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 545/798] ext4: fix incorrect tid assumption in ext4_fc_mark_ineligible() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 546/798] ext4: dax: fix overflowing extents beyond inode size when partially writing Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 547/798] ext4: fix incorrect tid assumption in __jbd2_log_wait_for_space() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 548/798] ext4: drop ppath from ext4_ext_replay_update_ex() to avoid double-free Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 549/798] ext4: aovid use-after-free in ext4_ext_insert_extent() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 550/798] ext4: fix double brelse() the buffer of the extents path Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 551/798] ext4: update orig_path in ext4_find_extent() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 552/798] ext4: fix incorrect tid assumption in ext4_wait_for_tail_page_commit() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 553/798] ext4: fix incorrect tid assumption in jbd2_journal_shrink_checkpoint_list() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 554/798] ext4: fix fast commit inode enqueueing during a full journal commit Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 555/798] ext4: use handle to mark fc as ineligible in __track_dentry_update() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 556/798] ext4: mark fc as ineligible using an handle in ext4_xattr_set() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 557/798] parisc: Fix 64-bit userspace syscall path Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 558/798] parisc: Fix stack start for ADDR_NO_RANDOMIZE personality Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 559/798] drm/rockchip: vop: clear DMA stop bit on RK3066 Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 560/798] of/irq: Support #msi-cells=<0> in of_msi_get_domain Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 561/798] drm: omapdrm: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 562/798] resource: fix region_intersects() vs add_memory_driver_managed() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 563/798] jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 564/798] jbd2: correctly compare tids with tid_geq function in jbd2_fc_begin_commit Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 565/798] mm: krealloc: consider spare memory for __GFP_ZERO Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 566/798] ocfs2: fix the la space leak when unmounting an ocfs2 volume Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 567/798] ocfs2: fix uninit-value in ocfs2_get_block() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 568/798] ocfs2: reserve space for inline xattr before attaching reflink tree Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 569/798] ocfs2: cancel dqi_sync_work before freeing oinfo Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 570/798] ocfs2: remove unreasonable unlock in ocfs2_read_blocks Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 571/798] ocfs2: fix null-ptr-deref when journal load failed Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 572/798] ocfs2: fix possible null-ptr-deref in ocfs2_set_buffer_uptodate Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 573/798] riscv: define ILLEGAL_POINTER_VALUE for 64bit Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 574/798] exfat: fix memory leak in exfat_load_bitmap() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 575/798] perf hist: Update hist symbol when updating maps Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 576/798] nfsd: fix delegation_blocked() to block correctly for at least 30 seconds Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 577/798] nfsd: map the EBADMSG to nfserr_io to avoid warning Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 578/798] NFSD: Fix NFSv4s PUTPUBFH operation Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 579/798] aoe: fix the potential use-after-free problem in more places Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 580/798] clk: rockchip: fix error for unknown clocks Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 581/798] remoteproc: k3-r5: Fix error handling when power-up failed Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 582/798] clk: qcom: dispcc-sm8250: use CLK_SET_RATE_PARENT for branch clocks Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 583/798] media: sun4i_csi: Implement link validate for sun4i_csi subdev Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 584/798] clk: qcom: gcc-sm8450: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2024-10-14 14:18 ` [PATCH 6.1 585/798] media: uapi/linux/cec.h: cec_msg_set_reply_to: zero flags Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 586/798] clk: qcom: clk-rpmh: Fix overflow in BCM vote Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 587/798] clk: qcom: gcc-sm8150: De-register gcc_cpuss_ahb_clk_src Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 588/798] media: venus: fix use after free bug in venus_remove due to race condition Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 589/798] clk: qcom: gcc-sm8250: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 590/798] media: qcom: camss: Fix ordering of pm_runtime_enable Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 591/798] clk: qcom: gcc-sc8180x: Fix the sdcc2 and sdcc4 clocks freq table Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 592/798] clk: qcom: clk-alpha-pll: Fix CAL_L_VAL override for LUCID EVO PLL Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 593/798] smb: client: use actual path when queryfs Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 594/798] iio: magnetometer: ak8975: Fix reading for ak099xx sensors Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 595/798] gso: fix udp gso fraglist segmentation after pull from frag_list Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 596/798] tomoyo: fallback to realpath if symlinks pathname does not exist Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 597/798] net: stmmac: Fix zero-division error when disabling tc cbs Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 598/798] rtc: at91sam9: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 599/798] Input: adp5589-keys - fix NULL pointer dereference Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 600/798] Input: adp5589-keys - fix adp5589_gpio_get_value() Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 601/798] cachefiles: fix dentry leak in cachefiles_open_file() Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 602/798] ACPI: resource: Add Asus Vivobook X1704VAP to irq1_level_low_skip_override[] Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 603/798] ACPI: resource: Add Asus ExpertBook B2502CVA " Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 604/798] btrfs: fix a NULL pointer dereference when failed to start a new trasacntion Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 605/798] btrfs: send: fix invalid clone operation for file that got its size decreased Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 606/798] btrfs: wait for fixup workers before stopping cleaner kthread during umount Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 607/798] gpio: davinci: fix lazy disable Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 608/798] Bluetooth: hci_event: Align BR/EDR JUST_WORKS paring with LE Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 609/798] ceph: fix cap ref leak via netfs init_request Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 610/798] tracing/hwlat: Fix a race during cpuhp processing Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 611/798] tracing/timerlat: " Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 612/798] close_range(): fix the logics in descriptor table trimming Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 613/798] drm/i915/gem: fix bitwise and logical AND mixup Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 614/798] drm/sched: Add locking to drm_sched_entity_modify_sched Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 615/798] drm/amd/display: Fix system hang while resume with TBT monitor Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 616/798] cpufreq: intel_pstate: Make hwp_notify_lock a raw spinlock Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 617/798] kconfig: qconf: fix buffer overflow in debug links Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 618/798] i2c: create debugfs entry per adapter Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 619/798] i2c: core: Lock address during client device instantiation Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 620/798] i2c: xiic: Use devm_clk_get_enabled() Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 621/798] i2c: xiic: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 622/798] dt-bindings: clock: exynos7885: Fix duplicated binding Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 623/798] spi: bcm63xx: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 624/798] arm64: Add Cortex-715 CPU part definition Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 625/798] arm64: cputype: Add Neoverse-N3 definitions Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 626/798] arm64: errata: Expand speculative SSBS workaround once more Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 627/798] io_uring/net: harden multishot termination case for recv Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 628/798] uprobes: fix kernel info leak via "[uprobes]" vma Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 629/798] mm: z3fold: deprecate CONFIG_Z3FOLD Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 630/798] drm/amd/display: Allow backlight to go below `AMDGPU_DM_DEFAULT_MIN_BACKLIGHT` Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 631/798] build-id: require program headers to be right after ELF header Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 632/798] lib/buildid: harden build ID parsing logic Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 633/798] docs/zh_CN: Update the translation of delay-accounting to 6.1-rc8 Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 634/798] delayacct: improve the average delay precision of getdelay tool to microsecond Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 635/798] sched: psi: fix bogus pressure spikes from aggregation race Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 636/798] clk: imx6ul: fix enet1 gate configuration Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 637/798] clk: imx6ul: add ethernet refclock mux support Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 638/798] clk: imx6ul: retain early UART clocks during kernel init Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 639/798] clk: imx6ul: fix clock parent for IMX6UL_CLK_ENETx_REF_SEL Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 640/798] media: i2c: imx335: Enable regulator supplies Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 641/798] media: imx335: Fix reset-gpio handling Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 642/798] remoteproc: k3-r5: Acquire mailbox handle during probe routine Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 643/798] remoteproc: k3-r5: Delay notification of wakeup event Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 644/798] dt-bindings: clock: qcom: Add missing UFS QREF clocks Greg Kroah-Hartman
2024-10-14 14:19 ` [PATCH 6.1 645/798] dt-bindings: clock: qcom: Add GPLL9 support on gcc-sc8180x Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 646/798] clk: samsung: exynos7885: do not define number of clocks in bindings Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 647/798] clk: samsung: exynos7885: Update CLKS_NR_FSYS after bindings fix Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 648/798] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 649/798] r8169: add tally counter fields added with RTL8125 Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 650/798] clk: qcom: gcc-sc8180x: Add GPLL9 support Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 651/798] ACPI: battery: Simplify battery hook locking Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 652/798] ACPI: battery: Fix possible crash when unregistering a battery hook Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 653/798] Revert "arm64: dts: qcom: sm8250: switch UFS QMP PHY to new style of bindings" Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 654/798] erofs: get rid of erofs_inode_datablocks() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 655/798] erofs: get rid of z_erofs_do_map_blocks() forward declaration Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 656/798] erofs: avoid hardcoded blocksize for subpage block support Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 657/798] erofs: set block size to the on-disk block size Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 658/798] erofs: fix incorrect symlink detection in fast symlink Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 659/798] vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 660/798] perf report: Fix segfault when sym sort key is not used Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 661/798] fsdax: dax_unshare_iter() should return a valid length Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 662/798] clk: imx6ul: fix "failed to get parent" error Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 663/798] fsdax: unshare: zero destination if srcmap is HOLE or UNWRITTEN Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 664/798] unicode: Dont special case ignorable code points Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 665/798] net: ethernet: cortina: Drop TSO support Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 666/798] tracing: Remove precision vsnprintf() check from print event Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 667/798] ALSA: hda/realtek: cs35l41: Fix order and duplicates in quirks table Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 668/798] ALSA: hda/realtek: cs35l41: Fix device ID / model name Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 669/798] drm/crtc: fix uninitialized variable use even harder Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 670/798] tracing: Have saved_cmdlines arrays all in one allocation Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 671/798] bootconfig: Fix the kerneldoc of _xbc_exit() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 672/798] perf lock: Dynamically allocate lockhash_table Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 673/798] perf sched: Avoid large stack allocations Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 674/798] perf sched: Move start_work_mutex and work_done_wait_mutex initialization to perf_sched__replay() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 675/798] perf sched: Fix memory leak in perf_sched__map() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 676/798] perf sched: Move curr_thread initialization to perf_sched__map() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 677/798] perf sched: Move curr_pid and cpu_last_switched initialization to perf_sched__{lat|map|replay}() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 678/798] libsubcmd: Dont free the usage string Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 679/798] selftests: net: Remove executable bits from library scripts Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 680/798] Bluetooth: Fix usage of __hci_cmd_sync_status Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 681/798] fs/ntfs3: Do not call file_modified if collapse range failed Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 682/798] fs/ntfs3: Fix sparse warning in ni_fiemap Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 683/798] fs/ntfs3: Refactor enum_rstbl to suppress static checker Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 684/798] virtio_console: fix misc probe bugs Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 685/798] Input: synaptics-rmi4 - fix UAF of IRQ domain on driver removal Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 686/798] bpf: Check percpu map value size first Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 687/798] s390/boot: Compile all files with the same march flag Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 688/798] s390/facility: Disable compile time optimization for decompressor code Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 689/798] s390/mm: Add cond_resched() to cmm_alloc/free_pages() Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 690/798] bpf, x64: Fix a jit convergence issue Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 691/798] ext4: dont set SB_RDONLY after filesystem errors Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 692/798] ext4: nested locking for xattr inode Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 693/798] s390/cpum_sf: Remove WARN_ON_ONCE statements Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 694/798] s390/traps: Handle early warnings gracefully Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 695/798] ktest.pl: Avoid false positives with grub2 skip regex Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 696/798] RDMA/mad: Improve handling of timed out WRs of mad agent Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 697/798] PCI: Add function 0 DMA alias quirk for Glenfly Arise chip Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 698/798] RDMA/rtrs-srv: Avoid null pointer deref during path establishment Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 699/798] clk: bcm: bcm53573: fix OF node leak in init Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 700/798] PCI: Add ACS quirk for Qualcomm SA8775P Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 701/798] i2c: i801: Use a different adapter-name for IDF adapters Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 702/798] PCI: Mark Creative Labs EMU20k2 INTx masking as broken Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 703/798] RISC-V: Dont have MAX_PHYSMEM_BITS exceed phys_addr_t Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 704/798] io_uring: check if we need to reschedule during overflow flush Greg Kroah-Hartman
2024-10-14 14:20 ` [PATCH 6.1 705/798] ntb: ntb_hw_switchtec: Fix use after free vulnerability in switchtec_ntb_remove due to race condition Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 706/798] RDMA/mlx5: Enforce umem boundaries for explicit ODP page faults Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 707/798] riscv/kexec_file: Fix relocation type R_RISCV_ADD16 and R_RISCV_SUB16 unknown Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 708/798] media: videobuf2-core: clear memory related fields in __vb2_plane_dmabuf_put() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 709/798] remoteproc: imx_rproc: Use imx specific hook for find_loaded_rsc_table Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 710/798] clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 711/798] usb: chipidea: udc: enable suspend interrupt after usb reset Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 712/798] usb: dwc2: Adjust the timing of USB Driver Interrupt Registration in the Crashkernel Scenario Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 713/798] comedi: ni_routing: tools: Check when the file could not be opened Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 714/798] LoongArch: Fix memleak in pci_acpi_scan_root() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 715/798] netfilter: nf_reject: Fix build warning when CONFIG_BRIDGE_NETFILTER=n Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 716/798] virtio_pmem: Check device status before requesting flush Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 717/798] tools/iio: Add memory allocation failure check for trigger_name Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 718/798] staging: vme_user: added bound check to geoid Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 719/798] driver core: bus: Return -EIO instead of 0 when show/store invalid bus attribute Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 720/798] scsi: lpfc: Add ELS_RSP cmd to the list of WQEs to flush in lpfc_els_flush_cmd() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 721/798] scsi: lpfc: Ensure DA_ID handling completion before deleting an NPIV instance Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 722/798] drm/amd/display: Check null pointer before dereferencing se Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 723/798] fbcon: Fix a NULL pointer dereference issue in fbcon_putcs Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 724/798] fbdev: sisfb: Fix strbuf array overflow Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 725/798] drm/rockchip: vop: limit maximum resolution to hardware capabilities Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 726/798] drm/rockchip: vop: enable VOP_FEATURE_INTERNAL_RGB on RK3066 Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 727/798] NFSD: Mark filecache "down" if init fails Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 728/798] ice: fix VLAN replay after reset Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 729/798] SUNRPC: Fix integer overflow in decode_rc_list() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 730/798] NFSv4: Prevent NULL-pointer dereference in nfs42_complete_copies() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 731/798] net: phy: dp83869: fix memory corruption when enabling fiber Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 732/798] tcp: fix to allow timestamp undo if no retransmits were sent Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 733/798] tcp: fix tcp_enter_recovery() to zero retrans_stamp when its safe Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 734/798] netfilter: br_netfilter: fix panic with metadata_dst skb Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 735/798] selftests: net: no_forwarding: fix VID for $swp2 in one_bridge_two_pvids() test Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 736/798] Bluetooth: RFCOMM: FIX possible deadlock in rfcomm_sk_state_change Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 737/798] net: phy: bcm84881: Fix some error handling paths Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 738/798] thermal: int340x: processor_thermal: Set feature mask before proc_thermal_add Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 739/798] thermal: intel: int340x: processor: Fix warning during module unload Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 740/798] Revert "net: stmmac: set PP_FLAG_DMA_SYNC_DEV only if XDP is enabled" Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 741/798] net: ethernet: adi: adin1110: Fix some error handling path in adin1110_read_fifo() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 742/798] net: dsa: b53: fix jumbo frame mtu check Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 743/798] net: dsa: b53: fix max MTU for 1g switches Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 744/798] net: dsa: b53: fix max MTU for BCM5325/BCM5365 Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 745/798] net: dsa: b53: allow lower MTUs on BCM5325/5365 Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 746/798] net: dsa: b53: fix jumbo frames on 10/100 ports Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 747/798] gpio: aspeed: Add the flush write to ensure the write complete Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 748/798] gpio: aspeed: Use devm_clk api to manage clock source Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 749/798] ice: Fix netif_is_ice() in Safe Mode Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 750/798] i40e: Fix macvlan leak by synchronizing access to mac_filter_hash Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 751/798] igb: Do not bring the device up after non-fatal error Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 752/798] net/sched: accept TCA_STAB only for root qdisc Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 753/798] net: ibm: emac: mal: fix wrong goto Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 754/798] btrfs: zoned: fix missing RCU locking in error message when loading zone info Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 755/798] sctp: ensure sk_state is set to CLOSED if hashing fails in sctp_listen_start Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 756/798] netfilter: xtables: avoid NFPROTO_UNSPEC where needed Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 757/798] netfilter: fib: check correct rtable in vrf setups Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 758/798] net: ibm/emac: allocate dummy net_device dynamically Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 759/798] net: ibm: emac: mal: add dcr_unmap to _remove Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 760/798] rtnetlink: Add bulk registration helpers for rtnetlink message handlers Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 761/798] vxlan: Handle error of rtnl_register_module() Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 762/798] mctp: " Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 763/798] ppp: fix ppp_async_encode() illegal access Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 764/798] slip: make slhc_remember() more robust against malicious packets Greg Kroah-Hartman
2024-10-14 14:21 ` [PATCH 6.1 765/798] rust: macros: provide correct provenance when constructing THIS_MODULE Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 766/798] HID: multitouch: Add support for lenovo Y9000P Touchpad Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 767/798] net/mlx5: Always drain health in shutdown callback Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 768/798] wifi: mac80211: Avoid address calculations via out of bounds array indexing Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 769/798] hwmon: (tmp513) Add missing dependency on REGMAP_I2C Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 770/798] hwmon: (adm9240) " Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 771/798] hwmon: (adt7470) " Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 772/798] Revert "net: ibm/emac: allocate dummy net_device dynamically" Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 773/798] HID: amd_sfh: Switch to device-managed dmam_alloc_coherent() Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 774/798] HID: plantronics: Workaround for an unexcepted opposite volume key Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 775/798] Revert "usb: yurex: Replace snprintf() with the safer scnprintf() variant" Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 776/798] usb: dwc3: core: Stop processing of pending events if controller is halted Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 777/798] usb: xhci: Fix problem with xhci resume from suspend Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 778/798] usb: storage: ignore bogus device raised by JieLi BR21 USB sound chip Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 779/798] usb: gadget: core: force synchronous registration Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 780/798] hid: intel-ish-hid: Fix uninitialized variable rv in ish_fw_xfer_direct_dma Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 781/798] drm/v3d: Stop the active perfmon before being destroyed Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 782/798] drm/vc4: " Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 783/798] scsi: wd33c93: Dont use stale scsi_pointer value Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 784/798] mptcp: fallback when MPTCP opts are dropped after 1st data Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 785/798] ata: libata: avoid superfluous disk spin down + spin up during hibernation Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 786/798] net: explicitly clear the sk pointer, when pf->create fails Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 787/798] net: Fix an unsafe loop on the list Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 788/798] net: dsa: lan9303: ensure chip reset and wait for READY status Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 789/798] mptcp: handle consistently DSS corruption Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 790/798] mptcp: pm: do not remove closing subflows Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 791/798] device-dax: correct pgoff align in dax_set_mapping() Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 792/798] nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy error Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 793/798] kthread: unpark only parked kthread Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 794/798] secretmem: disable memfd_secret() if arch cannot set direct map Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 795/798] net: ethernet: cortina: Restore TSO support Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 796/798] perf lock: Dont pass an ERR_PTR() directly to perf_session__delete() Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 797/798] block, bfq: fix uaf for accessing waker_bfqq after splitting Greg Kroah-Hartman
2024-10-14 14:22 ` [PATCH 6.1 798/798] Revert "iommu/vt-d: Retrieve IOMMU perfmon capability information" Greg Kroah-Hartman
2024-10-14 20:35 ` [PATCH 6.1 000/798] 6.1.113-rc1 review Florian Fainelli
2024-10-15  3:43 ` Peter Schneider
2024-10-15  5:31 ` Jon Hunter
2024-10-15  5:50   ` Jon Hunter
2024-10-15 11:18     ` Greg Kroah-Hartman
2024-10-15  6:29   ` Pavel Machek
2024-10-15  7:06   ` Geert Uytterhoeven
2024-10-15  7:07     ` Geert Uytterhoeven
2024-10-15  9:38       ` Oleksij Rempel
2024-10-15  7:47 ` Naresh Kamboju
2024-10-15  8:53 ` Naresh Kamboju
2024-10-15  9:50   ` Heiko Carstens
2024-10-15 11:14     ` Greg Kroah-Hartman
2024-10-15 14:40 ` Shuah Khan

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=20241014141236.597871981@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Rodrigo.Siqueira@amd.com \
    --cc=alex.hung@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=aurabindo.pillai@amd.com \
    --cc=chiahsuan.chung@amd.com \
    --cc=hamza.mahfooz@amd.com \
    --cc=harry.wentland@amd.com \
    --cc=patches@lists.linux.dev \
    --cc=roman.li@amd.com \
    --cc=sashal@kernel.org \
    --cc=srinivasan.shanmugam@amd.com \
    --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