diff options
author | Jiapeng Chong <[email protected]> | 2021-12-02 16:35:42 +0800 |
---|---|---|
committer | Chuck Lever <[email protected]> | 2021-12-13 13:42:59 -0500 |
commit | 1e37d0e5bda45881eea1bec4b812def72c7d4aea (patch) | |
tree | 175b7b7c7326a6923bbbbe05e259ac5288a6e2c5 | |
parent | 7578b2f628db27281d3165af0aa862311883a858 (diff) |
NFSD: Fix inconsistent indenting
Eliminate the follow smatch warning:
fs/nfsd/nfs4xdr.c:4766 nfsd4_encode_read_plus_hole() warn: inconsistent
indenting.
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
Signed-off-by: Chuck Lever <[email protected]>
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 5a93a5db4fb0..4a75a27956c1 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -4804,8 +4804,8 @@ nfsd4_encode_read_plus_hole(struct nfsd4_compoundres *resp, return nfserr_resource; *p++ = htonl(NFS4_CONTENT_HOLE); - p = xdr_encode_hyper(p, read->rd_offset); - p = xdr_encode_hyper(p, count); + p = xdr_encode_hyper(p, read->rd_offset); + p = xdr_encode_hyper(p, count); *eof = (read->rd_offset + count) >= f_size; *maxcount = min_t(unsigned long, count, *maxcount); |