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, Olga Kornievskaia <kolga@netapp.com>,
	Anna Schumaker <Anna.Schumaker@Netapp.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 009/259] NFSv4.1: fix pnfs MDS=DS session trunking
Date: Wed,  4 Oct 2023 19:53:02 +0200	[thread overview]
Message-ID: <20231004175217.872257372@linuxfoundation.org> (raw)
In-Reply-To: <20231004175217.404851126@linuxfoundation.org>

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

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

From: Olga Kornievskaia <kolga@netapp.com>

[ Upstream commit 806a3bc421a115fbb287c1efce63a48c54ee804b ]

Currently, when GETDEVICEINFO returns multiple locations where each
is a different IP but the server's identity is same as MDS, then
nfs4_set_ds_client() finds the existing nfs_client structure which
has the MDS's max_connect value (and if it's 1), then the 1st IP
on the DS's list will get dropped due to MDS trunking rules. Other
IPs would be added as they fall under the pnfs trunking rules.

For the list of IPs the 1st goes thru calling nfs4_set_ds_client()
which will eventually call nfs4_add_trunk() and call into
rpc_clnt_test_and_add_xprt() which has the check for MDS trunking.
The other IPs (after the 1st one), would call rpc_clnt_add_xprt()
which doesn't go thru that check.

nfs4_add_trunk() is called when MDS trunking is happening and it
needs to enforce the usage of max_connect mount option of the
1st mount. However, this shouldn't be applied to pnfs flow.

Instead, this patch proposed to treat MDS=DS as DS trunking and
make sure that MDS's max_connect limit does not apply to the
1st IP returned in the GETDEVICEINFO list. It does so by
marking the newly created client with a new flag NFS_CS_PNFS
which then used to pass max_connect value to use into the
rpc_clnt_test_and_add_xprt() instead of the existing rpc
client's max_connect value set by the MDS connection.

For example, mount was done without max_connect value set
so MDS's rpc client has cl_max_connect=1. Upon calling into
rpc_clnt_test_and_add_xprt() and using rpc client's value,
the caller passes in max_connect value which is previously
been set in the pnfs path (as a part of handling
GETDEVICEINFO list of IPs) in nfs4_set_ds_client().

However, when NFS_CS_PNFS flag is not set and we know we
are doing MDS trunking, comparing a new IP of the same
server, we then set the max_connect value to the
existing MDS's value and pass that into
rpc_clnt_test_and_add_xprt().

Fixes: dc48e0abee24 ("SUNRPC enforce creation of no more than max_connect xprts")
Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/nfs/nfs4client.c       |  6 +++++-
 include/linux/nfs_fs_sb.h |  1 +
 net/sunrpc/clnt.c         | 11 +++++++----
 3 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c
index d3e2b0867dc11..84b345efcec00 100644
--- a/fs/nfs/nfs4client.c
+++ b/fs/nfs/nfs4client.c
@@ -416,6 +416,8 @@ static void nfs4_add_trunk(struct nfs_client *clp, struct nfs_client *old)
 		.net = old->cl_net,
 		.servername = old->cl_hostname,
 	};
+	int max_connect = test_bit(NFS_CS_PNFS, &clp->cl_flags) ?
+		clp->cl_max_connect : old->cl_max_connect;
 
 	if (clp->cl_proto != old->cl_proto)
 		return;
@@ -429,7 +431,7 @@ static void nfs4_add_trunk(struct nfs_client *clp, struct nfs_client *old)
 	xprt_args.addrlen = clp_salen;
 
 	rpc_clnt_add_xprt(old->cl_rpcclient, &xprt_args,
-			  rpc_clnt_test_and_add_xprt, NULL);
+			  rpc_clnt_test_and_add_xprt, &max_connect);
 }
 
 /**
@@ -996,6 +998,8 @@ struct nfs_client *nfs4_set_ds_client(struct nfs_server *mds_srv,
 		__set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
 
 	__set_bit(NFS_CS_DS, &cl_init.init_flags);
+	__set_bit(NFS_CS_PNFS, &cl_init.init_flags);
+	cl_init.max_connect = NFS_MAX_TRANSPORTS;
 	/*
 	 * Set an authflavor equual to the MDS value. Use the MDS nfs_client
 	 * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h
index ea2f7e6b1b0b5..ef8ba5fbc6503 100644
--- a/include/linux/nfs_fs_sb.h
+++ b/include/linux/nfs_fs_sb.h
@@ -48,6 +48,7 @@ struct nfs_client {
 #define NFS_CS_NOPING		6		/* - don't ping on connect */
 #define NFS_CS_DS		7		/* - Server is a DS */
 #define NFS_CS_REUSEPORT	8		/* - reuse src port on reconnect */
