|
@@ -750,12 +750,11 @@ ext4_xattr_block_set(handle_t *handle, struct inode *inode,
|
|
|
}
|
|
|
} else {
|
|
|
/* Allocate a buffer where we construct the new block. */
|
|
|
- s->base = kmalloc(sb->s_blocksize, GFP_KERNEL);
|
|
|
+ s->base = kzalloc(sb->s_blocksize, GFP_KERNEL);
|
|
|
/* assert(header == s->base) */
|
|
|
error = -ENOMEM;
|
|
|
if (s->base == NULL)
|
|
|
goto cleanup;
|
|
|
- memset(s->base, 0, sb->s_blocksize);
|
|
|
header(s->base)->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
|
|
|
header(s->base)->h_blocks = cpu_to_le32(1);
|
|
|
header(s->base)->h_refcount = cpu_to_le32(1);
|