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=-7.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no 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 A4061C433DF for ; Fri, 21 Aug 2020 14:56:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 79E18207BB for ; Fri, 21 Aug 2020 14:56:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598021773; bh=1F00c5PlwMHWsnjZaFcuXTeu72VAUoyG13Qex7R6Wr8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=uFOV0cc/zFJq2RVA1JkRWVNVADKuDj02fvGyoBRgH20seg1P5K9lX9QiEe9ZIO8sg XucRgkEkmT7pjXUWx8MkoC12XUT2L0Bbiaapggxm4zR4WTXApcWXGevZ0rQUV/GJix ajRMnyzGvavcYNQmB40dIGqcYJstQhXLUsV8DTO4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727802AbgHUO4M (ORCPT ); Fri, 21 Aug 2020 10:56:12 -0400 Received: from mail.kernel.org ([198.145.29.99]:59172 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726324AbgHUO4L (ORCPT ); Fri, 21 Aug 2020 10:56:11 -0400 Received: from quaco.ghostprotocols.net (unknown [179.97.37.151]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9C1F72078B; Fri, 21 Aug 2020 14:56:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598021770; bh=1F00c5PlwMHWsnjZaFcuXTeu72VAUoyG13Qex7R6Wr8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ruQ9NJrOR/8+uNLYeFZS+DXy8E7H/y6okO1uLyfZXD2xmgvtmkIBa4vxUz6Gn0hxv xIBbP4eOLI1iN+xaSIt5b2HvL953t9Gaf3ZmaZwYOcTDaD9qycxfKqC+qY9zkr7IaO Es+mDJ1KfVZXDEwJ3AS/46380W4S7cOCjoptGdr8= Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id BF68D40D3D; Fri, 21 Aug 2020 11:56:08 -0300 (-03) Date: Fri, 21 Aug 2020 11:56:08 -0300 From: Arnaldo Carvalho de Melo To: Song Liu Cc: Wei Li , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , "huawei.libin@huawei.com" , "guohanjun@huawei.com" , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] perf record: Correct the help info of option "--no-bpf-event" Message-ID: <20200821145608.GA3280597@kernel.org> References: <20200819031947.12115-1-liwei391@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Url: http://acmel.wordpress.com Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Aug 19, 2020 at 03:38:30PM +0000, Song Liu escreveu: > > > > On Aug 18, 2020, at 8:19 PM, Wei Li wrote: > > > > The help info of option "--no-bpf-event" is wrongly described as > > "record bpf events", correct it. > > > > Fixes: 71184c6ab7e6 ("perf record: Replace option --bpf-event with --no-bpf-event") > > Signed-off-by: Wei Li > > Thanks for the fix! > > Acked-by: Song Liu Thanks, applied. - Arnaldo