diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2017-05-19 11:33:16 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2017-05-23 20:32:10 +0200 |
commit | 6f4dbd149d2a151b89d1a5bbf7530ee5546c7908 (patch) | |
tree | 80d2eb0bd882f7cd9d72f8a6f847c156682ddcd4 /net/ceph | |
parent | 08332893e37af6ae779367e78e444f8f9571511d (diff) | |
download | linux-6f4dbd149d2a151b89d1a5bbf7530ee5546c7908.tar.gz linux-6f4dbd149d2a151b89d1a5bbf7530ee5546c7908.tar.bz2 linux-6f4dbd149d2a151b89d1a5bbf7530ee5546c7908.zip |
libceph: use kbasename() and kill ceph_file_part()
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Diffstat (limited to 'net/ceph')
-rw-r--r-- | net/ceph/ceph_common.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c index 4fd02831beed..47e94b560ba0 100644 --- a/net/ceph/ceph_common.c +++ b/net/ceph/ceph_common.c @@ -56,19 +56,6 @@ static const struct kernel_param_ops param_ops_supported_features = { module_param_cb(supported_features, ¶m_ops_supported_features, NULL, S_IRUGO); -/* - * find filename portion of a path (/foo/bar/baz -> baz) - */ -const char *ceph_file_part(const char *s, int len) -{ - const char *e = s + len; - - while (e != s && *(e-1) != '/') - e--; - return e; -} -EXPORT_SYMBOL(ceph_file_part); - const char *ceph_msg_type_name(int type) { switch (type) { |