Message ID | 1604764698-4269-7-git-send-email-brookxu@tencent.com |
---|---|
State | New |
Headers | show |
Series | [RESEND,1/8] ext4: use ext4_assert() to replace J_ASSERT() | expand |
On Sat, Nov 07, 2020 at 11:58:17PM +0800, Chunguang Xu wrote: > From: Chunguang Xu <brookxu@tencent.com> > > Delete invalid code inside ext4_xattr_block_set(). > > Signed-off-by: Chunguang Xu <brookxu@tencent.com> > Reviewed-by: Andreas Dilger <adilger@dilger.ca> Thanks, applied, with a slighly reworded commit description: ext4: delete nonsensical (commented-out) code inside ext4_xattr_block_set() - Ted
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index 6127e94..4e3b1f8 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c @@ -1927,7 +1927,6 @@ struct ext4_xattr_block_find { } else { /* Allocate a buffer where we construct the new block. */ s->base = kzalloc(sb->s_blocksize, GFP_NOFS); - /* assert(header == s->base) */ error = -ENOMEM; if (s->base == NULL) goto cleanup;