4.9-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Jiri Olsa <[email protected]>

commit 631ac41b46d293fb3ee43a809776c1663de8d9c6 upstream.

Removing extra '--' prefix.

Signed-off-by: Jiri Olsa <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Fixes: ad16511b0e40 ("perf mem: Add -U/-K (--all-user/--all-kernel) options")
Link: 
http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 tools/perf/builtin-mem.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/tools/perf/builtin-mem.c
+++ b/tools/perf/builtin-mem.c
@@ -70,8 +70,8 @@ static int __cmd_record(int argc, const
        OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads 
latency"),
        OPT_INCR('v', "verbose", &verbose,
                 "be more verbose (show counter open errors, etc)"),
-       OPT_BOOLEAN('U', "--all-user", &all_user, "collect only user level 
data"),
-       OPT_BOOLEAN('K', "--all-kernel", &all_kernel, "collect only kernel 
level data"),
+       OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
+       OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level 
data"),
        OPT_END()
        };
 


Reply via email to