From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx135.postini.com [74.125.245.135]) by kanga.kvack.org (Postfix) with SMTP id 85CE76B0032 for ; Mon, 24 Jun 2013 16:17:43 -0400 (EDT) Subject: Re: [PATCH 2/2] rwsem: do optimistic spinning for writer lock acquisition From: Tim Chen In-Reply-To: <51C894C3.4040407@hurleysoftware.com> References: <1371858700.22432.5.camel@schen9-DESK> <51C558E2.1040108@hurleysoftware.com> <1372017836.1797.14.camel@buesod1.americas.hpqcorp.net> <1372093876.22432.34.camel@schen9-DESK> <51C894C3.4040407@hurleysoftware.com> Content-Type: text/plain; charset="UTF-8" Date: Mon, 24 Jun 2013 13:17:45 -0700 Message-ID: <1372105065.22432.65.camel@schen9-DESK> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Peter Hurley Cc: Davidlohr Bueso , Alex Shi , Michel Lespinasse , Ingo Molnar , Andrew Morton , Andrea Arcangeli , Andi Kleen , Matthew R Wilcox , Dave Hansen , Peter Zijlstra , Rik van Riel , linux-kernel@vger.kernel.org, linux-mm On Mon, 2013-06-24 at 14:49 -0400, Peter Hurley wrote: > On 06/24/2013 01:11 PM, Tim Chen wrote: > > On Sun, 2013-06-23 at 13:03 -0700, Davidlohr Bueso wrote: > >> On Sat, 2013-06-22 at 03:57 -0400, Peter Hurley wrote: > >>> On 06/21/2013 07:51 PM, Tim Chen wrote: > >>>> > >>>> +static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem) > >>>> +{ > >>>> + int retval = true; > >>>> + > >>>> + /* Spin only if active writer running */ > >>>> + if (!sem->owner) > >>>> + return false; > >>>> + > >>>> + rcu_read_lock(); > >>>> + if (sem->owner) > >>>> + retval = sem->owner->on_cpu; > >>> ^^^^^^^^^^^^^^^^^^ > >>> > >>> Why is this a safe dereference? Could not another cpu have just > >>> dropped the sem (and thus set sem->owner to NULL and oops)? > >>> > > > > The rcu read lock should protect against sem->owner being NULL. > > It doesn't. > > Here's the comment from mutex_spin_on_owner(): > > /* > * Look out! "owner" is an entirely speculative pointer > * access and not reliable. > */ On second thought, I agree with you. I should change this to something like int retval = true; task_struct *sem_owner; /* Spin only if active writer running */ if (!sem->owner) return false; rcu_read_lock(); sem_owner = sem->owner; if (sem_owner) retval = sem_owner->on_cpu; Thanks. Tim -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org