* [PATCH] staging: emxx_udc: Replace GFP_KERNEL with GFP_ATOMIC
@ 2015-02-20 13:13 Tapasweni Pathak
2015-02-24 23:25 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Tapasweni Pathak @ 2015-02-20 13:13 UTC (permalink / raw)
To: gregkh, vinc94, roberta.dobrescu, sachin.kamat, ebru.akagunduz,
damm+renesas, chris, devel, linux-kernel
Cc: tapaswenipathak, julia.lawall
To avoid deadlock, do not call blocking functions with spinlocks held.
Replace GFP_KERNEL with GFP_ATOMIC, as the latter will fail if the pile
doesn't have enough free pages but will not sleep and hence deadlock can
be avoided.
Found by Coccinelle.
Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
---
Is there any other way this can be fixed as it is better to avoid GFP_ATOMIC?
drivers/staging/emxx_udc/emxx_udc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
index 4be646c..6c1de27 100644
--- a/drivers/staging/emxx_udc/emxx_udc.c
+++ b/drivers/staging/emxx_udc/emxx_udc.c
@@ -2794,7 +2794,7 @@ static int nbu2ss_ep_queue(
if (ep->virt_buf == NULL)
ep->virt_buf = (u8 *)dma_alloc_coherent(
NULL, PAGE_SIZE,
- &ep->phys_buf, GFP_KERNEL | GFP_DMA);
+ &ep->phys_buf, GFP_ATOMIC | GFP_DMA);
if (ep->epnum > 0) {
if (ep->direct == USB_DIR_IN)
memcpy(ep->virt_buf, req->req.buf,
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] staging: emxx_udc: Replace GFP_KERNEL with GFP_ATOMIC
2015-02-20 13:13 [PATCH] staging: emxx_udc: Replace GFP_KERNEL with GFP_ATOMIC Tapasweni Pathak
@ 2015-02-24 23:25 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2015-02-24 23:25 UTC (permalink / raw)
To: Tapasweni Pathak
Cc: vinc94, roberta.dobrescu, sachin.kamat, ebru.akagunduz,
damm+renesas, chris, devel, linux-kernel, julia.lawall
On Fri, Feb 20, 2015 at 06:43:53PM +0530, Tapasweni Pathak wrote:
> To avoid deadlock, do not call blocking functions with spinlocks held.
>
> Replace GFP_KERNEL with GFP_ATOMIC, as the latter will fail if the pile
> doesn't have enough free pages but will not sleep and hence deadlock can
> be avoided.
>
> Found by Coccinelle.
>
> Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
> ---
> Is there any other way this can be fixed as it is better to avoid GFP_ATOMIC?
No, this is fine, nice fix.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-02-24 23:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-20 13:13 [PATCH] staging: emxx_udc: Replace GFP_KERNEL with GFP_ATOMIC Tapasweni Pathak
2015-02-24 23:25 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox