summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJian Shen <shenjian15@huawei.com>2022-06-22 21:50:02 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-08-17 14:23:23 +0200
commit8f458e34a804325bf490a49755653b3a61aa73d9 (patch)
tree3abb29cdc43e3e7c8310b9f997876e1eae16e4b1 /lib
parent621595f771a6bd458ffbc40679e222ba5d0a7a1e (diff)
downloadlinux-stable-8f458e34a804325bf490a49755653b3a61aa73d9.tar.gz
linux-stable-8f458e34a804325bf490a49755653b3a61aa73d9.tar.bz2
linux-stable-8f458e34a804325bf490a49755653b3a61aa73d9.zip
test_bpf: fix incorrect netdev features
[ Upstream commit 9676feccacdb0571791c88b23e3b7ac4e7c9c457 ] The prototype of .features is netdev_features_t, it should use NETIF_F_LLTX and NETIF_F_HW_VLAN_STAG_TX, not NETIF_F_LLTX_BIT and NETIF_F_HW_VLAN_STAG_TX_BIT. Fixes: cf204a718357 ("bpf, testing: Introduce 'gso_linear_no_head_frag' skb_segment test") Signed-off-by: Jian Shen <shenjian15@huawei.com> Acked-by: John Fastabend <john.fastabend@gmail.com> Link: https://lore.kernel.org/r/20220622135002.8263-1-shenjian15@huawei.com Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/test_bpf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test_bpf.c b/lib/test_bpf.c
index 68d125b409f2..84f5dd3b0fc7 100644
--- a/lib/test_bpf.c
+++ b/lib/test_bpf.c
@@ -8890,9 +8890,9 @@ static struct skb_segment_test skb_segment_tests[] __initconst = {
.build_skb = build_test_skb_linear_no_head_frag,
.features = NETIF_F_SG | NETIF_F_FRAGLIST |
NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_GSO |
- NETIF_F_LLTX_BIT | NETIF_F_GRO |
+ NETIF_F_LLTX | NETIF_F_GRO |
NETIF_F_IPV6_CSUM | NETIF_F_RXCSUM |
- NETIF_F_HW_VLAN_STAG_TX_BIT
+ NETIF_F_HW_VLAN_STAG_TX
}
};