]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
bonding: use common function to compute the features
authorHangbin Liu <liuhangbin@gmail.com>
Fri, 17 Oct 2025 03:41:53 +0000 (03:41 +0000)
committerJakub Kicinski <kuba@kernel.org>
Wed, 22 Oct 2025 01:08:23 +0000 (18:08 -0700)
commitd4fde269a970666a30dd3abd0413273a06dd972d
treedcf9b67fbc793891855820bc0eb85df962110355
parent28098defc79fe7d29e6bfe4eb6312991f6bdc3d3
bonding: use common function to compute the features

Use the new functon netdev_compute_master_upper_features() to compute the bonding
features.

Note that bond_compute_features() currently uses bond_for_each_slave()
to traverse the lower devices list, and that is just a macro wrapper of
netdev_for_each_lower_private(). We use similar helper
netdev_for_each_lower_dev() in netdev_compute_master_upper_features() to
iterate the slave device, as there is not need to get the private data.

No functional change intended.

Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Reviewed-by: Sabrina Dubroca <sd@queasysnail.net>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Link: https://patch.msgid.link/20251017034155.61990-3-liuhangbin@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/bonding/bond_main.c