Commit 12a16d15 authored by Benjamin Coddington's avatar Benjamin Coddington Committed by Trond Myklebust

NFS4: remove a redundant lock range check

flock64_to_posix_lock() is already doing this check
Signed-off-by: default avatarBenjamin Coddington <bcodding@redhat.com>
Reviewed-by: default avatarJeff Layton <jeff.layton@primarydata.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 675e508f
...@@ -6447,9 +6447,6 @@ nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request) ...@@ -6447,9 +6447,6 @@ nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
ctx = nfs_file_open_context(filp); ctx = nfs_file_open_context(filp);
state = ctx->state; state = ctx->state;
if (request->fl_start < 0 || request->fl_end < 0)
return -EINVAL;
if (IS_GETLK(cmd)) { if (IS_GETLK(cmd)) {
if (state != NULL) if (state != NULL)
return nfs4_proc_getlk(state, F_GETLK, request); return nfs4_proc_getlk(state, F_GETLK, request);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment