aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@gmail.com>2017-05-19 11:33:16 +0200
committerIlya Dryomov <idryomov@gmail.com>2017-05-23 20:32:10 +0200
commit6f4dbd149d2a151b89d1a5bbf7530ee5546c7908 (patch)
tree80d2eb0bd882f7cd9d72f8a6f847c156682ddcd4 /net
parentLinux 4.12-rc2 (diff)
downloadwireguard-linux-6f4dbd149d2a151b89d1a5bbf7530ee5546c7908.tar.xz
wireguard-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')
-rw-r--r--net/ceph/ceph_common.c13
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, &param_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) {