diff options
| author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-28 08:29:59 -0400 |
|---|---|---|
| committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-28 08:29:59 -0400 |
| commit | 185a257f2f73bcd89050ad02da5bedbc28fc43fa (patch) | |
| tree | 5e32586114534ed3f2165614cba3d578f5d87307 /fs/afs/volume.c | |
| parent | 3f1a9aaeffd8d1cbc5ab9776c45cbd66af1c9699 (diff) | |
| parent | a77c64c1a641950626181b4857abb701d8f38ccc (diff) | |
Merge branch 'master' into gfs2
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; |
