Re: [PATCH net-next v3 1/5] net: add ndo_update_offloads for offload computation
From: Hangbin Liu <hidden>
Date: 2026-03-18 01:15:30
Also in:
bridge, lkml
On Tue, Mar 17, 2026 at 04:14:35PM +0100, Sabrina Dubroca wrote:
2026-03-16, 12:26:09 +0800, Hangbin Liu wrote:quoted
Add a new ndo_update_offloads callback to net_device_ops that allows devices to compute and update their offload features during feature updates. This callback enables master devices to recompute their features based on current slave device configuration. This is particularly useful for bonding, bridging, team, and failover devices that need to aggregate features from their lower devices. The callback is optional and only implemented by devices that need dynamic offload feature computation.Maybe a dumb idea (and sorry to suggest this quite late in your submissions): since all implementations of this callback are only calling netdev_compute_master_upper_features(), does this need to be a new ndo, or could this be some kind of flag within struct net_device
Ideally all dev with IFF_MASTER should re-compute the offload. But at present some master devices do have this flag, or have their own offload implementation. Do you mean add a new private flag, like IFF_RECOMPUTE_OFFLOAD? For the second parameter, maybe we can pass false for bridge specifically. Thanks Hangbin
(2 flags since netdev_compute_master_upper_features takes a bool argument) that changes __netdev_update_features()'s behavior? Since the goal for the netdev_compute_master_upper_features() work was to make this code more common, not introducing a new ndo where random hacks can accumulate separately in each driver would maybe make more sense? -- Sabrina