diff options
Diffstat (limited to 'fs/lockd/svclock.c')
| -rw-r--r-- | fs/lockd/svclock.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/lockd/svclock.c b/fs/lockd/svclock.c index e46353f41a4..afe4488c33d 100644 --- a/fs/lockd/svclock.c +++ b/fs/lockd/svclock.c @@ -26,7 +26,7 @@  #include <linux/kernel.h>  #include <linux/sched.h>  #include <linux/sunrpc/clnt.h> -#include <linux/sunrpc/svc.h> +#include <linux/sunrpc/svc_xprt.h>  #include <linux/lockd/nlm.h>  #include <linux/lockd/lockd.h>  #include <linux/kthread.h> @@ -447,11 +447,11 @@ nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file,  		goto out;  	} -	if (locks_in_grace() && !reclaim) { +	if (locks_in_grace(SVC_NET(rqstp)) && !reclaim) {  		ret = nlm_lck_denied_grace_period;  		goto out;  	} -	if (reclaim && !locks_in_grace()) { +	if (reclaim && !locks_in_grace(SVC_NET(rqstp))) {  		ret = nlm_lck_denied_grace_period;  		goto out;  	} @@ -559,7 +559,7 @@ nlmsvc_testlock(struct svc_rqst *rqstp, struct nlm_file *file,  		goto out;  	} -	if (locks_in_grace()) { +	if (locks_in_grace(SVC_NET(rqstp))) {  		ret = nlm_lck_denied_grace_period;  		goto out;  	} @@ -603,7 +603,7 @@ out:   * must be removed.   */  __be32 -nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock) +nlmsvc_unlock(struct net *net, struct nlm_file *file, struct nlm_lock *lock)  {  	int	error; @@ -615,7 +615,7 @@ nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)  				(long long)lock->fl.fl_end);  	/* First, cancel any lock that might be there */ -	nlmsvc_cancel_blocked(file, lock); +	nlmsvc_cancel_blocked(net, file, lock);  	lock->fl.fl_type = F_UNLCK;  	error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL); @@ -631,7 +631,7 @@ nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)   * The calling procedure must check whether the file can be closed.   */  __be32 -nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock) +nlmsvc_cancel_blocked(struct net *net, struct nlm_file *file, struct nlm_lock *lock)  {  	struct nlm_block	*block;  	int status = 0; @@ -643,7 +643,7 @@ nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock)  				(long long)lock->fl.fl_start,  				(long long)lock->fl.fl_end); -	if (locks_in_grace()) +	if (locks_in_grace(net))  		return nlm_lck_denied_grace_period;  	mutex_lock(&file->f_mutex);  |