public inbox for stable@vger.kernel.org
 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,
	Vincent Mailhol <mailhol.vincent@wanadoo.fr>,
	Marc Kleine-Budde <mkl@pengutronix.de>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 113/603] can: dev: can_put_echo_skb(): dont crash kernel if can_priv::echo_skb is accessed out of bounds
Date: Wed, 15 Nov 2023 14:10:58 -0500	[thread overview]
Message-ID: <20231115191621.050893217@linuxfoundation.org> (raw)
In-Reply-To: <20231115191613.097702445@linuxfoundation.org>

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

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

From: Marc Kleine-Budde <mkl@pengutronix.de>

[ Upstream commit 6411959c10fe917288cbb1038886999148560057 ]

If the "struct can_priv::echoo_skb" is accessed out of bounds, this
would cause a kernel crash. Instead, issue a meaningful warning
message and return with an error.

Fixes: a6e4bc530403 ("can: make the number of echo skb's configurable")
Link: https://lore.kernel.org/all/20231005-can-dev-fix-can-restart-v2-5-91b5c1fd922c@pengutronix.de
Reviewed-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/can/dev/skb.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/net/can/dev/skb.c b/drivers/net/can/dev/skb.c
index f6d05b3ef59ab..3ebd4f779b9bd 100644
--- a/drivers/net/can/dev/skb.c
+++ b/drivers/net/can/dev/skb.c
@@ -49,7 +49,11 @@ int can_put_echo_skb(struct sk_buff *skb, struct net_device *dev,
 {
 	struct can_priv *priv = netdev_priv(dev);
 
-	BUG_ON(idx >= priv->echo_skb_max);
+	if (idx >= priv->echo_skb_max) {
+		netdev_err(dev, "%s: BUG! Trying to access can_priv::echo_skb out of bounds (%u/max %u)\n",
+			   __func__, idx, priv->echo_skb_max);
+		return -EINVAL;
+	}
 
 	/* check flag whether this packet has to be looped back */
 	if (!(dev->flags & IFF_ECHO) ||
-- 
2.42.0




  parent reply	other threads:[~2023-11-15 19:37 UTC|newest]

Thread overview: 613+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-15 19:09 [PATCH 6.6 000/603] 6.6.2-rc1 review Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 001/603] hwmon: (nct6775) Fix incorrect variable reuse in fan_div calculation Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 002/603] numa: Generalize numa_map_to_online_node() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 003/603] sched/topology: Fix sched_numa_find_nth_cpu() in CPU-less case Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 004/603] sched/topology: Fix sched_numa_find_nth_cpu() in non-NUMA case Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 005/603] sched/fair: Fix cfs_rq_is_decayed() on !SMP Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 006/603] iov_iter, x86: Be consistent about the __user tag on copy_mc_to_user() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 007/603] sched/uclamp: Set max_spare_cap_cpu even if max_spare_cap is 0 Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 008/603] sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0 Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 009/603] objtool: Propagate early errors Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 010/603] sched: Fix stop_one_cpu_nowait() vs hotplug Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 011/603] nfsd: Handle EOPENSTALE correctly in the filecache Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 012/603] vfs: fix readahead(2) on block devices Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 013/603] writeback, cgroup: switch inodes with dirty timestamps to release dying cgwbs Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 014/603] x86/srso: Fix SBPB enablement for (possible) future fixed HW Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 015/603] x86/srso: Print mitigation for retbleed IBPB case Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 016/603] x86/srso: Fix vulnerability reporting for missing microcode Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 017/603] x86/srso: Fix unret validation dependencies Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 018/603] futex: Dont include process MM in futex key on no-MMU Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 019/603] x86/numa: Introduce numa_fill_memblks() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 020/603] ACPI/NUMA: Apply SRAT proximity domain to entire CFMWS window Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 021/603] cgroup/cpuset: Fix load balance state in update_partition_sd_lb() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 022/603] x86/sev-es: Allow copy_from_kernel_nofault() in earlier boot Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 023/603] x86/boot: Fix incorrect startup_gdt_descr.size Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 024/603] cpu/SMT: Make SMT control more robust against enumeration failures Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 025/603] x86/apic: Fake primary thread mask for XEN/PV Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 026/603] srcu: Fix callbacks acceleration mishandling Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 027/603] drivers/clocksource/timer-ti-dm: Dont call clk_get_rate() in stop function Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 028/603] x86/nmi: Fix out-of-order NMI nesting checks & false positive warning Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 029/603] pstore/platform: Add check for kstrdup Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 030/603] perf: Optimize perf_cgroup_switch() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 031/603] selftests/x86/lam: Zero out buffer for readlink() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 032/603] PCI/MSI: Provide stubs for IMS functions Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 033/603] string: Adjust strtomem() logic to allow for smaller sources Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 034/603] genirq/matrix: Exclude managed interrupts in irq_matrix_allocated() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 035/603] irqchip/sifive-plic: Fix syscore registration for multi-socket systems Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 036/603] wifi: ath12k: fix undefined behavior with __fls in dp Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 037/603] wifi: cfg80211: add flush functions for wiphy work Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 038/603] wifi: mac80211: move radar detect work to " Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 039/603] wifi: mac80211: move scan " Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 040/603] wifi: mac80211: move offchannel works " Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 041/603] wifi: mac80211: move sched-scan stop work " Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 042/603] wifi: mac80211: fix RCU usage warning in mesh fast-xmit Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 043/603] wifi: cfg80211: fix off-by-one in element defrag Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 044/603] wifi: mac80211: fix # of MSDU in A-MSDU calculation Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 045/603] wifi: iwlwifi: honor the enable_ini value Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 046/603] wifi: iwlwifi: dont use an uninitialized variable Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 047/603] i40e: fix potential memory leaks in i40e_remove() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 048/603] iavf: Fix promiscuous mode configuration flow messages Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 049/603] selftests/bpf: Correct map_fd to data_fd in tailcalls Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 050/603] bpf, x64: Fix tailcall infinite loop Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 051/603] wifi: cfg80211: fix kernel-doc for wiphy_delayed_work_flush() Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 052/603] wifi: iwlwifi: Use FW rate for non-data frames Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 053/603] udp: introduce udp->udp_flags Greg Kroah-Hartman
2023-11-15 19:09 ` [PATCH 6.6 054/603] udp: move udp->no_check6_tx to udp->udp_flags Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 055/603] udp: move udp->no_check6_rx " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 056/603] udp: move udp->gro_enabled " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 057/603] udp: add missing WRITE_ONCE() around up->encap_rcv Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 058/603] udp: move udp->accept_udp_{l4|fraglist} to udp->udp_flags Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 059/603] udp: lockless UDP_ENCAP_L2TPINUDP / UDP_GRO Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 060/603] udp: annotate data-races around udp->encap_type Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 061/603] udplite: remove UDPLITE_BIT Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 062/603] udplite: fix various data-races Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 063/603] selftests/bpf: Skip module_fentry_shadow test when bpf_testmod is not available Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 064/603] tcp: call tcp_try_undo_recovery when an RTOd TFO SYNACK is ACKed Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 065/603] bpf: Fix kfunc callback register type handling Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 066/603] gve: Use size_add() in call to struct_size() Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 067/603] mlxsw: Use size_mul() " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 068/603] tls: Use size_add() " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 069/603] tipc: Use size_add() in calls " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 070/603] net: spider_net: Use size_add() in call " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 071/603] ice: fix pin assignment for E810-T without SMA control Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 072/603] net: ethernet: mtk_wed: fix EXT_INT_STATUS_RX_FBUF definitions for MT7986 SoC Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 073/603] wifi: rtw88: debug: Fix the NULL vs IS_ERR() bug for debugfs_create_file() Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 074/603] wifi: ath12k: fix DMA unmap warning on NULL DMA address Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 075/603] wifi: ath11k: fix boot failure with one MSI vector Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 076/603] wifi: mac80211: fix check for unusable RX result Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 077/603] PM: sleep: Fix symbol export for _SIMPLE_ variants of _PM_OPS() Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 078/603] cpufreq: tegra194: fix warning due to missing opp_put Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 079/603] wifi: mt76: mt7603: rework/fix rx pse hang check Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 080/603] wifi: mt76: mt7603: improve watchdog reset reliablity Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 081/603] wifi: mt76: mt7603: improve stuck beacon handling Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 082/603] wifi: mt76: remove unused error path in mt76_connac_tx_complete_skb Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 083/603] wifi: mt76: mt7996: set correct wcid in txp Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 084/603] wifi: mt76: mt7996: fix beamform mcu cmd configuration Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 085/603] wifi: mt76: mt7996: fix beamformee ss subfield in EHT PHY cap Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 086/603] wifi: mt76: mt7996: fix wmm queue mapping Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 087/603] wifi: mt76: mt7996: fix rx rate report for CBW320-2 Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 088/603] wifi: mt76: mt7996: fix TWT command format Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 089/603] wifi: mt76: update beacon size limitation Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 090/603] wifi: mt76: fix potential memory leak of beacon commands Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 091/603] wifi: mt76: get rid of false alamrs of tx emission issues Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 092/603] wifi: mt76: fix per-band IEEE80211_CONF_MONITOR flag comparison Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 093/603] wifi: mt76: mt7915: fix beamforming availability check Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 094/603] wifi: mt76: move struct ieee80211_chanctx_conf up to struct mt76_vif Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 095/603] wifi: mt76: mt7921: fix the wrong rate pickup for the chanctx driver Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 096/603] wifi: mt76: mt7921: fix the wrong rate selected in fw " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 097/603] wifi: ath: dfs_pattern_detector: Fix a memory initialization issue Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 098/603] tcp_metrics: add missing barriers on delete Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 099/603] tcp_metrics: properly set tp->snd_ssthresh in tcp_init_metrics() Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 100/603] tcp_metrics: do not create an entry from tcp_init_metrics() Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 101/603] wifi: rtlwifi: fix EDCA limit set by BT coexistence Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 102/603] ACPI: property: Allow _DSD buffer data only for byte accessors Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 103/603] =?UTF-8?q?ACPI:=20video:=20Add=20acpi=5Fbacklight=3Dvendor=20quir?= =?UTF-8?q?k=20for=20Toshiba=20Port=C3=A9g=C3=A9=20R100?= Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 104/603] can: etas_es58x: rework the version check logic to silence -Wformat-truncation Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 105/603] can: etas_es58x: add missing a blank line after declaration Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 106/603] libbpf: Fix syscall access arguments on riscv Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 107/603] selftests/bpf: Define SYS_PREFIX for riscv Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 108/603] selftests/bpf: Define SYS_NANOSLEEP_KPROBE_NAME " Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 109/603] r8152: break the loop when the budget is exhausted Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 110/603] wifi: ath11k: fix Tx power value during active CAC Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 111/603] can: dev: can_restart(): dont crash kernel if carrier is OK Greg Kroah-Hartman
2023-11-15 19:10 ` [PATCH 6.6 112/603] can: dev: can_restart(): fix race condition between controller restart and netif_carrier_on() Greg Kroah-Hartman
2023-11-15 19:10 ` Greg Kroah-Hartman [this message]
2023-11-15 19:10 ` [PATCH 6.6 114/603] PM / devfreq: rockchip-dfi: Make pmu regmap mandatory Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 115/603] wifi: wfx: fix case where rates are out of order Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 116/603] netfilter: nf_tables: Drop pointless memset when dumping rules Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 117/603] virtio-net: fix mismatch of getting tx-frames Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 118/603] virtio-net: consistently save parameters for per-queue Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 119/603] virtio-net: fix per queue coalescing parameter setting Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 120/603] virtio-net: fix the vq coalescing setting for vq resize Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 121/603] wifi: rtw88: Remove duplicate NULL check before calling usb_kill/free_urb() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 122/603] thermal: core: prevent potential string overflow Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 123/603] r8169: fix rare issue with broken rx after link-down on RTL8125 Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 124/603] thermal/drivers/mediatek: Fix probe for THERMAL_V2 Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 125/603] bpf: Fix missed rcu read lock in bpf_task_under_cgroup() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 126/603] net: skb_find_text: Ignore patterns extending past to Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 127/603] selftests/bpf: Make linked_list failure test more robust Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 128/603] thermal: core: Dont update trip points inside the hysteresis range Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 129/603] chtls: fix tp->rcv_tstamp initialization Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 130/603] tcp: fix cookie_init_timestamp() overflows Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 131/603] wifi: iwlwifi: mvm: update stations MFP flag after association Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 132/603] wifi: iwlwifi: mvm: fix removing pasn station for responder Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 133/603] wifi: iwlwifi: mvm: use correct sta ID for IGTK/BIGTK Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 134/603] wifi: mac80211: dont recreate driver link debugfs in reconfig Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 135/603] wifi: mac80211: Fix setting vif links Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 136/603] wifi: iwlwifi: yoyo: swap cdb and jacket bits values Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 137/603] wifi: iwlwifi: mvm: Correctly set link configuration Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 138/603] wifi: iwlwifi: mvm: Fix key flags for IGTK on AP interface Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 139/603] wifi: iwlwifi: mvm: Dont always bind/link the P2P Device interface Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 140/603] wifi: iwlwifi: mvm: change iwl_mvm_flush_sta() API Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 141/603] wifi: iwlwifi: mvm: fix iwl_mvm_mac_flush_sta() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 142/603] wifi: iwlwifi: mvm: remove TDLS stations from FW Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 143/603] wifi: iwlwifi: increase number of RX buffers for EHT devices Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 144/603] wifi: iwlwifi: mvm: fix netif csum flags Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 145/603] wifi: iwlwifi: pcie: synchronize IRQs before NAPI Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 146/603] wifi: iwlwifi: mvm: update IGTK in mvmvif upon D3 resume Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 147/603] wifi: iwlwifi: empty overflow queue during flush Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 148/603] Bluetooth: ISO: Pass BIG encryption info through QoS Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 149/603] Bluetooth: Make handle of hci_conn be unique Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 150/603] Bluetooth: hci_sync: Fix Opcode prints in bt_dev_dbg/err Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 151/603] bpf: Fix unnecessary -EBUSY from htab_lock_bucket Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 152/603] ACPI: sysfs: Fix create_pnp_modalias() and create_of_modalias() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 153/603] mptcp: properly account fastopen data Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 154/603] ipv6: avoid atomic fragment on GSO packets Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 155/603] virtio_net: use u64_stats_t infra to avoid data-races Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 156/603] net: add DEV_STATS_READ() helper Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 157/603] ipvlan: properly track tx_errors Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 158/603] regmap: debugfs: Fix a erroneous check after snprintf() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 159/603] spi: tegra: Fix missing IRQ check in tegra_slink_probe() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 160/603] clk: qcom: ipq5332: Drop set rate parent from gpll0 dependent clocks Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 161/603] clk: qcom: gcc-msm8996: Remove RPM bus clocks Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 162/603] clk: qcom: clk-rcg2: Fix clock rate overflow for high parent frequencies Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 163/603] clk: qcom: mmcc-msm8998: Dont check halt bit on some branch clks Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 164/603] clk: qcom: mmcc-msm8998: Fix the SMMU GDSC Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 165/603] clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 166/603] gpio: sim: initialize a managed pointer when declaring it Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 167/603] regulator: mt6358: Fail probe on unknown chip ID Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 168/603] clk: imx: Select MXC_CLK for CLK_IMX8QXP Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 169/603] clk: imx: imx8: Fix an error handling path in clk_imx_acm_attach_pm_domains() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 170/603] clk: imx: imx8: Fix an error handling path if devm_clk_hw_register_mux_parent_data_table() fails Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 171/603] clk: imx: imx8: Fix an error handling path in imx8_acm_clk_probe() Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 172/603] clk: imx: imx8mq: correct error handling path Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 173/603] clk: imx: imx8qxp: Fix elcdif_pll clock Greg Kroah-Hartman
2023-11-15 19:11 ` [PATCH 6.6 174/603] clk: renesas: rcar-gen3: Extend SDnH divider table Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 175/603] clk: renesas: rzg2l: Wait for status bit of SD mux before continuing Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 176/603] clk: renesas: rzg2l: Lock around writes to mux register Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 177/603] clk: renesas: rzg2l: Trust value returned by hardware Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 178/603] clk: renesas: rzg2l: Use FIELD_GET() for PLL register fields Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 179/603] clk: renesas: rzg2l: Fix computation formula Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 180/603] clk: linux/clk-provider.h: fix kernel-doc warnings and typos Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 181/603] spi: nxp-fspi: use the correct ioremap function Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 182/603] clk: ralink: mtmips: quiet unused variable warning Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 183/603] clk: keystone: pll: fix a couple NULL vs IS_ERR() checks Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 184/603] clk: ti: fix double free in of_ti_divider_clk_setup() Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 185/603] clk: npcm7xx: Fix incorrect kfree Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 186/603] clk: mediatek: clk-mt6765: Add check for mtk_alloc_clk_data Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 187/603] clk: mediatek: clk-mt6779: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 188/603] clk: mediatek: clk-mt6797: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 189/603] clk: mediatek: clk-mt7629-eth: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 190/603] clk: mediatek: clk-mt7629: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 191/603] clk: mediatek: clk-mt2701: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 192/603] clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 193/603] clk: qcom: clk-alpha-pll: introduce stromer plus ops Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 194/603] clk: qcom: apss-ipq-pll: Use stromer plus ops for stromer plus pll Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 195/603] clk: qcom: apss-ipq-pll: Fix l value for ipq5332_pll_config Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 196/603] clk: qcom: ipq5018: drop the CLK_SET_RATE_PARENT flag from GPLL clocks Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 197/603] clk: qcom: ipq9574: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 198/603] clk: qcom: ipq5332: " Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 199/603] clk: mediatek: fix double free in mtk_clk_register_pllfh() Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 200/603] platform/x86: wmi: Fix probe failure when failing to register WMI devices Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 201/603] platform/x86: wmi: Fix opening of char device Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 202/603] regulator: qcom-rpmh: Fix smps4 regulator for pm8550ve Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 203/603] hwmon: (axi-fan-control) Fix possible NULL pointer dereference Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 204/603] hwmon: (coretemp) Fix potentially truncated sysfs attribute name Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 205/603] Revert "hwmon: (sch56xx-common) Add DMI override table" Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 206/603] Revert "hwmon: (sch56xx-common) Add automatic module loading on supported devices" Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 207/603] hwmon: (pmbus/mp2975) Move PGOOD fix Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 208/603] hwmon: (sch5627) Use bit macros when accessing the control register Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 209/603] hwmon: (sch5627) Disallow write access if virtual registers are locked Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 210/603] hte: tegra: Fix missing error code in tegra_hte_test_probe() Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 211/603] platform/chrome: cros_ec_lpc: Separate host command and irq disable Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 212/603] spi: omap2-mcspi: switch to use modern name Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 213/603] spi: omap2-mcspi: Fix hardcoded reference clock Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 214/603] drm: bridge: samsung-dsim: Initialize ULPS EXIT for i.MX8M DSIM Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 215/603] drm: bridge: for GENERIC_PHY_MIPI_DPHY also select GENERIC_PHY Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 216/603] drm: bridge: samsung-dsim: Fix waiting for empty cmd transfer FIFO on older Exynos Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 217/603] drm/loongson: Fix error handling in lsdc_pixel_pll_setup() Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 218/603] drm/rockchip: vop: Fix reset of state in duplicate state crtc funcs Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 219/603] drm/rockchip: vop: Fix call to crtc reset helper Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 220/603] drm/rockchip: vop2: Dont crash for invalid duplicate_state Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 221/603] drm/rockchip: vop2: Add missing call to crtc reset helper Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 222/603] drm/radeon: possible buffer overflow Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 223/603] drm/radeon: Remove the references of radeon_gem_ pread & pwrite ioctls Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 224/603] drm: bridge: it66121: Fix invalid connector dereference Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 225/603] drm/bridge: lt8912b: Fix bridge_detach Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 226/603] drm/bridge: lt8912b: Fix crash on bridge detach Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 227/603] drm/bridge: lt8912b: Manually disable HPD only if it was enabled Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 228/603] drm/bridge: lt8912b: Add missing drm_bridge_attach call Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 229/603] drm/ssd130x: Fix screen clearing Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 230/603] drm/mediatek: Fix coverity issue with unintentional integer overflow Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 231/603] x86/tdx: Zero out the missing RSI in TDX_HYPERCALL macro Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 232/603] drm/bridge: tc358768: Fix use of uninitialized variable Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 233/603] drm/bridge: tc358768: Fix bit updates Greg Kroah-Hartman
2023-11-15 19:12 ` [PATCH 6.6 234/603] drm/bridge: tc358768: Use struct videomode Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 235/603] drm/bridge: tc358768: Print logical values, not raw register values Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 236/603] drm/bridge: tc358768: Use dev for dbg prints, not priv->dev Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 237/603] drm/bridge: tc358768: Rename dsibclk to hsbyteclk Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 238/603] drm/bridge: tc358768: Clean up clock period code Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 239/603] drm/bridge: tc358768: Fix tc358768_ns_to_cnt() Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 240/603] drm: Call drm_atomic_helper_shutdown() at shutdown/remove time for misc drivers Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 241/603] drm/amdgpu: Increase IH soft ring size for GFX v9.4.3 dGPU Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 242/603] drm/amdkfd: fix some race conditions in vram buffer alloc/free of svm code Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 243/603] drm/amdkfd: Remove svm range validated_once flag Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 244/603] drm/amdkfd: Handle errors from svm validate and map Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 245/603] drm/amd/display: Fix null pointer dereference in error message Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 246/603] drm/amd/display: Check all enabled planes in dm_check_crtc_cursor Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 247/603] drm/amd/display: Refactor dm_get_plane_scale helper Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 248/603] drm/amd/display: Bail from dm_check_crtc_cursor if no relevant change Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 249/603] io_uring/kbuf: Fix check of BID wrapping in provided buffers Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 250/603] io_uring/kbuf: Allow the full buffer id space for " Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 251/603] drm/mediatek: Add mmsys_dev_num to mt8188 vdosys0 driver data Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 252/603] drm/mediatek: Fix iommu fault by swapping FBs after updating plane state Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 253/603] drm/mediatek: Fix iommu fault during crtc enabling Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 254/603] accel/habanalabs/gaudi2: Fix incorrect string length computation in gaudi2_psoc_razwi_get_engines() Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 255/603] drm/msm/adreno: Fix SM6375 GPU ID Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 256/603] drm/msm/a6xx: Fix unknown speedbin case Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 257/603] drm/rockchip: cdn-dp: Fix some error handling paths in cdn_dp_probe() Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 258/603] gpu: host1x: Correct allocated size for contexts Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 259/603] drm/bridge: lt9611uxc: fix the race in the error path Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 260/603] arm64/arm: xen: enlighten: Fix KPTI checks Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 261/603] drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map() Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 262/603] xenbus: fix error exit in xenbus_init() Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 263/603] xen: Make struct privcmd_irqfds layout architecture independent Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 264/603] xen: irqfd: Use _IOW instead of the internal _IOC() macro Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 265/603] xen-pciback: Consider INTx disabled when MSI/MSI-X is enabled Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 266/603] drm/msm/dsi: use msm_gem_kernel_put to free TX buffer Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 267/603] drm/msm/dsi: free TX buffer in unbind Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 268/603] clocksource/drivers/arm_arch_timer: limit XGene-1 workaround Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 269/603] drm: mediatek: mtk_dsi: Fix NO_EOT_PACKET settings/handling Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 270/603] drivers/perf: hisi: use cpuhp_state_remove_instance_nocalls() for hisi_hns3_pmu uninit process Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 271/603] drm/amd/pm: Fix a memory leak on an error path Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 272/603] perf/arm-cmn: Fix DTC domain detection Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 273/603] drivers/perf: hisi_pcie: Check the type first in pmu::event_init() Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 274/603] perf: hisi: Fix use-after-free when register pmu fails Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 275/603] ARM: dts: renesas: blanche: Fix typo in GP_11_2 pin name Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 276/603] arm64: dts: qcom: sdm845: Fix PSCI power domain names Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 277/603] arm64: dts: qcom: sdm845: cheza doesnt support LMh node Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 278/603] arm64: dts: qcom: sc7280: link usb3_phy_wrapper_gcc_usb30_pipe_clk Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 279/603] arm64: dts: qcom: msm8916: Fix iommu local address range Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 280/603] arm64: dts: qcom: msm8992-libra: drop duplicated reserved memory Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 281/603] arm64: dts: qcom: sm6125: Pad APPS IOMMU address to 8 characters Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 282/603] arm64: dts: qcom: sc7280: Add missing LMH interrupts Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 283/603] arm64: dts: qcom: qrb2210-rb1: Swap UART index Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 284/603] arm64: dts: qcom: qrb2210-rb1: Fix regulators Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 285/603] arm64: dts: qcom: sdm670: Fix pdc mapping Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 286/603] arm64: dts: qcom: sc7280: drop incorrect EUD port on SoC side Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 287/603] arm64: dts: qcom: sm8150: add ref clock to PCIe PHYs Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 288/603] arm64: dts: qcom: sm8350: fix pinctrl for UART18 Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 289/603] arm64: dts: qcom: sdm845-mtp: fix WiFi configuration Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 290/603] arm64: dts: qcom: sdx75-idp: align RPMh regulator nodes with bindings Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 291/603] ARM64: dts: marvell: cn9310: Use appropriate label for spi1 pins Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 292/603] arm64: dts: qcom: msm8976: Fix ipc bit shifts Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 293/603] arm64: dts: qcom: msm8939: Fix iommu local address range Greg Kroah-Hartman
2023-11-15 19:13 ` [PATCH 6.6 294/603] riscv: dts: allwinner: remove address-cells from intc node Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 295/603] arm64: dts: qcom: apq8016-sbc: Add missing ADV7533 regulators Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 296/603] ARM: dts: qcom: apq8026-samsung-matisse-wifi: Fix inverted hall sensor Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 297/603] ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 298/603] soc: qcom: llcc: Handle a second device without data corruption Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 299/603] kunit: Fix missed memory release in kunit_free_suite_set() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 300/603] kunit: Fix the wrong kfree of copy for kunit_filter_suites() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 301/603] kunit: Fix possible memory leak in kunit_filter_suites() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 302/603] kunit: test: Fix the possible memory leak in executor_test Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 303/603] ARM: dts: stm32: stm32f7-pinctrl: dont use multiple blank lines Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 304/603] firmware: ti_sci: Mark driver as non removable Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 305/603] arm64: dts: ti: k3-j721s2-evm-gesi: Specify base dtb for overlay file Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 306/603] arm64: dts: ti: verdin-am62: disable MIPI DSI bridge Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 307/603] arm64: dts: ti: k3-am625-beagleplay: Fix typo in ramoops reg Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 308/603] arm64: dts: ti: k3-am62a7-sk: Drop i2c-1 to 100Khz Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 309/603] arm64: dts: ti: Fix HDMI Audio overlay in Makefile Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 310/603] firmware: arm_ffa: Assign the missing IDR allocation ID to the FFA device Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 311/603] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 312/603] ARM: dts: am3517-evm: Fix LED3/4 pinmux Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 313/603] clk: scmi: Free scmi_clk allocated when the clocks with invalid info are skipped Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 314/603] arm64: dts: imx8qm-ss-img: Fix jpegenc compatible entry Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 315/603] arm64: dts: imx8mp-debix-model-a: Remove USB hub reset-gpios Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 316/603] arm64: dts: imx8mm: Add sound-dai-cells to micfil node Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 317/603] arm64: dts: imx8mn: " Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 318/603] arm64: tegra: Fix P3767 card detect polarity Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 319/603] arm64: tegra: Fix P3767 QSPI speed Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 320/603] firmware: tegra: Add suspend hook and reset BPMP IPC early on resume Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 321/603] memory: tegra: Set BPMP msg flags to reset IPC channels Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 322/603] arm64: tegra: Use correct interrupts for Tegra234 TKE Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 323/603] selftests/pidfd: Fix ksft print formats Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 324/603] selftests/resctrl: Ensure the benchmark commands fits to its array Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 325/603] soc: qcom: pmic_glink: fix connector type to be DisplayPort Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 326/603] ARM: dts: BCM5301X: Explicitly disable unused switch CPU ports Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 327/603] iommufd: Add iopt_area_alloc() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 328/603] module/decompress: use vmalloc() for gzip decompression workspace Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 329/603] ASoC: cs35l41: Handle mdsync_down reg write errors Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 330/603] ASoC: cs35l41: Handle mdsync_up " Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 331/603] ASoC: cs35l41: Initialize completion object before requesting IRQ Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 332/603] ASoC: cs35l41: Fix broken shared boost activation Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 333/603] ASoC: cs35l41: Verify PM runtime resume errors in IRQ handler Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 334/603] ASoC: cs35l41: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 335/603] ALSA: hda: cs35l41: Fix unbalanced pm_runtime_get() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 336/603] ALSA: hda: cs35l41: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 337/603] KEYS: Include linux/errno.h in linux/verification.h Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 338/603] crypto: ccp - Get a free page to use while fetching initial nonce Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 339/603] crypto: ccp - Fix ioctl unit tests Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 340/603] crypto: ccp - Fix DBC sample application error handling Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 341/603] crypto: ccp - Fix sample application signature passing Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 342/603] crypto: ccp - Fix some unfused tests Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 343/603] crypto: hisilicon/hpre - Fix a erroneous check after snprintf() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 344/603] hwrng: bcm2835 - Fix hwrng throughput regression Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 345/603] hwrng: geode - fix accessing registers Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 346/603] RDMA/core: Use size_{add,sub,mul}() in calls to struct_size() Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 347/603] crypto: qat - fix state machines cleanup paths Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 348/603] crypto: qat - ignore subsequent state up commands Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 349/603] crypto: qat - fix unregistration of crypto algorithms Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 350/603] crypto: qat - fix unregistration of compression algorithms Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 351/603] scsi: ibmvfc: Fix erroneous use of rtas_busy_delay with hcall return code Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 352/603] ASoC: soc-pcm.c: Make sure DAI parameters cleared if the DAI becomes inactive Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 353/603] libnvdimm/of_pmem: Use devm_kstrdup instead of kstrdup and check its return value Greg Kroah-Hartman
2023-11-15 19:14 ` [PATCH 6.6 354/603] nd_btt: Make BTT lanes preemptible Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 355/603] crypto: caam/qi2 - fix Chacha20 + Poly1305 self test failure Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 356/603] crypto: caam/jr " Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 357/603] crypto: qat - increase size of buffers Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 358/603] ASoC: SOF: ipc4-topology: Use size_add() in call to struct_size() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 359/603] PCI: vmd: Correct PCI Header Type Registers multi-function check Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 360/603] hid: cp2112: Fix duplicate workqueue initialization Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 361/603] crypto: hisilicon/qm - fix PF queue parameter issue Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 362/603] ARM: 9321/1: memset: cast the constant byte to unsigned char Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 363/603] ARM: 9323/1: mm: Fix ARCH_LOW_ADDRESS_LIMIT when CONFIG_ZONE_DMA Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 364/603] ext4: add missing initialization of call_notify_error in update_super_work() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 365/603] ext4: move ix sanity check to corrent position Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 366/603] kselftest: vm: fix mdwes mmap_FIXED test case Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 367/603] ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not described Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 368/603] backlight: pwm_bl: Disable PWM on shutdown, suspend and remove Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 369/603] ASoC: Intel: sof_sdw_rt_sdca_jack_common: add rt713 support Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 370/603] ASoC: fsl-asoc-card: Add comment for mclk in the codec_priv Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 371/603] fs: dlm: Fix the size of a buffer in dlm_create_debug_file() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 372/603] dlm: fix creating multiple node structures Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 373/603] dlm: fix remove member after close call Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 374/603] dlm: be sure we reset all nodes at forced shutdown Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 375/603] dlm: fix no ack after final message Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 376/603] IB/mlx5: Fix rdma counter binding for RAW QP Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 377/603] RDMA/hns: Fix printing level of asynchronous events Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 378/603] RDMA/hns: Fix uninitialized ucmd in hns_roce_create_qp_common() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 379/603] RDMA/hns: Fix signed-unsigned mixed comparisons Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 380/603] RDMA/hns: Add check for SL Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 381/603] RDMA/hns: The UD mode can only be configured with DCQCN Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 382/603] RDMA/hns: Fix unnecessary port_num transition in HW stats allocation Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 383/603] RDMA/hns: Fix init failure of RoCE VF and HIP08 Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 384/603] ASoC: SOF: core: Ensure sof_ops_free() is still called when probe never ran Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 385/603] ASoC: intel: sof_sdw: Stop processing CODECs when enough are found Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 386/603] ASoC: fsl: Fix PM disable depth imbalance in fsl_easrc_probe Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 387/603] scsi: ufs: core: Leave space for \0 in utf8 desc string Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 388/603] RDMA/hfi1: Workaround truncation compilation error Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 389/603] hid: cp2112: Fix IRQ shutdown stopping polling for all IRQs on chip Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 390/603] HID: uclogic: Fix user-memory-access bug in uclogic_params_ugee_v2_init_event_hooks() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 391/603] HID: uclogic: Fix a work->entry not empty bug in __queue_work() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 392/603] sh: bios: Revive earlyprintk support Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 393/603] HID: logitech-hidpp: Dont restart IO, instead defer hid_connect() only Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 394/603] HID: logitech-hidpp: Revert "Dont restart communication if not necessary" Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 395/603] HID: logitech-hidpp: Move get_wireless_feature_index() check to hidpp_connect_event() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 396/603] ASoC: Intel: Skylake: Fix mem leak when parsing UUIDs fails Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 397/603] PCI: endpoint: Fix double free in __pci_epc_create() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 398/603] padata: Fix refcnt handling in padata_free_shell() Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 399/603] certs: Break circular dependency when selftest is modular Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 400/603] crypto: qat - consolidate services structure Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 401/603] crypto: qat - enable dc chaining service Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 402/603] crypto: qat - refactor fw config related functions Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 403/603] crypto: qat - use masks for AE groups Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 404/603] crypto: qat - fix ring to service map for QAT GEN4 Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 405/603] crypto: qat - fix deadlock in backlog processing Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 406/603] ASoC: ams-delta.c: use component after check Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 407/603] erofs: fix erofs_insert_workgroup() lockref usage Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 408/603] IB/mlx5: Fix init stage error handling to avoid double free of same QP and UAF Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 409/603] mfd: core: Un-constify mfd_cell.of_reg Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 410/603] mfd: core: Ensure disabled devices are skipped without aborting Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 411/603] mfd: dln2: Fix double put in dln2_probe Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 412/603] dt-bindings: mfd: mt6397: Split out compatible for MediaTek MT6366 PMIC Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 413/603] mfd: arizona-spi: Set pdata.hpdet_channel for ACPI enumerated devs Greg Kroah-Hartman
2023-11-15 19:15 ` [PATCH 6.6 414/603] leds: turris-omnia: Do not use SMBUS calls Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 415/603] leds: pwm: Dont disable the PWM when the LED should be off Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 416/603] leds: trigger: ledtrig-cpu:: Fix output may be truncated issue for cpu Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 417/603] scripts/gdb: fix usage of MOD_TEXT not defined when CONFIG_MODULES=n Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 418/603] apparmor: fix invalid reference on profile->disconnected Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 419/603] perf stat: Fix aggr mode initialization Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 420/603] iio: frequency: adf4350: Use device managed functions and fix power down issue Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 421/603] pinctrl: baytrail: fix debounce disable case Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 422/603] perf kwork: Fix incorrect and missing free atom in work_push_atom() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 423/603] perf kwork: Add the supported subcommands to the document Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 424/603] perf kwork: Set ordered_events to true in struct perf_tool Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 425/603] f2fs: compress: fix deadloop in f2fs_write_cache_pages() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 426/603] f2fs: compress: fix to avoid use-after-free on dic Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 427/603] f2fs: compress: fix to avoid redundant compress extension Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 428/603] f2fs: fix to drop meta_inodes page cache in f2fs_put_super() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 429/603] tty: tty_jobctrl: fix pid memleak in disassociate_ctty() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 430/603] perf parse-events: Fix tracepoint name memory leak Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 431/603] livepatch: Fix missing newline character in klp_resolve_symbols() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 432/603] pinctrl: renesas: rzg2l: Make reverse order of enable() for disable() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 433/603] perf vendor events arm64: Fix for AmpereOne metrics Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 434/603] perf record: Fix BTF type checks in the off-cpu profiling Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 435/603] dmaengine: idxd: Register dsa_bus_type before registering idxd sub-drivers Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 436/603] usb: dwc2: fix possible NULL pointer dereference caused by driver concurrency Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 437/603] usb: chipidea: Fix DMA overwrite for Tegra Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 438/603] usb: chipidea: Simplify Tegra DMA alignment code Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 439/603] dmaengine: ti: edma: handle irq_of_parse_and_map() errors Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 440/603] tools/perf: Update call stack check in builtin-lock.c Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 441/603] misc: st_core: Do not call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 442/603] debugfs: Fix __rcu type comparison warning Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 443/603] tools: iio: iio_generic_buffer ensure alignment Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 444/603] USB: usbip: fix stub_dev hub disconnect Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 445/603] dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 446/603] f2fs: fix to initialize map.m_pblk in f2fs_precache_extents() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 447/603] interconnect: qcom: qdu1000: Set ACV enable_mask Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 448/603] interconnect: qcom: sc7180: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 449/603] interconnect: qcom: sc7280: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 450/603] interconnect: qcom: sc8180x: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 451/603] interconnect: qcom: sc8280xp: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 452/603] interconnect: qcom: sdm670: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 453/603] interconnect: qcom: sdm845: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 454/603] interconnect: qcom: sm6350: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 455/603] interconnect: qcom: sm8150: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 456/603] interconnect: qcom: sm8250: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 457/603] interconnect: qcom: sm8350: " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 458/603] interconnect: qcom: osm-l3: Replace custom implementation of COUNT_ARGS() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 459/603] powerpc: Only define __parse_fpscr() when required Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 460/603] interconnect: fix error handling in qnoc_probe() Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 461/603] perf build: Add missing comment about NO_LIBTRACEEVENT=1 Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 462/603] perf parse-events: Fix for term values that are raw events Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 463/603] perf mem-events: Avoid uninitialized read Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 464/603] s390/ap: re-init AP queues on config on Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 465/603] modpost: fix tee MODULE_DEVICE_TABLE built on big-endian host Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 466/603] modpost: fix ishtp " Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 467/603] perf tools: Do not ignore the default vmlinux.h Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 468/603] powerpc/40x: Remove stale PTE_ATOMIC_UPDATES macro Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 469/603] powerpc/xive: Fix endian conversion size Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 470/603] powerpc: Hide empty pt_regs at base of the stack Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 471/603] perf trace: Use the right bpf_probe_read(_str) variant for reading user data Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 472/603] powerpc/vas: Limit open window failure messages in log bufffer Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 473/603] powerpc/imc-pmu: Use the correct spinlock initializer Greg Kroah-Hartman
2023-11-15 19:16 ` [PATCH 6.6 474/603] powerpc/pseries: fix potential memory leak in init_cpu_associativity() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 475/603] perf vendor events: Update PMC used in PM_RUN_INST_CMPL event for power10 platform Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 476/603] xhci: Loosen RPM as default policy to cover for AMD xHC 1.1 Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 477/603] usb: host: xhci-plat: fix possible kernel oops while resuming Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 478/603] powerpc/vmcore: Add MMU information to vmcoreinfo Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 479/603] perf machine: Avoid out of bounds LBR memory read Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 480/603] libperf rc_check: Make implicit enabling work for GCC Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 481/603] perf hist: Add missing puts to hist__account_cycles Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 482/603] perf vendor events intel: Fix broadwellde tma_info_system_dram_bw_use metric Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 483/603] perf vendor events intel: Add broadwellde two metrics Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 484/603] 9p/net: fix possible memory leak in p9_check_errors() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 485/603] rtla: Fix uninitialized variable found Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 486/603] i3c: Fix potential refcount leak in i3c_master_register_new_i3c_devs Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 487/603] rtc: brcmstb-waketimer: support level alarm_irq Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 488/603] cxl/pci: Remove unnecessary device reference management in sanitize work Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 489/603] cxl/pci: Cleanup sanitize to always poll Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 490/603] cxl/pci: Remove inconsistent usage of dev_err_probe() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 491/603] cxl/pci: Clarify devm host for memdev relative setup Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 492/603] cxl/pci: Fix sanitize notifier setup Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 493/603] cxl/memdev: Fix sanitize vs decoder setup locking Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 494/603] cxl/mem: Fix shutdown order Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 495/603] virt: sevguest: Fix passing a stack buffer as a scatterlist target Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 496/603] rtc: pcf85363: fix wrong mask/val parameters in regmap_update_bits call Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 497/603] cxl/region: Prepare the decoder match range helper for reuse Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 498/603] cxl/region: Calculate a target position in a region interleave Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 499/603] cxl/region: Use cxl_calc_interleave_pos() for auto-discovery Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 500/603] cxl/region: Fix cxl_region_rwsem lock held when returning to user space Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 501/603] cxl/core/regs: Rename @dev to @host in struct cxl_register_map Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 502/603] cxl/port: Fix @host confusion in cxl_dport_setup_regs() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 503/603] cxl/hdm: Remove broken error path Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 504/603] pcmcia: cs: fix possible hung task and memory leak pccardd() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 505/603] pcmcia: ds: fix refcount leak in pcmcia_device_add() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 506/603] pcmcia: ds: fix possible name leak in error path " Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 507/603] media: imx-jpeg: initiate a drain of the capture queue in dynamic resolution change Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 508/603] media: hantro: Check whether reset op is defined before use Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 509/603] media: verisilicon: Do not enable G2 postproc downscale if source is narrower than destination Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 510/603] media: ov13b10: Fix some error checking in probe Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 511/603] media: ov5640: fix vblank unchange issue when work at dvp mode Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 512/603] media: i2c: max9286: Fix some redundant of_node_put() calls Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 513/603] media: ov5640: Fix a memory leak when ov5640_probe fails Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 514/603] media: bttv: fix use after free error due to btv->timeout timer Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 515/603] media: amphion: handle firmware debug message Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 516/603] media: mtk-jpegenc: Fix bug in JPEG encode quality selection Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 517/603] media: s3c-camif: Avoid inappropriate kfree() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 518/603] media: vidtv: psi: Add check for kstrdup Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 519/603] media: vidtv: mux: Add check and kfree " Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 520/603] media: cedrus: Fix clock/reset sequence Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 521/603] media: i2c: imx219: Convert to CCI register access helpers Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 522/603] media: i2c: imx219: Replace register addresses with macros Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 523/603] media: i2c: imx219: Drop IMX219_REG_CSI_LANE_MODE from common regs array Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 524/603] media: cadence: csi2rx: Unregister v4l2 async notifier Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 525/603] media: dvb-usb-v2: af9035: fix missing unlock Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 526/603] media: verisilicon: Fixes clock list for rk3588 av1 decoder Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 527/603] media: mediatek: vcodec: Handle invalid encoder vsi Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 528/603] media: imx-jpeg: notify source chagne event when the first picture parsed Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 529/603] media: mediatek: vcodec: using encoder device to alloc/free encoder memory Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 530/603] media: platform: mtk-mdp3: fix uninitialized variable in mdp_path_config() Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 531/603] media: cec: meson: always include meson sub-directory in Makefile Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 532/603] cpupower: fix reference to nonexistent document Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 533/603] regmap: prevent noinc writes from clobbering cache Greg Kroah-Hartman
2023-11-15 19:17 ` [PATCH 6.6 534/603] drm/amdgpu/gfx10,11: use memcpy_to/fromio for MQDs Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 535/603] drm/amdgpu: dont put MQDs in VRAM on ARM | ARM64 Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 536/603] pwm: sti: Reduce number of allocations and drop usage of chip_data Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 537/603] pwm: brcmstb: Utilize appropriate clock APIs in suspend/resume Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 538/603] Input: synaptics-rmi4 - fix use after free in rmi_unregister_function() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 539/603] watchdog: marvell_gti_wdt: Fix error code in probe() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 540/603] watchdog: ixp4xx: Make sure restart always works Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 541/603] llc: verify mac len before reading mac header Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 542/603] hsr: Prevent use after free in prp_create_tagged_frame() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 543/603] tipc: Change nla_policy for bearer-related names to NLA_NUL_STRING Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 544/603] rxrpc: Fix two connection reaping bugs Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 545/603] bpf: Check map->usercnt after timer->timer is assigned Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 546/603] inet: shrink struct flowi_common Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 547/603] octeontx2-pf: Fix error codes Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 548/603] octeontx2-pf: Fix holes in error code Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 549/603] net: page_pool: add missing free_percpu when page_pool_init fail Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 550/603] dccp: Call security_inet_conn_request() after setting IPv4 addresses Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 551/603] dccp/tcp: Call security_inet_conn_request() after setting IPv6 addresses Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 552/603] net: r8169: Disable multicast filter for RTL8168H and RTL8107E Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 553/603] Fix termination state for idr_for_each_entry_ul() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 554/603] net: stmmac: xgmac: Enable support for multiple Flexible PPS outputs Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 555/603] selftests: pmtu.sh: fix result checking Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 556/603] octeontx2-pf: Free pending and dropped SQEs Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 557/603] net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 558/603] net/smc: allow cdc msg send rather than drop it with NULL sndbuf_desc Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 559/603] net/smc: put sk reference if close work was canceled Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 560/603] nvme: fix error-handling for io_uring nvme-passthrough Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 561/603] riscv: boot: Fix creation of loader.bin Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 562/603] ice: Fix SRIOV LAG disable on non-compliant aggregate Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 563/603] ice: lag: in RCU, use atomic allocation Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 564/603] ice: Fix VF-VF filter rules in switchdev mode Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 565/603] ice: Fix VF-VF direction matching in drop rule in switchdev Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 566/603] tg3: power down device only on SYSTEM_POWER_OFF Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 567/603] nbd: fix uaf in nbd_open Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 568/603] blk-core: use pr_warn_ratelimited() in bio_check_ro() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 569/603] vsock/virtio: remove socket from connected/bound list on shutdown Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 570/603] r8169: respect userspace disabling IFF_MULTICAST Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 571/603] virtio/vsock: Fix uninit-value in virtio_transport_recv_pkt() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 572/603] net: enetc: shorten enetc_setup_xdp_prog() error message to fit NETLINK_MAX_FMTMSG_LEN Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 573/603] i2c: iproc: handle invalid slave state Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 574/603] netfilter: xt_recent: fix (increase) ipv6 literal buffer length Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 575/603] netfilter: nat: fix ipv6 nat redirect with mapped and scoped addresses Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 576/603] net/sched: act_ct: Always fill offloading tuple iifidx Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 577/603] RISC-V: Dont fail in riscv_of_parent_hartid() for disabled HARTs Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 578/603] net: ti: icss-iep: fix setting counter value Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 579/603] drivers: perf: Do not broadcast to other cpus when starting a counter Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 580/603] module/decompress: use kvmalloc() consistently Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 581/603] fs: dlm: Simplify buffer size computation in dlm_create_debug_file() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 582/603] drm/vc4: tests: Fix UAF in the mock helpers Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 583/603] drm/syncobj: fix DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 584/603] ASoC: rt712-sdca: fix speaker route missing issue Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 585/603] ASoC: mediatek: mt8186_mt6366_rt1019_rt5682s: trivial: fix error messages Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 586/603] ASoC: hdmi-codec: register hpd callback on component probe Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 587/603] ASoC: dapm: fix clock get name Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 588/603] spi: spi-zynq-qspi: add spi-mem to driver kconfig dependencies Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 589/603] arm64/arm: arm_pmuv3: perf: Dont truncate 64-bit registers Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 590/603] fbdev: imsttfb: fix double free in probe() Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 591/603] fbdev: imsttfb: fix a resource leak in probe Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 592/603] ALSA: hda/realtek: Add support dual speaker for Dell Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 593/603] fbdev: fsl-diu-fb: mark wr_reg_wa() static Greg Kroah-Hartman
2023-11-15 19:18 ` [PATCH 6.6 594/603] tracing/kprobes: Fix the order of argument descriptions Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 595/603] eventfs: Check for NULL ef in eventfs_set_attr() Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 596/603] selftests: mptcp: run userspace pm tests slower Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 597/603] selftests: mptcp: fix wait_rm_addr/sf parameters Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 598/603] io_uring/net: ensure socket is marked connected on connect retry Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 599/603] x86/amd_nb: Use Family 19h Models 60h-7Fh Function 4 IDs Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 600/603] Revert "PCI/ASPM: Disable only ASPM_STATE_L1 when driver, disables L1" Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 601/603] Revert "mmc: core: Capture correct oemid-bits for eMMC cards" Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 602/603] btrfs: use u64 for buffer sizes in the tree search ioctls Greg Kroah-Hartman
2023-11-15 19:19 ` [PATCH 6.6 603/603] btrfs: make found_logical_ret parameter mandatory for function queue_scrub_stripe() Greg Kroah-Hartman
2023-11-15 22:33 ` [PATCH 6.6 000/603] 6.6.2-rc1 review SeongJae Park
2023-11-16  5:25 ` Bagas Sanjaya
2023-11-16  9:22 ` Ron Economos
2023-11-16 11:18 ` Takeshi Ogasawara
2023-11-16 14:23 ` Naresh Kamboju
2023-11-16 16:46 ` Allen Pais
2023-11-16 20:17 ` Florian Fainelli
2023-11-16 23:44 ` Guenter Roeck
2023-11-18  0:52 ` Rudi Heitbaum

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=20231115191621.050893217@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=mailhol.vincent@wanadoo.fr \
    --cc=mkl@pengutronix.de \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=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