diff options
Diffstat (limited to 'fs/afs/volume.c')
-rw-r--r-- | fs/afs/volume.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/afs/volume.c b/fs/afs/volume.c index 0ff4b86476e3..768c6dbd323a 100644 --- a/fs/afs/volume.c +++ b/fs/afs/volume.c | |||
@@ -186,11 +186,10 @@ int afs_volume_lookup(const char *name, struct afs_cell *cell, int rwpath, | |||
186 | _debug("creating new volume record"); | 186 | _debug("creating new volume record"); |
187 | 187 | ||
188 | ret = -ENOMEM; | 188 | ret = -ENOMEM; |
189 | volume = kmalloc(sizeof(struct afs_volume), GFP_KERNEL); | 189 | volume = kzalloc(sizeof(struct afs_volume), GFP_KERNEL); |
190 | if (!volume) | 190 | if (!volume) |
191 | goto error_up; | 191 | goto error_up; |
192 | 192 | ||
193 | memset(volume, 0, sizeof(struct afs_volume)); | ||
194 | atomic_set(&volume->usage, 1); | 193 | atomic_set(&volume->usage, 1); |
195 | volume->type = type; | 194 | volume->type = type; |
196 | volume->type_force = force; | 195 | volume->type_force = force; |