From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752768AbbAUNsz (ORCPT ); Wed, 21 Jan 2015 08:48:55 -0500 Received: from mail-we0-f178.google.com ([74.125.82.178]:50016 "EHLO mail-we0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750889AbbAUNsr (ORCPT ); Wed, 21 Jan 2015 08:48:47 -0500 Message-ID: <54BFAE3F.7000300@linaro.org> Date: Wed, 21 Jan 2015 13:48:47 +0000 From: Daniel Thompson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Steven Rostedt CC: Stephen Boyd , Thomas Gleixner , Jason Cooper , Russell King , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, patches@linaro.org, linaro-kernel@lists.linaro.org, John Stultz , Sumit Semwal , Dirk Behme , Daniel Drake , Dmitry Pervushin , Tim Sander Subject: Re: [PATCH 3.19-rc2 v14 0/7] arm: Implement arch_trigger_all_cpu_backtrace References: <1415968543-29469-1-git-send-email-daniel.thompson@linaro.org> <1421144818-14036-1-git-send-email-daniel.thompson@linaro.org> <54BE2D15.9080606@linaro.org> <54BEC04D.1050402@codeaurora.org> <54BF83C9.5060300@linaro.org> <20150121080612.6569ab81@gandalf.local.home> In-Reply-To: <20150121080612.6569ab81@gandalf.local.home> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 21/01/15 13:06, Steven Rostedt wrote: > On Wed, 21 Jan 2015 10:47:37 +0000 > Daniel Thompson wrote: > > >>> With this patchset, is it possible to call sched_clock() from within NMI >>> context? I ask because the generic sched_clock() code is not NMI safe > > That's not good. Better not run function tracing, as that could trace > functions in NMI context (I depend on that it does), and it uses > sched_clock() as the default clock. I think sched_clock is unsafe as in "may sometimes give the wrong value" rather than "can lock up arbitrarily". Thus the impact is unlikely to be harmful enough to want to avoid tracing altogether. It would require special care be taken when interpreting the timestamps however. Also since update_sched_clock() is a notrace function its very hard to figure out when timestamps are at risk. Anyhow, the fix doesn't seem that hard. I can take a look. Daniel.