]> git.openfabrics.org - compat-rdma/compat.git/commitdiff
Add dma_zalloc_coherent to fix build with kernels older than 3.2
authorNikolay Martynov <mar.kolya@gmail.com>
Mon, 16 Jan 2012 05:07:55 +0000 (00:07 -0500)
committerLuis R. Rodriguez <mcgrof@frijolero.org>
Mon, 16 Jan 2012 23:34:41 +0000 (15:34 -0800)
Signed-off-by: Nikolay Martynov <mar.kolya@gmail.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@frijolero.org>
include/linux/compat-3.2.h

index fb9ef68b550de6deddfd681a49ff6f84ecf33c3f..a17c4adf21583f20504ef17d7b4d615113a0e495 100644 (file)
@@ -64,6 +64,15 @@ static inline char *hex_byte_pack(char *buf, u8 byte)
         module_driver(__platform_driver, platform_driver_register, \
                         platform_driver_unregister)
 
+static inline void *dma_zalloc_coherent(struct device *dev, size_t size,
+                                       dma_addr_t *dma_handle, gfp_t flag)
+{
+       void *ret = dma_alloc_coherent(dev, size, dma_handle, flag);
+       if (ret)
+               memset(ret, 0, size);
+       return ret;
+}
+
 #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3,2,0)) */
 
 #endif /* LINUX_3_2_COMPAT_H */