From: Dan Carpenter Date: Sat, 20 Mar 2010 13:01:27 +0000 (+0300) Subject: ceph: cleanup: remove dead code X-Git-Tag: v2.6.35-rc1~16^2~62 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7708075f18086ee7d02df8b891910893e9ea372;p=profile%2Fcommon%2Fkernel-common.git ceph: cleanup: remove dead code "xattr" is never NULL here. We took care of that in the previous if statement block. Signed-off-by: Dan Carpenter Signed-off-by: Sage Weil --- diff --git a/fs/ceph/xattr.c b/fs/ceph/xattr.c index 8938934..d940d14 100644 --- a/fs/ceph/xattr.c +++ b/fs/ceph/xattr.c @@ -186,12 +186,6 @@ static int __set_xattr(struct ceph_inode_info *ci, ci->i_xattrs.names_size -= xattr->name_len; ci->i_xattrs.vals_size -= xattr->val_len; } - if (!xattr) { - pr_err("__set_xattr ENOMEM on %p %llx.%llx xattr %s=%s\n", - &ci->vfs_inode, ceph_vinop(&ci->vfs_inode), name, - xattr->val); - return -ENOMEM; - } ci->i_xattrs.names_size += name_len; ci->i_xattrs.vals_size += val_len; if (val)