From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AA35FC433DB for ; Thu, 4 Feb 2021 20:51:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7DA5C64F8C for ; Thu, 4 Feb 2021 20:51:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230070AbhBDUvC (ORCPT ); Thu, 4 Feb 2021 15:51:02 -0500 Received: from mx0a-00082601.pphosted.com ([67.231.145.42]:59156 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229988AbhBDUu6 (ORCPT ); Thu, 4 Feb 2021 15:50:58 -0500 Received: from pps.filterd (m0148461.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 114Kgoon024688 for ; Thu, 4 Feb 2021 12:50:17 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=wtfRLaxhtN/XLmbEVOfn0W2L14eyqr9QuV8fJoD1MM8=; b=KL7wr6Vpr0kaOHVC70gdGZ+1HJRGQ9uONAjW9/hsMS0pvs9k0UZTp9WSXpZZvwPonxck 1x6s9Wem4ALru6x8Rt514kxY1MOaNfb3Zro7LVaDt6xBzbfcFVhKNByhcnzGdaf21C3h oEi0qUZPGsFqkr455J2HK6JzcYtxlCOCgJ4= Received: from mail.thefacebook.com ([163.114.132.120]) by mx0a-00082601.pphosted.com with ESMTP id 36fx4nrjsq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Thu, 04 Feb 2021 12:50:17 -0800 Received: from intmgw001.05.ash7.facebook.com (2620:10d:c085:208::f) by mail.thefacebook.com (2620:10d:c085:11d::6) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1979.3; Thu, 4 Feb 2021 12:50:16 -0800 Received: by devbig006.ftw2.facebook.com (Postfix, from userid 4523) id 2344262E1750; Thu, 4 Feb 2021 12:50:14 -0800 (PST) From: Song Liu To: , , CC: , , , , Song Liu , Yonghong Song , KP Singh Subject: [PATCH v4 bpf-next 3/4] libbpf: introduce section "iter.s/" for sleepable bpf_iter program Date: Thu, 4 Feb 2021 12:50:00 -0800 Message-ID: <20210204205002.4075937-4-songliubraving@fb.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20210204205002.4075937-1-songliubraving@fb.com> References: <20210204205002.4075937-1-songliubraving@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369,18.0.737 definitions=2021-02-04_10:2021-02-04,2021-02-04 signatures=0 X-Proofpoint-Spam-Details: rule=fb_default_notspam policy=fb_default score=0 malwarescore=0 phishscore=0 suspectscore=0 spamscore=0 priorityscore=1501 adultscore=0 mlxscore=0 clxscore=1015 impostorscore=0 bulkscore=0 mlxlogscore=842 lowpriorityscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2102040128 X-FB-Internal: deliver Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org Sleepable iterator program have access to helper functions like bpf_d_pat= h. Acked-by: Yonghong Song Acked-by: KP Singh Signed-off-by: Song Liu --- tools/lib/bpf/libbpf.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c index 2abbc38005684..903ccd7e93206 100644 --- a/tools/lib/bpf/libbpf.c +++ b/tools/lib/bpf/libbpf.c @@ -8555,6 +8555,11 @@ static const struct bpf_sec_def section_defs[] =3D= { .expected_attach_type =3D BPF_TRACE_ITER, .is_attach_btf =3D true, .attach_fn =3D attach_iter), + SEC_DEF("iter.s/", TRACING, + .expected_attach_type =3D BPF_TRACE_ITER, + .is_attach_btf =3D true, + .is_sleepable =3D true, + .attach_fn =3D attach_iter), BPF_EAPROG_SEC("xdp_devmap/", BPF_PROG_TYPE_XDP, BPF_XDP_DEVMAP), BPF_EAPROG_SEC("xdp_cpumap/", BPF_PROG_TYPE_XDP, --=20 2.24.1