stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Olga Kornieskaia <kolga@netapp.com>,
	Jeff Layton <jlayton@kernel.org>,
	Chuck Lever <chuck.lever@oracle.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 549/770] nfsd: eliminate the NFSD_FILE_BREAK_* flags
Date: Tue, 18 Jun 2024 14:36:42 +0200	[thread overview]
Message-ID: <20240618123428.496245267@linuxfoundation.org> (raw)
In-Reply-To: <20240618123407.280171066@linuxfoundation.org>

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

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

From: Jeff Layton <jlayton@kernel.org>

[ Upstream commit 23ba98de6dcec665e15c0ca19244379bb0d30932 ]

We had a report from the spring Bake-a-thon of data corruption in some
nfstest_interop tests. Looking at the traces showed the NFS server
allowing a v3 WRITE to proceed while a read delegation was still
outstanding.

Currently, we only set NFSD_FILE_BREAK_* flags if
NFSD_MAY_NOT_BREAK_LEASE was set when we call nfsd_file_alloc.
NFSD_MAY_NOT_BREAK_LEASE was intended to be set when finding files for
COMMIT ops, where we need a writeable filehandle but don't need to
break read leases.

It doesn't make any sense to consult that flag when allocating a file
since the file may be used on subsequent calls where we do want to break
the lease (and the usage of it here seems to be reverse from what it
should be anyway).

Also, after calling nfsd_open_break_lease, we don't want to clear the
BREAK_* bits. A lease could end up being set on it later (more than
once) and we need to be able to break those leases as well.

This means that the NFSD_FILE_BREAK_* flags now just mirror
NFSD_MAY_{READ,WRITE} flags, so there's no need for them at all. Just
drop those flags and unconditionally call nfsd_open_break_lease every
time.

Reported-by: Olga Kornieskaia <kolga@netapp.com>
Link: https://bugzilla.redhat.com/show_bug.cgi?id=2107360
Fixes: 65294c1f2c5e (nfsd: add a new struct file caching facility to nfsd)
Cc: <stable@vger.kernel.org> # 5.4.x : bb283ca18d1e NFSD: Clean up the show_nf_flags() macro
Cc: <stable@vger.kernel.org> # 5.4.x
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/nfsd/filecache.c | 22 +---------------------
 fs/nfsd/filecache.h |  4 +---
 fs/nfsd/trace.h     |  2 --
 3 files changed, 2 insertions(+), 26 deletions(-)

diff --git a/fs/nfsd/filecache.c b/fs/nfsd/filecache.c
index fc0fcb3321537..1d3d13b78be0e 100644
--- a/fs/nfsd/filecache.c
+++ b/fs/nfsd/filecache.c
@@ -183,12 +183,6 @@ nfsd_file_alloc(struct inode *inode, unsigned int may, unsigned int hashval,
 		nf->nf_hashval = hashval;
 		refcount_set(&nf->nf_ref, 1);
 		nf->nf_may = may & NFSD_FILE_MAY_MASK;
-		if (may & NFSD_MAY_NOT_BREAK_LEASE) {
-			if (may & NFSD_MAY_WRITE)
-				__set_bit(NFSD_FILE_BREAK_WRITE, &nf->nf_flags);
-			if (may & NFSD_MAY_READ)
-				__set_bit(NFSD_FILE_BREAK_READ, &nf->nf_flags);
-		}
 		nf->nf_mark = NULL;
 		trace_nfsd_file_alloc(nf);
 	}
