common/mlx5: wrap memory allocation on Linux
authorOphir Munk <ophirmu@nvidia.com>
Mon, 28 Dec 2020 09:54:17 +0000 (11:54 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 8 Jan 2021 15:03:07 +0000 (16:03 +0100)
commit7e7af4e99a9d34e3d8510fe9c57b683ea762cfcc
treebd152f031a0871fcde4c156d0887f66856423d56
parent471da3682c691955dee4b6faee24a4deb6abf595
common/mlx5: wrap memory allocation on Linux

mlx5_malloc() API has an alignment parameter for system memory
allocations. malloc() is called for non-aligned allocations and
posix_memalign() is called for aligned allocations. When calling
mlx5_free() there is no distinction whether the memory was originally
allocated with or without alignment. Freeing a memory may be handled
differently by operating systems. Therefore this commit wraps these APIs
with OS specific calls: mlx5_os_malloc(), mlx5_os_free().

Signed-off-by: Ophir Munk <ophirmu@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
drivers/common/mlx5/linux/mlx5_common_os.h
drivers/common/mlx5/mlx5_malloc.c