Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964998AbbEOH7P (ORCPT ); Fri, 15 May 2015 03:59:15 -0400 Received: from szxga02-in.huawei.com ([119.145.14.65]:58683 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934159AbbEOHwa (ORCPT ); Fri, 15 May 2015 03:52:30 -0400 From: Wang Nan To: , , , , , , , , , , , CC: , , , Subject: [RFC PATCH v2 25/37] tools lib bpf: accessors for struct bpf_object. Date: Fri, 15 May 2015 07:51:18 +0000 Message-ID: <1431676290-1230-26-git-send-email-wangnan0@huawei.com> X-Mailer: git-send-email 1.8.3.4 In-Reply-To: <1431676290-1230-1-git-send-email-wangnan0@huawei.com> References: <1431676290-1230-1-git-send-email-wangnan0@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.197.200] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1518 Lines: 51 This patch add an accessor which allows caller to get count of programs in an object file. Signed-off-by: Wang Nan --- tools/lib/bpf/libbpf.c | 9 +++++++++ tools/lib/bpf/libbpf.h | 3 +++ 2 files changed, 12 insertions(+) diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c index d770adc..89c725a 100644 --- a/tools/lib/bpf/libbpf.c +++ b/tools/lib/bpf/libbpf.c @@ -964,6 +964,15 @@ void bpf_close_object(struct bpf_object *obj) free(obj); } +int bpf_obj_get_prog_cnt(struct bpf_object *obj, size_t *pcnt) +{ + if (!obj || !pcnt) + return -EINVAL; + + *pcnt = obj->nr_programs; + return 0; +} + static inline struct bpf_program * handler_to_prog(struct bpf_prog_handler *handler) { diff --git a/tools/lib/bpf/libbpf.h b/tools/lib/bpf/libbpf.h index b451d1a..31ff5d9 100644 --- a/tools/lib/bpf/libbpf.h +++ b/tools/lib/bpf/libbpf.h @@ -26,6 +26,9 @@ void bpf_close_object(struct bpf_object *object); int bpf_load_object(struct bpf_object *obj); int bpf_unload_object(struct bpf_object *obj); +/* Accessors of bpf_object */ +int bpf_obj_get_prog_cnt(struct bpf_object *obj, size_t *pcnt); + /* Accessors of bpf_program. */ struct bpf_prog_handler; struct bpf_prog_handler *bpf_next_prog(struct bpf_object *obj, -- 1.8.3.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/