Commit 7fd7d101 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Sage Weil

ceph/mds_client.c: quiet sparse noise

Quiet the following sparse noise:

warning: symbol 'get_nonsnap_parent' was not declared. Should it be static?
warning: symbol 'done_closing_sessions' was not declared. Should it be static?

Local functions don't need external visability. Make them static.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Sage Weil <sage@newdream.net>
Signed-off-by: default avatarSage Weil <sage@newdream.net>
parent c6ffe100
...@@ -619,7 +619,7 @@ static void __unregister_request(struct ceph_mds_client *mdsc, ...@@ -619,7 +619,7 @@ static void __unregister_request(struct ceph_mds_client *mdsc,
* *
* Called under mdsc->mutex. * Called under mdsc->mutex.
*/ */
struct dentry *get_nonsnap_parent(struct dentry *dentry) static struct dentry *get_nonsnap_parent(struct dentry *dentry)
{ {
/* /*
* we don't need to worry about protecting the d_parent access * we don't need to worry about protecting the d_parent access
...@@ -3154,7 +3154,7 @@ void ceph_mdsc_sync(struct ceph_mds_client *mdsc) ...@@ -3154,7 +3154,7 @@ void ceph_mdsc_sync(struct ceph_mds_client *mdsc)
/* /*
* true if all sessions are closed, or we force unmount * true if all sessions are closed, or we force unmount
*/ */
bool done_closing_sessions(struct ceph_mds_client *mdsc) static bool done_closing_sessions(struct ceph_mds_client *mdsc)
{ {
int i, n = 0; int i, n = 0;
......
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