From: Jesper Juhl Date: Mon, 20 Dec 2010 02:41:55 +0000 (-0500) Subject: ext4: use kmem_cache_zalloc() in ext4_init_io_end() X-Git-Tag: v2.6.38-rc1~409^2~31 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b17b35ec13adfeb0346d4b329110b14adc509327;p=pandora-kernel.git ext4: use kmem_cache_zalloc() in ext4_init_io_end() Use advantage of kmem_cache_zalloc() to remove a memset() call in ext4_init_io_end() and save a few bytes. Before: [jj@dragon linux-2.6]$ size fs/ext4/page-io.o text data bss dec hex filename 3016 0 624 3640 e38 fs/ext4/page-io.o After: [jj@dragon linux-2.6]$ size fs/ext4/page-io.o text data bss dec hex filename 3000 0 624 3624 e28 fs/ext4/page-io.o Signed-off-by: Jesper Juhl Signed-off-by: "Theodore Ts'o" --- Reading git-diff-tree failed