Re: [net-next PATCH] octeontx2-pf: Add ucast filter count configurability via devlink.

From: Sai Krishna Gajula
Date: Wed Apr 17 2024 - 01:18:19 EST



> -----Original Message-----
> From: Simon Horman <horms@xxxxxxxxxx>
> Sent: Tuesday, April 16, 2024 3:53 PM
> To: Sai Krishna Gajula <saikrishnag@xxxxxxxxxxx>
> Cc: davem@xxxxxxxxxxxxx; edumazet@xxxxxxxxxx; kuba@xxxxxxxxxx;
> pabeni@xxxxxxxxxx; netdev@xxxxxxxxxxxxxxx; linux-kernel@xxxxxxxxxxxxxxx;
> Sunil Kovvuri Goutham <sgoutham@xxxxxxxxxxx>; Geethasowjanya Akula
> <gakula@xxxxxxxxxxx>; Hariprasad Kelam <hkelam@xxxxxxxxxxx>; Subbaraya
> Sundeep Bhatta <sbhatta@xxxxxxxxxxx>
> Subject: Re: [net-next PATCH] octeontx2-pf: Add ucast filter
> count configurability via devlink.
>
> On Sun, Apr 14, 2024 at 04:28:30PM +0530, Sai Krishna wrote:
> > Added a devlink param to set/modify unicast filter count. Currently
> > it's hardcoded with a macro.
>
> Hi Sai,
>
> I think it would be nice to provide a sample devlink command in the patch
> description, as you did for:
>
> 2da489432747 ("octeontx2-pf: devlink params support to set mcam entry
> count")
>
> > Signed-off-by: Sai Krishna <saikrishnag@xxxxxxxxxxx>

Ack, yeah.. missed to add example command. Will do in patch v2.

>
> ...
>
> > diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_devlink.c
> > b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_devlink.c
>
> ...
>
> > +static int otx2_dl_ucast_flt_cnt_get(struct devlink *devlink, u32 id,
> > + struct devlink_param_gset_ctx *ctx) {
> > + struct otx2_devlink *otx2_dl = devlink_priv(devlink);
> > + struct otx2_nic *pfvf = otx2_dl->pfvf;
> > +
> > + if (!pfvf->flow_cfg) {
> > + ctx->val.vu8 = 0;
> > + return 0;
> > + }
> > +
> > + ctx->val.vu8 = pfvf->flow_cfg->ucast_flt_cnt;
>
> nit: perhaps this could be more succinctly expressed as follows
> (completely untested!):
>
> ctx->val.vu8 = pfvf->flow_cfg ? pfvf->flow_cfg->ucast_flt_cnt : 0;

Ack, Will submit changes with patch V2.

>
> > +
> > + return 0;
> > +}
>
> ...