Linux Headquarters
[ Register ]
[ About us ] [ Home Page ]

Advertisement
[ Kernel ] [ Documentation ] [ Links ] [ Books ]

Advertisement

Kernel v2.6.24 /fs/ext4/xattr.c

Filename:/fs/ext4/xattr.c
Lines Added:3
Lines Deleted:4
Also changed in: (Previous) 2.6.24-rc8  2.6.24-rc7  2.6.24-rc6  2.6.24-rc5  2.6.24-rc4  2.6.24-rc3 
(Following) 2.6.24-git6  2.6.24-git7  2.6.24-git8  2.6.24-git9  2.6.24-git10  2.6.24-git11 

Location
[  2.6.24
  [  fs
    [  ext4
       o  xattr.c

Patch

diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c
index b10d68f..8638730 100644
--- a/fs/ext4/xattr.c
+++ b/fs/ext4/xattr.c
@@ -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);
@@ -1121,7 +1120,7 @@ int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
    int total_ino, total_blk;
    void *base, *start, *end;
    int extra_isize = 0, error = 0, tried_min_extra_isize = 0;
-   int s_min_extra_isize = EXT4_SB(inode->i_sb)->s_es->s_min_extra_isize;
+   int s_min_extra_isize = le16_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_min_extra_isize);
 
    down_write(&EXT4_I(inode)->xattr_sem);
 retry:
@@ -1293,7 +1292,7 @@ retry:
 
       i.name = b_entry_name;
       i.value = buffer;
-      i.value_len = cpu_to_le32(size);
+      i.value_len = size;
       error = ext4_xattr_block_find(inode, &i, bs);
       if (error)
          goto cleanup;


Comments: webmaster (at) linuxhq.com.
Advertising: banners (at) linuxhq.com.
Compilation ©1998-2008 Linux Headquarters, Inc.