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:
YueHaibing 2019-05-28 17:06:52 +08:00 committed by J. Bruce Fields
parent f85d93385e
commit 291adeb254
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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,
};