From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 E2E101DC9B3; Fri, 23 Jan 2026 19:30:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769196615; cv=none; b=B45Qyo+uH4WsNfrViezNG1o6ryt723g5XZWeHB77nbbwQA7ZYDIVs/ISik92QPX/Fqi7KwtP33wUycxN05zc8sO8+cnk2adWzYnNEd4vgCwvdMEuaRD+DmTqXMz3Llylna03tP12O4bIVTC4Hqkb0csdbLqdlvJD7IwoRdsLi5s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769196615; c=relaxed/simple; bh=xfEXE2AnAULfW4hnvD3/ovp+1hD4RRxgZ5foUg2C1qA=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=FqtyJbY9F8uMWIK2zO5vLgyP/bDxWBA0uyWv9oLC3BvaOZoZUgKKz6BvfcUvEAf8IN4gezymBEwBWfYTuCAomPLUkPWfaGoZeejDzWS/fbPlVMgHyUS44EZZewcAKMFBmAOShMS6KHLolPtyKaYZZdZmdJINsY+knpiZJ24elYI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Nn5JleeW; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Nn5JleeW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C501C4CEF1; Fri, 23 Jan 2026 19:30:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769196614; bh=xfEXE2AnAULfW4hnvD3/ovp+1hD4RRxgZ5foUg2C1qA=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=Nn5JleeWFff5zKRN7TamPwmxyCeLn27G250ZLSMFstpOn3RIN2V8Wx5zZsLlOO4hY xAR4oEku07H3yBhFpuv/uXpBOqUnLvJbghPiuMEE34IAiVtnd5FDihQjO3IVEkB1T7 wrZuhO5tRhwSvFziMSnYoDvdIx35GQ/HN7HdWuToKcNLTooUucQ6U+Xbe+4lv+xi4X K6HiaD4KqnABcyuPmxVm/fMOcLpF+2FSAm9ghLjFCvE+ZoEeUcUZbzS8jJ5QHj8kws QURVmDXFf5l1Nj+XDJq3Uv1jaNuyJSnZB4Hz0gK8vWJ+uAx8AeQxb9MvI7D8g1384g SRm4RSSQxHc+w== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id 8BD813808200; Fri, 23 Jan 2026 19:30:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH bpf-next v2 0/4] Switch from kfuncs to direct helper calls in prologue/epilogue From: patchwork-bot+netdevbpf@kernel.org Message-Id: <176919661035.2689746.16918451024463235457.git-patchwork-notify@kernel.org> Date: Fri, 23 Jan 2026 19:30:10 +0000 References: <20260123-skb-meta-bpf-emit-call-from-prologue-v2-0-0e50db4d4663@cloudflare.com> In-Reply-To: <20260123-skb-meta-bpf-emit-call-from-prologue-v2-0-0e50db4d4663@cloudflare.com> To: Jakub Sitnicki Cc: bpf@vger.kernel.org, ast@kernel.org, daniel@iogearbox.net, john.fastabend@gmail.com, andrii@kernel.org, martin.lau@linux.dev, eddyz87@gmail.com, song@kernel.org, yonghong.song@linux.dev, kpsingh@kernel.org, sdf@fomichev.me, haoluo@google.com, jolsa@kernel.org, ameryhung@gmail.com, netdev@vger.kernel.org, kernel-team@cloudflare.com, martin.lau@kernel.org Hello: This series was applied to bpf/bpf-next.git (master) by Alexei Starovoitov : On Fri, 23 Jan 2026 18:05:17 +0100 you wrote: > This series enables direct helper calls using BPF_EMIT_CALL from prologue > and epilogue code generated by verifier ops. The goal is to simplify the > calling convention and remove kfunc support from prologue/epilogue, as > suggested by Alexei [1]. > > Patch 1 adds the infrastructure to mark direct helper calls as finalized > (already resolved) so the verifier skips the imm fixup. > > [...] Here is the summary with links: - [bpf-next,v2,1/4] bpf, verifier: Support direct helper calls from prologue/epilogue https://git.kernel.org/bpf/bpf-next/c/af46ae41da7c - [bpf-next,v2,2/4] bpf: net_sched: Use direct helper calls instead of kfuncs in pro/epilogue https://git.kernel.org/bpf/bpf-next/c/5c2106d44168 - [bpf-next,v2,3/4] selftests/bpf: Remove tests for prologue/epilogue with kfuncs https://git.kernel.org/bpf/bpf-next/c/d3ddc749df28 - [bpf-next,v2,4/4] bpf: Remove kfunc support in prologue and epilogue https://git.kernel.org/bpf/bpf-next/c/68d23a660c4f You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html