diff options
author | Benjamin Coddington <bcodding@redhat.com> | 2017-04-11 12:50:07 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2017-04-21 10:45:00 -0400 |
commit | 12a16d15b67c66fc0a8274d094a270e4fbaed3eb (patch) | |
tree | 646ee41b1b6e619705a790edfa017d39d3a9ec42 | |
parent | 675e508f53e2cc0b1ab750a0ff2b477ccbab4cfb (diff) | |
download | linux-stable-12a16d15b67c66fc0a8274d094a270e4fbaed3eb.tar.gz linux-stable-12a16d15b67c66fc0a8274d094a270e4fbaed3eb.tar.bz2 linux-stable-12a16d15b67c66fc0a8274d094a270e4fbaed3eb.zip |
NFS4: remove a redundant lock range check
flock64_to_posix_lock() is already doing this check
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Reviewed-by: Jeff Layton <jeff.layton@primarydata.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
-rw-r--r-- | fs/nfs/nfs4proc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 6e9ff2d9a5bf..d682ef3b2da2 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -6447,9 +6447,6 @@ nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request) ctx = nfs_file_open_context(filp); state = ctx->state; - if (request->fl_start < 0 || request->fl_end < 0) - return -EINVAL; - if (IS_GETLK(cmd)) { if (state != NULL) return nfs4_proc_getlk(state, F_GETLK, request); |