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 /include/linux/ceph | |
parent | 08332893e37af6ae779367e78e444f8f9571511d (diff) | |
download | linux-stable-6f4dbd149d2a151b89d1a5bbf7530ee5546c7908.tar.gz linux-stable-6f4dbd149d2a151b89d1a5bbf7530ee5546c7908.tar.bz2 linux-stable-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 'include/linux/ceph')
-rw-r--r-- | include/linux/ceph/ceph_debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/ceph/ceph_debug.h b/include/linux/ceph/ceph_debug.h index aa2e19182d99..51c5bd64bd00 100644 --- a/include/linux/ceph/ceph_debug.h +++ b/include/linux/ceph/ceph_debug.h @@ -3,6 +3,8 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#include <linux/string.h> + #ifdef CONFIG_CEPH_LIB_PRETTYDEBUG /* @@ -12,12 +14,10 @@ */ # if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG) -extern const char *ceph_file_part(const char *s, int len); # define dout(fmt, ...) \ pr_debug("%.*s %12.12s:%-4d : " fmt, \ 8 - (int)sizeof(KBUILD_MODNAME), " ", \ - ceph_file_part(__FILE__, sizeof(__FILE__)), \ - __LINE__, ##__VA_ARGS__) + kbasename(__FILE__), __LINE__, ##__VA_ARGS__) # else /* faux printk call just to see any compiler warnings. */ # define dout(fmt, ...) do { \ |