projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54067ae
)
Btrfs: remove unused variable in __process_changed_new_xattr()
author
Tsutomu Itoh
<t-itoh@jp.fujitsu.com>
Thu, 18 Apr 2013 07:10:44 +0000
(07:10 +0000)
committer
Josef Bacik
<jbacik@fusionio.com>
Mon, 6 May 2013 19:55:12 +0000
(15:55 -0400)
Variable 'p' is not used any more. So, remove it.
Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/send.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/btrfs/send.c
b/fs/btrfs/send.c
index e0c69a106c779c28b9a754b20509bcde09ed0c0b..158b91984b600099cd1938649393ef0a969c2db2 100644
(file)
--- a/
fs/btrfs/send.c
+++ b/
fs/btrfs/send.c
@@
-3479,7
+3479,6
@@
static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
struct send_ctx *sctx = ctx;
char *found_data = NULL;
int found_data_len = 0;
- struct fs_path *p = NULL;
ret = find_xattr(sctx, sctx->parent_root, sctx->right_path,
sctx->cmp_key, name, name_len, &found_data,
@@
-3498,7
+3497,6
@@
static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
}
kfree(found_data);
- fs_path_free(sctx, p);
return ret;
}