VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   35 Branches   59 Tags
author: Panagiotis Issaris <takis@issaris.org> 2006-09-27 01:49:37 -0700 committer: Linus Torvalds <torvalds@g5.osdl.org> 2006-09-27 08:26:10 -0700 commit: f8314dc60ccba7e41f425048c4160dc7f63377d5 parent: 32c2d2bc4bed61323f14f2a7d69ccbd567253d8a
Commit Summary:
[PATCH] fs: Conversions from kmalloc+memset to k(z|c)alloc
Diffstat:
1 file changed, 1 insertion, 2 deletions
diff --git a/fs/hfs/bnode.c b/fs/hfs/bnode.c
index 13231dd5ce66..0d200068d0af 100644
--- a/fs/hfs/bnode.c
+++ b/fs/hfs/bnode.c
@@ -249,10 +249,9 @@ static struct hfs_bnode *__hfs_bnode_create(struct hfs_btree *tree, u32 cnid)
 	sb = tree->inode->i_sb;
 	size = sizeof(struct hfs_bnode) + tree->pages_per_bnode *
 		sizeof(struct page *);
-	node = kmalloc(size, GFP_KERNEL);
+	node = kzalloc(size, GFP_KERNEL);
 	if (!node)
 		return NULL;
-	memset(node, 0, size);
 	node->tree = tree;
 	node->this = cnid;
 	set_bit(HFS_BNODE_NEW, &node->flags);