From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out30-118.freemail.mail.aliyun.com (out30-118.freemail.mail.aliyun.com [115.124.30.118]) (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 763A129CB41; Thu, 31 Jul 2025 08:42:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.118 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753951380; cv=none; b=NkKMCXtPlXBkey5jZ0gucZr4vgMG4ned3xOxGi45CkbSfZ6U7Z1v/oI6EpYVDs6SCUHWDKPEDeu0vfI+G3rQZDXB/Sy5omPS8MCc3PeYCEAkgAuO8/rTNJ4fK9Gc1474I1clRsMPod8Hb55bPK10Emk0514XcE7g5/YVPaxkjWY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753951380; c=relaxed/simple; bh=lWoEGnb0dxmSGeLI2GJxRSFQzN4GzRBn5RyrLt8+Xv0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rMRAy4goinK63xoGIbC5R0xGQ3yFWGp4GFDxUl8TK83n8Zj8kwE0CzL8k7nz4sy8zc9V6S+nKw7ywYmmfDCcUZ8omjTUKpHJ/f7b6ILcdIWPOd8ZbenHV00stYyxxCvautlfCq3O89q9mOm9hLg2DONqHE7JXT8qWkn+zrjROoU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=fjfB9f27; arc=none smtp.client-ip=115.124.30.118 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="fjfB9f27" DKIM-Signature:v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1753951369; h=From:To:Subject:Date:Message-ID:MIME-Version; bh=F5bVmLWBGdH/NwEW7Ovhg2UV97ETIqcycgx7A89+RNc=; b=fjfB9f27D5R6TushI1izu9+M1BS5pFTtJRRHG0omWyKnvejR/4/bpOe+K42h9Rwy23BhgO90EzPgZCMQjyriRkn+t+/s20OsTxVkvGVBQBMB3Huv24U3l0HOcFApH3KhH8d1EoUv+KSzFahc/BpcX4LwxWwMT0vb2tP6/AkVZNM= Received: from j66a10360.sqa.eu95.tbsite.net(mailfrom:alibuda@linux.alibaba.com fp:SMTPD_---0WkXYUlT_1753951367 cluster:ay36) by smtp.aliyun-inc.com; Thu, 31 Jul 2025 16:42:48 +0800 From: "D. Wythe" To: ast@kernel.org, daniel@iogearbox.net, andrii@kernel.org, martin.lau@linux.dev, pabeni@redhat.com, song@kernel.org, sdf@google.com, haoluo@google.com, yhs@fb.com, edumazet@google.com, john.fastabend@gmail.com, kpsingh@kernel.org, jolsa@kernel.org, Mahanta.Jambigi@ibm.com, Sidraya.Jayagond@ibm.com, wenjia@linux.ibm.com, wintera@linux.ibm.com, dust.li@linux.alibaba.com, tonylu@linux.alibaba.com, guwen@linux.alibaba.com Cc: bpf@vger.kernel.org, davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org, jaka@linux.ibm.com Subject: [PATCH bpf-next 1/5] bpf: export necessary sympols for modules with struct_ops Date: Thu, 31 Jul 2025 16:42:36 +0800 Message-ID: <20250731084240.86550-2-alibuda@linux.alibaba.com> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20250731084240.86550-1-alibuda@linux.alibaba.com> References: <20250731084240.86550-1-alibuda@linux.alibaba.com> Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Exports three necessary symbols for implementing struct_ops with tristate subsystem. To hold or release refcnt of struct_ops refcnt by inline funcs bpf_try_module_get and bpf_module_put which use bpf_struct_ops_get(put) conditionally. And to copy obj name from one to the other with effective checks by bpf_obj_name_cpy. Signed-off-by: D. Wythe --- kernel/bpf/bpf_struct_ops.c | 2 ++ kernel/bpf/syscall.c | 1 + 2 files changed, 3 insertions(+) diff --git a/kernel/bpf/bpf_struct_ops.c b/kernel/bpf/bpf_struct_ops.c index 687a3e9c76f5..1b35c5f0562c 100644 --- a/kernel/bpf/bpf_struct_ops.c +++ b/kernel/bpf/bpf_struct_ops.c @@ -1162,6 +1162,7 @@ bool bpf_struct_ops_get(const void *kdata) map = __bpf_map_inc_not_zero(&st_map->map, false); return !IS_ERR(map); } +EXPORT_SYMBOL_GPL(bpf_struct_ops_get); void bpf_struct_ops_put(const void *kdata) { @@ -1173,6 +1174,7 @@ void bpf_struct_ops_put(const void *kdata) bpf_map_put(&st_map->map); } +EXPORT_SYMBOL_GPL(bpf_struct_ops_put); static bool bpf_struct_ops_valid_to_reg(struct bpf_map *map) { diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index e63039817af3..60b4922e5e15 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -1201,6 +1201,7 @@ int bpf_obj_name_cpy(char *dst, const char *src, unsigned int size) return src - orig_src; } +EXPORT_SYMBOL_GPL(bpf_obj_name_cpy); int map_check_no_btf(const struct bpf_map *map, const struct btf *btf, -- 2.45.0