Re: [PATCH] vmxnet3: fix checks for dma mapping errors

2015-12-01 Thread David Miller
From: Alexey Khoroshilov Date: Sat, 28 Nov 2015 01:29:30 +0300 > vmxnet3_drv does check dma_addr with dma_mapping_error() > after mapping dma memory. The patch adds the checks and > tries to handle failures. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: A

Re: [PATCH] vmxnet3: fix checks for dma mapping errors

2015-11-30 Thread Shrikrishna Khare
On Fri, 27 Nov 2015, Alexey Khoroshilov wrote: > vmxnet3_drv does check dma_addr with dma_mapping_error() > after mapping dma memory. The patch adds the checks and > tries to handle failures. > Typo: vmxnet3_drv does not check dma_addr... > Found by Linux Driver Verification project (linuxtes

[PATCH] vmxnet3: fix checks for dma mapping errors

2015-11-27 Thread Alexey Khoroshilov
vmxnet3_drv does check dma_addr with dma_mapping_error() after mapping dma memory. The patch adds the checks and tries to handle failures. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov --- drivers/net/vmxnet3/vmxnet3_drv.c | 71