[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <417966d0-e656-b4e6-c1ea-b53bf687a870@zaltys.org>
Date: Mon, 13 May 2019 23:33:11 +1200
From: James Grant <jamesg@...tys.org>
To: Alexandre Belloni <alexandre.belloni@...tlin.com>,
Felipe Balbi <balbi@...nel.org>,
Vladimir Zapolskiy <vz@...ia.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org,
James Grant <james.grant@....com>,
Sylvain Lemieux <slemieux.tyco@...il.com>,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH] usb: gadget: udc: lpc32xx: allocate descriptor with
GFP_ATOMIC
Tested with a board containing LPC3250 SOC and STOTG04 PHY by using
serial gadget.
Needed patch series starting with "[PATCH 0/5] usb: gadget: udc:
lpc32xx: add stotg04 phy support" also.
Tested-by: James Grant <jamesg@...tys.org>
Regards,
James Grant.
On 11/05/2019 00:42, Alexandre Belloni wrote:
> Gadget drivers may queue request in interrupt context. This would lead to
> a descriptor allocation in that context. In that case we would hit
> BUG_ON(in_interrupt()) in __get_vm_area_node.
>
> Signed-off-by: Alexandre Belloni<alexandre.belloni@...tlin.com>
> ---
> drivers/usb/gadget/udc/lpc32xx_udc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/gadget/udc/lpc32xx_udc.c b/drivers/usb/gadget/udc/lpc32xx_udc.c
> index d8f1c60793ed..b706d9c85a35 100644
> --- a/drivers/usb/gadget/udc/lpc32xx_udc.c
> +++ b/drivers/usb/gadget/udc/lpc32xx_udc.c
> @@ -938,7 +938,7 @@ static struct lpc32xx_usbd_dd_gad *udc_dd_alloc(struct lpc32xx_udc *udc)
> struct lpc32xx_usbd_dd_gad *dd;
>
> dd = (struct lpc32xx_usbd_dd_gad *) dma_pool_alloc(
> - udc->dd_cache, (GFP_KERNEL | GFP_DMA), &dma);
> + udc->dd_cache, (GFP_ATOMIC | GFP_DMA), &dma);
> if (dd)
> dd->this_dma = dma;
>
Powered by blists - more mailing lists