diff options
author | Ravishankar N <ravishankar@redhat.com> | 2014-08-29 10:42:02 +0000 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-09-29 01:13:08 -0700 |
commit | 2a2f1130689d388f26b41f5df3e0bf572e0addb5 (patch) | |
tree | 7cef3f717baaea3969348d7c9668f6971416c503 /xlators/mount | |
parent | 7113d873af1f129effd8c6da21b49e797de8eab0 (diff) |
glusterfs: allow setxattr of keys with null values.
Disk based file systems allow to get/set extended attribute key-value pairs where
value can be null. Fuse/libgfapi clients must be able to do the same on a
gluster volume.
Change-Id: Ifc11134cc07f1a3ede43f9d027554dcd10b5c930
BUG: 1135514
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
Reviewed-on: http://review.gluster.org/8567
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/mount')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 17335492465..380093a9a7a 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -3192,9 +3192,6 @@ fuse_setxattr (xlator_t *this, fuse_in_header_t *finh, void *msg) if (fsi->size > 0) { dict_value = memdup (value, fsi->size); - } else { - gf_log (THIS->name, GF_LOG_ERROR, "value size zero"); - dict_value = NULL; } dict_set (state->xattr, newkey, data_from_dynptr ((void *)dict_value, fsi->size)); |