From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-184.mta0.migadu.com (out-184.mta0.migadu.com [91.218.175.184]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 476EC221F3A for ; Wed, 19 Mar 2025 23:05:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.184 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742425541; cv=none; b=kDhAckkXCzQygKhgCxIbY5axfFBI8LxltXY0RSHhhzPlEwPwtxEE1bs1yRNjyrEZvRgZ91QOiXox6nGkPxYrlC5zwtjg+r0miCnMkVUZuJR1e0xMCBxjfyXFa/PWgWfI/ZQKckH0spUTg7tqm/COfQQwP7kgeBRxWYF3+L4Nm70= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742425541; c=relaxed/simple; bh=Evxo9UTT0eUb608jqYtYPGkMG/GCc6FBlRO8histrp0=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=q+5hk38GkR/XaeFTUeLzNqEPeDS4zmGYBhKbl6RBj6VUqde7wFtdmrEarxbdW/XNf37pTiFP9tqacuVegE/wbD6RT2kjv3mYt2P902tq1AtfhS7kFpgTnOZgr4/pjdaPAztfyIySLMfUyoPZTppMIuxufekXywIVzWf5vp/QcbY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=k8jdtpog; arc=none smtp.client-ip=91.218.175.184 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="k8jdtpog" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1742425527; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=k3g8xtoD8LUwlFDszpo8JMhI10IGQg9AcPZvetrkE6A=; b=k8jdtpog2q++b30sCEoyBZeMtBowjGN/s1AkDay0KCN5B7D7lPdQO6o2yJ2xBsfHbVS46I /V4OLu7Yq2v+6CtgcJ9U5klf9R32AZlEJXUGtkVopvn+33KR4IoiuCoxRuupzRdQDrBUzY 33k71njmFOIETJq25ONFnh6aHUjdiiA= Date: Wed, 19 Mar 2025 16:05:17 -0700 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next 0/2] selftests/bpf: Migrate test_xdp_vlan.sh into test_progs To: Bastien Curutchet Cc: Stanislav Fomichev , Alexei Starovoitov , Daniel Borkmann , "David S. Miller" , Jakub Kicinski , Jesper Dangaard Brouer , John Fastabend , Andrii Nakryiko , Eduard Zingerman , Mykola Lysenko , Song Liu , Yonghong Song , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa , Shuah Khan , Thomas Petazzoni , Alexis Lothore , netdev@vger.kernel.org, bpf@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org References: <20250221-xdp_vlan-v1-0-7d29847169af@bootlin.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Martin KaFai Lau In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 3/18/25 3:25 AM, Bastien Curutchet wrote: > Hi all, > > On 2/24/25 5:10 PM, Stanislav Fomichev wrote: >> On 02/21, Bastien Curutchet (eBPF Foundation) wrote: >>> Hi all, >>> >>> This patch series continues the work to migrate the script tests into >>> prog_tests. >>> >>> test_xdp_vlan.sh tests the ability of an XDP program to modify the VLAN >>> ids on the fly. This isn't currently covered by an other test in the >>> test_progs framework so I add a new file prog_tests/xdp_vlan.c that does >>> the exact same tests (same network topology, same BPF programs) and >>> remove the script. >>> >>> Signed-off-by: Bastien Curutchet (eBPF Foundation) >>> >> >> Acked-by: Stanislav Fomichev > > Small gentle ping on this, as I haven't received any updates since Stanislav > acked it. I made a small change in the Makefile to resolve a recent conflict. Applied. Thanks.