Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754482AbbK0Iv6 (ORCPT ); Fri, 27 Nov 2015 03:51:58 -0500 Received: from szxga03-in.huawei.com ([119.145.14.66]:18336 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754455AbbK0Ivz (ORCPT ); Fri, 27 Nov 2015 03:51:55 -0500 From: Wang Nan To: , CC: , , , , , Wang Nan Subject: [PATCH v2 00/13] perf tools: BPF related update Date: Fri, 27 Nov 2015 08:47:34 +0000 Message-ID: <1448614067-197576-1-git-send-email-wangnan0@huawei.com> X-Mailer: git-send-email 1.8.3.4 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.193.248] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090204.5658199F.006C,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2013-05-26 15:14:31, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 8924421594b4e45d501915af95c802b1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2507 Lines: 68 This patch set is based on perf/core. Compare with v1: - Patch 1/13 and 9/13: make code compat based on Arnaldo's suggestion; - Patch 4/13: fix a bug which incorrectly use list_is_singular() test whether a list entry is deleted from a list; - Patch 13/13: change another test case. This patch set improves perf's BPF support: - Support filling BPF array with values Users are allowed to pass something to BPF program through command line without changing the program itself. - Support filling BPF event array with events BPF program can read PMU counters through BPF's perf_event_read() helper. - Support bpf_output_event() helper BPF program can issue perf event to perf.data. In most of the patches I list commands for testing them, both normal case and error case. He Kuang (1): perf tools: Support perf event alias name Wang Nan (12): bpf tools: Collect map definition in bpf_object bpf tools: Extract and collect map names from BPF object file perf tools: Rename bpf config to program config perf tools: Add API to config maps in bpf object perf tools: Enable BPF object configure syntax perf record: Apply config to BPF objects before recording perf tools: Enable passing event to BPF object perf tools: Support setting different slots in a BPF map separately perf tools: Enable indices setting syntax for BPF maps perf tools: Introduce bpf-output event perf data: Add u32_hex data type perf data: Support converting data from bpf_perf_event_output() tools/lib/bpf/libbpf.c | 252 +++++++++---- tools/lib/bpf/libbpf.h | 24 ++ tools/perf/builtin-record.c | 11 + tools/perf/util/bpf-loader.c | 765 ++++++++++++++++++++++++++++++++++++-- tools/perf/util/bpf-loader.h | 61 ++- tools/perf/util/data-convert-bt.c | 117 +++++- tools/perf/util/evlist.c | 16 + tools/perf/util/evlist.h | 4 + tools/perf/util/evsel.c | 7 + tools/perf/util/evsel.h | 1 + tools/perf/util/parse-events.c | 129 ++++++- tools/perf/util/parse-events.h | 20 +- tools/perf/util/parse-events.l | 16 +- tools/perf/util/parse-events.y | 123 +++++- 14 files changed, 1433 insertions(+), 113 deletions(-) -- 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/