stable.vger.kernel.org archive mirror
 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, "Rafał Miłecki" <rafal@milecki.pl>,
	"Michal Kubiak" <michal.kubiak@intel.com>,
	"David S. Miller" <davem@davemloft.net>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 5.15 410/532] net: bgmac: postpone turning IRQs off to avoid SoC hangs
Date: Fri, 21 Jul 2023 18:05:14 +0200	[thread overview]
Message-ID: <20230721160636.698770811@linuxfoundation.org> (raw)
In-Reply-To: <20230721160614.695323302@linuxfoundation.org>

From: Rafał Miłecki <rafal@milecki.pl>

[ Upstream commit e7731194fdf085f46d58b1adccfddbd0dfee4873 ]

Turning IRQs off is done by accessing Ethernet controller registers.
That can't be done until device's clock is enabled. It results in a SoC
hang otherwise.

This bug remained unnoticed for years as most bootloaders keep all
Ethernet interfaces turned on. It seems to only affect a niche SoC
family BCM47189. It has two Ethernet controllers but CFE bootloader uses
only the first one.

Fixes: 34322615cbaa ("net: bgmac: Mask interrupts during probe")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Reviewed-by: Michal Kubiak <michal.kubiak@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/ethernet/broadcom/bgmac.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bgmac.c b/drivers/net/ethernet/broadcom/bgmac.c
index f8fd65ab663ee..54ff28c9b2148 100644
--- a/drivers/net/ethernet/broadcom/bgmac.c
+++ b/drivers/net/ethernet/broadcom/bgmac.c
@@ -1492,8 +1492,6 @@ int bgmac_enet_probe(struct bgmac *bgmac)
 
 	bgmac->in_init = true;
 
-	bgmac_chip_intrs_off(bgmac);
-
 	net_dev->irq = bgmac->irq;
 	SET_NETDEV_DEV(net_dev, bgmac->dev);
 	dev_set_drvdata(bgmac->dev, bgmac);
@@ -1511,6 +1509,8 @@ int bgmac_enet_probe(struct bgmac *bgmac)
 	 */
 	bgmac_clk_enable(bgmac, 0);
 
