Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753473Ab2F0IjX (ORCPT ); Wed, 27 Jun 2012 04:39:23 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:50669 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750952Ab2F0IjU (ORCPT ); Wed, 27 Jun 2012 04:39:20 -0400 MIME-Version: 1.0 Date: Wed, 27 Jun 2012 16:39:19 +0800 Message-ID: Subject: [PATCH] perf: fix wrong hw_breakpoint documentation From: Jovi Zhang To: Arnaldo Carvalho de Melo , mingo@redhat.com, Peter Zijlstra , LKML Cc: jovi zhang Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1289 Lines: 34 >From f5f9c3a064482cf3d0fb7ed788c66630bddbfc79 Mon Sep 17 00:00:00 2001 From: Jovi Zhang Date: Wed, 27 Jun 2012 16:09:21 +0800 Subject: [PATCH] perf: fix wrong hw_breakpoint documentation read-write access hw_breakpoint event is passed as 'mem:addr', 'mem:0x1000:rw' is parsed as invalid argument currently. Signed-off-by: Jovi Zhang --- tools/perf/Documentation/perf-record.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Documentation/perf-record.txt b/tools/perf/Documentation/perf-record.txt index b38a1f9..f9321b3 100644 --- a/tools/perf/Documentation/perf-record.txt +++ b/tools/perf/Documentation/perf-record.txt @@ -38,7 +38,7 @@ OPTIONS Access is the memory access type (read, write, execute) it can be passed as follows: '\mem:addr[:[r][w][x]]'. If you want to profile read-write accesses in 0x1000, just set - 'mem:0x1000:rw'. + 'mem:0x1000'. --filter=:: Event filter. -- 1.7.9.7 -- 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/