From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753595AbeBGJwc (ORCPT ); Wed, 7 Feb 2018 04:52:32 -0500 Received: from mail-pl0-f66.google.com ([209.85.160.66]:39409 "EHLO mail-pl0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753356AbeBGJwa (ORCPT ); Wed, 7 Feb 2018 04:52:30 -0500 X-Google-Smtp-Source: AH8x227r4elNWYcleZ153N8iyikZ6VNpixez5jV/uFEzCVNAaAuw04ezZ3rKKyw8bwNYWmmpU3fhvA== From: Jaecheol Shin To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Jiri Olsa , Namhyung Kim , Taeung Song , jcgod413 Subject: [PATCH] perf annotate: Add missing arguments in Man page Date: Wed, 7 Feb 2018 18:52:05 +0900 Message-Id: <20180207095205.62715-1-jcgod413@gmail.com> X-Mailer: git-send-email 2.14.3 (Apple Git-98) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: jcgod413 Some options must require an argument. But input, stdio-color, cpu have no them. So I added it. Cc: Jiri Olsa Cc: Namhyung Kim Cc: Taeung Song Signed-off-by: Jaecheol Shin --- tools/perf/Documentation/perf-annotate.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/perf/Documentation/perf-annotate.txt b/tools/perf/Documentation/perf-annotate.txt index c635eab6af54..292809c3c0ca 100644 --- a/tools/perf/Documentation/perf-annotate.txt +++ b/tools/perf/Documentation/perf-annotate.txt @@ -21,7 +21,7 @@ If there is no debug info in the object, then annotated assembly is displayed. OPTIONS ------- -i:: ---input=:: +--input=:: Input file name. (default: perf.data unless stdin is a fifo) -d:: @@ -69,7 +69,7 @@ OPTIONS --stdio:: Use the stdio interface. ---stdio-color:: +--stdio-color=:: 'always', 'never' or 'auto', allowing configuring color output via the command line, in addition to via "color.ui" .perfconfig. Use '--stdio-color always' to generate color even when redirecting @@ -84,7 +84,7 @@ OPTIONS --gtk:: Use the GTK interface. -C:: ---cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can +--cpu=:: Only report samples for the list of CPUs provided. Multiple CPUs can be provided as a comma-separated list with no space: 0,1. Ranges of CPUs are specified with -: 0-2. Default is to report samples on all CPUs. -- 2.14.3 (Apple Git-98)