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 <[EMAIL PROTECTED]>
fs/reiser4/ktxnmgrd.c | 5314 -> 5277 (-37 bytes)
fs/reiser4/ktxnmgrd.o | 131624 -> 131496 (-128 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/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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html