From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-178.mta0.migadu.com (out-178.mta0.migadu.com [91.218.175.178]) (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 D3EA57082D for ; Wed, 17 Sep 2025 18:50:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.178 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758135015; cv=none; b=IjPnrIVP4aDW1I6rqlYYl66X+o2UVu1mUeVdS/HV2U8gdP2RmQuI2gsri8rk/ZkwXwUKyhnrnFgNf3AB5UM3FOehYFd9aYRcW6z7cxuFr9MCoEXLoRYOrg6bVIoHDIBJGTHnfYlrriyUlDDrIrJQKDxuvT/OTr4GK9VKyOXWDRE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758135015; c=relaxed/simple; bh=+G2pHkGuiFtfIeNrHcTxCuyP/hEVUCpixjmbnjjdoQ8=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=Pkq//y314VCE3nW0hxpaSbeIWLCCxSOiSishR+DHpiLmqcBx+f6wCsZP347JJ+NSxrJP5U/benr3tW9D/wK5m1ylVK+y/VUg+k+m0pVODNq7jV+z3mjXWgkZQojnWVfftsd1/1G5Niwid7K7Agi56n7Vb19Sktc6H4q1jz8fwtw= 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=FlgltKSM; arc=none smtp.client-ip=91.218.175.178 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="FlgltKSM" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1758135008; 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=YtTtBGy4mtC2umScrIKAzq3ycxOTkYBHIjn59WkwjOU=; b=FlgltKSMOhyTz8KaMG6ZaPVWDhDgDHJNElwgggqZRgI2Q/+xlU1hCMOlRxf3xuk5Y1PnVd CU4r6KwDwAipt7KFD0u/GxT0b/m7iVXIBlTZBkJqUhFUUnyP1rSF/PxahUrcvgaYAG0HnD jWD+mSG4leVdetAfqCORrZDGVuVYC2c= Date: Wed, 17 Sep 2025 11:50:01 -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 v3 0/6] Add kfunc bpf_xdp_pull_data To: Amery Hung , Jakub Kicinski Cc: bpf@vger.kernel.org, netdev@vger.kernel.org, alexei.starovoitov@gmail.com, andrii@kernel.org, daniel@iogearbox.net, paul.chaignon@gmail.com, kuba@kernel.org, stfomichev@gmail.com, martin.lau@kernel.org, mohsin.bashr@gmail.com, noren@nvidia.com, dtatulea@nvidia.com, saeedm@nvidia.com, tariqt@nvidia.com, mbloch@nvidia.com, maciej.fijalkowski@intel.com, kernel-team@meta.com References: <20250915224801.2961360-1-ameryhung@gmail.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: <20250915224801.2961360-1-ameryhung@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 9/15/25 3:47 PM, Amery Hung wrote: > include/net/xdp_sock_drv.h | 21 ++- > kernel/bpf/verifier.c | 13 ++ > net/bpf/test_run.c | 26 ++- > net/core/filter.c | 123 +++++++++++-- > .../bpf/prog_tests/xdp_context_test_run.c | 4 +- > .../selftests/bpf/prog_tests/xdp_pull_data.c | 174 ++++++++++++++++++ > .../selftests/bpf/progs/test_xdp_pull_data.c | 48 +++++ > .../selftests/net/lib/xdp_native.bpf.c | 89 +++++++-- I think the next re-spin should be ready. Jakub, can this be landed to bpf-next/master alone and will be available in net-next after the upcoming merge window, considering it is almost rc7?