Re: [PATCH net-next v4 8/9] net: ethernet: ti: am65-cpsw: add network flow classification support
From: Jakub Kicinski
Date: Wed Aug 13 2025 - 10:48:26 EST
On Wed, 13 Aug 2025 16:49:27 +0300 Roger Quadros wrote:
> On 17/05/2025 04:29, Jakub Kicinski wrote:
> > On Wed, 14 May 2025 15:04:28 +0300 Roger Quadros wrote:
> >> The TRM doesn't mention anything about order of evaluation of the
> >> classifier rules however it does mention in [1]
> >> "if multiple classifier matches occur, the highest match
> >> with thread enable bit set will be used."
> >
> > So we're not sure how to maintain the user requested ordering?
>
> Currently we are using the user/ethtool provided location as is.
>
> > Am I reading this correctly? If so then ..
> >
> >> + if (fs->location == RX_CLS_LOC_ANY ||
> >
> > .. why are we rejecting LOC_ANY?
>
> Because driver doesn't have logic to decide the location and relies on ethtool to
> decide it if user doesn't supply it.
The location supplied by the user may have semantic significance.
IOW locations may be interpreted as priorities.
It's better to support LOC_ANY and add the 10 lines of code to
allocate the id in the driver..