diff options
author | Ilya Dryomov <ilya.dryomov@inktank.com> | 2014-07-25 10:44:58 +0200 |
---|---|---|
committer | Ilya Dryomov <ilya.dryomov@inktank.com> | 2014-07-28 11:28:33 +0200 |
commit | 1a295bd8c854de221813d0ba0848031a8985b869 (patch) | |
tree | 652ad3aed1d29f177e01ad4f30da9ac71e83739e /fs/ceph/xattr.c | |
parent | rbd: take snap_id into account when reading in parent info (diff) | |
download | linux-1a295bd8c854de221813d0ba0848031a8985b869.tar.xz linux-1a295bd8c854de221813d0ba0848031a8985b869.zip |
ceph: remove redundant memset(0)
xattrs array of pointers is allocated with kcalloc() - no need to
memset() it to 0 right after that.
Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Diffstat (limited to 'fs/ceph/xattr.c')
-rw-r--r-- | fs/ceph/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/xattr.c b/fs/ceph/xattr.c index c9c2b887381e..f89698cdbc41 100644 --- a/fs/ceph/xattr.c +++ b/fs/ceph/xattr.c @@ -597,7 +597,7 @@ start: err = -ENOMEM; if (!xattrs) goto bad_lock; - memset(xattrs, 0, numattr*sizeof(struct ceph_xattr *)); + for (i = 0; i < numattr; i++) { xattrs[i] = kmalloc(sizeof(struct ceph_inode_xattr), GFP_NOFS); |