@@ -957,21 +951,7 @@ nfsd_do_file_acquire(struct svc_rqst *rqstp, struct svc_fh *fhp,
 
 	this_cpu_inc(nfsd_file_cache_hits);
 
-	if (!(may_flags & NFSD_MAY_NOT_BREAK_LEASE)) {
-		bool write = (may_flags & NFSD_MAY_WRITE);
-
-		if (test_bit(NFSD_FILE_BREAK_READ, &nf->nf_flags) ||
-		    (test_bit(NFSD_FILE_BREAK_WRITE, &nf->nf_flags) && write)) {
-			status = nfserrno(nfsd_open_break_lease(
-					file_inode(nf->nf_file), may_flags));
-			if (status == nfs_ok) {
-				clear_bit(NFSD_FILE_BREAK_READ, &nf->nf_flags);
-				if (write)
-					clear_bit(NFSD_FILE_BREAK_WRITE,
-						  &nf->nf_flags);
-			}
-		}
-	}
+	status = nfserrno(nfsd_open_break_lease(file_inode(nf->nf_file), may_flags));
 out:
 	if (status == nfs_ok) {
 		*pnf = nf;
diff --git a/fs/nfsd/filecache.h b/fs/nfsd/filecache.h
index 1da0c79a55804..c9e3c6eb4776e 100644
--- a/fs/nfsd/filecache.h
+++ b/fs/nfsd/filecache.h
@@ -37,9 +37,7 @@ struct nfsd_file {
 	struct net		*nf_net;
 #define NFSD_FILE_HASHED	(0)
 #define NFSD_FILE_PENDING	(1)
-#define NFSD_FILE_BREAK_READ	(2)
-#define NFSD_FILE_BREAK_WRITE	(3)
-#define NFSD_FILE_REFERENCED	(4)
+#define NFSD_FILE_REFERENCED	(2)
 	unsigned long		nf_flags;
 	struct inode		*nf_inode;
 	unsigned int		nf_hashval;
diff --git a/fs/nfsd/trace.h b/fs/nfsd/trace.h
index 8ccce4ac66b4e..5c2292a1892cc 100644
--- a/fs/nfsd/trace.h
+++ b/fs/nfsd/trace.h
@@ -707,8 +707,6 @@ DEFINE_CLID_EVENT(confirmed_r);
 	__print_flags(val, "|",						\
 		{ 1 << NFSD_FILE_HASHED,	"HASHED" },		\
 		{ 1 << NFSD_FILE_PENDING,	"PENDING" },		\
-		{ 1 << NFSD_FILE_BREAK_READ,	"BREAK_READ" },		\
-		{ 1 << NFSD_FILE_BREAK_WRITE,	"BREAK_WRITE" },	\
 		{ 1 << NFSD_FILE_REFERENCED,	"REFERENCED"})
 
 DECLARE_EVENT_CLASS(nfsd_file_class,
-- 
2.43.0




  parent reply	other threads:[~2024-06-18 13:10 UTC|newest]

Thread overview: 802+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-18 12:27 [PATCH 5.10 000/770] 5.10.220-rc1 review Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 001/770] SUNRPC: Rename svc_encode_read_payload() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 002/770] NFSD: Invoke svc_encode_result_payload() in "read" NFSD encoders Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 003/770] NFSD: A semicolon is not needed after a switch statement Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 004/770] nfsd/nfs3: remove unused macro nfsd3_fhandleres Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 005/770] NFSD: Clean up the show_nf_may macro Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 006/770] NFSD: Remove extra "0x" in tracepoint format specifier Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 007/770] NFSD: Add SPDX header for fs/nfsd/trace.c Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 008/770] nfsd: Fix error return code in nfsd_file_cache_init() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 009/770] SUNRPC: Add xdr_set_scratch_page() and xdr_reset_scratch_buffer() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 010/770] SUNRPC: Prepare for xdr_stream-style decoding on the server-side Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 011/770] NFSD: Add common helpers to decode void args and encode void results Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 012/770] NFSD: Add tracepoints in nfsd_dispatch() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 013/770] NFSD: Add tracepoints in nfsd4_decode/encode_compound() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 014/770] NFSD: Replace the internals of the READ_BUF() macro Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 015/770] NFSD: Replace READ* macros in nfsd4_decode_access() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 016/770] NFSD: Replace READ* macros in nfsd4_decode_close() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 017/770] NFSD: Replace READ* macros in nfsd4_decode_commit() Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 018/770] NFSD: Change the way the expected length of a fattr4 is checked Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 019/770] NFSD: Replace READ* macros that decode the fattr4 size attribute Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 020/770] NFSD: Replace READ* macros that decode the fattr4 acl attribute Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 021/770] NFSD: Replace READ* macros that decode the fattr4 mode attribute Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 022/770] NFSD: Replace READ* macros that decode the fattr4 owner attribute Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 023/770] NFSD: Replace READ* macros that decode the fattr4 owner_group attribute Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 024/770] NFSD: Replace READ* macros that decode the fattr4 time_set attributes Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 025/770] NFSD: Replace READ* macros that decode the fattr4 security label attribute Greg Kroah-Hartman
2024-06-18 12:27 ` [PATCH 5.10 026/770] NFSD: Replace READ* macros that decode the fattr4 umask attribute Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 027/770] NFSD: Replace READ* macros in nfsd4_decode_fattr() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 028/770] NFSD: Replace READ* macros in nfsd4_decode_create() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 029/770] NFSD: Replace READ* macros in nfsd4_decode_delegreturn() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 030/770] NFSD: Replace READ* macros in nfsd4_decode_getattr() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 031/770] NFSD: Replace READ* macros in nfsd4_decode_link() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 032/770] NFSD: Relocate nfsd4_decode_opaque() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 033/770] NFSD: Add helpers to decode a clientid4 and an NFSv4 state owner Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 034/770] NFSD: Add helper for decoding locker4 Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 035/770] NFSD: Replace READ* macros in nfsd4_decode_lock() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 036/770] NFSD: Replace READ* macros in nfsd4_decode_lockt() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 037/770] NFSD: Replace READ* macros in nfsd4_decode_locku() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 038/770] NFSD: Replace READ* macros in nfsd4_decode_lookup() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 039/770] NFSD: Add helper to decode NFSv4 verifiers Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 040/770] NFSD: Add helper to decode OPENs createhow4 argument Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 041/770] NFSD: Add helper to decode OPENs openflag4 argument Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 042/770] NFSD: Replace READ* macros in nfsd4_decode_share_access() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 043/770] NFSD: Replace READ* macros in nfsd4_decode_share_deny() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 044/770] NFSD: Add helper to decode OPENs open_claim4 argument Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 045/770] NFSD: Replace READ* macros in nfsd4_decode_open() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 046/770] NFSD: Replace READ* macros in nfsd4_decode_open_confirm() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 047/770] NFSD: Replace READ* macros in nfsd4_decode_open_downgrade() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 048/770] NFSD: Replace READ* macros in nfsd4_decode_putfh() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 049/770] NFSD: Replace READ* macros in nfsd4_decode_read() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 050/770] NFSD: Replace READ* macros in nfsd4_decode_readdir() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 051/770] NFSD: Replace READ* macros in nfsd4_decode_remove() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 052/770] NFSD: Replace READ* macros in nfsd4_decode_rename() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 053/770] NFSD: Replace READ* macros in nfsd4_decode_renew() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 054/770] NFSD: Replace READ* macros in nfsd4_decode_secinfo() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 055/770] NFSD: Replace READ* macros in nfsd4_decode_setattr() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 056/770] NFSD: Replace READ* macros in nfsd4_decode_setclientid() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 057/770] NFSD: Replace READ* macros in nfsd4_decode_setclientid_confirm() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 058/770] NFSD: Replace READ* macros in nfsd4_decode_verify() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 059/770] NFSD: Replace READ* macros in nfsd4_decode_write() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 060/770] NFSD: Replace READ* macros in nfsd4_decode_release_lockowner() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 061/770] NFSD: Replace READ* macros in nfsd4_decode_cb_sec() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 062/770] NFSD: Replace READ* macros in nfsd4_decode_backchannel_ctl() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 063/770] NFSD: Replace READ* macros in nfsd4_decode_bind_conn_to_session() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 064/770] NFSD: Add a separate decoder to handle state_protect_ops Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 065/770] NFSD: Add a separate decoder for ssv_sp_parms Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 066/770] NFSD: Add a helper to decode state_protect4_a Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 067/770] NFSD: Add a helper to decode nfs_impl_id4 Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 068/770] NFSD: Add a helper to decode channel_attrs4 Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 069/770] NFSD: Replace READ* macros in nfsd4_decode_create_session() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 070/770] NFSD: Replace READ* macros in nfsd4_decode_destroy_session() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 071/770] NFSD: Replace READ* macros in nfsd4_decode_free_stateid() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 072/770] NFSD: Replace READ* macros in nfsd4_decode_getdeviceinfo() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 073/770] NFSD: Replace READ* macros in nfsd4_decode_layoutcommit() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 074/770] NFSD: Replace READ* macros in nfsd4_decode_layoutget() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 075/770] NFSD: Replace READ* macros in nfsd4_decode_layoutreturn() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 076/770] NFSD: Replace READ* macros in nfsd4_decode_secinfo_no_name() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 077/770] NFSD: Replace READ* macros in nfsd4_decode_sequence() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 078/770] NFSD: Replace READ* macros in nfsd4_decode_test_stateid() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 079/770] NFSD: Replace READ* macros in nfsd4_decode_destroy_clientid() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 080/770] NFSD: Replace READ* macros in nfsd4_decode_reclaim_complete() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 081/770] NFSD: Replace READ* macros in nfsd4_decode_fallocate() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 082/770] NFSD: Replace READ* macros in nfsd4_decode_nl4_server() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 083/770] NFSD: Replace READ* macros in nfsd4_decode_copy() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 084/770] NFSD: Replace READ* macros in nfsd4_decode_copy_notify() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 085/770] NFSD: Replace READ* macros in nfsd4_decode_offload_status() Greg Kroah-Hartman
2024-06-18 12:28 ` [PATCH 5.10 086/770] NFSD: Replace READ* macros in nfsd4_decode_seek() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 087/770] NFSD: Replace READ* macros in nfsd4_decode_clone() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 088/770] NFSD: Replace READ* macros in nfsd4_decode_xattr_name() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 089/770] NFSD: Replace READ* macros in nfsd4_decode_setxattr() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 090/770] NFSD: Replace READ* macros in nfsd4_decode_listxattrs() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 091/770] NFSD: Make nfsd4_ops::opnum a u32 Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 092/770] NFSD: Replace READ* macros in nfsd4_decode_compound() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 093/770] NFSD: Remove macros that are no longer used Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 094/770] nfsd: only call inode_query_iversion in the I_VERSION case Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 095/770] nfsd: simplify nfsd4_change_info Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 096/770] nfsd: minor nfsd4_change_attribute cleanup Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 097/770] nfsd4: dont query change attribute in v2/v3 case Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 098/770] Revert "nfsd4: support change_attr_type attribute" Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 099/770] nfsd: add a new EXPORT_OP_NOWCC flag to struct export_operations Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 100/770] nfsd: allow filesystems to opt out of subtree checking Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 101/770] nfsd: close cached files prior to a REMOVE or RENAME that would replace target Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 102/770] exportfs: Add a function to return the raw output from fh_to_dentry() Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 103/770] nfsd: Fix up nfsd to ensure that timeout errors dont result in ESTALE Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 104/770] nfsd: Set PF_LOCAL_THROTTLE on local filesystems only Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 105/770] nfsd: Record NFSv4 pre/post-op attributes as non-atomic Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 106/770] exec: Dont open code get_close_on_exec Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 107/770] exec: Move unshare_files to fix posix file locking during exec Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 108/770] exec: Simplify unshare_files Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 109/770] exec: Remove reset_files_struct Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 110/770] kcmp: In kcmp_epoll_target use fget_task Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 111/770] bpf: In bpf_task_fd_query " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 112/770] proc/fd: In proc_fd_link " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 113/770] Revert "fget: clarify and improve __fget_files() implementation" Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 114/770] file: Rename __fcheck_files to files_lookup_fd_raw Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 115/770] file: Factor files_lookup_fd_locked out of fcheck_files Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 116/770] file: Replace fcheck_files with files_lookup_fd_rcu Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 117/770] file: Rename fcheck lookup_fd_rcu Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 118/770] file: Implement task_lookup_fd_rcu Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 119/770] proc/fd: In tid_fd_mode use task_lookup_fd_rcu Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 120/770] kcmp: In get_file_raw_ptr " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 121/770] file: Implement task_lookup_next_fd_rcu Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 122/770] proc/fd: In proc_readfd_common use task_lookup_next_fd_rcu Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 123/770] proc/fd: In fdinfo seq_show dont use get_files_struct Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 124/770] file: Merge __fd_install into fd_install Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 125/770] file: In f_dupfd read RLIMIT_NOFILE once Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 126/770] file: Merge __alloc_fd into alloc_fd Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 127/770] file: Rename __close_fd to close_fd and remove the files parameter Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 128/770] file: Replace ksys_close with close_fd Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 129/770] inotify: Increase default inotify.max_user_watches limit to 1048576 Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 130/770] fs/lockd: convert comma to semicolon Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 131/770] NFSD: Fix sparse warning in nfssvc.c Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 132/770] NFSD: Restore NFSv4 decodings SAVEMEM functionality Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 133/770] SUNRPC: Make trace_svc_process() display the RPC procedure symbolically Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 134/770] SUNRPC: Display RPC procedure names instead of proc numbers Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 135/770] SUNRPC: Move definition of XDR_UNIT Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 136/770] NFSD: Update GETATTR3args decoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 137/770] NFSD: Update ACCESS3arg " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 138/770] NFSD: Update READ3arg " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 139/770] NFSD: Update WRITE3arg " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 140/770] NFSD: Update READLINK3arg " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 141/770] NFSD: Fix returned READDIR offset cookie Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 142/770] NFSD: Add helper to set up the pages where the dirlist is encoded Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 143/770] NFSD: Update READDIR3args decoders to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 144/770] NFSD: Update COMMIT3arg decoder " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 145/770] NFSD: Update the NFSv3 DIROPargs " Greg Kroah-Hartman
2024-06-18 12:29 ` [PATCH 5.10 146/770] NFSD: Update the RENAME3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 147/770] NFSD: Update the LINK3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 148/770] NFSD: Update the SETATTR3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 149/770] NFSD: Update the CREATE3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 150/770] NFSD: Update the MKDIR3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 151/770] NFSD: Update the SYMLINK3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 152/770] NFSD: Update the MKNOD3args " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 153/770] NFSD: Update the NFSv2 GETATTR argument " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 154/770] NFSD: Update the NFSv2 READ " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 155/770] NFSD: Update the NFSv2 WRITE " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 156/770] NFSD: Update the NFSv2 READLINK " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 157/770] NFSD: Add helper to set up the pages where the dirlist is encoded, again Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 158/770] NFSD: Update the NFSv2 READDIR argument decoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 159/770] NFSD: Update NFSv2 diropargs decoding " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 160/770] NFSD: Update the NFSv2 RENAME argument decoder " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 161/770] NFSD: Update the NFSv2 LINK " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 162/770] NFSD: Update the NFSv2 SETATTR " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 163/770] NFSD: Update the NFSv2 CREATE " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 164/770] NFSD: Update the NFSv2 SYMLINK " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 165/770] NFSD: Remove argument length checking in nfsd_dispatch() Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 166/770] NFSD: Update the NFSv2 GETACL argument decoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 167/770] NFSD: Add an xdr_stream-based decoder for NFSv2/3 ACLs Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 168/770] NFSD: Update the NFSv2 SETACL argument decoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 169/770] NFSD: Update the NFSv2 ACL GETATTR " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 170/770] NFSD: Update the NFSv2 ACL ACCESS " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 171/770] NFSD: Clean up after updating NFSv2 ACL decoders Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 172/770] NFSD: Update the NFSv3 GETACL argument decoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 173/770] NFSD: Update the NFSv2 SETACL argument decoder to use struct xdr_stream, again Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 174/770] NFSD: Clean up after updating NFSv3 ACL decoders Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 175/770] nfsd: remove unused stats counters Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 176/770] nfsd: protect concurrent access to nfsd " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 177/770] nfsd: report per-export stats Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 178/770] nfsd4: simplify process_lookup1 Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 179/770] nfsd: simplify process_lock Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 180/770] nfsd: simplify nfsd_renew Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 181/770] nfsd: rename lookup_clientid->set_client Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 182/770] nfsd: refactor set_client Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 183/770] nfsd: find_cpntf_state cleanup Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 184/770] nfsd: remove unused set_client argument Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 185/770] nfsd: simplify nfsd4_check_open_reclaim Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 186/770] nfsd: cstate->session->se_client -> cstate->clp Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 187/770] NFSv4_2: SSC helper should use its own config Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 188/770] nfs: use change attribute for NFS re-exports Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 189/770] nfsd: skip some unnecessary stats in the v4 case Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 190/770] inotify, memcg: account inotify instances to kmemcg Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 191/770] module: unexport find_module and module_mutex Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 192/770] module: use RCU to synchronize find_module Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 193/770] kallsyms: refactor {,module_}kallsyms_on_each_symbol Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 194/770] kallsyms: only build {,module_}kallsyms_on_each_symbol when required Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 195/770] fs: add file and path permissions helpers Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 196/770] namei: introduce struct renamedata Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 197/770] NFSD: Extract the svcxdr_init_encode() helper Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 198/770] NFSD: Update the GETATTR3res encoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 199/770] NFSD: Update the NFSv3 ACCESS3res " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 200/770] NFSD: Update the NFSv3 LOOKUP3res " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 201/770] NFSD: Update the NFSv3 wccstat result " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 202/770] NFSD: Update the NFSv3 READLINK3res " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 203/770] NFSD: Update the NFSv3 READ3res encode " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 204/770] NFSD: Update the NFSv3 WRITE3res encoder " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 205/770] NFSD: Update the NFSv3 CREATE family of encoders " Greg Kroah-Hartman
2024-06-18 12:30 ` [PATCH 5.10 206/770] NFSD: Update the NFSv3 RENAMEv3res encoder " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 207/770] NFSD: Update the NFSv3 LINK3res " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 208/770] NFSD: Update the NFSv3 FSSTAT3res " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 209/770] NFSD: Update the NFSv3 FSINFO3res " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 210/770] NFSD: Update the NFSv3 PATHCONF3res " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 211/770] NFSD: Update the NFSv3 COMMIT3res " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 212/770] NFSD: Add a helper that encodes NFSv3 directory offset cookies Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 213/770] NFSD: Count bytes instead of pages in the NFSv3 READDIR encoder Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 214/770] NFSD: Update the NFSv3 READDIR3res encoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 215/770] NFSD: Update NFSv3 READDIR entry encoders " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 216/770] NFSD: Remove unused NFSv3 directory entry encoders Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 217/770] NFSD: Reduce svc_rqst::rq_pages churn during READDIR operations Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 218/770] NFSD: Update the NFSv2 stat encoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 219/770] NFSD: Update the NFSv2 attrstat " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 220/770] NFSD: Update the NFSv2 diropres " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 221/770] NFSD: Update the NFSv2 READLINK result " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 222/770] NFSD: Update the NFSv2 READ " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 223/770] NFSD: Update the NFSv2 STATFS " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 224/770] NFSD: Add a helper that encodes NFSv3 directory offset cookies, again Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 225/770] NFSD: Count bytes instead of pages in the NFSv2 READDIR encoder Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 226/770] NFSD: Update the NFSv2 READDIR result encoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 227/770] NFSD: Update the NFSv2 READDIR entry " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 228/770] NFSD: Remove unused NFSv2 directory entry encoders Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 229/770] NFSD: Add an xdr_stream-based encoder for NFSv2/3 ACLs Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 230/770] NFSD: Update the NFSv2 GETACL result encoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 231/770] NFSD: Update the NFSv2 SETACL " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 232/770] NFSD: Update the NFSv2 ACL GETATTR " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 233/770] NFSD: Update the NFSv2 ACL ACCESS " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 234/770] NFSD: Clean up after updating NFSv2 ACL encoders Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 235/770] NFSD: Update the NFSv3 GETACL result encoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 236/770] NFSD: Update the NFSv3 SETACL " Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 237/770] NFSD: Clean up after updating NFSv3 ACL encoders Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 238/770] NFSD: Add a tracepoint to record directory entry encoding Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 239/770] NFSD: Clean up NFSDDBG_FACILITY macro Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 240/770] nfsd: helper for laundromat expiry calculations Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 241/770] nfsd: Log client tracking type log message as info instead of warning Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 242/770] nfsd: Fix typo "accesible" Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 243/770] nfsd: COPY with length 0 should copy to end of file Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 244/770] nfsd: dont ignore high bits of copy count Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 245/770] nfsd: report client confirmation status in "info" file Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 246/770] SUNRPC: Export svc_xprt_received() Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 247/770] UAPI: nfsfh.h: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 248/770] NFSD: Use DEFINE_SPINLOCK() for spinlock Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 249/770] fsnotify: allow fsnotify_{peek,remove}_first_event with empty queue Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 250/770] Revert "fanotify: limit number of event merge attempts" Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 251/770] fanotify: reduce event objectid to 29-bit hash Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 252/770] fanotify: mix event info and pid into merge key hash Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 253/770] fsnotify: use hash table for faster events merge Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 254/770] fanotify: limit number of event merge attempts Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 255/770] fanotify: configurable limits via sysfs Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 256/770] fanotify: support limited functionality for unprivileged users Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 257/770] fanotify_user: use upper_32_bits() to verify mask Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 258/770] nfsd: remove unused function Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 259/770] nfsd: removed unused argument in nfsd_startup_generic() Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 260/770] nfsd: hash nfs4_files by inode number Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 261/770] nfsd: track filehandle aliasing in nfs4_files Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 262/770] nfsd: reshuffle some code Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 263/770] nfsd: grant read delegations to clients holding writes Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 264/770] nfsd: Fix fall-through warnings for Clang Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 265/770] NFSv4.2: Remove ifdef CONFIG_NFSD from NFSv4.2 client SSC code Greg Kroah-Hartman
2024-06-18 12:31 ` [PATCH 5.10 266/770] NFS: fix nfs_fetch_iversion() Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 267/770] fanotify: fix permission model of unprivileged group Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 268/770] NFSD: Add an RPC authflavor tracepoint display helper Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 269/770] NFSD: Add nfsd_clid_cred_mismatch tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 270/770] NFSD: Add nfsd_clid_verf_mismatch tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 271/770] NFSD: Remove trace_nfsd_clid_inuse_err Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 272/770] NFSD: Add nfsd_clid_confirmed tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 273/770] NFSD: Add nfsd_clid_reclaim_complete tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 274/770] NFSD: Add nfsd_clid_destroyed tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 275/770] NFSD: Add a couple more nfsd_clid_expired call sites Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 276/770] NFSD: Add tracepoints for SETCLIENTID edge cases Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 277/770] NFSD: Add tracepoints for EXCHANGEID " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 278/770] NFSD: Constify @fh argument of knfsd_fh_hash() Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 279/770] NFSD: Capture every CB state transition Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 280/770] NFSD: Drop TRACE_DEFINE_ENUM for NFSD4_CB_<state> macros Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 281/770] NFSD: Add cb_lost tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 282/770] NFSD: Adjust cb_shutdown tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 283/770] NFSD: Enhance the nfsd_cb_setup tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 284/770] NFSD: Add an nfsd_cb_lm_notify tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 285/770] NFSD: Add an nfsd_cb_offload tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 286/770] NFSD: Replace the nfsd_deleg_break tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 287/770] NFSD: Add an nfsd_cb_probe tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 288/770] NFSD: Remove the nfsd_cb_work and nfsd_cb_done tracepoints Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 289/770] NFSD: Update nfsd_cb_args tracepoint Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 290/770] nfsd: Prevent truncation of an unlinked inode from blocking access to its directory Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 291/770] nfsd: move some commit_metadata()s outside the inode lock Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 292/770] NFSD add vfs_fsync after async copy is done Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 293/770] NFSD: delay unmount sources export after inter-server copy completed Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 294/770] nfsd: move fsnotify on client creation outside spinlock Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 295/770] nfsd4: Expose the callback address and state of each NFS4 client Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 296/770] nfsd: fix kernel test robot warning in SSC code Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 297/770] NFSD: Fix error return code in nfsd4_interssc_connect() Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 298/770] nfsd: rpc_peeraddr2str needs rcu lock Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 299/770] lockd: Remove stale comments Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 300/770] lockd: Create a simplified .vs_dispatch method for NLM requests Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 301/770] lockd: Common NLM XDR helpers Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 302/770] lockd: Update the NLMv1 void argument decoder to use struct xdr_stream Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 303/770] lockd: Update the NLMv1 TEST arguments " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 304/770] lockd: Update the NLMv1 LOCK " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 305/770] lockd: Update the NLMv1 CANCEL " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 306/770] lockd: Update the NLMv1 UNLOCK " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 307/770] lockd: Update the NLMv1 nlm_res " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 308/770] lockd: Update the NLMv1 SM_NOTIFY " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 309/770] lockd: Update the NLMv1 SHARE " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 310/770] lockd: Update the NLMv1 FREE_ALL " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 311/770] lockd: Update the NLMv1 void results encoder " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 312/770] lockd: Update the NLMv1 TEST " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 313/770] lockd: Update the NLMv1 nlm_res " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 314/770] lockd: Update the NLMv1 SHARE " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 315/770] lockd: Update the NLMv4 void arguments decoder " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 316/770] lockd: Update the NLMv4 TEST " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 317/770] lockd: Update the NLMv4 LOCK " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 318/770] lockd: Update the NLMv4 CANCEL " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 319/770] lockd: Update the NLMv4 UNLOCK " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 320/770] lockd: Update the NLMv4 nlm_res " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 321/770] lockd: Update the NLMv4 SM_NOTIFY " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 322/770] lockd: Update the NLMv4 SHARE " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 323/770] lockd: Update the NLMv4 FREE_ALL " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 324/770] lockd: Update the NLMv4 void results encoder " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 325/770] lockd: Update the NLMv4 TEST " Greg Kroah-Hartman
2024-06-18 12:32 ` [PATCH 5.10 326/770] lockd: Update the NLMv4 nlm_res " Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 327/770] lockd: Update the NLMv4 SHARE " Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 328/770] nfsd: remove redundant assignment to pointer this Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 329/770] NFSD: Prevent a possible oops in the nfs_dirent() tracepoint Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 330/770] nfsd: fix NULL dereference in nfs3svc_encode_getaclres Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 331/770] kernel/pid.c: remove static qualifier from pidfd_create() Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 332/770] kernel/pid.c: implement additional checks upon pidfd_create() parameters Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 333/770] fanotify: minor cosmetic adjustments to fid labels Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 334/770] fanotify: introduce a generic info record copying helper Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 335/770] fanotify: add pidfd support to the fanotify API Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 336/770] fsnotify: replace igrab() with ihold() on attach connector Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 337/770] fsnotify: count s_fsnotify_inode_refs for attached connectors Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 338/770] fsnotify: count all objects with " Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 339/770] fsnotify: optimize the case of no marks of any type Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 340/770] NFSD: Clean up splice actor Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 341/770] SUNRPC: Add svc_rqst_replace_page() API Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 342/770] NFSD: Batch release pages during splice read Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 343/770] NFSD: remove vanity comments Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 344/770] sysctl: introduce new proc handler proc_dobool Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 345/770] lockd: change the proc_handler for nsm_use_hostnames Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 346/770] nlm: minor nlm_lookup_file argument change Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 347/770] nlm: minor refactoring Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 348/770] lockd: update nlm_lookup_file reexport comment Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 349/770] Keep read and write fds with each nlm_file Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 350/770] nfs: dont atempt blocking locks on nfs reexports Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 351/770] lockd: dont attempt " Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 352/770] nfs: dont allow reexport reclaims Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 353/770] SUNRPC: Add svc_rqst::rq_auth_stat Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 354/770] SUNRPC: Set rq_auth_stat in the pg_authenticate() callout Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 355/770] SUNRPC: Eliminate the RQ_AUTHERR flag Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 356/770] NFS: Add a private local dispatcher for NFSv4 callback operations Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 357/770] NFS: Remove unused callback void decoder Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 358/770] fsnotify: fix sb_connectors leak Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 359/770] NLM: Fix svcxdr_encode_owner() Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 360/770] nfsd: Fix a warning for nfsd_file_close_inode Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 361/770] fsnotify: pass data_type to fsnotify_name() Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 362/770] fsnotify: pass dentry instead of inode data Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 363/770] fsnotify: clarify contract for create event hooks Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 364/770] fsnotify: Dont insert unmergeable events in hashtable Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 365/770] fanotify: Fold event size calculation to its own function Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 366/770] fanotify: Split fsid check from other fid mode checks Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 367/770] inotify: Dont force FS_IN_IGNORED Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 368/770] fsnotify: Add helper to detect overflow_event Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 369/770] fsnotify: Add wrapper around fsnotify_add_event Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 370/770] fsnotify: Retrieve super block from the data field Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 371/770] fsnotify: Protect fsnotify_handle_inode_event from no-inode events Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 372/770] fsnotify: Pass group argument to free_event Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 373/770] fanotify: Support null inode event in fanotify_dfid_inode Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 374/770] fanotify: Allow file handle encoding for unhashed events Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 375/770] fanotify: Encode empty file handle when no inode is provided Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 376/770] fanotify: Require fid_mode for any non-fd event Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 377/770] fsnotify: Support FS_ERROR event type Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 378/770] fanotify: Reserve UAPI bits for FAN_FS_ERROR Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 379/770] fanotify: Pre-allocate pool of error events Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 380/770] fanotify: Support enqueueing " Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 381/770] fanotify: Support merging " Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 382/770] fanotify: Wrap object_fh inline space in a creator macro Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 383/770] fanotify: Add helpers to decide whether to report FID/DFID Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 384/770] fanotify: WARN_ON against too large file handles Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 385/770] fanotify: Report fid info for file related file system errors Greg Kroah-Hartman
2024-06-18 12:33 ` [PATCH 5.10 386/770] fanotify: Emit generic error info for error event Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 387/770] fanotify: Allow users to request FAN_FS_ERROR events Greg Kroah-Hartman
2024-07-23  7:06   ` Ajay Kaher
2024-07-23  9:20     ` Amir Goldstein
2024-07-23 13:47       ` Chuck Lever III
2024-07-24  6:52         ` Amir Goldstein
2024-07-23 14:34       ` Gabriel Krisman Bertazi
2024-07-23 15:57         ` Chuck Lever III
2024-07-23 21:42         ` [PATCH v5.15.y] Revert "fanotify: Allow users to request FAN_FS_ERROR events" cel
2024-07-23 23:24           ` Gabriel Krisman Bertazi
2024-07-24  6:42             ` Amir Goldstein
2024-07-23  9:29     ` [PATCH 5.10 387/770] fanotify: Allow users to request FAN_FS_ERROR events Jan Kara
2024-07-23 10:13       ` Amir Goldstein
2024-07-23 10:47         ` Jan Kara
2024-07-23 13:44       ` Chuck Lever III
2024-06-18 12:34 ` [PATCH 5.10 388/770] SUNRPC: Trace calls to .rpc_call_done Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 389/770] NFSD: Optimize DRC bucket pruning Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 390/770] NFSD: move filehandle format declarations out of "uapi" Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 391/770] NFSD: drop support for ancient filehandles Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 392/770] NFSD: simplify struct nfsfh Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 393/770] NFSD: Initialize pointer ni with NULL and not plain integer 0 Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 394/770] NFSD: Have legacy NFSD WRITE decoders use xdr_stream_subsegment() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 395/770] SUNRPC: Replace the "__be32 *p" parameter to .pc_decode Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 396/770] SUNRPC: Change return value type of .pc_decode Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 397/770] NFSD: Save location of NFSv4 COMPOUND status Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 398/770] SUNRPC: Replace the "__be32 *p" parameter to .pc_encode Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 399/770] SUNRPC: Change return value type of .pc_encode Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 400/770] nfsd: update create verifier comment Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 401/770] NFSD:fix boolreturn.cocci warning Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 402/770] nfsd4: remove obselete comment Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 403/770] NFSD: Fix exposure in nfsd4_decode_bitmap() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 404/770] NFSD: Fix READDIR buffer overflow Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 405/770] fsnotify: clarify object type argument Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 406/770] fsnotify: separate mark iterator type from object type enum Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 407/770] fanotify: introduce group flag FAN_REPORT_TARGET_FID Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 408/770] fsnotify: generate FS_RENAME event with rich information Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 409/770] fanotify: use macros to get the offset to fanotify_info buffer Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 410/770] fanotify: use helpers to parcel " Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 411/770] fanotify: support secondary dir fh and name in fanotify_info Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 412/770] fanotify: record old and new parent and name in FAN_RENAME event Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 413/770] fanotify: record either old name new name or both for FAN_RENAME Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 414/770] fanotify: report old and/or new parent+name in FAN_RENAME event Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 415/770] fanotify: wire up " Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 416/770] exit: Implement kthread_exit Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 417/770] exit: Rename module_put_and_exit to module_put_and_kthread_exit Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 418/770] NFSD: Fix sparse warning Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 419/770] NFSD: handle errors better in write_ports_addfd() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 420/770] SUNRPC: change svc_get() to return the svc Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 421/770] SUNRPC/NFSD: clean up get/put functions Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 422/770] SUNRPC: stop using ->sv_nrthreads as a refcount Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 423/770] nfsd: make nfsd_stats.th_cnt atomic_t Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 424/770] SUNRPC: use sv_lock to protect updates to sv_nrthreads Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 425/770] NFSD: narrow nfsd_mutex protection in nfsd thread Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 426/770] NFSD: Make it possible to use svc_set_num_threads_sync Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 427/770] SUNRPC: discard svo_setup and rename svc_set_num_threads_sync() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 428/770] NFSD: simplify locking for network notifier Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 429/770] lockd: introduce nlmsvc_serv Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 430/770] lockd: simplify management of network status notifiers Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 431/770] lockd: move lockd_start_svc() call into lockd_create_svc() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 432/770] lockd: move svc_exit_thread() into the thread Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 433/770] lockd: introduce lockd_put() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 434/770] lockd: rename lockd_create_svc() to lockd_get() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 435/770] SUNRPC: move the pool_map definitions (back) into svc.c Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 436/770] SUNRPC: always treat sv_nrpools==1 as "not pooled" Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 437/770] lockd: use svc_set_num_threads() for thread start and stop Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 438/770] NFS: switch the callback service back to non-pooled Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 439/770] NFSD: Remove be32_to_cpu() from DRC hash function Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 440/770] NFSD: Fix inconsistent indenting Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 441/770] NFSD: simplify per-net file cache management Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 442/770] NFSD: Combine XDR error tracepoints Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 443/770] nfsd: improve stateid access bitmask documentation Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 444/770] NFSD: De-duplicate nfsd4_decode_bitmap4() Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 445/770] nfs: block notification on fs with its own ->lock Greg Kroah-Hartman
2024-06-18 12:34 ` [PATCH 5.10 446/770] nfsd4: add refcount for nfsd4_blocked_lock Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 447/770] NFSD: Fix zero-length NFSv3 WRITEs Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 448/770] nfsd: map EBADF Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 449/770] nfsd: Add errno mapping for EREMOTEIO Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 450/770] nfsd: Retry once in nfsd_open on an -EOPENSTALE return Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 451/770] NFSD: Clean up nfsd_vfs_write() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 452/770] NFSD: De-duplicate net_generic(SVC_NET(rqstp), nfsd_net_id) Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 453/770] NFSD: De-duplicate net_generic(nf->nf_net, nfsd_net_id) Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 454/770] nfsd: Add a tracepoint for errors in nfsd4_clone_file_range() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 455/770] NFSD: Write verifier might go backwards Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 456/770] NFSD: Clean up the nfsd_net::nfssvc_boot field Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 457/770] NFSD: Rename boot verifier functions Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 458/770] NFSD: Trace boot verifier resets Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 459/770] Revert "nfsd: skip some unnecessary stats in the v4 case" Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 460/770] NFSD: Move fill_pre_wcc() and fill_post_wcc() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 461/770] nfsd: fix crash on COPY_NOTIFY with special stateid Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 462/770] fanotify: remove variable set but not used Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 463/770] lockd: fix server crash on reboot of client holding lock Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 464/770] lockd: fix failure to cleanup client locks Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 465/770] NFSD: Fix the behavior of READ near OFFSET_MAX Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 466/770] NFSD: Fix ia_size underflow Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 467/770] NFSD: Fix NFSv3 SETATTR/CREATEs handling of large file sizes Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 468/770] NFSD: COMMIT operations must not return NFS?ERR_INVAL Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 469/770] NFSD: Deprecate NFS_OFFSET_MAX Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 470/770] nfsd: Add support for the birth time attribute Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 471/770] NFSD: De-duplicate hash bucket indexing Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 472/770] NFSD: Skip extra computation for RC_NOCACHE case Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 473/770] NFSD: Streamline the rare "found" case Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 474/770] SUNRPC: Remove the .svo_enqueue_xprt method Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 475/770] SUNRPC: Merge svc_do_enqueue_xprt() into svc_enqueue_xprt() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 476/770] SUNRPC: Remove svo_shutdown method Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 477/770] SUNRPC: Rename svc_create_xprt() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 478/770] SUNRPC: Rename svc_close_xprt() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 479/770] SUNRPC: Remove svc_shutdown_net() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 480/770] NFSD: Remove svc_serv_ops::svo_module Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 481/770] NFSD: Move svc_serv_ops::svo_function into struct svc_serv Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 482/770] NFSD: Remove CONFIG_NFSD_V3 Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 483/770] NFSD: Clean up _lm_ operation names Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 484/770] nfsd: fix using the correct variable for sizeof() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 485/770] fsnotify: fix merge with parents ignored mask Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 486/770] fsnotify: optimize FS_MODIFY events with no ignored masks Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 487/770] fsnotify: remove redundant parameter judgment Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 488/770] SUNRPC: Return true/false (not 1/0) from bool functions Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 489/770] nfsd: Fix a write performance regression Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 490/770] nfsd: Clean up nfsd_file_put() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 491/770] fanotify: do not allow setting dirent events in mask of non-dir Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 492/770] fs/lock: documentation cleanup. Replace inode->i_lock with flc_lock Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 493/770] inotify: move control flags from mask to mark flags Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 494/770] fsnotify: pass flags argument to fsnotify_alloc_group() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 495/770] fsnotify: make allow_dups a property of the group Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 496/770] fsnotify: create helpers for group mark_mutex lock Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 497/770] inotify: use fsnotify group lock helpers Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 498/770] nfsd: " Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 499/770] dnotify: " Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 500/770] fsnotify: allow adding an inode mark without pinning inode Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 501/770] fanotify: create helper fanotify_mark_user_flags() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 502/770] fanotify: factor out helper fanotify_mark_update_flags() Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 503/770] fanotify: implement "evictable" inode marks Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 504/770] fanotify: use fsnotify group lock helpers Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 505/770] fanotify: enable "evictable" inode marks Greg Kroah-Hartman
2024-06-18 12:35 ` [PATCH 5.10 506/770] fsnotify: introduce mark type iterator Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 507/770] fsnotify: consistent behavior for parent not watching children Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 508/770] fanotify: fix incorrect fmode_t casts Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 509/770] NFSD: Clean up nfsd_splice_actor() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 510/770] NFSD: add courteous server support for thread with only delegation Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 511/770] NFSD: add support for share reservation conflict to courteous server Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 512/770] NFSD: move create/destroy of laundry_wq to init_nfsd and exit_nfsd Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 513/770] fs/lock: add helper locks_owner_has_blockers to check for blockers Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 514/770] fs/lock: add 2 callbacks to lock_manager_operations to resolve conflict Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 515/770] NFSD: add support for lock conflict to courteous server Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 516/770] NFSD: Show state of courtesy client in client info Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 517/770] NFSD: Clean up nfsd3_proc_create() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 518/770] NFSD: Avoid calling fh_drop_write() twice in do_nfsd_create() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 519/770] NFSD: Refactor nfsd_create_setattr() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 520/770] NFSD: Refactor NFSv3 CREATE Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 521/770] NFSD: Refactor NFSv4 OPEN(CREATE) Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 522/770] NFSD: Remove do_nfsd_create() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 523/770] NFSD: Clean up nfsd_open_verified() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 524/770] NFSD: Instantiate a struct file when creating a regular NFSv4 file Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 525/770] NFSD: Remove dprintk call sites from tail of nfsd4_open() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 526/770] NFSD: Fix whitespace Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 527/770] NFSD: Move documenting comment for nfsd4_process_open2() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 528/770] NFSD: Trace filecache opens Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 529/770] NFSD: Clean up the show_nf_flags() macro Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 530/770] SUNRPC: Use RMW bitops in single-threaded hot paths Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 531/770] nfsd: Unregister the cld notifier when laundry_wq create failed Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 532/770] nfsd: Fix null-ptr-deref in nfsd_fill_super() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 533/770] nfsd: destroy percpu stats counters after reply cache shutdown Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 534/770] NFSD: Modernize nfsd4_release_lockowner() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 535/770] NFSD: Add documenting comment for nfsd4_release_lockowner() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 536/770] NFSD: nfsd_file_put() can sleep Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 537/770] NFSD: Fix potential use-after-free in nfsd_file_put() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 538/770] SUNRPC: Optimize xdr_reserve_space() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 539/770] fanotify: refine the validation checks on non-dir inode mask Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 540/770] NFS: restore module put when manager exits Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 541/770] NFSD: Decode NFSv4 birth time attribute Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 542/770] lockd: set fl_owner when unlocking files Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 543/770] lockd: fix nlm_close_files Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 544/770] fs: inotify: Fix typo in inotify comment Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 545/770] fanotify: prepare for setting event flags in ignore mask Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 546/770] fanotify: cleanups for fanotify_mark() input validations Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 547/770] fanotify: introduce FAN_MARK_IGNORE Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 548/770] fsnotify: Fix comment typo Greg Kroah-Hartman
2024-06-18 12:36 ` Greg Kroah-Hartman [this message]
2024-06-18 12:36 ` [PATCH 5.10 550/770] SUNRPC: Fix xdr_encode_bool() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 551/770] NLM: Defend against file_lock changes after vfs_test_lock() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 552/770] NFSD: Fix space and spelling mistake Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 553/770] nfsd: remove redundant assignment to variable len Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 554/770] NFSD: Demote a WARN to a pr_warn() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 555/770] NFSD: Report filecache LRU size Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 556/770] NFSD: Report count of calls to nfsd_file_acquire() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 557/770] NFSD: Report count of freed filecache items Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 558/770] NFSD: Report average age of " Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 559/770] NFSD: Add nfsd_file_lru_dispose_list() helper Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 560/770] NFSD: Refactor nfsd_file_gc() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 561/770] NFSD: Refactor nfsd_file_lru_scan() Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 562/770] NFSD: Report the number of items evicted by the LRU walk Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 563/770] NFSD: Record number of flush calls Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 564/770] NFSD: Zero counters when the filecache is re-initialized Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 565/770] NFSD: Hook up the filecache stat file Greg Kroah-Hartman
2024-06-18 12:36 ` [PATCH 5.10 566/770] NFSD: WARN when freeing an item still linked via nf_lru Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 567/770] NFSD: Trace filecache LRU activity Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 568/770] NFSD: Leave open files out of the filecache LRU Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 569/770] NFSD: Fix the filecache LRU shrinker Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 570/770] NFSD: Never call nfsd_file_gc() in foreground paths Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 571/770] NFSD: No longer record nf_hashval in the trace log Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 572/770] NFSD: Remove lockdep assertion from unhash_and_release_locked() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 573/770] NFSD: nfsd_file_unhash can compute hashval from nf->nf_inode Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 574/770] NFSD: Refactor __nfsd_file_close_inode() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 575/770] NFSD: nfsd_file_hash_remove can compute hashval Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 576/770] NFSD: Remove nfsd_file::nf_hashval Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 577/770] NFSD: Replace the "init once" mechanism Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 578/770] NFSD: Set up an rhashtable for the filecache Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 579/770] NFSD: Convert the filecache to use rhashtable Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 580/770] NFSD: Clean up unused code after rhashtable conversion Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 581/770] NFSD: Separate tracepoints for acquire and create Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 582/770] NFSD: Move nfsd_file_trace_alloc() tracepoint Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 583/770] NFSD: NFSv4 CLOSE should release an nfsd_file immediately Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 584/770] NFSD: Ensure nf_inode is never dereferenced Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 585/770] NFSD: refactoring v4 specific code to a helper in nfs4state.c Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 586/770] NFSD: keep track of the number of v4 clients in the system Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 587/770] NFSD: limit the number of v4 clients to 1024 per 1GB of system memory Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 588/770] nfsd: silence extraneous printk on nfsd.ko insertion Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 589/770] NFSD: Optimize nfsd4_encode_operation() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 590/770] NFSD: Optimize nfsd4_encode_fattr() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 591/770] NFSD: Clean up SPLICE_OK in nfsd4_encode_read() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 592/770] NFSD: Add an nfsd4_read::rd_eof field Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 593/770] NFSD: Optimize nfsd4_encode_readv() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 594/770] NFSD: Simplify starting_len Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 595/770] NFSD: Use xdr_pad_size() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 596/770] NFSD: Clean up nfsd4_encode_readlink() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 597/770] NFSD: Fix strncpy() fortify warning Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 598/770] NFSD: nfserrno(-ENOMEM) is nfserr_jukebox Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 599/770] NFSD: Shrink size of struct nfsd4_copy_notify Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 600/770] NFSD: Shrink size of struct nfsd4_copy Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 601/770] NFSD: Reorder the fields in struct nfsd4_op Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 602/770] NFSD: Make nfs4_put_copy() static Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 603/770] NFSD: Replace boolean fields in struct nfsd4_copy Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 604/770] NFSD: Refactor nfsd4_cleanup_inter_ssc() (1/2) Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 605/770] NFSD: Refactor nfsd4_cleanup_inter_ssc() (2/2) Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 606/770] NFSD: Refactor nfsd4_do_copy() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 607/770] NFSD: Remove kmalloc from nfsd4_do_async_copy() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 608/770] NFSD: Add nfsd4_send_cb_offload() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 609/770] NFSD: Move copy offload callback arguments into a separate structure Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 610/770] NFSD: drop fh argument from alloc_init_deleg Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 611/770] NFSD: verify the opened dentry after setting a delegation Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 612/770] NFSD: introduce struct nfsd_attrs Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 613/770] NFSD: set attributes when creating symlinks Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 614/770] NFSD: add security label to struct nfsd_attrs Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 615/770] NFSD: add posix ACLs " Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 616/770] NFSD: change nfsd_create()/nfsd_symlink() to unlock directory before returning Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 617/770] NFSD: always drop directory lock in nfsd_unlink() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 618/770] NFSD: only call fh_unlock() once in nfsd_link() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 619/770] NFSD: reduce locking in nfsd_lookup() Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 620/770] NFSD: use explicit lock/unlock for directory ops Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 621/770] NFSD: use (un)lock_inode instead of fh_(un)lock for file operations Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 622/770] NFSD: discard fh_locked flag and fh_lock/fh_unlock Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 623/770] lockd: detect and reject lock arguments that overflow Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 624/770] NFSD: fix regression with setting ACLs Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 625/770] nfsd_splice_actor(): handle compound pages Greg Kroah-Hartman
2024-06-18 12:37 ` [PATCH 5.10 626/770] NFSD: move from strlcpy with unused retval to strscpy Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 627/770] lockd: " Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 628/770] NFSD enforce filehandle check for source file in COPY Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 629/770] NFSD: remove redundant variable status Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 630/770] nfsd: Avoid some useless tests Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 631/770] nfsd: Propagate some error code returned by memdup_user() Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 632/770] NFSD: Increase NFSD_MAX_OPS_PER_COMPOUND Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 633/770] NFSD: Protect against send buffer overflow in NFSv2 READDIR Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 634/770] NFSD: Protect against send buffer overflow in NFSv3 READDIR Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 635/770] NFSD: Protect against send buffer overflow in NFSv2 READ Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 636/770] NFSD: Protect against send buffer overflow in NFSv3 READ Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 637/770] NFSD: drop fname and flen args from nfsd_create_locked() Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 638/770] NFSD: Fix handling of oversized NFSv4 COMPOUND requests Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 639/770] nfsd: clean up mounted_on_fileid handling Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 640/770] nfsd: remove nfsd4_prepare_cb_recall() declaration Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 641/770] NFSD: Add tracepoints to report NFSv4 callback completions Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 642/770] NFSD: Add a mechanism to wait for a DELEGRETURN Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 643/770] NFSD: Refactor nfsd_setattr() Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 644/770] NFSD: Make nfsd4_setattr() wait before returning NFS4ERR_DELAY Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 645/770] NFSD: Make nfsd4_rename() " Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 646/770] NFSD: Make nfsd4_remove() " Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 647/770] NFSD: keep track of the number of courtesy clients in the system Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 648/770] NFSD: add shrinker to reap courtesy clients on low memory condition Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 649/770] SUNRPC: Parametrize how much of argsize should be zeroed Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 650/770] NFSD: Reduce amount of struct nfsd4_compoundargs that needs clearing Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 651/770] NFSD: Refactor common code out of dirlist helpers Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 652/770] NFSD: Use xdr_inline_decode() to decode NFSv3 symlinks Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 653/770] NFSD: Clean up WRITE arg decoders Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 654/770] NFSD: Clean up nfs4svc_encode_compoundres() Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 655/770] NFSD: Remove "inline" directives on op_rsize_bop helpers Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 656/770] NFSD: Remove unused nfsd4_compoundargs::cachetype field Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 657/770] NFSD: Pack struct nfsd4_compoundres Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 658/770] nfsd: use DEFINE_PROC_SHOW_ATTRIBUTE to define nfsd_proc_ops Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 659/770] nfsd: use DEFINE_SHOW_ATTRIBUTE to define export_features_fops and supported_enctypes_fops Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 660/770] nfsd: use DEFINE_SHOW_ATTRIBUTE to define client_info_fops Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 661/770] nfsd: use DEFINE_SHOW_ATTRIBUTE to define nfsd_reply_cache_stats_fops Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 662/770] nfsd: use DEFINE_SHOW_ATTRIBUTE to define nfsd_file_cache_stats_fops Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 663/770] NFSD: Rename the fields in copy_stateid_t Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 664/770] NFSD: Cap rsize_bop result based on send buffer size Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 665/770] nfsd: only fill out return pointer on success in nfsd4_lookup_stateid Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 666/770] nfsd: fix comments about spinlock handling with delegations Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 667/770] nfsd: make nfsd4_run_cb a bool return function Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 668/770] nfsd: extra checks when freeing delegation stateids Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 669/770] fs/notify: constify path Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 670/770] fsnotify: remove unused declaration Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 671/770] fanotify: Remove obsoleted fanotify_event_has_path() Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 672/770] nfsd: fix nfsd_file_unhash_and_dispose Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 673/770] nfsd: rework hashtable handling in nfsd_do_file_acquire Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 674/770] NFSD: unregister shrinker when nfsd_init_net() fails Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 675/770] nfsd: fix net-namespace logic in __nfsd_file_cache_purge Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 676/770] nfsd: fix use-after-free in nfsd_file_do_acquire tracepoint Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 677/770] nfsd: put the export reference in nfsd4_verify_deleg_dentry Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 678/770] NFSD: Fix reads with a non-zero offset that dont end on a page boundary Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 679/770] filelock: add a new locks_inode_context accessor function Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 680/770] lockd: use locks_inode_context helper Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 681/770] nfsd: " Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 682/770] NFSD: Simplify READ_PLUS Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 683/770] NFSD: Remove redundant assignment to variable host_err Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 684/770] NFSD: Finish converting the NFSv2 GETACL result encoder Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 685/770] NFSD: Finish converting the NFSv3 " Greg Kroah-Hartman
2024-06-18 12:38 ` [PATCH 5.10 686/770] nfsd: ignore requests to disable unsupported versions Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 687/770] nfsd: move nfserrno() to vfs.c Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 688/770] nfsd: allow disabling NFSv2 at compile time Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 689/770] exportfs: use pr_debug for unreachable debug statements Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 690/770] NFSD: Pass the target nfsd_file to nfsd_commit() Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 691/770] NFSD: Revert "NFSD: NFSv4 CLOSE should release an nfsd_file immediately" Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 692/770] NFSD: Add an NFSD_FILE_GC flag to enable nfsd_file garbage collection Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 693/770] NFSD: Flesh out a documenting comment for filecache.c Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 694/770] NFSD: Clean up nfs4_preprocess_stateid_op() call sites Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 695/770] NFSD: Trace stateids returned via DELEGRETURN Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 696/770] NFSD: Trace delegation revocations Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 697/770] NFSD: Use const pointers as parameters to fh_ helpers Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 698/770] NFSD: Update file_hashtbl() helpers Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 699/770] NFSD: Clean up nfsd4_init_file() Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 700/770] NFSD: Add a nfsd4_file_hash_remove() helper Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 701/770] NFSD: Clean up find_or_add_file() Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 702/770] NFSD: Refactor find_file() Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 703/770] NFSD: Use rhashtable for managing nfs4_file objects Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 704/770] NFSD: Fix licensing header in filecache.c Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 705/770] nfsd: remove the pages_flushed statistic from filecache Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 706/770] nfsd: reorganize filecache.c Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 707/770] nfsd: fix up the filecache laundrette scheduling Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 708/770] NFSD: Add an nfsd_file_fsync tracepoint Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 709/770] lockd: set other missing fields when unlocking files Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 710/770] nfsd: return error if nfs4_setacl fails Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 711/770] NFSD: Use struct_size() helper in alloc_session() Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 712/770] lockd: set missing fl_flags field when retrieving args Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 713/770] lockd: ensure we use the correct file descriptor when unlocking Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 714/770] lockd: fix file selection in nlmsvc_cancel_blocked Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 715/770] NFSD: pass range end to vfs_fsync_range() instead of count Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 716/770] NFSD: refactoring courtesy_client_reaper to a generic low memory shrinker Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 717/770] NFSD: add support for sending CB_RECALL_ANY Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 718/770] NFSD: add delegation reaper to react to low memory condition Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 719/770] NFSD: Use only RQ_DROPME to signal the need to drop a reply Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 720/770] NFSD: Avoid clashing function prototypes Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 721/770] nfsd: rework refcounting in filecache Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 722/770] nfsd: fix handling of cached open files in nfsd4_open codepath Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 723/770] Revert "SUNRPC: Use RMW bitops in single-threaded hot paths" Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 724/770] NFSD: Use set_bit(RQ_DROPME) Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 725/770] NFSD: fix use-after-free in nfsd4_ssc_setup_dul() Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 726/770] NFSD: register/unregister of nfsd-client shrinker at nfsd startup/shutdown time Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 727/770] NFSD: replace delayed_work with work_struct for nfsd_client_shrinker Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 728/770] nfsd: dont free files unconditionally in __nfsd_file_cache_purge Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 729/770] nfsd: dont destroy global nfs4_file table in per-net shutdown Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 730/770] NFSD: enhance inter-server copy cleanup Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 731/770] nfsd: allow nfsd_file_get to sanely handle a NULL pointer Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 732/770] nfsd: clean up potential nfsd_file refcount leaks in COPY codepath Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 733/770] NFSD: fix leaked reference count of nfsd4_ssc_umount_item Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 734/770] nfsd: dont hand out delegation on setuid files being opened for write Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 735/770] NFSD: fix problems with cleanup on errors in nfsd4_copy Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 736/770] nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 737/770] nfsd: dont fsync nfsd_files on last close Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 738/770] NFSD: copy the whole verifier in nfsd_copy_write_verifier Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 739/770] NFSD: Protect against filesystem freezing Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 740/770] lockd: set file_lock start and end when decoding nlm4 testargs Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 741/770] nfsd: dont replace page in rq_pages if its a continuation of last page Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 742/770] NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 743/770] nfsd: call op_release, even when op_func returns an error Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 744/770] nfsd: dont open-code clear_and_wake_up_bit Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 745/770] nfsd: NFSD_FILE_KEY_INODE only needs to find GCed entries Greg Kroah-Hartman
2024-06-18 12:39 ` [PATCH 5.10 746/770] nfsd: simplify test_bit return in NFSD_FILE_KEY_FULL comparator Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 747/770] nfsd: dont kill nfsd_files because of lease break error Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 748/770] nfsd: add some comments to nfsd_file_do_acquire Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 749/770] nfsd: dont take/put an extra reference when putting a file Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 750/770] nfsd: update comment over __nfsd_file_cache_purge Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 751/770] nfsd: allow reaping files still under writeback Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 752/770] NFSD: Convert filecache to rhltable Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 753/770] nfsd: simplify the delayed disposal list code Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 754/770] NFSD: Fix problem of COMMIT and NFS4ERR_DELAY in infinite loop Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 755/770] nfsd: make a copy of struct iattr before calling notify_change Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 756/770] nfsd: fix double fget() bug in __write_ports_addfd() Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 757/770] lockd: drop inappropriate svc_get() from locked_get() Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 758/770] NFSD: Add an nfsd4_encode_nfstime4() helper Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 759/770] nfsd: Fix creation time serialization order Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 760/770] nfsd: dont allow nfsd threads to be signalled Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 761/770] nfsd: Simplify code around svc_exit_thread() call in nfsd() Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 762/770] nfsd: separate nfsd_last_thread() from nfsd_put() Greg Kroah-Hartman
2024-06-24  4:14   ` Dominique Martinet
2024-06-25 15:45     ` Jeff Layton
2024-07-18  7:20       ` Dominique Martinet
2024-07-18 14:53         ` Chuck Lever
2024-06-18 12:40 ` [PATCH 5.10 763/770] Documentation: Add missing documentation for EXPORT_OP flags Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 764/770] NFSD: fix possible oops when nfsd/pool_stats is closed Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 765/770] nfsd: call nfsd_last_thread() before final nfsd_put() Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 766/770] nfsd: drop the nfsd_put helper Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 767/770] nfsd: fix RELEASE_LOCKOWNER Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 768/770] nfsd: dont take fi_lock in nfsd_break_deleg_cb() Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 769/770] nfsd: dont call locks_release_private() twice concurrently Greg Kroah-Hartman
2024-06-18 12:40 ` [PATCH 5.10 770/770] nfsd: Fix a regression in nfsd_setattr() Greg Kroah-Hartman
2024-06-18 21:01 ` [PATCH 5.10 000/770] 5.10.220-rc1 review Jon Hunter
2024-06-19  8:51 ` Pavel Machek
2024-06-19  9:04 ` Dominique Martinet
2024-06-19 10:16 ` Florian Fainelli
2024-06-19 11:10 ` Naresh Kamboju
2024-06-25 14:48 ` Guenter Roeck
2024-06-25 15:04   ` Greg Kroah-Hartman
2024-06-25 15:13     ` Chuck Lever III
2024-06-25 16:29       ` Guenter Roeck
2024-06-25 19:08         ` Chuck Lever III
2024-06-25 19:35           ` Guenter Roeck
2024-06-25 19:40             ` Chuck Lever III
2024-06-25 19:49               ` Chuck Lever III
2024-06-25 20:43                 ` Guenter Roeck

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=20240618123428.496245267@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=chuck.lever@oracle.com \
    --cc=jlayton@kernel.org \
    --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;
as well as URLs for NNTP newsgroup(s).