]> Pileus Git - ~andy/linux/commitdiff
[media] mx2_camera: use GFP_ATOMIC under spin lock
authorCyril Roelandt <tipecaml@gmail.com>
Mon, 19 Nov 2012 21:36:09 +0000 (18:36 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 4 Dec 2012 17:03:59 +0000 (15:03 -0200)
Found using the following semantic patch:
<spml>
@@
@@
spin_lock_irqsave(...);
... when != spin_unlock_irqrestore(...);
* GFP_KERNEL
</spml>

Signed-off-by: Cyril Roelandt <tipecaml@gmail.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/platform/soc_camera/mx2_camera.c

index 9a55f4c4c7f4ec9ad9a050ca0d8220e482ee9818..77529f8603865303f512262daea79aca02a15d47 100644 (file)
@@ -879,7 +879,7 @@ static int mx2_start_streaming(struct vb2_queue *q, unsigned int count)
                pcdev->discard_size = icd->user_height * bytesperline;
                pcdev->discard_buffer = dma_alloc_coherent(ici->v4l2_dev.dev,
                                pcdev->discard_size, &pcdev->discard_buffer_dma,
-                               GFP_KERNEL);
+                               GFP_ATOMIC);
                if (!pcdev->discard_buffer) {
                        spin_unlock_irqrestore(&pcdev->lock, flags);
                        return -ENOMEM;