Re: [dpdk-dev] [PATCH v1 2/8] net/mlx5: add mlx5 Linux specific file with getter functions

2020-06-09 Thread Ferruh Yigit
On 6/9/2020 9:40 AM, Ophir Munk wrote: > Hi Ferruh, > Please see inline > >> -Original Message- >> From: Ferruh Yigit >> Sent: Monday, June 8, 2020 2:20 PM >> To: Ophir Munk ; dev@dpdk.org; Matan Azrad >> ; Raslan Darawsheh >> Subject: Re:

Re: [dpdk-dev] [PATCH v1 2/8] net/mlx5: add mlx5 Linux specific file with getter functions

2020-06-09 Thread Ophir Munk
Hi Ferruh, Please see inline > -Original Message- > From: Ferruh Yigit > Sent: Monday, June 8, 2020 2:20 PM > To: Ophir Munk ; dev@dpdk.org; Matan Azrad > ; Raslan Darawsheh > Subject: Re: [dpdk-dev] [PATCH v1 2/8] net/mlx5: add mlx5 Linux specific file > with gette

Re: [dpdk-dev] [PATCH v1 2/8] net/mlx5: add mlx5 Linux specific file with getter functions

2020-06-08 Thread Ferruh Yigit
On 6/3/2020 4:05 PM, Ophir Munk wrote: > 'ctx' type (field in 'struct mlx5_ctx_shared') is changed from 'struct > ibv_context *' to 'void *'. 'ctx' members which are verbs dependent > (e.g. device_name) will be accessed through getter functions which are > added to a new file under Linux directory

[dpdk-dev] [PATCH v1 2/8] net/mlx5: add mlx5 Linux specific file with getter functions

2020-06-03 Thread Ophir Munk
'ctx' type (field in 'struct mlx5_ctx_shared') is changed from 'struct ibv_context *' to 'void *'. 'ctx' members which are verbs dependent (e.g. device_name) will be accessed through getter functions which are added to a new file under Linux directory: linux/mlx5_os.c. Signed-off-by: Ophir Munk