igb_uio: fix build with kernel < 3.2
authorFerruh Yigit <ferruh.yigit@intel.com>
Mon, 3 Apr 2017 16:49:01 +0000 (17:49 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 3 Apr 2017 17:49:58 +0000 (19:49 +0200)
commit21be6fb6af7a26c6c92fe37128a99ffdfd8d69d3
treebb87ec1b3e560cfc7f435924e0bdb9febb299f16
parent1263b426ffc9869334da3c0ea46f43fa97599145
igb_uio: fix build with kernel < 3.2

Recently added "dma_zalloc_coherent()" call is causing build error
for Linux kernels < 3.2.

compile error:
lib/librte_eal/linuxapp/igb_uio/igb_uio.c:
  In function ‘igbuio_pci_probe’:
lib/librte_eal/linuxapp/igb_uio/igb_uio.c:434:2:
error: implicit declaration of function ‘dma_zalloc_coherent’
  [-Werror=implicit-function-declaration]
  map_addr = dma_zalloc_coherent(&dev->dev, 1024,
  ^

dma_zalloc_coherent() introduced with Linux kernel 3.2, with commit
Linux: 842fa69f3e0c ("include/linux/dma-mapping.h: add dma_zalloc_coherent()")
Since it does not exist for older kernels, causing a build error.

Switched to dma_alloc_coherent() API to prevent build error.

Fixes: d287e4d41be0 ("igb_uio: map dummy DMA forcing IOMMU domain attachment")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_eal/linuxapp/igb_uio/igb_uio.c