The patch titled
     fs/reiser4/init_super.c: kmalloc + memset conversion to kzalloc
has been removed from the -mm tree.  Its filename was
     fs-reiser4-init_superc-kmalloc-memset-conversion-to-kzalloc.patch

This patch was dropped because it was folded into reiser4.patch

------------------------------------------------------
Subject: fs/reiser4/init_super.c: kmalloc + memset conversion to kzalloc
From: Mariusz Kozlowski <[EMAIL PROTECTED]>

 fs/reiser4/init_super.c | 19283 -> 19246 (-37 bytes)
 fs/reiser4/init_super.o | 155348 -> 155152 (-196 bytes)

Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]>
Cc: Edward Shishkin <[EMAIL PROTECTED]>
Cc: "Vladimir V. Saveliev" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 fs/reiser4/init_super.c |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)

diff -puN 
fs/reiser4/init_super.c~fs-reiser4-init_superc-kmalloc-memset-conversion-to-kzalloc
 fs/reiser4/init_super.c
--- 
a/fs/reiser4/init_super.c~fs-reiser4-init_superc-kmalloc-memset-conversion-to-kzalloc
+++ a/fs/reiser4/init_super.c
@@ -17,14 +17,13 @@ int reiser4_init_fs_info(struct super_bl
 {
        reiser4_super_info_data *sbinfo;
 
-       sbinfo = kmalloc(sizeof(reiser4_super_info_data),
+       sbinfo = kzalloc(sizeof(reiser4_super_info_data),
                         reiser4_ctx_gfp_mask_get());
        if (!sbinfo)
                return RETERR(-ENOMEM);
 
        super->s_fs_info = sbinfo;
        super->s_op = NULL;
-       memset(sbinfo, 0, sizeof(*sbinfo));
 
        ON_DEBUG(INIT_LIST_HEAD(&sbinfo->all_jnodes));
        ON_DEBUG(spin_lock_init(&sbinfo->all_guard));
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
reiser4.patch
fs-reiser4-init_superc-kmalloc-memset-conversion-to-kzalloc.patch
fs-reiser4-plugin-inode_ops_renamec-kmalloc-memset-conversion-to-kzalloc.patch
fs-reiser4-ktxnmgrdc-kmalloc-memset-conversion-to-kzalloc.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to