From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752882AbbAWXqB (ORCPT ); Fri, 23 Jan 2015 18:46:01 -0500 Received: from g2t2353.austin.hp.com ([15.217.128.52]:36580 "EHLO g2t2353.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751796AbbAWXp5 (ORCPT ); Fri, 23 Jan 2015 18:45:57 -0500 X-Greylist: delayed 15738 seconds by postgrey-1.27 at vger.kernel.org; Fri, 23 Jan 2015 18:45:57 EST Message-ID: <1422056755.2436.36.camel@j-VirtualBox> Subject: Re: [RFC PATCH] sched, timer: Use atomics for thread_group_cputimer stats From: Jason Low To: Peter Zijlstra Cc: Ingo Molnar , "Paul E. McKenney" , Oleg Nesterov , Mike Galbraith , Frederic Weisbecker , Scott J Norton , Chegu Vinod , Aswin Chandramouleeswaran , linux-kernel@vger.kernel.org, jason.low2@hp.com Date: Fri, 23 Jan 2015 15:45:55 -0800 In-Reply-To: <20150123200828.GE23123@twins.programming.kicks-ass.net> References: <1421983913.4432.22.camel@j-VirtualBox> <20150123092508.GJ2896@worktop.programming.kicks-ass.net> <1422041016.2436.19.camel@j-VirtualBox> <20150123200828.GE23123@twins.programming.kicks-ass.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2015-01-23 at 21:08 +0100, Peter Zijlstra wrote: > On Fri, Jan 23, 2015 at 11:23:36AM -0800, Jason Low wrote: > > On Fri, 2015-01-23 at 10:25 +0100, Peter Zijlstra wrote: > > > On Thu, Jan 22, 2015 at 07:31:53PM -0800, Jason Low wrote: > > > > +static void update_gt_cputime(struct thread_group_cputimer *a, struct task_cputime *b) > > > > { > > > > + if (b->utime > atomic64_read(&a->utime)) > > > > + atomic64_set(&a->utime, b->utime); > > > > > > > > + if (b->stime > atomic64_read(&a->stime)) > > > > + atomic64_set(&a->stime, b->stime); > > > > > > > > + if (b->sum_exec_runtime > atomic64_read(&a->sum_exec_runtime)) > > > > + atomic64_set(&a->sum_exec_runtime, b->sum_exec_runtime); > > > > } > > > > > > See something like this is not safe against concurrent adds. > > > > How about something like: > > > > u64 a_utime, a_stime, a_sum_exec_runtime; > > > > retry_utime: > > a_utime = atomic64_read(&a->utime); > > if (b->utime > a_utime) { > > if (atomic64_cmpxchg(&a->utime, a_utime, b->utime) != a_utime) > > goto retry_utime; > > } > > > > retry_stime: > > a_stime = atomic64_read(&a->stime); > > if (b->stime > a_stime) { > > if (atomic64_cmpxchg(&a->stime, a_stime, b->stime) != a_stime) > > goto retry_stime; > > } > > > > retry_sum_exec_runtime: > > a_sum_exec_runtime = atomic64_read(&a->sum_exec_runtime); > > if (b->sum_exec_runtime > a_sum_exec_runtime) { > > if (atomic64_cmpxchg(&a->sum_exec_runtime, a_sum_exec_runtime, > > b->sum_exec_runtime) != a_sum_exec_runtime) > > goto retry_sum_exec_runtime; > > } > > Disgusting, at least use an inline or macro to avoid repeating it :-) Okay, let me see if I can make that a bit more readable :) On a side note, if we just move the cputimer->running = 1 to after the call to update_gt_cputime in thread_group_cputimer(), then we don't have to worry about concurrent adds occuring in this function?