- fs-reiser4-ktxnmgrdc-kmalloc-memset-conversion-to-kzalloc.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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

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

------------------------------------------------------
Subject: fs/reiser4/ktxnmgrd.c: kmalloc + memset conversion to kzalloc
From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx>

 fs/reiser4/ktxnmgrd.c | 5314 -> 5277 (-37 bytes)
 fs/reiser4/ktxnmgrd.o | 131624 -> 131496 (-128 bytes)

Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx>
Cc: Edward Shishkin <edward@xxxxxxxxxxx>
Cc: "Vladimir V. Saveliev" <vs@xxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 fs/reiser4/ktxnmgrd.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff -puN fs/reiser4/ktxnmgrd.c~fs-reiser4-ktxnmgrdc-kmalloc-memset-conversion-to-kzalloc fs/reiser4/ktxnmgrd.c
--- a/fs/reiser4/ktxnmgrd.c~fs-reiser4-ktxnmgrdc-kmalloc-memset-conversion-to-kzalloc
+++ a/fs/reiser4/ktxnmgrd.c
@@ -130,13 +130,12 @@ int reiser4_init_ktxnmgrd(struct super_b
 
 	assert("zam-1014", mgr->daemon == NULL);
 
-	ctx = kmalloc(sizeof(ktxnmgrd_context), reiser4_ctx_gfp_mask_get());
-	if (ctx == NULL)
+	ctx = kzalloc(sizeof(ktxnmgrd_context), reiser4_ctx_gfp_mask_get());
+	if (!ctx)
 		return RETERR(-ENOMEM);
 
 	assert("nikita-2442", ctx != NULL);
 
-	memset(ctx, 0, sizeof *ctx);
 	init_waitqueue_head(&ctx->wait);
 
 	/*kcond_init(&ctx->startup);*/
_

Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are

origin.patch
reiser4.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 majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux