Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 291adeb2 authored by YueHaibing's avatar YueHaibing Committed by J. Bruce Fields
Browse files

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: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent f85d9338
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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,
};