From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755283AbbJ1IeB (ORCPT ); Wed, 28 Oct 2015 04:34:01 -0400 Received: from mail-wi0-f169.google.com ([209.85.212.169]:37749 "EHLO mail-wi0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754811AbbJ1Id6 (ORCPT ); Wed, 28 Oct 2015 04:33:58 -0400 Date: Wed, 28 Oct 2015 09:33:53 +0100 From: Ingo Molnar To: Tejun Heo Cc: Linus Torvalds , Paul McKenney , Linux Kernel Mailing List , Lai Jiangshan , Dipankar Sarma , Andrew Morton , Mathieu Desnoyers , Josh Triplett , Thomas Gleixner , Peter Zijlstra , Steven Rostedt , David Howells , Eric Dumazet , Darren Hart , =?iso-8859-1?Q?Fr=E9d=E9ric?= Weisbecker , Oleg Nesterov , pranith kumar , Patrick Marlier Subject: Re: [PATCH tip/core/rcu 11/13] rculist: Make list_entry_rcu() use lockless_dereference() Message-ID: <20151028083353.GA824@gmail.com> References: <20151006161305.GA9799@linux.vnet.ibm.com> <1444148028-11551-1-git-send-email-paulmck@linux.vnet.ibm.com> <1444148028-11551-11-git-send-email-paulmck@linux.vnet.ibm.com> <20151026084506.GA28423@gmail.com> <20151026145552.GG5105@linux.vnet.ibm.com> <20151027051939.GA19355@mtj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151027051939.GA19355@mtj.duckdns.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Tejun Heo wrote: > Subject: writeback: don't use list_entry_rcu() for pointer offsetting in bdi_split_work_to_wbs() > > bdi_split_work_to_wbs() uses list_for_each_entry_rcu_continue() to > walk @bdi->wb_list. To set up the initial iteration condition, it > uses list_entry_rcu() to calculate the entry pointer corresponding to > the list head; however, this isn't an actual RCU dereference and using > list_entry_rcu() for it ended up breaking a proposed list_entry_rcu() > change because it was feeding an non-lvalue pointer into the macro. > > Don't use the RCU variant for simple pointer offsetting. Use > list_entry() instead. > > Signed-off-by: Tejun Heo > --- > fs/fs-writeback.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c > index 29e4599..7378169 100644 > --- a/fs/fs-writeback.c > +++ b/fs/fs-writeback.c > @@ -779,8 +779,8 @@ static void bdi_split_work_to_wbs(struct backing_dev_info *bdi, > bool skip_if_busy) > { > struct bdi_writeback *last_wb = NULL; > - struct bdi_writeback *wb = list_entry_rcu(&bdi->wb_list, > - struct bdi_writeback, bdi_node); > + struct bdi_writeback *wb = list_entry(&bdi->wb_list, > + struct bdi_writeback, bdi_node); > > might_sleep(); Any objections against me applying this fix to tip:core/rcu so that I can push the recent RCU changes towards linux-next without triggering a build failure? Thanks, Ingo