+	bgmac_chip_intrs_off(bgmac);
+
 	/* This seems to be fixing IRQ by assigning OOB #6 to the core */
 	if (!(bgmac->feature_flags & BGMAC_FEAT_IDM_MASK)) {
 		if (bgmac->feature_flags & BGMAC_FEAT_IRQ_ID_OOB_6)
-- 
2.39.2




  parent reply	other threads:[~2023-07-21 19:11 UTC|newest]

Thread overview: 539+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-21 15:58 [PATCH 5.15 000/532] 5.15.121-rc1 review Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 001/532] netfilter: nf_tables: drop map element references from preparation phase Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 002/532] fs: pipe: reveal missing function protoypes Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 003/532] x86/resctrl: Only show tasks pid in current pid namespace Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 004/532] blk-iocost: use spin_lock_irqsave in adjust_inuse_and_calc_cost Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 005/532] md/raid10: check slab-out-of-bounds in md_bitmap_get_counter Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 006/532] md/raid10: fix overflow of md/safe_mode_delay Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 007/532] md/raid10: fix wrong setting of max_corr_read_errors Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 008/532] md/raid10: fix null-ptr-deref of mreplace in raid10_sync_request Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 009/532] md/raid10: fix io loss while replacement replace rdev Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 010/532] irqchip/jcore-aic: Fix missing allocation of IRQ descriptors Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 011/532] svcrdma: Prevent page release when nothing was received Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 012/532] posix-timers: Prevent RT livelock in itimer_delete() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 013/532] tracing/timer: Add missing hrtimer modes to decode_hrtimer_mode() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 014/532] clocksource/drivers/cadence-ttc: Fix memory leak in ttc_timer_probe Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 015/532] PM: domains: fix integer overflow issues in genpd_parse_state() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 016/532] perf/arm-cmn: Fix DTC reset Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 017/532] powercap: RAPL: Fix CONFIG_IOSF_MBI dependency Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 018/532] ARM: 9303/1: kprobes: avoid missing-declaration warnings Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 019/532] cpufreq: intel_pstate: Fix energy_performance_preference for passive Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 020/532] thermal/drivers/sun8i: Fix some error handling paths in sun8i_ths_probe() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 021/532] rcutorture: Correct name of use_softirq module parameter Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 022/532] rcuscale: Always log error message Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 023/532] rcuscale: Move shutdown from wait_event() to wait_event_idle() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 024/532] rcu/rcuscale: Move rcu_scale_*() after kfree_scale_cleanup() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 025/532] rcu/rcuscale: Stop kfree_scale_thread thread(s) after unloading rcuscale Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 026/532] kselftest: vDSO: Fix accumulation of uninitialized ret when CLOCK_REALTIME is undefined Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 027/532] perf/ibs: Fix interface via core pmu events Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 028/532] x86/mm: Fix __swp_entry_to_pte() for Xen PV guests Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 029/532] locking/atomic: arm: fix sync ops Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 030/532] evm: Complete description of evm_inode_setattr() Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 031/532] evm: Fix build warnings Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 032/532] ima: " Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 033/532] pstore/ram: Add check for kstrdup Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 034/532] igc: Enable and fix RX hash usage by netstack Greg Kroah-Hartman
2023-07-21 15:58 ` [PATCH 5.15 035/532] wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 036/532] wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 037/532] libbpf: btf_dump_type_data_check_overflow needs to consider BTF_MEMBER_BITFIELD_SIZE Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 038/532] samples/bpf: Fix buffer overflow in tcp_basertt Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 039/532] spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 040/532] wifi: wilc1000: fix for absent RSN capabilities WFA testcase Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 041/532] wifi: mwifiex: Fix the size of a memory allocation in mwifiex_ret_802_11_scan() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 042/532] sctp: add bpf_bypass_getsockopt proto callback Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 043/532] libbpf: fix offsetof() and container_of() to work with CO-RE Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 044/532] bpf: Dont EFAULT for {g,s}setsockopt with wrong optlen Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 045/532] spi: dw: Round of n_bytes to power of 2 Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 046/532] nfc: llcp: fix possible use of uninitialized variable in nfc_llcp_send_connect() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 047/532] bpftool: JIT limited misreported as negative value on aarch64 Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 048/532] regulator: core: Fix more error checking for debugfs_create_dir() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 049/532] regulator: core: Streamline debugfs operations Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 050/532] wifi: orinoco: Fix an error handling path in spectrum_cs_probe() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 051/532] wifi: orinoco: Fix an error handling path in orinoco_cs_probe() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 052/532] wifi: atmel: Fix an error handling path in atmel_probe() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 053/532] wl3501_cs: use eth_hw_addr_set() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 054/532] wifi: wl3501_cs: Fix an error handling path in wl3501_probe() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 055/532] wifi: ray_cs: Utilize strnlen() in parse_addr() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 056/532] wifi: ray_cs: Drop useless status variable " Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 057/532] wifi: ray_cs: Fix an error handling path in ray_probe() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 058/532] wifi: ath9k: dont allow to overwrite ENDPOINT0 attributes Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 059/532] selftests/bpf: Fix check_mtu using wrong variable type Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 060/532] wifi: rsi: Do not configure WoWlan in shutdown hook if not enabled Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 061/532] wifi: rsi: Do not set MMC_PM_KEEP_POWER in shutdown Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 062/532] watchdog/perf: define dummy watchdog_update_hrtimer_threshold() on correct config Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 063/532] watchdog/perf: more properly prevent false positives with turbo modes Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 064/532] kexec: fix a memory leak in crash_shrink_memory() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 065/532] memstick r592: make memstick_debug_get_tpc_name() static Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 066/532] wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 067/532] rtnetlink: extend RTEXT_FILTER_SKIP_STATS to IFLA_VF_INFO Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 068/532] wifi: iwlwifi: pull from TXQs with softirqs disabled Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 069/532] iwlwifi: dont dump_stack() when we get an unexpected interrupt Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 070/532] wifi: iwlwifi: pcie: fix NULL pointer dereference in iwl_pcie_irq_rx_msix_handler() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 071/532] wifi: cfg80211: rewrite merging of inherited elements Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 072/532] wifi: iwlwifi: mvm: indicate HW decrypt for beacon protection Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 073/532] wifi: ath9k: convert msecs to jiffies where needed Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 074/532] bpf: Omit superfluous address family check in __bpf_skc_lookup Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 075/532] bpf: Factor out socket lookup functions for the TC hookpoint Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 076/532] bpf: Call __bpf_sk_lookup()/__bpf_skc_lookup() directly via " Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 077/532] bpf: Fix bpf socket lookup from tc/xdp to respect socket VRF bindings Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 078/532] can: length: fix bitstuffing count Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 079/532] igc: Fix race condition in PTP tx code Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 080/532] net: stmmac: fix double serdes powerdown Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 081/532] netlink: fix potential deadlock in netlink_set_err() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 082/532] netlink: do not hard code device address lenth in fdb dumps Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 083/532] bonding: do not assume skb mac_header is set Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 084/532] selftests: rtnetlink: remove netdevsim device after ipsec offload test Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 085/532] gtp: Fix use-after-free in __gtp_encap_destroy() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 086/532] net: axienet: Move reset before 64-bit DMA detection Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 087/532] sfc: fix crash when reading stats while NIC is resetting Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 088/532] nfc: llcp: simplify llcp_sock_connect() error paths Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 089/532] net: nfc: Fix use-after-free caused by nfc_llcp_find_local Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 090/532] lib/ts_bm: reset initial match offset for every block of text Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 091/532] netfilter: conntrack: dccp: copy entire header to stack buffer, not just basic one Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 092/532] netfilter: nf_conntrack_sip: fix the ct_sip_parse_numerical_param() return value Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 093/532] ipvlan: Fix return value of ipvlan_queue_xmit() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 094/532] netlink: Add __sock_i_ino() for __netlink_diag_dump() Greg Kroah-Hartman
2023-07-21 15:59 ` [PATCH 5.15 095/532] drm/amd/display: Add logging for display MALL refresh setting Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 096/532] radeon: avoid double free in ci_dpm_init() Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 097/532] drm/amd/display: Explicitly specify update type per plane info change Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 098/532] Input: drv260x - sleep between polling GO bit Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 099/532] drm/bridge: tc358768: always enable HS video mode Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 100/532] drm/bridge: tc358768: fix PLL parameters computation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 101/532] drm/bridge: tc358768: fix PLL target frequency Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 102/532] drm/bridge: tc358768: fix TCLK_ZEROCNT computation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 103/532] drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 104/532] drm/bridge: tc358768: fix TCLK_TRAILCNT computation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 105/532] drm/bridge: tc358768: fix THS_ZEROCNT computation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 106/532] drm/bridge: tc358768: fix TXTAGOCNT computation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 107/532] drm/bridge: tc358768: fix THS_TRAILCNT computation Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 108/532] drm/vram-helper: fix function names in vram helper doc Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 109/532] ARM: dts: BCM5301X: Drop "clock-names" from the SPI node Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 110/532] ARM: dts: meson8b: correct uart_B and uart_C clock references Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 111/532] Input: adxl34x - do not hardcode interrupt trigger type Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 112/532] drm: sun4i_tcon: use devm_clk_get_enabled in `sun4i_tcon_init_clocks` Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 113/532] drm/panel: sharp-ls043t1le01: adjust mode settings Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 114/532] ARM: dts: stm32: Move ethernet MAC EEPROM from SoM to carrier boards Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 115/532] bus: ti-sysc: Fix dispc quirk masking bool variables Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 116/532] arm64: dts: microchip: sparx5: do not use PSCI on reference boards Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 117/532] clk: imx: scu: use _safe list iterator to avoid a use after free Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 118/532] RDMA/bnxt_re: Disable/kill tasklet only if it is enabled Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 119/532] RDMA/bnxt_re: Fix to remove unnecessary return labels Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 120/532] RDMA/bnxt_re: Use unique names while registering interrupts Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 121/532] RDMA/bnxt_re: Remove a redundant check inside bnxt_re_update_gid Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 122/532] RDMA/bnxt_re: Fix to remove an unnecessary log Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 123/532] drm/msm/dsi: dont allow enabling 14nm VCO with unprogrammed rate Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 124/532] drm/msm/disp/dpu: get timing engine status from intf status register Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 125/532] drm/msm/dpu: Set DPU_DATA_HCTL_EN for in INTF_SC7180_MASK Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 126/532] ARM: dts: gta04: Move model property out of pinctrl node Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 127/532] arm64: dts: qcom: msm8916: correct camss unit address Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 128/532] arm64: dts: qcom: msm8994: correct SPMI " Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 129/532] arm64: dts: qcom: msm8996: correct camss " Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 130/532] arm64: dts: qcom: sdm630: " Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 131/532] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 132/532] arm64: dts: qcom: db820c: Move blsp1_uart2 pin states to msm8996.dtsi Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 133/532] arm64: dts: qcom: apq8016-sbc: Update modem and WiFi firmware path Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 134/532] arm64: dts: qcom: apq8016-sbc: Clarify firmware-names Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 135/532] arm64: dts: qcom: apq8016-sbc: fix mpps state names Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 136/532] arm64: dts: qcom: Drop unneeded extra device-specific includes Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 137/532] arm64: dts: qcom: apq8016-sbc: Fix regulator constraints Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 138/532] arm64: dts: qcom: apq8016-sbc: Fix 1.8V power rail on LS expansion Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 139/532] drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 140/532] ARM: ep93xx: fix missing-prototype warnings Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 141/532] ARM: omap2: fix missing tick_broadcast() prototype Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 142/532] arm64: dts: qcom: apq8096: fix fixed regulator name property Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 143/532] arm64: dts: mediatek: mt8183: Add mediatek,broken-save-restore-fw to kukui Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 144/532] ARM: dts: stm32: Shorten the AV96 HDMI sound card name Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 145/532] memory: brcmstb_dpfe: fix testing array offset after use Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 146/532] ASoC: es8316: Increment max value for ALC Capture Target Volume control Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 147/532] ASoC: es8316: Do not set rate constraints for unsupported MCLKs Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 148/532] ARM: dts: meson8: correct uart_B and uart_C clock references Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 149/532] soc/fsl/qe: fix usb.c build errors Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 150/532] RDMA/irdma: avoid fortify-string warning in irdma_clr_wqes Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 151/532] IB/hfi1: Use bitmap_zalloc() when applicable Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 152/532] IB/hfi1: Fix wrong mmu_node used for user SDMA packet after invalidate Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 153/532] RDMA/hns: Fix hns_roce_table_get return value Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 154/532] ARM: dts: iwg20d-q7-common: Fix backlight pwm specifier Greg Kroah-Hartman
2023-07-21 16:00 ` [PATCH 5.15 155/532] arm64: dts: renesas: ulcb-kf: Remove flow control for SCIF1 Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 156/532] fbdev: omapfb: lcd_mipid: Fix an error handling path in mipid_spi_probe() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 157/532] arm64: dts: ti: k3-j7200: Fix physical address of pin Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 158/532] ARM: dts: stm32: Fix audio routing on STM32MP15xx DHCOM PDK2 Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 159/532] ARM: dts: stm32: fix i2s endpoint format property for stm32mp15xx-dkx Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 160/532] hwmon: (gsc-hwmon) fix fan pwm temperature scaling Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 161/532] hwmon: (adm1275) Allow setting sample averaging Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 162/532] hwmon: (pmbus/adm1275) Fix problems with temperature monitoring on ADM1272 Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 163/532] ARM: dts: BCM5301X: fix duplex-full => full-duplex Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 164/532] drm/amdkfd: Fix potential deallocation of previously deallocated memory Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 165/532] drm/amd/display: Fix artifacting on eDP panels when engaging freesync video mode Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 166/532] drm/radeon: fix possible division-by-zero errors Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 167/532] amdgpu: validate offset_in_bo of drm_amdgpu_gem_va Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 168/532] drm/msm/a5xx: really check for A510 in a5xx_gpu_init Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 169/532] RDMA/bnxt_re: wraparound mbox producer index Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 170/532] RDMA/bnxt_re: Avoid calling wake_up threads from spin_lock context Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 171/532] clk: imx: clk-imx8mn: fix memory leak in imx8mn_clocks_probe Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 172/532] clk: imx: clk-imx8mp: improve error handling in imx8mp_clocks_probe() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 173/532] arm64: dts: qcom: sm8250-edo: Panel framebuffer is 2.5k instead of 4k Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 174/532] clk: clocking-wizard: Fix Oops in clk_wzrd_register_divider() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 175/532] clk: tegra: tegra124-emc: Fix potential memory leak Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 176/532] ALSA: ac97: Fix possible NULL dereference in snd_ac97_mixer Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 177/532] drm/msm/dpu: do not enable color-management if DSPPs are not available Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 178/532] drm/msm/dp: Free resources after unregistering them Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 179/532] arm64: dts: mediatek: Add cpufreq nodes for MT8192 Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 180/532] arm64: dts: mediatek: mt8192: Fix CPUs capacity-dmips-mhz Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 181/532] drm/msm/dpu: correct MERGE_3D length Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 182/532] clk: vc5: check memory returned by kasprintf() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 183/532] clk: cdce925: check return value of kasprintf() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 184/532] clk: si5341: return error if one synth clock registration fails Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 185/532] clk: si5341: check return value of {devm_}kasprintf() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 186/532] clk: si5341: free unused memory on probe failure Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 187/532] clk: keystone: sci-clk: check return value of kasprintf() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 188/532] clk: ti: clkctrl: " Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 189/532] drivers: meson: secure-pwrc: always enable DMA domain Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 190/532] ovl: update of dentry revalidate flags after copy up Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 191/532] ASoC: imx-audmix: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 192/532] clk: Fix memory leak in devm_clk_notifier_register() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 193/532] PCI: cadence: Fix Gen2 Link Retraining process Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 194/532] PCI: vmd: Reset VMD config register between soft reboots Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 195/532] scsi: qedf: Fix NULL dereference in error handling Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 196/532] pinctrl: bcm2835: Handle gpiochip_add_pin_range() errors Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 197/532] PCI/ASPM: Disable ASPM on MFD function removal to avoid use-after-free Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 198/532] scsi: 3w-xxxx: Add error handling for initialization failure in tw_probe() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 199/532] PCI: pciehp: Cancel bringup sequence if card is not present Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 200/532] PCI: ftpci100: Release the clock resources Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 201/532] PCI: Add pci_clear_master() stub for non-CONFIG_PCI Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 202/532] perf bench: Use unbuffered output when pipe/teeing to a file Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 203/532] perf bench: Add missing setlocale() call to allow usage of %d style formatting Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 204/532] pinctrl: cherryview: Return correct value if pin in push-pull mode Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 205/532] kcsan: Dont expect 64 bits atomic builtins from 32 bits architectures Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 206/532] powerpc/interrupt: Dont read MSR from interrupt_exit_kernel_prepare() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 207/532] powerpc/signal32: Force inlining of __unsafe_save_user_regs() and save_tm_user_regs_unsafe() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 208/532] perf script: Fix allocation of evsel->priv related to per-event dump files Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 209/532] perf dwarf-aux: Fix off-by-one in die_get_varname() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 210/532] powerpc/64s: Fix VAS mm use after free Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 211/532] pinctrl: microchip-sgpio: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 212/532] pinctrl: at91-pio4: " Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 213/532] powerpc/powernv/sriov: perform null check on iov before dereferencing iov Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 214/532] powerpc: simplify ppc_save_regs Greg Kroah-Hartman
2023-07-21 16:01 ` [PATCH 5.15 215/532] powerpc: update ppc_save_regs to save current r1 in pt_regs Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 216/532] riscv: uprobes: Restore thread.bad_cause Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 219/532] hwrng: virtio - add an internal buffer Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 220/532] hwrng: virtio - dont wait on cleanup Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 221/532] hwrng: virtio - dont waste entropy Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 222/532] hwrng: virtio - always add a pending request Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 223/532] hwrng: virtio - Fix race on data_avail and actual data Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 224/532] modpost: remove broken calculation of exception_table_entry size Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 225/532] crypto: nx - fix build warnings when DEBUG_FS is not enabled Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 226/532] modpost: fix section mismatch message for R_ARM_ABS32 Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 227/532] modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24} Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 228/532] crypto: marvell/cesa - Fix type mismatch warning Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 229/532] modpost: fix off by one in is_executable_section() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 230/532] ARC: define ASM_NL and __ALIGN(_STR) outside #ifdef __ASSEMBLY__ guard Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 231/532] crypto: qat - honor CRYPTO_TFM_REQ_MAY_SLEEP flag Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 232/532] crypto: qat - replace get_current_node() with numa_node_id() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 233/532] crypto: qat - use reference to structure in dma_map_single() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 234/532] crypto: kpp - Add helper to set reqsize Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 235/532] crypto: qat - Use " Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 236/532] crypto: qat - unmap buffer before free for DH Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 237/532] crypto: qat - unmap buffers before free for RSA Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 238/532] NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 239/532] SMB3: Do not send lease break acknowledgment if all file handles have been closed Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 240/532] dax: Fix dax_mapping_release() use after free Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 241/532] dax: Introduce alloc_dev_dax_id() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 242/532] dax/kmem: Pass valid argument to memory_group_register_static Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 243/532] hwrng: st - keep clock enabled while hwrng is registered Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 244/532] kbuild: Disable GCOV for *.mod.o Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 245/532] efi/libstub: Disable PCI DMA before grabbing the EFI memory map Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 246/532] ksmbd: avoid field overflow warning Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 247/532] ACPI: utils: Fix acpi_evaluate_dsm_typed() redefinition error Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 248/532] bootmem: remove the vmemmap pages from kmemleak in free_bootmem_page Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 249/532] io_uring: ensure IOPOLL locks around deferred work Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 250/532] USB: serial: option: add LARA-R6 01B PIDs Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 251/532] usb: dwc3: gadget: Propagate core init errors to UDC during pullup Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 252/532] phy: tegra: xusb: Clear the driver reference in usb-phy dev Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 253/532] iio: adc: ad7192: Fix null ad7192_state pointer access Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 254/532] iio: adc: ad7192: Fix internal/external clock selection Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 255/532] iio: accel: fxls8962af: errata bug only applicable for FXLS8962AF Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 256/532] iio: accel: fxls8962af: fixup buffer scan element type Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 257/532] ALSA: hda/realtek: Add quirk for Clevo NPx0SNx Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 258/532] ALSA: jack: Fix mutex call in snd_jack_report() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 259/532] block: fix signed int overflow in Amiga partition support Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 260/532] block: add overflow checks for " Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 261/532] block: change all __u32 annotations to __be32 in affs_hardblocks.h Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 262/532] block: increment diskseq on all media change events Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 263/532] SUNRPC: Fix UAF in svc_tcp_listen_data_ready() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 264/532] w1: w1_therm: fix locking behavior in convert_t Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 265/532] w1: fix loop in w1_fini() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 266/532] sh: j2: Use ioremap() to translate device tree address into kernel memory Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 267/532] usb: dwc2: platform: Improve error reporting for problems during .remove() Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 268/532] usb: dwc2: Fix some error handling paths Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 269/532] serial: 8250: omap: Fix freeing of resources on failed register Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 270/532] clk: qcom: camcc-sc7180: Add parent dependency to all camera GDSCs Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 271/532] clk: qcom: gcc-ipq6018: Use floor ops for sdcc clocks Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 272/532] media: usb: Check az6007_read() return value Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 273/532] media: videodev2.h: Fix struct v4l2_input tuner index comment Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 274/532] media: usb: siano: Fix warning due to null work_func_t function pointer Greg Kroah-Hartman
2023-07-21 16:02 ` [PATCH 5.15 275/532] media: i2c: Correct format propagation for st-mipid02 Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 276/532] clk: qcom: reset: Allow specifying custom reset delay Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 277/532] clk: qcom: reset: support resetting multiple bits Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 278/532] clk: qcom: ipq6018: fix networking resets Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 279/532] usb: dwc3: qcom: Fix potential memory leak Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 280/532] usb: gadget: u_serial: Add null pointer check in gserial_suspend Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 281/532] extcon: Fix kernel doc of property fields to avoid warnings Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 282/532] extcon: Fix kernel doc of property capability " Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 283/532] usb: phy: phy-tahvo: fix memory leak in tahvo_usb_probe() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 284/532] usb: hide unused usbfs_notify_suspend/resume functions Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 285/532] serial: 8250: lock port for stop_rx() in omap8250_irq() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 286/532] serial: 8250: lock port for UART_IER access " Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 287/532] kernfs: fix missing kernfs_idr_lock to remove an ID from the IDR Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 288/532] coresight: Fix loss of connection info when a module is unloaded Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 289/532] mfd: rt5033: Drop rt5033-battery sub-device Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 290/532] media: venus: helpers: Fix ALIGN() of non power of two Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 291/532] media: atomisp: gmin_platform: fix out_len in gmin_get_config_dsm_var() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 292/532] KVM: s390: fix KVM_S390_GET_CMMA_BITS for GFNs in memslot holes Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 293/532] usb: dwc3: qcom: Release the correct resources in dwc3_qcom_remove() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 294/532] usb: dwc3: qcom: Fix an error handling path in dwc3_qcom_probe() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 295/532] usb: common: usb-conn-gpio: Set last role to unknown before initial detection Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 296/532] usb: dwc3-meson-g12a: Fix an error handling path in dwc3_meson_g12a_probe() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 297/532] mfd: intel-lpss: Add missing check for platform_get_resource Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 298/532] Revert "usb: common: usb-conn-gpio: Set last role to unknown before initial detection" Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 299/532] serial: 8250_omap: Use force_suspend and resume for system suspend Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 300/532] test_firmware: return ENOMEM instead of ENOSPC on failed memory allocation Greg Kroah-Hartman
2023-07-27  6:19   ` Mirsad Todorovac
2023-07-21 16:03 ` [PATCH 5.15 301/532] nvmem: rmem: Use NVMEM_DEVID_AUTO Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 302/532] mfd: stmfx: Fix error path in stmfx_chip_init Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 303/532] mfd: stmfx: Nullify stmfx->vdd in case of error Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 304/532] KVM: s390: vsie: fix the length of APCB bitmap Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 305/532] KVM: s390/diag: fix racy access of physical cpu number in diag 9c handler Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 306/532] mfd: stmpe: Only disable the regulators if they are enabled Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 307/532] phy: tegra: xusb: check return value of devm_kzalloc() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 308/532] pwm: imx-tpm: force real_period to be zero in suspend Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 309/532] pwm: sysfs: Do not apply state to already disabled PWMs Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 310/532] pwm: ab8500: Fix error code in probe() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 311/532] pwm: mtk_disp: Fix the disable flow of disp_pwm Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 312/532] md/raid10: fix the condition to call bio_end_io_acct() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 313/532] rtc: st-lpc: Release some resources in st_rtc_probe() in case of error Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 314/532] drm/i915/psr: Use hw.adjusted mode when calculating io/fast wake times Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 315/532] media: cec: i2c: ch7322: also select REGMAP Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 316/532] sctp: fix potential deadlock on &net->sctp.addr_wq_lock Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 317/532] net/sched: act_ipt: add sanity checks on table name and hook locations Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 318/532] Add MODULE_FIRMWARE() for FIRMWARE_TG357766 Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 319/532] ibmvnic: Do not reset dql stats on NON_FATAL err Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 320/532] net: dsa: vsc73xx: fix MTU configuration Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 321/532] spi: bcm-qspi: return error if neither hif_mspi nor mspi is available Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 322/532] mailbox: ti-msgmgr: Fill non-message tx data fields with 0x0 Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 323/532] f2fs: fix error path handling in truncate_dnode() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 324/532] octeontx2-af: Fix mapping for NIX block from CGX connection Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 325/532] octeontx2-af: Add validation before accessing cgx and lmac Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 326/532] ntfs: Fix panic about slab-out-of-bounds caused by ntfs_listxattr() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 327/532] powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 328/532] net: bridge: keep ports without IFF_UNICAST_FLT in BR_PROMISC mode Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 329/532] tcp: annotate data races in __tcp_oow_rate_limited() Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 330/532] xsk: Honor SO_BINDTODEVICE on bind Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 331/532] net/sched: act_pedit: Add size check for TCA_PEDIT_PARMS_EX Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 332/532] riscv: move memblock_allow_resize() after linear mapping is ready Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 333/532] pptp: Fix fib lookup calls Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 334/532] net: dsa: tag_sja1105: fix MAC DA patching from meta frames Greg Kroah-Hartman
2023-07-21 16:03 ` [PATCH 5.15 335/532] octeontx-af: fix hardware timestamp configuration Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 336/532] s390/qeth: Fix vipa deletion Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 337/532] sh: dma: Fix DMA channel offset calculation Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 338/532] apparmor: fix missing error check for rhashtable_insert_fast Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 339/532] i2c: xiic: Defer xiic_wakeup() and __xiic_start_xfer() in xiic_process() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 340/532] i2c: xiic: Dont try to handle more interrupt events after error Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 341/532] extcon: usbc-tusb320: Convert to i2cs .probe_new() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 342/532] btrfs: do not BUG_ON() on tree mod log failure at balance_level() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 343/532] i2c: qup: Add missing unwind goto in qup_i2c_probe() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 344/532] NFSD: add encoding of op_recall flag for write delegation Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 345/532] io_uring: wait interruptibly for request completions on exit Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 346/532] mmc: core: disable TRIM on Kingston EMMC04G-M627 Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 347/532] mmc: core: disable TRIM on Micron MTFC4GACAJCN-1M Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 348/532] mmc: mmci: Set PROBE_PREFER_ASYNCHRONOUS Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 349/532] mmc: sdhci: fix DMA configure compatibility issue when 64bit DMA mode is used Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 350/532] bcache: fixup btree_cache_wait list damage Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 351/532] bcache: Remove unnecessary NULL point check in node allocations Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 352/532] bcache: Fix __bch_btree_node_alloc to make the failure behavior consistent Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 353/532] um: Use HOST_DIR for mrproper Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 354/532] integrity: Fix possible multiple allocation in integrity_inode_get() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 355/532] autofs: use flexible array in ioctl structure Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 356/532] shmem: use ramfs_kill_sb() for kill_sb method of ramfs-based tmpfs Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 357/532] ext4: Remove ext4 locking of moved directory Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 358/532] Revert "f2fs: fix potential corruption when moving a directory" Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 359/532] fs: Establish locking order for unrelated directories Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 360/532] fs: Lock moved directories Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 361/532] ipvs: increase ip_vs_conn_tab_bits range for 64BIT Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 362/532] jffs2: reduce stack usage in jffs2_build_xattr_subsystem() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 363/532] fs: avoid empty option when generating legacy mount string Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 364/532] btrfs: add handling for RAID1C23/DUP to btrfs_reduce_alloc_profile Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 365/532] btrfs: delete unused BGs while reclaiming BGs Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 366/532] btrfs: bail out reclaim process if filesystem is read-only Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 367/532] btrfs: reinsert BGs failed to reclaim Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 368/532] btrfs: fix race when deleting quota root from the dirty cow roots list Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 369/532] btrfs: fix extent buffer leak after tree mod log failure at split_node() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 370/532] btrfs: do not BUG_ON() on tree mod log failure at __btrfs_cow_block() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 371/532] ASoC: mediatek: mt8173: Fix irq error path Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 372/532] ASoC: mediatek: mt8173: Fix snd_soc_component_initialize " Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 373/532] ARM: dts: qcom: ipq4019: fix broken NAND controller properties override Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 374/532] ARM: orion5x: fix d2net gpio initialization Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 375/532] leds: trigger: netdev: Recheck NETDEV_LED_MODE_LINKUP on dev rename Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 376/532] fs: no need to check source Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 377/532] ovl: fix null pointer dereference in ovl_get_acl_rcu() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 378/532] fanotify: disallow mount/sb marks on kernel internal pseudo fs Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 379/532] netfilter: nf_tables: unbind non-anonymous set if rule construction fails Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 380/532] netfilter: conntrack: Avoid nf_ct_helper_hash uses after free Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 381/532] netfilter: nf_tables: do not ignore genmask when looking up chain by id Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 382/532] netfilter: nf_tables: prevent OOB access in nft_byteorder_eval Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 383/532] wireguard: queueing: use saner cpu selection wrapping Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 384/532] wireguard: netlink: send staged packets when setting initial private key Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 385/532] tty: serial: fsl_lpuart: add earlycon for imx8ulp platform Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 386/532] block/partition: fix signedness issue for Amiga partitions Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 387/532] io_uring: Use io_schedule* in cqring wait Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 388/532] io_uring: add reschedule point to handle_tw_list() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 389/532] net: lan743x: Dont sleep in atomic context Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 390/532] workqueue: clean up WORK_* constant types, clarify masking Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 391/532] ksmbd: use ksmbd_req_buf_next() in ksmbd_smb2_check_message() Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 392/532] ksmbd: validate command payload size Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 393/532] ksmbd: fix out-of-bound read in smb2_write Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 394/532] ksmbd: validate session id and tree id in the compound request Greg Kroah-Hartman
2023-07-21 16:04 ` [PATCH 5.15 395/532] drm/panel: simple: Add connector_type for innolux_at043tn24 Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 396/532] drm/bridge: ti-sn65dsi86: Fix auxiliary bus lifetime Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 397/532] drm/panel: simple: Add Powertip PH800480T013 drm_display_mode flags Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 398/532] igc: Remove delay during TX ring configuration Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 399/532] net/mlx5e: fix double free in mlx5e_destroy_flow_table Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 400/532] net/mlx5e: fix memory leak in mlx5e_ptp_open Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 401/532] net/mlx5e: Check for NOT_READY flag state after locking Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 402/532] igc: set TP bit in supported and advertising fields of ethtool_link_ksettings Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 403/532] igc: Handle PPS start time programming for past time values Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 404/532] scsi: qla2xxx: Fix error code in qla2x00_start_sp() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 405/532] bpf: Fix max stack depth check for async callbacks Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 406/532] net: mvneta: fix txq_map in case of txq_number==1 Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 407/532] net/sched: cls_fw: Fix improper refcount update leads to use-after-free Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 408/532] gve: Set default duplex configuration to full Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 409/532] ionic: remove WARN_ON to prevent panic_on_warn Greg Kroah-Hartman
2023-07-21 16:05 ` Greg Kroah-Hartman [this message]
2023-07-21 16:05 ` [PATCH 5.15 411/532] net: prevent skb corruption on frag list segmentation Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 412/532] icmp6: Fix null-ptr-deref of ip6_null_entry->rt6i_idev in icmp6_dev() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 413/532] udp6: fix udp6_ehashfn() typo Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 414/532] ntb: idt: Fix error handling in idt_pci_driver_init() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 415/532] NTB: amd: Fix error handling in amd_ntb_pci_driver_init() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 416/532] ntb: intel: Fix error handling in intel_ntb_pci_driver_init() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 417/532] NTB: ntb_transport: fix possible memory leak while device_register() fails Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 418/532] NTB: ntb_tool: Add check for devm_kcalloc Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 419/532] ipv6/addrconf: fix a potential refcount underflow for idev Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 420/532] platform/x86: wmi: remove unnecessary argument Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 421/532] platform/x86: wmi: use guid_t and guid_equal() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 422/532] platform/x86: wmi: move variables Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 423/532] platform/x86: wmi: Break possible infinite loop when parsing GUID Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 424/532] kernel/trace: Fix cleanup logic of enable_trace_eprobe Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 425/532] igc: Fix launchtime before start of cycle Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 426/532] igc: Fix inserting of empty frame for launchtime Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 427/532] bpf, riscv: Support riscv jit to provide bpf_line_info Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 428/532] riscv, bpf: Fix inconsistent JIT image generation Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 429/532] drm/i915: Fix one wrong caching mode enum usage Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 430/532] octeontx2-pf: Add additional check for MCAM rules Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 431/532] erofs: avoid infinite loop in z_erofs_do_read_page() when reading beyond EOF Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 432/532] erofs: decouple basic mount options from fs_context Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 433/532] erofs: fix fsdax unavailability for chunk-based regular files Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 434/532] wifi: airo: avoid uninitialized warning in airo_get_rate() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 435/532] bpf: cpumap: Fix memory leak in cpu_map_update_elem Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 436/532] net/sched: flower: Ensure both minimum and maximum ports are specified Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 437/532] riscv: mm: fix truncation warning on RV32 Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 438/532] netdevsim: fix uninitialized data in nsim_dev_trap_fa_cookie_write() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 439/532] net/sched: make psched_mtu() RTNL-less safe Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 440/532] net/sched: sch_qfq: refactor parsing of netlink parameters Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 441/532] net/sched: sch_qfq: account for stab overhead in qfq_enqueue Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 442/532] nvme-pci: remove nvme_queue from nvme_iod Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 443/532] nvme-pci: fix DMA direction of unmapping integrity data Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 444/532] fs/ntfs3: Check fields while reading Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 445/532] f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io() Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 446/532] pinctrl: amd: Fix mistake in handling clearing pins at startup Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 447/532] pinctrl: amd: Detect internal GPIO0 debounce handling Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 448/532] pinctrl: amd: Detect and mask spurious interrupts Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 449/532] pinctrl: amd: Only use special debounce behavior for GPIO 0 Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 450/532] tpm: tpm_vtpm_proxy: fix a race condition in /dev/vtpmx creation Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 451/532] mtd: rawnand: meson: fix unaligned DMA buffers handling Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 452/532] net: bcmgenet: Ensure MDIO unregistration has clocks enabled Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 453/532] mm/damon/ops-common: atomically test and clear young on ptes and pmds Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 454/532] powerpc: Fail build if using recordmcount with binutils v2.37 Greg Kroah-Hartman
2023-07-21 16:05 ` [PATCH 5.15 455/532] misc: fastrpc: Create fastrpc scalar with correct buffer count Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 456/532] powerpc/security: Fix Speculation_Store_Bypass reporting on Power10 Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 457/532] arm64: errata: Add detection for TRBE overwrite in FILL mode Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 458/532] erofs: fix compact 4B support for 16k block size Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 459/532] MIPS: Loongson: Fix cpu_probe_loongson() again Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 460/532] MIPS: KVM: Fix NULL pointer dereference Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 461/532] ext4: Fix reusing stale buffer heads from last failed mounting Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 462/532] ext4: fix wrong unit use in ext4_mb_clear_bb Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 463/532] ext4: get block from bh in ext4_free_blocks for fast commit replay Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 464/532] ext4: fix wrong unit use in ext4_mb_new_blocks Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 465/532] ext4: fix to check return value of freeze_bdev() in ext4_shutdown() Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 466/532] ext4: turn quotas off if mount failed after enabling quotas Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 467/532] ext4: only update i_reserved_data_blocks on successful block allocation Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 468/532] jfs: jfs_dmap: Validate db_l2nbperpage while mounting Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 469/532] hwrng: imx-rngc - fix the timeout for init and self check Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 470/532] dm integrity: reduce vmalloc space footprint on 32-bit architectures Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 471/532] PCI/PM: Avoid putting EloPOS E2/S2/H2 PCIe Ports in D3cold Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 472/532] PCI: Add function 1 DMA alias quirk for Marvell 88SE9235 Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 473/532] PCI: acpiphp: Reassign resources on bridge if necessary Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 474/532] PCI: qcom: Disable write access to read only registers for IP v2.3.3 Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 475/532] PCI: rockchip: Assert PCI Configuration Enable bit after probe Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 476/532] PCI: rockchip: Write PCI Device ID to correct register Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 477/532] PCI: rockchip: Add poll and timeout to wait for PHY PLLs to be locked Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 478/532] PCI: rockchip: Fix legacy IRQ generation for RK3399 PCIe endpoint core Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 479/532] PCI: rockchip: Use u32 variable to access 32-bit registers Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 480/532] PCI: rockchip: Set address alignment for endpoint mode Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 481/532] misc: pci_endpoint_test: Free IRQs before removing the device Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 482/532] misc: pci_endpoint_test: Re-init completion for every test Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 483/532] mfd: pm8008: Fix module autoloading Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 484/532] md/raid0: add discard support for the original layout Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 485/532] dm init: add dm-mod.waitfor to wait for asynchronously probed block devices Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 486/532] fs: dlm: return positive pid value for F_GETLK Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 487/532] drm/atomic: Allow vblank-enabled + self-refresh "disable" Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 488/532] drm/rockchip: vop: Leave vblank enabled in self-refresh Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 489/532] drm/amdgpu: fix clearing mappings for BOs that are always valid in VM Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 490/532] drm/amd/display: Correct `DMUB_FW_VERSION` macro Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 491/532] drm/amdgpu: avoid restore process run into dead loop Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 492/532] drm/ttm: Dont leak a resource on swapout move error Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 493/532] drm/ttm: never consider pinned BOs for eviction&swap Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 494/532] serial: atmel: dont enable IRQs prematurely Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 495/532] tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() in case of error Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 496/532] tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() when iterating clk Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 497/532] tty: serial: imx: fix rs485 rx after tx Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 498/532] firmware: stratix10-svc: Fix a potential resource leak in svc_create_memory_pool() Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 499/532] libceph: harden msgr2.1 frame segment length checks Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 500/532] ceph: dont let check_caps skip sending responses for revoke msgs Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 501/532] xhci: Fix resume issue of some ZHAOXIN hosts Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 502/532] xhci: Fix TRB prefetch issue of " Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 503/532] xhci: Show ZHAOXIN xHCI root hub speed correctly Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 504/532] meson saradc: fix clock divider mask length Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 505/532] opp: Fix use-after-free in lazy_opp_tables after probe deferral Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 506/532] soundwire: qcom: fix storing port config out-of-bounds Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 507/532] Revert "8250: add support for ASIX devices with a FIFO bug" Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 508/532] bus: ixp4xx: fix IXP4XX_EXP_T1_MASK Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 509/532] s390/decompressor: fix misaligned symbol build error Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 510/532] tracing/histograms: Add histograms to hist_vars if they have referenced variables Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 511/532] tracing: Fix memory leak of iter->temp when reading trace_pipe Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 512/532] samples: ftrace: Save required argument registers in sample trampolines Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 513/532] net: ena: fix shift-out-of-bounds in exponential backoff Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 514/532] ring-buffer: Fix deadloop issue on reading trace_pipe Greg Kroah-Hartman
2023-07-21 16:06 ` [PATCH 5.15 515/532] ftrace: Fix possible warning on checking all pages used in ftrace_process_locs() Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 516/532] xtensa: ISS: fix call to split_if_spec Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 517/532] tracing: Fix null pointer dereference in tracing_err_log_open() Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 518/532] selftests: mptcp: sockopt: return error if wrong mark Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 519/532] selftests: mptcp: depend on SYN_COOKIES Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 520/532] tracing/probes: Fix not to count error code to total length Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 521/532] tracing/probes: Fix to update dynamic data counter if fetcharg uses it Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 522/532] scsi: qla2xxx: Wait for io return on terminate rport Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 523/532] scsi: qla2xxx: Array index may go out of bound Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 524/532] scsi: qla2xxx: Avoid fcport pointer dereference Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 525/532] scsi: qla2xxx: Fix buffer overrun Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 526/532] scsi: qla2xxx: Fix potential NULL pointer dereference Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 527/532] scsi: qla2xxx: Check valid rport returned by fc_bsg_to_rport() Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 528/532] scsi: qla2xxx: Correct the index of array Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 529/532] scsi: qla2xxx: Pointer may be dereferenced Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 530/532] scsi: qla2xxx: Remove unused nvme_ls_waitq wait queue Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 531/532] MIPS: kvm: Fix build error with KVM_MIPS_DEBUG_COP0_COUNTERS enabled Greg Kroah-Hartman
2023-07-21 16:07 ` [PATCH 5.15 532/532] net/sched: sch_qfq: reintroduce lmax bound check for MTU Greg Kroah-Hartman
2023-07-21 20:32 ` [PATCH 5.15 000/532] 5.15.121-rc1 review SeongJae Park
2023-07-22  2:28 ` Florian Fainelli
2023-07-22 10:57 ` Naresh Kamboju
2023-07-22 20:39 ` Guenter Roeck
2023-07-23  2:15 ` Ron Economos
2023-07-23  9:08 ` Jon Hunter
2023-07-23  9:09 ` Harshit Mogalapalli

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=20230721160636.698770811@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=michal.kubiak@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=rafal@milecki.pl \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).