From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758097Ab2IMP0H (ORCPT ); Thu, 13 Sep 2012 11:26:07 -0400 Received: from mail-bk0-f46.google.com ([209.85.214.46]:36322 "EHLO mail-bk0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755135Ab2IMP0E (ORCPT ); Thu, 13 Sep 2012 11:26:04 -0400 Date: Thu, 13 Sep 2012 17:25:58 +0200 From: Ingo Molnar To: Robert Richter Cc: Arnaldo Carvalho de Melo , linux-kernel@vger.kernel.org, Peter Zijlstra Subject: Re: [PATCH] perf record: Change error message on failure Message-ID: <20120913152558.GA29858@gmail.com> References: <1347531654-16024-1-git-send-email-robert.richter@amd.com> <20120913150720.GA27411@gmail.com> <20120913152145.GG8285@erda.amd.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120913152145.GG8285@erda.amd.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Robert Richter wrote: > On 13.09.12 17:07:20, Ingo Molnar wrote: > > > > * Robert Richter wrote: > > > > > Only report > > > > > > No CONFIG_PERF_EVENTS=y kernel support configured? > > > > > > if the syscall fails with ENOSYS. In other cases CONFIG_PERF_EVENTS is > > > set and might confuse users. The default message is now: > > > > > > Not all events could be opened. > > > > Indeed, and it would be nice to be even less passive-aggressive > > and figure out and display the exact error condition? > > The complete error message shows the error condition and is like the > following: > > # perf record -e cycles:ppk sleep 1 > > Error: sys_perf_event_open() syscall returned with 22 (Invalid argument). /bin/dmesg may provide additional information. > > Not all events could be opened. > sleep: Terminated So in this case a better message would be something like: Error: sys_perf_event_open() syscall failed because the 'cycles:ppk' event could not be opened sleep: Terminated The user is not interested in the dmesg details, nor in that the error code is 22 -EINVAL. Thanks, Ingo