From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754724AbbLKMNM (ORCPT ); Fri, 11 Dec 2015 07:13:12 -0500 Received: from m12-18.163.com ([220.181.12.18]:38112 "EHLO m12-18.163.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752552AbbLKMNL convert rfc822-to-8bit (ORCPT ); Fri, 11 Dec 2015 07:13:11 -0500 Content-Type: text/plain; charset=gb2312 Mime-Version: 1.0 (1.0) Subject: Re: [PATCH v4 06/16] perf tools: Support perf event alias name From: pi3orama X-Mailer: iPhone Mail (13C75) In-Reply-To: <20151211120301.GO17996@kernel.org> Date: Fri, 11 Dec 2015 20:12:56 +0800 Cc: Wang Nan , Jiri Olsa , namhyung@kernel.org, linux-kernel@vger.kernel.org, mingo@kernel.org, lizefan@huawei.com, He Kuang , Alexei Starovoitov , Masami Hiramatsu Content-Transfer-Encoding: 8BIT Message-Id: <5B68F5FB-C8C7-4283-9B35-BE0A083F2D74@163.com> References: <1449541544-67621-1-git-send-email-wangnan0@huawei.com> <1449541544-67621-7-git-send-email-wangnan0@huawei.com> <20151211120301.GO17996@kernel.org> To: Arnaldo Carvalho de Melo X-CM-TRANSID: EsCowECpMkjIvWpWcrMmAA--.9555S2 X-Coremail-Antispam: 1Uf129KBjvJXoW7Jr1xuFW3Wr1fWr1rAry3CFg_yoW8JrW8pr WIk39YkF4DCF4Ygw47ZFykX3Wrtwn5trZ5Jr95XF1jy3yYvryUXr4rCFWFqF45Gr13XrW8 Jw4jvryFka4qvaDanT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07UHq2iUUUUU= X-Originating-IP: [117.136.0.115] X-CM-SenderInfo: lslt02xdpdqiywtou0bp/1tbiEw3NQFXlcMHZjQAAsG Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 发自我的 iPhone > 在 2015年12月11日,下午8:03,Arnaldo Carvalho de Melo 写道: > > Em Tue, Dec 08, 2015 at 02:25:34AM +0000, Wang Nan escreveu: >> From: He Kuang >> >> This patch adds new bison rules for specifying an alias name to a perf >> event, which allows cmdline refer to previous defined perf event through >> its name. With this patch user can give alias name to a perf event using >> following cmdline: > > Please add Jiri Olsa to any changes that touches the parser changes. > > Can you reword the above phrase? Does it mean something like: > > ---- > This patches adds new bison rules for specifying an alias to a perf > event, which allows referring to this previously defined perf event > through this alias." > ---- > > But then, why would I want this aliasing? The provided examples shows a > way to obfuscate 'cycles', a perfectly good name, why would one want to > call it "mypmu"? > Sorry. I should put this patch after 7/16 so you won't get confused. Without event aliasing it is hard to select an event and insert it into a BPF map. Patch 7/16 would use alias like: # perf record -e evt=cycles/no-inherit/ -e BPF.c/maps.pmu.event=evt/ ... So it put cycles/no-inherit/ into that map. Thank you.