diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-03-27 06:47:14 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-04 15:48:45 -0400 |
commit | 371fdab10033528c42f64fc244c30d67b15e529d (patch) | |
tree | a034feee1863945b7c6aeba6d5cfa98dcba58d91 /fs | |
parent | 2b3b9bb03a9fb1e4c72947cc235771c6455ec7c9 (diff) |
hostfs: use kmalloc instead of kzalloc
The inode info structure is zeroed at allocation with kzalloc, and then
all but one of the fields (including the largest, vfs_inode) are
initialised explicitly. Switch to using kmalloc and initialise the
remaining field too.
Reported-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/hostfs/hostfs_kern.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index f2372ef80850..32f35f187989 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c | |||
@@ -228,10 +228,11 @@ static struct inode *hostfs_alloc_inode(struct super_block *sb) | |||
228 | { | 228 | { |
229 | struct hostfs_inode_info *hi; | 229 | struct hostfs_inode_info *hi; |
230 | 230 | ||
231 | hi = kzalloc(sizeof(*hi), GFP_KERNEL); | 231 | hi = kmalloc(sizeof(*hi), GFP_KERNEL); |
232 | if (hi == NULL) | 232 | if (hi == NULL) |
233 | return NULL; | 233 | return NULL; |
234 | hi->fd = -1; | 234 | hi->fd = -1; |
235 | hi->mode = 0; | ||
235 | inode_init_once(&hi->vfs_inode); | 236 | inode_init_once(&hi->vfs_inode); |
236 | return &hi->vfs_inode; | 237 | return &hi->vfs_inode; |
237 | } | 238 | } |