]> git.baikalelectronics.ru Git - kernel.git/commit
ibmveth: fix DMA unmap error in ibmveth_xmit_start error path
authorTyrel Datwyler <tyreld@linux.vnet.ibm.com>
Mon, 31 Dec 2018 21:43:01 +0000 (15:43 -0600)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Dec 2018 23:40:11 +0000 (15:40 -0800)
commit294b9cbff850c982f77581e197c9f05cf1ad165b
tree2cfc242d64b27e1ff82dde9a5d1b209c83cad19c
parent4da6a81ce9da3d457e24c912fe5466f71c8b376d
ibmveth: fix DMA unmap error in ibmveth_xmit_start error path

Commit 6f7d161034ea ("ibmveth: Fix DMA unmap error") fixed an issue in the
normal code path of ibmveth_xmit_start() that was originally introduced by
Commit 711f90e197cb ("ibmveth: Add scatter-gather support"). This original
fix missed the error path where dma_unmap_page is wrongly called on the
header portion in descs[0] which was mapped with dma_map_single. As a
result a failure to DMA map any of the frags results in a dmesg warning
when CONFIG_DMA_API_DEBUG is enabled.

------------[ cut here ]------------
DMA-API: ibmveth 30000002: device driver frees DMA memory with wrong function
  [device address=0x000000000a430000] [size=172 bytes] [mapped as page] [unmapped as single]
WARNING: CPU: 1 PID: 8426 at kernel/dma/debug.c:1085 check_unmap+0x4fc/0xe10
...
<snip>
...
DMA-API: Mapped at:
ibmveth_start_xmit+0x30c/0xb60
dev_hard_start_xmit+0x100/0x450
sch_direct_xmit+0x224/0x490
__qdisc_run+0x20c/0x980
__dev_queue_xmit+0x1bc/0xf20

This fixes the API misuse by unampping descs[0] with dma_unmap_single.

Fixes: 711f90e197cb ("ibmveth: Add scatter-gather support")
Signed-off-by: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ibm/ibmveth.c