Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753935Ab3JAPBL (ORCPT ); Tue, 1 Oct 2013 11:01:11 -0400 Received: from merlin.infradead.org ([205.233.59.134]:51681 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753323Ab3JAPBC (ORCPT ); Tue, 1 Oct 2013 11:01:02 -0400 Date: Tue, 1 Oct 2013 17:00:37 +0200 From: Peter Zijlstra To: Frederic Weisbecker Cc: Oleg Nesterov , Arjan van de Ven , Fernando Luis =?iso-8859-1?Q?V=E1zquez?= Cao , Ingo Molnar , Thomas Gleixner , LKML , Tetsuo Handa , Andrew Morton Subject: Re: [PATCH 2/4] nohz: Synchronize sleep time stats with seqlock Message-ID: <20131001150037.GQ3657@laptop.programming.kicks-ass.net> References: <20130820160146.GG3258@twins.programming.kicks-ass.net> <20130820163312.GA17957@redhat.com> <20130820175429.GI3258@twins.programming.kicks-ass.net> <20130820182553.GB22287@redhat.com> <20130821083130.GM3258@twins.programming.kicks-ass.net> <20130821113551.GA1472@redhat.com> <20130821123311.GA31370@twins.programming.kicks-ass.net> <20130821142356.GC31370@twins.programming.kicks-ass.net> <20130821164146.GA15194@redhat.com> <20131001140525.GE24825@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131001140525.GE24825@localhost.localdomain> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1213 Lines: 40 On Tue, Oct 01, 2013 at 04:05:27PM +0200, Frederic Weisbecker wrote: > struct cpu_idletime { > nr_iowait, > seqlock, > idle_start, > idle_time, > iowait_time, > } __cacheline_aligned_in_smp; > > DEFINE_PER_CPU(struct cpu_idletime, cpu_idletime); > > io_schedule() > { > int prev_cpu; > > preempt_disable(); > prev_cpu_idletime = __this_cpu_ptr(&cpu_idletime); > atomic_inc(prev_cpu_idletime->nr_iowait); > WARN_ON_ONCE(is_idle_task(current)); > preempt_enable_no_resched(); > > schedule(); > > write_seqlock(prev_cpu_idletime->seqlock) > if (!atomic_dec_return(prev_cpu_idletime->nr_iowait)) > flush_cpu_idle_time(prev_cpu_idletime, 1) > write_sequnlock(prev_cpu_idletime->seqlock) > > } This is at least 3 atomic ops and a whole bunch of branches extra. It used to be 2 atomics and no branches. What again are we solving any why? -- 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/