diff options
author | Yan Burman <burman.yan@gmail.com> | 2006-12-06 20:39:01 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 08:39:41 -0800 |
commit | 01afb2134ed079fa4551b4d26f62423df6790c09 (patch) | |
tree | c2846354f3f3ef8e1248e80f94f23ce7e13a1b6e /fs/reiserfs/super.c | |
parent | 9399575dd30edcb84e821583daf81d4ba774a95b (diff) | |
download | kernel_samsung_espresso10-01afb2134ed079fa4551b4d26f62423df6790c09.zip kernel_samsung_espresso10-01afb2134ed079fa4551b4d26f62423df6790c09.tar.gz kernel_samsung_espresso10-01afb2134ed079fa4551b4d26f62423df6790c09.tar.bz2 |
[PATCH] reiser: replace kmalloc+memset with kzalloc
Replace kmalloc+memset with kzalloc
Signed-off-by: Yan Burman <burman.yan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/reiserfs/super.c')
-rw-r--r-- | fs/reiserfs/super.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 745bc71..7fb5fb0 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c @@ -1549,13 +1549,12 @@ static int reiserfs_fill_super(struct super_block *s, void *data, int silent) struct reiserfs_sb_info *sbi; int errval = -EINVAL; - sbi = kmalloc(sizeof(struct reiserfs_sb_info), GFP_KERNEL); + sbi = kzalloc(sizeof(struct reiserfs_sb_info), GFP_KERNEL); if (!sbi) { errval = -ENOMEM; goto error; } s->s_fs_info = sbi; - memset(sbi, 0, sizeof(struct reiserfs_sb_info)); /* Set default values for options: non-aggressive tails, RO on errors */ REISERFS_SB(s)->s_mount_opt |= (1 << REISERFS_SMALLTAIL); REISERFS_SB(s)->s_mount_opt |= (1 << REISERFS_ERROR_RO); |