diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-08-21 10:32:13 +0300 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2013-09-01 08:16:36 -0400 |
commit | ed84885d1e03839b8508ab707657d8d1002edea6 (patch) | |
tree | 8e5ec12b50c51e9f92554c180b8e00927554b1ab /fs | |
parent | e57138b3e96e45a63124492e736612378096290f (diff) | |
download | kernel_goldelico_gta04-ed84885d1e03839b8508ab707657d8d1002edea6.zip kernel_goldelico_gta04-ed84885d1e03839b8508ab707657d8d1002edea6.tar.gz kernel_goldelico_gta04-ed84885d1e03839b8508ab707657d8d1002edea6.tar.bz2 |
btrfs: reuse kbasename helper
To get name of the file from a pathname let's use kbasename() helper. It allows
to simplify code a bit.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/send.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index cbe92da..b4b1546 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -26,6 +26,7 @@ #include <linux/radix-tree.h> #include <linux/crc32c.h> #include <linux/vmalloc.h> +#include <linux/string.h> #include "send.h" #include "backref.h" @@ -2601,7 +2602,6 @@ static int record_ref(struct list_head *head, u64 dir, u64 dir_gen, struct fs_path *path) { struct recorded_ref *ref; - char *tmp; ref = kmalloc(sizeof(*ref), GFP_NOFS); if (!ref) @@ -2611,20 +2611,14 @@ static int record_ref(struct list_head *head, u64 dir, ref->dir_gen = dir_gen; ref->full_path = path; - tmp = strrchr(ref->full_path->start, '/'); - if (!tmp) { - ref->name_len = ref->full_path->end - ref->full_path->start; - ref->name = ref->full_path->start; + ref->name = (char *)kbasename(ref->full_path->start); + ref->name_len = ref->full_path->end - ref->name; + ref->dir_path = ref->full_path->start; + if (ref->name == ref->full_path->start) ref->dir_path_len = 0; - ref->dir_path = ref->full_path->start; - } else { - tmp++; - ref->name_len = ref->full_path->end - tmp; - ref->name = tmp; - ref->dir_path = ref->full_path->start; + else ref->dir_path_len = ref->full_path->end - ref->full_path->start - 1 - ref->name_len; - } list_add_tail(&ref->list, head); return 0; |