diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2014-04-09 14:11:31 +0800 |
---|---|---|
committer | Yan, Zheng <zheng.z.yan@intel.com> | 2014-06-06 09:29:50 +0800 |
commit | e84be11c5360df33f0ba6c39185ccba564ec7177 (patch) | |
tree | 182cbaabac0f0de0a1649c2b98cbc1640ff55024 /fs/ceph | |
parent | 4b660a7f5c8099d88d1a43d8ae138965112592c7 (diff) | |
download | linux-stable-e84be11c5360df33f0ba6c39185ccba564ec7177.tar.gz linux-stable-e84be11c5360df33f0ba6c39185ccba564ec7177.tar.bz2 linux-stable-e84be11c5360df33f0ba6c39185ccba564ec7177.zip |
ceph: ceph_get_parent() can be static
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Reviewed-by: Yan, Zheng <zheng.z.yan@intel.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/export.c b/fs/ceph/export.c index 00d6af6a32ec..8d7d782f4382 100644 --- a/fs/ceph/export.c +++ b/fs/ceph/export.c @@ -169,7 +169,7 @@ static struct dentry *__get_parent(struct super_block *sb, return dentry; } -struct dentry *ceph_get_parent(struct dentry *child) +static struct dentry *ceph_get_parent(struct dentry *child) { /* don't re-export snaps */ if (ceph_snap(child->d_inode) != CEPH_NOSNAP) |