Re: [dpdk-dev] [PATCH] net/mlx5: fix flow director add and delete

2018-11-11 Thread Shahaf Shuler
Friday, November 9, 2018 12:12 AM¸ Yongseok Koh: > Subject: Re: [PATCH] net/mlx5: fix flow director add and delete > > > > On Nov 8, 2018, at 1:29 PM, Dekel Peled wrote: > > > > Fix the flow_fdir_cmp() function, used by flow_fdir_filter_lookup(). > > This function is used by flow_fdir_filter_add

Re: [dpdk-dev] [PATCH] net/mlx5: fix flow director add and delete

2018-11-08 Thread Yongseok Koh
> On Nov 8, 2018, at 1:29 PM, Dekel Peled wrote: > > Fix the flow_fdir_cmp() function, used by flow_fdir_filter_lookup(). > This function is used by flow_fdir_filter_add() to check if same rule > exists, and by flow_fdir_filter_delete() to find flow rule to delete. > > The function compared ac

[dpdk-dev] [PATCH] net/mlx5: fix flow director add and delete

2018-11-08 Thread Dekel Peled
Fix the flow_fdir_cmp() function, used by flow_fdir_filter_lookup(). This function is used by flow_fdir_filter_add() to check if same rule exists, and by flow_fdir_filter_delete() to find flow rule to delete. The function compared actions conf pointers, changed to compare actions type only. Fixes