mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
framebuffer compat_ioctl deadlock
Fix deadlock in fb_compat_ioctl. fb_compat_ioctl acquires a mutex and calls fb_ioctl that tries to acquire that mutex too. A regression added during BKL removal. Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
51b7616e36
commit
120a37470c
@ -1262,8 +1262,8 @@ fb_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|||||||
case FBIOPUT_CON2FBMAP:
|
case FBIOPUT_CON2FBMAP:
|
||||||
arg = (unsigned long) compat_ptr(arg);
|
arg = (unsigned long) compat_ptr(arg);
|
||||||
case FBIOBLANK:
|
case FBIOBLANK:
|
||||||
ret = fb_ioctl(file, cmd, arg);
|
mutex_unlock(&info->lock);
|
||||||
break;
|
return fb_ioctl(file, cmd, arg);
|
||||||
|
|
||||||
case FBIOGET_FSCREENINFO:
|
case FBIOGET_FSCREENINFO:
|
||||||
ret = fb_get_fscreeninfo(inode, file, cmd, arg);
|
ret = fb_get_fscreeninfo(inode, file, cmd, arg);
|
||||||
|
Loading…
Reference in New Issue
Block a user