The patch titled
reiser4: kmalloc + memset conversion to kzalloc
has been removed from the -mm tree. Its filename was
reiser4-kmalloc-memset-conversion-to-kzalloc.patch
This patch was dropped because it was folded into reiser4.patch
------------------------------------------------------
Subject: reiser4: kmalloc + memset conversion to kzalloc
From: Mariusz Kozlowski <[EMAIL PROTECTED]>
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/plugin/file/cryptcompress.h | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff -puN
fs/reiser4/plugin/file/cryptcompress.h~reiser4-kmalloc-memset-conversion-to-kzalloc
fs/reiser4/plugin/file/cryptcompress.h
---
a/fs/reiser4/plugin/file/cryptcompress.h~reiser4-kmalloc-memset-conversion-to-kzalloc
+++ a/fs/reiser4/plugin/file/cryptcompress.h
@@ -98,10 +98,9 @@ static inline int alloc_ts(struct tfm_st
assert("edward-931", stm);
assert("edward-932", *stm == NULL);
- *stm = kmalloc(sizeof **stm, reiser4_ctx_gfp_mask_get());
- if (*stm == NULL)
+ *stm = kzalloc(sizeof(**stm), reiser4_ctx_gfp_mask_get());
+ if (!*stm)
return -ENOMEM;
- memset(*stm, 0, sizeof **stm);
return 0;
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
reiser4.patch
reiser4-kmalloc-memset-conversion-to-kzalloc.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