Commit a1b4c86b authored by Pete Eberlein's avatar Pete Eberlein Committed by Mauro Carvalho Chehab

[media] s2255drv: atomic submit urb in completion handler

An usb_submit_urb should be atomic in a completion handler. This fixes
"BUG: scheduling while atomic" messages.
Signed-off-by: default avatarPete Eberlein <pete@sensoray.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 574312d8
...@@ -2382,7 +2382,7 @@ static void read_pipe_completion(struct urb *purb) ...@@ -2382,7 +2382,7 @@ static void read_pipe_completion(struct urb *purb)
read_pipe_completion, pipe_info); read_pipe_completion, pipe_info);
if (pipe_info->state != 0) { if (pipe_info->state != 0) {
if (usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL)) { if (usb_submit_urb(pipe_info->stream_urb, GFP_ATOMIC)) {
dev_err(&dev->udev->dev, "error submitting urb\n"); dev_err(&dev->udev->dev, "error submitting urb\n");
} }
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment