From: Matthias Lange Date: Wed, 17 May 2017 15:32:04 +0000 (+0300) Subject: xhci: remove GFP_DMA flag from allocation X-Git-Tag: MMI-PSA29.97-13-9~5558^2~5 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5db851cf20857c5504b146046e97cb7781f2a743;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git xhci: remove GFP_DMA flag from allocation There is no reason to restrict allocations to the first 16MB ISA DMA addresses. It is causing problems in a virtualization setup with enabled IOMMU (x86_64). The result is that USB is not working in the VM. CC: Signed-off-by: Matthias Lange Signed-off-by: Mathias Nyman Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index 12b573cfb846..1f1687e888d6 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c @@ -56,7 +56,7 @@ static struct xhci_segment *xhci_segment_alloc(struct xhci_hcd *xhci, } if (max_packet) { - seg->bounce_buf = kzalloc(max_packet, flags | GFP_DMA); + seg->bounce_buf = kzalloc(max_packet, flags); if (!seg->bounce_buf) { dma_pool_free(xhci->segment_pool, seg->trbs, dma); kfree(seg);