usb: catch attempts to submit urbs with a vmalloc'd transfer buffer
authorDan Williams <[email protected]>
Thu, 8 May 2014 16:25:56 +0000 (19:25 +0300)
committerGreg Kroah-Hartman <[email protected]>
Tue, 20 May 2014 01:03:24 +0000 (10:03 +0900)
commit29d2fef8be1165a26984a94fbcf81d68c1442fc5
treeb16a13a26c04b099add552c7edb14d71a7db5da3
parent654a55d34f880bb56b3cebab53771a09a404a1f8
usb: catch attempts to submit urbs with a vmalloc'd transfer buffer

Save someone else the debug cycles of figuring out why a driver's
transfer request is failing or causing undefined system behavior.
Buffers submitted for dma must come from GFP allocated / DMA-able
memory.

Return -EAGAIN matching the return value for dma_mapping_error() cases.

Acked-by: Alan Stern <[email protected]>
Cc: Sarah Sharp <[email protected]>
Cc: Mathias Nyman <[email protected]>
Signed-off-by: Dan Williams <[email protected]>
Signed-off-by: Mathias Nyman <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/usb/core/hcd.c