> -----Original Message----- > From: Ferruh Yigit [mailto:[email protected]] > Sent: Monday, September 14, 2020 6:55 PM > To: Yan, Zhirun <[email protected]>; Zhang, Qi Z <[email protected]>; > [email protected] > Cc: Cao, Yahui <[email protected]>; Wang, Xiao W > <[email protected]>; Su, Simei <[email protected]>; Guo, Junfeng > <[email protected]> > Subject: Re: [dpdk-dev] [PATCH v2 1/2] net/ice: refactor FDIR set conf > function > > On 9/14/2020 4:05 AM, Zhirun Yan wrote: > > The original set conf function in FDIR was very long. Refactor to > > increase readability to make it clearer and allow for more convenient > > further changes. > > > > No functional change here. > > > > Signed-off-by: Zhirun Yan <[email protected]> > > --- > > drivers/net/ice/ice_fdir_filter.c | 54 > > ++++++++++++++++++------------- > > 1 file changed, 31 insertions(+), 23 deletions(-) > > > > diff --git a/drivers/net/ice/ice_fdir_filter.c > > b/drivers/net/ice/ice_fdir_filter.c > > index 88c9bb03d..593dfd0e2 100644 > > --- a/drivers/net/ice/ice_fdir_filter.c > > +++ b/drivers/net/ice/ice_fdir_filter.c > > @@ -964,30 +964,10 @@ ice_fdir_input_set_parse(uint64_t inset, enum > ice_flow_field *field) > > } > > } > > > > -static int > > -ice_fdir_input_set_conf(struct ice_pf *pf, enum ice_fltr_ptype flow, > > - uint64_t input_set, enum ice_fdir_tunnel_type ttype) > > +static void > > +ice_fdir_input_set_hdrs(enum ice_fltr_ptype flow, struct > ice_flow_seg_info *seg, > > + enum ice_fdir_tunnel_type ttype) > > { > > Hi Zhirun, > > 'ttype' variable is not used in this function at all, what do you think > removing > it?
Hi Ferruh, Yes. I will fix it in V3. Thanks.

