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 8AE502BCF5 for ; Mon, 22 Dec 2025 18:35:23 +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=1766428526; cv=none; b=lgL3aekjWxuYJ3J3gqIr08Ojv/NvoSBLIJJ5RFVNzyWjkR85JMy/Cq/QRnU/vyoHzdYWlioULopCV1vZxmoU524l0Yb35qbStexHXIsVeS1PhCLtP2PF3NynR9XM6qFLH0fbk5sKdU2ZsYGGNWzMVG6uDgd0RyrrSR1cIxgkHw0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766428526; c=relaxed/simple; bh=vRp40hZl9u3yqPN2eYJU6sVgp9Dd+vm6m3bVcK4OBxw=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=MNPkuF7r8tfVCa0rbuwvXgBvdsFjto42o7OppEzHkKLwnRNQOf+VO2WE8qZpIAGkFXyp8vF23rsDyEnTP6/jhktW0/ISmaidRS2H4APhhhp/urMcijoPHpcQV0X4yVTL1TTXLCkYF6nITSuCFQMCiV7DTUJd52YiweySzAPrzVY= 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=gxMJ6TsD; 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="gxMJ6TsD" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1766428514; 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=vRp40hZl9u3yqPN2eYJU6sVgp9Dd+vm6m3bVcK4OBxw=; b=gxMJ6TsDZE0avfNL0oAz18ekr1uX/wPJnMUxuTw90QMur1i9rZOXKBftOhuDsKquvB1BqQ kkJn3vo9FWo7l14UiMKarR+2qPRPvbqJynD/PX+GhVysOmGK/GjWej8fHaF4x7O7wubBDB AbNSHbetAwMWYDCGpdp7a97rZCb+u08= Date: Mon, 22 Dec 2025 10:35:09 -0800 Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next v2 2/2] selftests: bpf: fix tests with raw_tp calling kfuncs Content-Language: en-GB To: Puranjay Mohan , bpf@vger.kernel.org Cc: Puranjay Mohan , Alexei Starovoitov , Andrii Nakryiko , Daniel Borkmann , Martin KaFai Lau , Eduard Zingerman , Kumar Kartikeya Dwivedi , kernel-team@meta.com References: <20251222133250.1890587-1-puranjay@kernel.org> <20251222133250.1890587-3-puranjay@kernel.org> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Yonghong Song In-Reply-To: <20251222133250.1890587-3-puranjay@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 12/22/25 5:32 AM, Puranjay Mohan wrote: > As the previous commit allowed raw_tp programs to call kfuncs, so of the > selftests that were expected to fail will now succeed. > > Signed-off-by: Puranjay Mohan Acked-by: Yonghong Song