diff options
Diffstat (limited to 'fs/lockd/svcsubs.c')
-rw-r--r-- | fs/lockd/svcsubs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/lockd/svcsubs.c b/fs/lockd/svcsubs.c index 01b4db9e5466..a92dd98f8401 100644 --- a/fs/lockd/svcsubs.c +++ b/fs/lockd/svcsubs.c | |||
@@ -100,11 +100,10 @@ nlm_lookup_file(struct svc_rqst *rqstp, struct nlm_file **result, | |||
100 | nlm_debug_print_fh("creating file for", f); | 100 | nlm_debug_print_fh("creating file for", f); |
101 | 101 | ||
102 | nfserr = nlm_lck_denied_nolocks; | 102 | nfserr = nlm_lck_denied_nolocks; |
103 | file = (struct nlm_file *) kmalloc(sizeof(*file), GFP_KERNEL); | 103 | file = kzalloc(sizeof(*file), GFP_KERNEL); |
104 | if (!file) | 104 | if (!file) |
105 | goto out_unlock; | 105 | goto out_unlock; |
106 | 106 | ||
107 | memset(file, 0, sizeof(*file)); | ||
108 | memcpy(&file->f_handle, f, sizeof(struct nfs_fh)); | 107 | memcpy(&file->f_handle, f, sizeof(struct nfs_fh)); |
109 | file->f_hash = hash; | 108 | file->f_hash = hash; |
110 | init_MUTEX(&file->f_sema); | 109 | init_MUTEX(&file->f_sema); |