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/configfs/file.c | |
| parent | 3f1a9aaeffd8d1cbc5ab9776c45cbd66af1c9699 (diff) | |
| parent | a77c64c1a641950626181b4857abb701d8f38ccc (diff) | |
Merge branch 'master' into gfs2
Diffstat (limited to 'fs/configfs/file.c')
| -rw-r--r-- | fs/configfs/file.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/configfs/file.c b/fs/configfs/file.c index f499803743e0..85105e50f7db 100644 --- a/fs/configfs/file.c +++ b/fs/configfs/file.c | |||
| @@ -274,9 +274,8 @@ static int check_perm(struct inode * inode, struct file * file) | |||
| 274 | /* No error? Great, allocate a buffer for the file, and store it | 274 | /* No error? Great, allocate a buffer for the file, and store it |
| 275 | * it in file->private_data for easy access. | 275 | * it in file->private_data for easy access. |
| 276 | */ | 276 | */ |
| 277 | buffer = kmalloc(sizeof(struct configfs_buffer),GFP_KERNEL); | 277 | buffer = kzalloc(sizeof(struct configfs_buffer),GFP_KERNEL); |
| 278 | if (buffer) { | 278 | if (buffer) { |
| 279 | memset(buffer,0,sizeof(struct configfs_buffer)); | ||
| 280 | init_MUTEX(&buffer->sem); | 279 | init_MUTEX(&buffer->sem); |
| 281 | buffer->needs_read_fill = 1; | 280 | buffer->needs_read_fill = 1; |
| 282 | buffer->ops = ops; | 281 | buffer->ops = ops; |
