lockd: Make two symbols static
Fix sparse warnings: fs/lockd/clntproc.c:57:6: warning: symbol 'nlmclnt_put_lockowner' was not declared. Should it be static? fs/lockd/svclock.c:409:35: warning: symbol 'nlmsvc_lock_ops' was not declared. Should it be static? Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
f85d93385e
commit
291adeb254
|
@ -54,7 +54,7 @@ nlmclnt_get_lockowner(struct nlm_lockowner *lockowner)
|
|||
return lockowner;
|
||||
}
|
||||
|
||||
void nlmclnt_put_lockowner(struct nlm_lockowner *lockowner)
|
||||
static void nlmclnt_put_lockowner(struct nlm_lockowner *lockowner)
|
||||
{
|
||||
if (!refcount_dec_and_lock(&lockowner->count, &lockowner->host->h_lock))
|
||||
return;
|
||||
|
|
|
@ -406,7 +406,7 @@ static void nlmsvc_locks_release_private(struct file_lock *fl)
|
|||
nlmsvc_put_lockowner((struct nlm_lockowner *)fl->fl_owner);
|
||||
}
|
||||
|
||||
const struct file_lock_operations nlmsvc_lock_ops = {
|
||||
static const struct file_lock_operations nlmsvc_lock_ops = {
|
||||
.fl_copy_lock = nlmsvc_locks_copy_lock,
|
||||
.fl_release_private = nlmsvc_locks_release_private,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue