diff options
author | Yuan Can <yuancan@huawei.com> | 2023-01-19 08:31:19 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-01-19 14:23:47 +0100 |
commit | f6510a93cfd8c6c79b4dda0f2967cdc6df42eff4 (patch) | |
tree | 95982fbdfc0646d0e28ea2eb1e77e79a89d93b30 | |
parent | 4193769b6dfd7ddc5ec5e2ccae6458f4ba65797f (diff) | |
download | linux-f6510a93cfd8c6c79b4dda0f2967cdc6df42eff4.tar.gz linux-f6510a93cfd8c6c79b4dda0f2967cdc6df42eff4.tar.bz2 linux-f6510a93cfd8c6c79b4dda0f2967cdc6df42eff4.zip |
staging: emxx_udc: Add checks for dma_alloc_coherent()
As the dma_alloc_coherent may return NULL, the return value needs to be
checked to avoid NULL poineter dereference.
Signed-off-by: Yuan Can <yuancan@huawei.com>
Reviewed-by: Simon Horman <horms@verge.net.au>
Link: https://lore.kernel.org/r/20230119083119.16956-1-yuancan@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/emxx_udc/emxx_udc.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c index b4e19174bef2..f9765841c4aa 100644 --- a/drivers/staging/emxx_udc/emxx_udc.c +++ b/drivers/staging/emxx_udc/emxx_udc.c @@ -2587,10 +2587,15 @@ static int nbu2ss_ep_queue(struct usb_ep *_ep, req->unaligned = false; if (req->unaligned) { - if (!ep->virt_buf) + if (!ep->virt_buf) { ep->virt_buf = dma_alloc_coherent(udc->dev, PAGE_SIZE, &ep->phys_buf, GFP_ATOMIC | GFP_DMA); + if (!ep->virt_buf) { + spin_unlock_irqrestore(&udc->lock, flags); + return -ENOMEM; + } + } if (ep->epnum > 0) { if (ep->direct == USB_DIR_IN) memcpy(ep->virt_buf, req->req.buf, |