From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753187AbZK3WDT (ORCPT ); Mon, 30 Nov 2009 17:03:19 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752458AbZK3WDS (ORCPT ); Mon, 30 Nov 2009 17:03:18 -0500 Received: from www.tglx.de ([62.245.132.106]:34614 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752274AbZK3WDS (ORCPT ); Mon, 30 Nov 2009 17:03:18 -0500 Date: Mon, 30 Nov 2009 23:02:11 +0100 (CET) From: Thomas Gleixner To: Peter Zijlstra cc: Ingo Molnar , Linus Torvalds , Christoph Hellwig , Nick Piggin , Linux Kernel Mailing List Subject: Re: [rfc] "fair" rw spinlocks In-Reply-To: <1259616429.26472.499.camel@laptop> Message-ID: References: <20091123145409.GA29627@wotan.suse.de> <20091130100041.GA29610@infradead.org> <20091130174638.GA9782@elte.hu> <1259616429.26472.499.camel@laptop> User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 30 Nov 2009, Peter Zijlstra wrote: > On Mon, 2009-11-30 at 22:12 +0100, Thomas Gleixner wrote: > > > I think the conversion Linus proposed is pretty feasible. I went > > through the read_lock sites and most of them are protecting function > > calls which we already use under rcu_read_lock() in other places like > > find_task* and thread or pid iterators. > > > > There are a few non obvious ones in signal.c and posix-cpu-timers.c > > (what a surprise) but nothing looks too scary. > > > > If nobody beats me I'm going to let sed loose on the kernel, lift the > > task_struct rcu free code from -rt and figure out what explodes. > > Things like sched.c:tg_set_bandwidth() take the tasklist_lock in > read-mode to exclude tasks being added concurrently to avoid > sched_rt_can_attach() races with tg_has_rt_tasks(). Yeah, forgot to mention sched.c, but that's solvable > Possibly the cgroup stuff has a smaller lock to use for this. Worth checking. Thanks, tglx