Re: [PATCH net-next v2 2/3] net: sched: tbf: pass all params to offload users

From: Jakub Kicinski

Date: Thu May 07 2026 - 10:42:57 EST


On Thu, 7 May 2026 11:11:58 +0800 David Yang wrote:
> > > struct tc_tbf_qopt_offload_replace_params {
> > > + u32 limit;
> > > + u32 max_size;
> > > + s64 buffer;
> > > + s64 mtu;
> >
> > The buffer and mtu fields are stored in tbf_sched_data in nanoseconds
> > (see tbf_change() in net/sched/sch_tbf.c where they are derived via
> > PSCHED_TICKS2NS(qopt->buffer) and psched_l2t_ns()), but they are
> > exposed here as bare s64 buffer / s64 mtu right next to max_size
> > which is a byte count.
> >
> > Would it be worth renaming these to buffer_ns / mtu_ns, or adding
> > kerneldoc to describe their unit?
> >
> > A driver author reading this struct and seeing mtu adjacent to
> > max_size might reasonably assume mtu is a byte MTU and program
> > hardware accordingly.
>
> These are carbon copies of struct tbf_sched_data, I see no reason to
> rename just here.

Driver API has broader exposure and more potential for
misunderstandings. AI's naming suggestion makes sense to me.