From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753491Ab1GHMtP (ORCPT ); Fri, 8 Jul 2011 08:49:15 -0400 Received: from mx2.mail.elte.hu ([157.181.151.9]:56431 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752240Ab1GHMtO (ORCPT ); Fri, 8 Jul 2011 08:49:14 -0400 Date: Fri, 8 Jul 2011 14:49:06 +0200 From: Ingo Molnar To: Cyrill Gorcunov Cc: Peter Zijlstra , Don Zickus , Stephane Eranian , Lin Ming , Arnaldo Carvalho de Melo , Frederic Weisbecker , LKML Subject: Re: [PATCH -tip, final] perf, x86: Add hw_watchdog_set_attr() in a sake of nmi-watchdog on P4 Message-ID: <20110708124906.GD4303@elte.hu> References: <20110705113620.GS17941@sun> <20110705114437.GC15654@elte.hu> <20110705114944.GT17941@sun> <20110705121421.GU17941@sun> <20110705131005.GA5843@elte.hu> <1309871841.3282.148.camel@twins> <20110705133105.GB5843@elte.hu> <1309876851.3282.235.camel@twins> <20110705145656.GA18116@elte.hu> <20110705152515.GE4060@sun> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110705152515.GE4060@sun> User-Agent: Mutt/1.5.21 (2010-09-15) X-ELTE-SpamScore: -2.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-2.0 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.3.1 -2.0 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Cyrill Gorcunov wrote: > > On P4 BUS_CYCLES would be able to co-exist with CPU_CYCLES so it > > will solve the P4 issue naturally as well. > > i don't think it changes much, Ingo, if I change it to bus cycles I > still will have to setup nmi-watchdog event separately (but simply > with bus event). You did not understand my point, my suggestion is to change this in kernel/watchdog.c: static struct perf_event_attr wd_hw_attr = { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES, to: static struct perf_event_attr wd_hw_attr = { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BUS_CYCLES, Thanks, Ingo