diff options
author | Dan Carpenter <dan.carpenter@linaro.org> | 2023-12-04 13:30:06 +0100 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2024-01-07 23:54:26 +0100 |
commit | 3c86e615d17d1f6194ff222247d291fc9df16ff4 (patch) | |
tree | 09f5fd3c316966a7c46d783ad02f352733f03c2d /fs/nfsd | |
parent | SUNRPC: Remove RQ_SPLICE_OK (diff) | |
download | linux-3c86e615d17d1f6194ff222247d291fc9df16ff4.tar.xz linux-3c86e615d17d1f6194ff222247d291fc9df16ff4.zip |
nfsd: remove unnecessary NULL check
We check "state" for NULL on the previous line so it can't be NULL here.
No need to check again.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/r/202312031425.LffZTarR-lkp@intel.com/
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 3edbfa0233e6..2fa54cfd4882 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -6575,7 +6575,7 @@ unlock: spin_unlock(&nn->s2s_cp_lock); if (!state) return nfserr_bad_stateid; - if (!clp && state) + if (!clp) *cps = state; return 0; } |