diff options
Diffstat (limited to 'fs/qnx4/inode.c')
-rw-r--r-- | fs/qnx4/inode.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c index 16829722be93..86a7be1399a8 100644 --- a/fs/qnx4/inode.c +++ b/fs/qnx4/inode.c | |||
@@ -234,9 +234,13 @@ static int qnx4_fill_super(struct super_block *s, void *data, int silent) | |||
234 | struct qnx4_sb_info *qs; | 234 | struct qnx4_sb_info *qs; |
235 | int ret = -EINVAL; | 235 | int ret = -EINVAL; |
236 | 236 | ||
237 | lock_kernel(); | ||
238 | |||
237 | qs = kzalloc(sizeof(struct qnx4_sb_info), GFP_KERNEL); | 239 | qs = kzalloc(sizeof(struct qnx4_sb_info), GFP_KERNEL); |
238 | if (!qs) | 240 | if (!qs) { |
241 | unlock_kernel(); | ||
239 | return -ENOMEM; | 242 | return -ENOMEM; |
243 | } | ||
240 | s->s_fs_info = qs; | 244 | s->s_fs_info = qs; |
241 | 245 | ||
242 | sb_set_blocksize(s, QNX4_BLOCK_SIZE); | 246 | sb_set_blocksize(s, QNX4_BLOCK_SIZE); |
@@ -284,6 +288,7 @@ static int qnx4_fill_super(struct super_block *s, void *data, int silent) | |||
284 | 288 | ||
285 | brelse(bh); | 289 | brelse(bh); |
286 | 290 | ||
291 | unlock_kernel(); | ||
287 | return 0; | 292 | return 0; |
288 | 293 | ||
289 | outi: | 294 | outi: |
@@ -293,6 +298,7 @@ static int qnx4_fill_super(struct super_block *s, void *data, int silent) | |||
293 | outnobh: | 298 | outnobh: |
294 | kfree(qs); | 299 | kfree(qs); |
295 | s->s_fs_info = NULL; | 300 | s->s_fs_info = NULL; |
301 | unlock_kernel(); | ||
296 | return ret; | 302 | return ret; |
297 | } | 303 | } |
298 | 304 | ||