Re: [dpdk-dev] [PATCH] net/mlx5: fix crash when configure is not called

2018-05-26 Thread Shahaf Shuler
Thursday, May 24, 2018 9:22 PM, Yongseok Koh: > Subject: Re: [PATCH] net/mlx5: fix crash when configure is not called > > > > On May 24, 2018, at 7:36 AM, Adrien Mazarguil > wrote: > > > > Although uncommon, applications may destroy a device immediately after > > probing it without going through

Re: [dpdk-dev] [PATCH] net/mlx5: fix crash when configure is not called

2018-05-24 Thread Yongseok Koh
> On May 24, 2018, at 11:21 AM, Yongseok Koh wrote: > > >> On May 24, 2018, at 7:36 AM, Adrien Mazarguil >> wrote: >> >> Although uncommon, applications may destroy a device immediately after >> probing it without going through dev_configure() first. >> >> This patch addresses a crash which

Re: [dpdk-dev] [PATCH] net/mlx5: fix crash when configure is not called

2018-05-24 Thread Yongseok Koh
> On May 24, 2018, at 7:36 AM, Adrien Mazarguil > wrote: > > Although uncommon, applications may destroy a device immediately after > probing it without going through dev_configure() first. > > This patch addresses a crash which occurs when mlx5_dev_close() calls > mlx5_mr_release() due to an

[dpdk-dev] [PATCH] net/mlx5: fix crash when configure is not called

2018-05-24 Thread Adrien Mazarguil
Although uncommon, applications may destroy a device immediately after probing it without going through dev_configure() first. This patch addresses a crash which occurs when mlx5_dev_close() calls mlx5_mr_release() due to an uninitialized entry in the private structure. Fixes: 974f1e7ef146 ("net/