irda: unbalanced lock_kernel in irnet_ppp
Add the missing unlock_kernel in one ioctl operation. Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fdd3d631cd
commit
454debe45c
|
@ -706,7 +706,8 @@ dev_irnet_ioctl(
|
||||||
lock_kernel();
|
lock_kernel();
|
||||||
if(ap->ppp_open && !put_user(ppp_unit_number(&ap->chan),
|
if(ap->ppp_open && !put_user(ppp_unit_number(&ap->chan),
|
||||||
(int __user *)argp))
|
(int __user *)argp))
|
||||||
err = 0;
|
err = 0;
|
||||||
|
unlock_kernel();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* All these ioctls can be passed both directly and from ppp_generic,
|
/* All these ioctls can be passed both directly and from ppp_generic,
|
||||||
|
|
Loading…
Reference in New Issue