+#define NFS_CS_PNFS		9		/* - Server used for pnfs */
 	struct sockaddr_storage	cl_addr;	/* server identifier */
 	size_t			cl_addrlen;
 	char *			cl_hostname;	/* hostname of server */
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index ff6728e41e044..b3f6f67ed2521 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -2890,19 +2890,22 @@ static const struct rpc_call_ops rpc_cb_add_xprt_call_ops = {
  * @clnt: pointer to struct rpc_clnt
  * @xps: pointer to struct rpc_xprt_switch,
  * @xprt: pointer struct rpc_xprt
- * @dummy: unused
+ * @in_max_connect: pointer to the max_connect value for the passed in xprt transport
  */
 int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt,
 		struct rpc_xprt_switch *xps, struct rpc_xprt *xprt,
-		void *dummy)
+		void *in_max_connect)
 {
 	struct rpc_cb_add_xprt_calldata *data;
 	struct rpc_task *task;
+	int max_connect = clnt->cl_max_connect;
 
-	if (xps->xps_nunique_destaddr_xprts + 1 > clnt->cl_max_connect) {
+	if (in_max_connect)
+		max_connect = *(int *)in_max_connect;
+	if (xps->xps_nunique_destaddr_xprts + 1 > max_connect) {
 		rcu_read_lock();
 		pr_warn("SUNRPC: reached max allowed number (%d) did not add "
-			"transport to server: %s\n", clnt->cl_max_connect,
+			"transport to server: %s\n", max_connect,
 			rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR));
 		rcu_read_unlock();
 		return -EINVAL;
-- 
2.40.1




  parent reply	other threads:[~2023-10-04 18:11 UTC|newest]

Thread overview: 284+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-04 17:52 [PATCH 6.1 000/259] 6.1.56-rc1 review Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 001/259] NFS: Fix error handling for O_DIRECT write scheduling Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 002/259] NFS: Fix O_DIRECT locking issues Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 003/259] NFS: More O_DIRECT accounting fixes for error paths Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 004/259] NFS: Use the correct commit info in nfs_join_page_group() Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 005/259] NFS: More fixes for nfs_direct_write_reschedule_io() Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 006/259] NFS/pNFS: Report EINVAL errors from connect() to the server Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 007/259] SUNRPC: Mark the cred for revalidation if the server rejects it Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 008/259] NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server Greg Kroah-Hartman
2023-10-04 17:53 ` Greg Kroah-Hartman [this message]
2023-10-04 17:53 ` [PATCH 6.1 010/259] media: v4l: Use correct dependency for camera sensor drivers Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 011/259] media: via: " Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 012/259] netfs: Only call folio_start_fscache() one time for each folio Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 013/259] perf build: Update build rule for generated files Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 014/259] dm: fix a race condition in retrieve_deps Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 015/259] btrfs: improve error message after failure to add delayed dir index item Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 016/259] btrfs: remove BUG() after failure to insert " Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 017/259] ext4: replace the traditional ternary conditional operator with with max()/min() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 018/259] ext4: move setting of trimmed bit into ext4_try_to_trim_range() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 019/259] ext4: do not let fstrim block system suspend Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 020/259] netfilter: nf_tables: dont skip expired elements during walk Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 021/259] netfilter: nf_tables: GC transaction API to avoid race with control plane Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 022/259] netfilter: nf_tables: adapt set backend to use GC transaction API Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 023/259] netfilter: nft_set_hash: mark set element as dead when deleting from packet path Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 024/259] netfilter: nf_tables: remove busy mark and gc batch API Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 025/259] netfilter: nf_tables: dont fail inserts if duplicate has expired Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 026/259] netfilter: nf_tables: fix GC transaction races with netns and netlink event exit path Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 027/259] netfilter: nf_tables: GC transaction race with netns dismantle Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 028/259] netfilter: nf_tables: GC transaction race with abort path Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 029/259] netfilter: nf_tables: use correct lock to protect gc_list Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 030/259] netfilter: nf_tables: defer gc run if previous batch is still pending Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 031/259] netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 032/259] netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 033/259] netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 034/259] netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation fails Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 035/259] netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 036/259] netfilter: nf_tables: fix memleak when more than 255 elements expired Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 037/259] ASoC: meson: spdifin: start hw on dai probe Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 038/259] netfilter: nf_tables: disallow element removal on anonymous sets Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 039/259] bpf: Avoid deadlock when using queue and stack maps from NMI Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 040/259] ASoC: rt5640: Revert "Fix sleep in atomic context" Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 041/259] ASoC: rt5640: Fix IRQ not being free-ed for HDA jack detect mode Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 042/259] ALSA: hda/realtek: Splitting the UX3402 into two separate models Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 043/259] netfilter: conntrack: fix extension size table Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 044/259] selftests: tls: swap the TX and RX sockets in some tests Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 045/259] net/core: Fix ETH_P_1588 flow dissector Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 046/259] ASoC: hdaudio.c: Add missing check for devm_kstrdup Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 047/259] ASoC: imx-audmix: Fix return error with devm_clk_get() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 048/259] octeon_ep: fix tx dma unmap len values in SG Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 049/259] iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 050/259] ASoC: SOF: core: Only call sof_ops_free() on remove if the probe was successful Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 051/259] iavf: add iavf_schedule_aq_request() helper Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 052/259] iavf: schedule a request immediately after add/delete vlan Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 053/259] i40e: Fix VF VLAN offloading when port VLAN is configured Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 054/259] netfilter, bpf: Adjust timeouts of non-confirmed CTs in bpf_ct_insert_entry() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 055/259] ionic: fix 16bit math issue when PAGE_SIZE >= 64KB Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 056/259] igc: Fix infinite initialization loop with early XDP redirect Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 057/259] ipv4: fix null-deref in ipv4_link_failure Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 058/259] scsi: iscsi_tcp: restrict to TCP sockets Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 059/259] powerpc/perf/hv-24x7: Update domain value check Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 060/259] dccp: fix dccp_v4_err()/dccp_v6_err() again Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 061/259] x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 062/259] net: hsr: Properly parse HSRv1 supervisor frames Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 063/259] platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 064/259] platform/x86: intel_scu_ipc: Check status upon timeout in ipc_wait_for_interrupt() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 065/259] platform/x86: intel_scu_ipc: Dont override scu in intel_scu_ipc_dev_simple_command() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 066/259] platform/x86: intel_scu_ipc: Fail IPC send if still busy Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 067/259] x86/srso: Fix srso_show_state() side effect Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 068/259] x86/srso: Fix SBPB enablement for spec_rstack_overflow=off Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 069/259] net: hns3: add cmdq check for vf periodic service task Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 070/259] net: hns3: fix GRE checksum offload issue Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 071/259] net: hns3: only enable unicast promisc when mac table full Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 072/259] net: hns3: fix fail to delete tc flower rules during reset issue Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 073/259] net: hns3: add 5ms delay before clear firmware reset irq source Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 074/259] net: bridge: use DEV_STATS_INC() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 075/259] team: fix null-ptr-deref when team device type is changed Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 076/259] net: rds: Fix possible NULL-pointer dereference Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 077/259] netfilter: nf_tables: disable toggling dormant table state more than once Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 078/259] netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 079/259] i915/pmu: Move execlist stats initialization to execlist specific setup Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 080/259] locking/seqlock: Do the lockdep annotation before locking in do_write_seqcount_begin_nested() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 081/259] net: ena: Flush XDP packets on error Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 082/259] bnxt_en: Flush XDP for bnxt_poll_nitroa0()s NAPI Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 083/259] octeontx2-pf: Do xdp_do_flush() after redirects Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 084/259] igc: Expose tx-usecs coalesce setting to user Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 085/259] proc: nommu: /proc/<pid>/maps: release mmap read lock Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 086/259] proc: nommu: fix empty /proc/<pid>/maps Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 087/259] cifs: Fix UAF in cifs_demultiplex_thread() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 088/259] gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 089/259] i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 090/259] i2c: mux: gpio: Add missing fwnode_handle_put() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 091/259] i2c: xiic: Correct return value check for xiic_reinit() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 092/259] ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 093/259] ARM: dts: samsung: exynos4210-i9100: Fix LCD screens physical size Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 094/259] ARM: dts: qcom: msm8974pro-castor: correct inverted X of touchscreen Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 095/259] ARM: dts: qcom: msm8974pro-castor: correct touchscreen function names Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 096/259] ARM: dts: qcom: msm8974pro-castor: correct touchscreen syna,nosleep-mode Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 097/259] f2fs: optimize iteration over sparse directories Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 098/259] f2fs: get out of a repeat loop when getting a locked data page Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 099/259] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_CLR2SECK2 IOCTL Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 100/259] arm64: dts: qcom: sdm845-db845c: Mark cont splash memory region as reserved Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 101/259] wifi: ath11k: fix tx status reporting in encap offload mode Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 102/259] wifi: ath11k: Cleanup mac80211 references on failure during tx_complete Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 103/259] scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 104/259] scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 105/259] drm/amdkfd: Flush TLB after unmapping for GFX v9.4.3 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 106/259] drm/amdkfd: Insert missing TLB flush on GFX10 and later Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 107/259] btrfs: reset destination buffer when read_extent_buffer() gets invalid range Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 108/259] vfio/mdev: Fix a null-ptr-deref bug for mdev_unregister_parent() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 109/259] MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 110/259] spi: spi-gxp: BUG: Correct spi write return value Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 111/259] drm/bridge: ti-sn65dsi83: Do not generate HFP/HBP/HSA and EOT packet Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 112/259] bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 113/259] bus: ti-sysc: Fix missing AM35xx SoC matching Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 114/259] firmware: arm_scmi: Harden perf domain info access Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 115/259] firmware: arm_scmi: Fixup perf power-cost/microwatt support Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 116/259] power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 117/259] clk: sprd: Fix thm_parents incorrect configuration Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 118/259] clk: tegra: fix error return case for recalc_rate Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 119/259] ARM: dts: omap: correct indentation Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 120/259] ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 121/259] ARM: dts: Unify pwm-omap-dmtimer node names Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 122/259] ARM: dts: Unify pinctrl-single pin group nodes for omap4 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 123/259] ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 124/259] bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 125/259] power: supply: ucs1002: fix error code in ucs1002_get_property() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 126/259] firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 127/259] xtensa: add default definition for XCHAL_HAVE_DIV32 Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 128/259] xtensa: iss/network: make functions static Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 129/259] xtensa: boot: dont add include-dirs Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 130/259] xtensa: umulsidi3: fix conditional expression Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 131/259] xtensa: boot/lib: fix function prototypes Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 132/259] power: supply: rk817: Fix node refcount leak Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 133/259] selftests/powerpc: Use CLEAN macro to fix make warning Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 134/259] selftests/powerpc: Pass make context to children Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 135/259] selftests/powerpc: Fix emit_tests to work with run_kselftest.sh Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 136/259] soc: imx8m: Enable OCOTP clock for imx8mm before reading registers Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 137/259] arm64: dts: imx: Add imx8mm-prt8mm.dtb to build Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 138/259] firmware: arm_ffa: Dont set the memory region attributes for MEM_LEND Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 139/259] gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 140/259] i2c: npcm7xx: Fix callback completion ordering Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 141/259] x86/reboot: VMCLEAR active VMCSes before emergency reboot Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 142/259] ceph: drop messages from MDS when unmounting Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 143/259] dma-debug: dont call __dma_entry_alloc_check_leak() under free_entries_lock Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 144/259] bpf: Annotate bpf_long_memcpy with data_race Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 145/259] spi: sun6i: reduce DMA RX transfer width to single byte Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 146/259] spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 147/259] nvme-fc: Prevent null pointer dereference in nvme_fc_io_getuuid() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 148/259] parisc: sba: Fix compile warning wrt list of SBA devices Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 149/259] parisc: iosapic.c: Fix sparse warnings Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 150/259] parisc: drivers: Fix sparse warning Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 151/259] parisc: irq: Make irq_stack_union static to avoid " Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 152/259] scsi: qedf: Add synchronization between I/O completions and abort Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 153/259] scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 154/259] scsi: ufs: core: Poll HCS.UCRDY before issuing a UIC command Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 155/259] selftests/ftrace: Correctly enable event in instance-event.tc Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 156/259] ring-buffer: Avoid softlockup in ring_buffer_resize() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 157/259] btrfs: assert delayed node locked when removing delayed item Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 158/259] selftests: fix dependency checker script Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 159/259] ring-buffer: Do not attempt to read past "commit" Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 160/259] net/smc: bugfix for smcr v2 server connect success statistic Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 161/259] ata: sata_mv: Fix incorrect string length computation in mv_dump_mem() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 162/259] platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 163/259] platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 164/259] thermal/of: add missing of_node_put() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 165/259] drm/amd/display: Dont check registers, if using AUX BL control Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 166/259] drm/amdgpu/soc21: dont remap HDP registers for SR-IOV Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 167/259] drm/amdgpu/nbio4.3: set proper rmmio_remap.reg_offset " Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 168/259] drm/amdgpu: Handle null atom context in VBIOS info ioctl Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 169/259] riscv: errata: fix T-Head dcache.cva encoding Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 170/259] scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 171/259] scsi: pm80xx: Avoid leaking tags when processing OPC_INB_SET_CONTROLLER_CONFIG command Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 172/259] smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 173/259] ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 174/259] spi: nxp-fspi: reset the FLSHxCR1 registers Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 175/259] spi: stm32: add a delay before SPI disable Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 176/259] ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 177/259] spi: intel-pci: Add support for Granite Rapids SPI serial flash Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 178/259] bpf: Ensure unit_size is matched with slab cache object size Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 179/259] bpf: Clarify error expectations from bpf_clone_redirect Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 180/259] ALSA: hda: intel-sdw-acpi: Use u8 type for link index Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 181/259] ASoC: cs42l42: Ensure a reset pulse meets minimum pulse width Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 182/259] ASoC: cs42l42: Dont rely on GPIOD_OUT_LOW to set RESET initially low Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 183/259] firmware: cirrus: cs_dsp: Only log list of algorithms in debug build Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 184/259] memblock tests: fix warning: "__ALIGN_KERNEL" redefined Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 185/259] =?UTF-8?q?memblock=20tests:=20fix=20warning=20=E2=80=98struct=20s?= =?UTF-8?q?eq=5Ffile=E2=80=99=20declared=20inside=20parameter=20list?= Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 186/259] ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 187/259] media: vb2: frame_vector.c: replace WARN_ONCE with a comment Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 188/259] NFSv4.1: fix zero value filehandle in post open getattr Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 189/259] ASoC: SOF: Intel: MTL: Reduce the DSP init timeout Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 190/259] powerpc/watchpoints: Disable preemption in thread_change_pc() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 191/259] powerpc/watchpoint: Disable pagefaults when getting user instruction Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 192/259] powerpc/watchpoints: Annotate atomic context in more places Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 193/259] ncsi: Propagate carrier gain/loss events to the NCSI controller Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 194/259] net: hsr: Add __packed to struct hsr_sup_tlv Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 195/259] tsnep: Fix NAPI scheduling Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 196/259] tsnep: Fix NAPI polling with budget 0 Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 197/259] LoongArch: Set all reserved memblocks on Node#0 at initialization Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 198/259] fbdev/sh7760fb: Depend on FB=y Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 199/259] perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 200/259] nvme-pci: factor the iod mempool creation into a helper Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 201/259] nvme-pci: factor out a nvme_pci_alloc_dev helper Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 202/259] nvme-pci: do not set the NUMA node of device if it has none Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 203/259] wifi: ath11k: Dont drop tx_status when peer cannot be found Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 204/259] scsi: qla2xxx: Fix NULL pointer dereference in target mode Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 205/259] nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 206/259] smack: Record transmuting in smk_transmuted Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 207/259] smack: Retrieve transmuting information in smack_inode_getsecurity() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 208/259] iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 209/259] x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 210/259] x86/srso: Add SRSO mitigation for Hygon processors Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 211/259] KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 212/259] KVM: SVM: Fix TSC_AUX virtualization setup Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 213/259] KVM: x86/mmu: Open code leaf invalidation from mmu_notifier Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 214/259] KVM: x86/mmu: Do not filter address spaces in for_each_tdp_mmu_root_yield_safe() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 215/259] mptcp: fix bogus receive window shrinkage with multiple subflows Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 216/259] misc: rtsx: Fix some platforms can not boot and move the l1ss judgment to probe Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 217/259] Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 218/259] serial: 8250_port: Check IRQ data before use Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 219/259] nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 220/259] netfilter: nf_tables: disallow rule removal from chain binding Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 221/259] ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre M70q Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 222/259] LoongArch: Define relocation types for ABI v2.10 Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 223/259] LoongArch: numa: Fix high_memory calculation Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 224/259] ata: libata-scsi: link ata port and scsi device Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 225/259] ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 226/259] io_uring/fs: remove sqe->rw_flags checking from LINKAT Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 227/259] i2c: i801: unregister tco_pdev in i801_probe() error path Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 228/259] ASoC: amd: yc: Fix non-functional mic on Lenovo 82QF and 82UG Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 229/259] kernel/sched: Modify initial boot task idle setup Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 230/259] sched/rt: Fix live lock between select_fallback_rq() and RT push Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 231/259] netfilter: nf_tables: fix kdoc warnings after gc rework Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 232/259] Revert "SUNRPC dont update timeout value on connection reset" Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 233/259] timers: Tag (hr)timer softirq as hotplug safe Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 234/259] drm/tests: Fix incorrect argument in drm_test_mm_insert_range Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 235/259] arm64: defconfig: remove CONFIG_COMMON_CLK_NPCM8XX=y Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 236/259] mm/damon/vaddr-test: fix memory leak in damon_do_test_apply_three_regions() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 237/259] mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 238/259] mm: memcontrol: fix GFP_NOFS recursion in memory.high enforcement Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 239/259] ring-buffer: Update "shortest_full" in polling Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 240/259] btrfs: properly report 0 avail for very full file systems Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 241/259] media: uvcvideo: Fix OOB read Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 242/259] bpf: Add override check to kprobe multi link attach Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 243/259] bpf: Fix BTF_ID symbol generation collision Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 244/259] bpf: Fix BTF_ID symbol generation collision in tools/ Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 245/259] net: thunderbolt: Fix TCPv6 GSO checksum calculation Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 246/259] fs/smb/client: Reset password pointer to NULL Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 247/259] ata: libata-core: Fix ata_port_request_pm() locking Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 248/259] ata: libata-core: Fix port and device removal Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 249/259] ata: libata-core: Do not register PM operations for SAS ports Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 250/259] ata: libata-sata: increase PMP SRST timeout to 10s Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 251/259] drm/i915/gt: Fix reservation address in ggtt_reserve_guc_top Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 252/259] power: supply: rk817: Add missing module alias Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 253/259] power: supply: ab8500: Set typing and props Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 254/259] fs: binfmt_elf_efpic: fix personality for ELF-FDPIC Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 255/259] drm/amdkfd: Use gpu_offset for user queues wptr Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 256/259] drm/meson: fix memory leak on ->hpd_notify callback Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 257/259] memcg: drop kmem.limit_in_bytes Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 258/259] mm, memcg: reconsider kmem.limit_in_bytes deprecation Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 259/259] ASoC: amd: yc: Fix a non-functional mic on Lenovo 82TL Greg Kroah-Hartman
2023-10-04 19:33 ` [PATCH 6.1 000/259] 6.1.56-rc1 review Florian Fainelli
2023-10-04 20:19   ` Namhyung Kim
2023-10-05  0:51     ` Florian Fainelli
2023-10-05  5:15       ` Namhyung Kim
2023-10-06 10:12         ` Greg Kroah-Hartman
2023-10-05  0:17 ` Wang Yugui
2023-10-06 10:12   ` Greg Kroah-Hartman
2023-10-05  0:59 ` Shuah Khan
2023-10-05  1:32 ` SeongJae Park
2023-10-05  3:41 ` Bagas Sanjaya
2023-10-05 12:27 ` Pavel Machek
2023-10-06 12:55   ` Greg Kroah-Hartman
2023-10-05 13:57 ` Takeshi Ogasawara
2023-10-05 16:39 ` Naresh Kamboju
2023-10-05 17:24   ` Petr Vorel
2023-10-05 19:20     ` Naresh Kamboju
2023-10-06  6:41       ` Petr Vorel
2023-10-06 18:42   ` Daniel Díaz
2023-10-07  8:58     ` Greg Kroah-Hartman
2023-10-09 16:43       ` Naresh Kamboju
2023-10-05 18:40 ` Allen Pais
2023-10-05 22:17 ` Guenter Roeck
2023-10-06  7:30 ` Ron Economos
2023-10-06  9:32 ` Jon Hunter

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=20231004175217.872257372@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Anna.Schumaker@Netapp.com \
    --cc=kolga@netapp.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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