net: Fix features skip in for_each_netdev_feature()
authorTariq Toukan <tariqt@nvidia.com>
Wed, 4 May 2022 08:09:14 +0000 (11:09 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 May 2022 07:18:05 +0000 (09:18 +0200)
commit39eb33b68f9ca8dbca94771cd8b1d29648229bb3
tree5caa2499faf35d4a9ae925ac63b59dc5255b5b86
parent5ed837a7e05bcba72bdcd86b12547ea5b796cc01
net: Fix features skip in for_each_netdev_feature()

[ Upstream commit 85db6352fc8a158a893151baa1716463d34a20d0 ]

The find_next_netdev_feature() macro gets the "remaining length",
not bit index.
Passing "bit - 1" for the following iteration is wrong as it skips
the adjacent bit. Pass "bit" instead.

Fixes: 3b89ea9c5902 ("net: Fix for_each_netdev_feature on Big endian")
Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
Reviewed-by: Gal Pressman <gal@nvidia.com>
Link: https://lore.kernel.org/r/20220504080914.1918-1-tariqt@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/linux/netdev_features.h