[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <d15e7f66-0fa1-af9e-e9c6-8c0ac47096a9@huawei.com>
Date: Thu, 12 Jan 2023 16:20:45 +0800
From: "Ziyang Xuan (William)" <william.xuanziyang@...wei.com>
To: Willem de Bruijn <willemb@...gle.com>
CC: <ast@...nel.org>, <daniel@...earbox.net>, <andrii@...nel.org>,
<davem@...emloft.net>, <edumazet@...gle.com>, <kuba@...nel.org>,
<pabeni@...hat.com>, <bpf@...r.kernel.org>,
<netdev@...r.kernel.org>, <martin.lau@...ux.dev>,
<song@...nel.org>, <yhs@...com>, <john.fastabend@...il.com>,
<kpsingh@...nel.org>, <sdf@...gle.com>, <haoluo@...gle.com>,
<jolsa@...nel.org>
Subject: Re: [PATCH bpf-next v2 2/2] selftests/bpf: add ipip6 and ip6ip decap
to test_tc_tunnel
> On Wed, Jan 11, 2023 at 3:02 AM Ziyang Xuan
> <william.xuanziyang@...wei.com> wrote:
>>
>> Add ipip6 and ip6ip decap testcases. Verify that bpf_skb_adjust_room()
>> correctly decapsulate ipip6 and ip6ip tunnel packets.
>>
>> Signed-off-by: Ziyang Xuan <william.xuanziyang@...wei.com>
>> ---
>> .../selftests/bpf/progs/test_tc_tunnel.c | 91 ++++++++++++++++++-
>> tools/testing/selftests/bpf/test_tc_tunnel.sh | 15 +--
>> 2 files changed, 98 insertions(+), 8 deletions(-)
>>
>> diff --git a/tools/testing/selftests/bpf/progs/test_tc_tunnel.c b/tools/testing/selftests/bpf/progs/test_tc_tunnel.c
>> index a0e7762b1e5a..e6e678aa9874 100644
>> --- a/tools/testing/selftests/bpf/progs/test_tc_tunnel.c
>> +++ b/tools/testing/selftests/bpf/progs/test_tc_tunnel.c
>> @@ -38,6 +38,10 @@ static const int cfg_udp_src = 20000;
>> #define VXLAN_FLAGS 0x8
>> #define VXLAN_VNI 1
>>
>> +#ifndef NEXTHDR_DEST
>> +#define NEXTHDR_DEST 60
>> +#endif
>
> Should not be needed if including the right header? include/net/ipv6.h
>
> Otherwise very nice extension. Thanks for expanding the test.
"net/ipv6.h" do not under /usr/include/ and can not be included in bpf programs.
> .
>
Powered by blists - more mailing lists