You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] Fix potential OOPs in blkdev_open()
blkdev_open() calls bc_acquire() to get a struct block_device. Since bc_acquire() may return NULL when system is out of memory an appropriate check is required. Signed-off-by: Pavel Emelianov <xemul@openvz.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
f2d0aa5bf8
commit
6a2aae06cc
@@ -1131,6 +1131,8 @@ static int blkdev_open(struct inode * inode, struct file * filp)
|
||||
filp->f_flags |= O_LARGEFILE;
|
||||
|
||||
bdev = bd_acquire(inode);
|
||||
if (bdev == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
res = do_open(bdev, filp, BD_MUTEX_NORMAL);
|
||||
if (res)
|
||||
|
||||
Reference in New Issue
Block a user