From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966202AbcKOEJh (ORCPT ); Mon, 14 Nov 2016 23:09:37 -0500 Received: from szxga03-in.huawei.com ([119.145.14.66]:25579 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965911AbcKOEI1 (ORCPT ); Mon, 14 Nov 2016 23:08:27 -0500 From: Wang Nan To: , CC: , , , , Wang Nan , Jiri Olsa Subject: [PATCH 33/34] perf clang builtin: Define hook helpers by default Date: Tue, 15 Nov 2016 04:06:16 +0000 Message-ID: <20161115040617.69788-34-wangnan0@huawei.com> X-Mailer: git-send-email 2.10.1 In-Reply-To: <20161115040617.69788-1-wangnan0@huawei.com> References: <20161115040617.69788-1-wangnan0@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.193.248] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Append prototypes of helpers appears in exported_funcs to default include file. Signed-off-by: Wang Nan Cc: Arnaldo Carvalho de Melo Cc: Alexei Starovoitov Cc: He Kuang Cc: Jiri Olsa Cc: Zefan Li Cc: pi3orama@163.com --- tools/perf/util/c++/bpf-helper-str.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/perf/util/c++/bpf-helper-str.c b/tools/perf/util/c++/bpf-helper-str.c index 17f915c..69aca3c 100644 --- a/tools/perf/util/c++/bpf-helper-str.c +++ b/tools/perf/util/c++/bpf-helper-str.c @@ -10,6 +10,14 @@ const char clang_builtin_bpf_helper_str[] = " unsigned int max_entries;\n" "};\n" "#define SEC(NAME) __attribute__((section(NAME), used))\n" +"extern void test__clang_callback(int);\n" +"extern int printf(const char *, ...);\n" +"extern int puts(const char *);\n" +"extern int jit_helper__map_update_elem(void *, void *, void *, void *, unsigned long);\n" +"extern int jit_helper__map_lookup_elem(void *, void *, void *, void *);\n" +"extern int jit_helper__map_get_next_key(void *, void *, void *, void *);\n" +"extern int jit_helper__map_pin(void *, void *, const char *);\n" +"extern int jit_helper__map_get(const char *);\n" "#endif\n" "#endif" ; -- 2.10.1