android_kernel_xiaomi_sm8450/fs/lockd
NeilBrown b4417c53d4 lockd: drop inappropriate svc_get() from locked_get()
[ Upstream commit 665e89ab7c5af1f2d260834c861a74b01a30f95f ]

The below-mentioned patch was intended to simplify refcounting on the
svc_serv used by locked.  The goal was to only ever have a single
reference from the single thread.  To that end we dropped a call to
lockd_start_svc() (except when creating thread) which would take a
reference, and dropped the svc_put(serv) that would drop that reference.

Unfortunately we didn't also remove the svc_get() from
lockd_create_svc() in the case where the svc_serv already existed.
So after the patch:
 - on the first call the svc_serv was allocated and the one reference
   was given to the thread, so there are no extra references
 - on subsequent calls svc_get() was called so there is now an extra
   reference.
This is clearly not consistent.

The inconsistency is also clear in the current code in lockd_get()
takes *two* references, one on nlmsvc_serv and one by incrementing
nlmsvc_users.   This clearly does not match lockd_put().

So: drop that svc_get() from lockd_get() (which used to be in
lockd_create_svc().

Reported-by: Ido Schimmel <idosch@idosch.org>
Closes: https://lore.kernel.org/linux-nfs/ZHsI%2FH16VX9kJQX1@shredder/T/#u
Fixes: b73a2972041b ("lockd: move lockd_start_svc() call into lockd_create_svc()")
Signed-off-by: NeilBrown <neilb@suse.de>
Tested-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-06-21 14:54:14 +02:00
..
clnt4xdr.c lockd: set file_lock start and end when decoding nlm4 testargs 2024-06-21 14:54:12 +02:00
clntlock.c treewide: Add SPDX license identifier for missed files 2019-05-21 10:50:45 +02:00
clntproc.c SUNRPC: Trace calls to .rpc_call_done 2024-06-21 14:53:24 +02:00
clntxdr.c NFS: Remove print_overflow_msg() 2019-02-13 11:53:45 -05:00
host.c lockd: move from strlcpy with unused retval to strscpy 2024-06-21 14:53:57 +02:00
Makefile License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
mon.c fs: lockd: avoid possible wrong NULL parameter 2023-09-19 12:20:15 +02:00
netns.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
procfs.c proc: convert everything to "struct proc_ops" 2020-02-04 03:05:26 +00:00
procfs.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
svc4proc.c lockd: set missing fl_flags field when retrieving args 2024-06-21 14:54:08 +02:00
svc.c lockd: drop inappropriate svc_get() from locked_get() 2024-06-21 14:54:14 +02:00
svclock.c lockd: fix file selection in nlmsvc_cancel_blocked 2024-06-21 14:54:08 +02:00
svcproc.c lockd: set missing fl_flags field when retrieving args 2024-06-21 14:54:08 +02:00
svcshare.c License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
svcsubs.c lockd: set other missing fields when unlocking files 2024-06-21 14:54:08 +02:00
svcxdr.h NLM: Fix svcxdr_encode_owner() 2024-06-21 14:53:20 +02:00
xdr4.c lockd: set file_lock start and end when decoding nlm4 testargs 2024-06-21 14:54:12 +02:00
xdr.c SUNRPC: Change return value type of .pc_encode 2024-06-21 14:53:26 +02:00