From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:36594 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726971AbfBYVLt (ORCPT ); Mon, 25 Feb 2019 16:11:49 -0500 Received: from pps.filterd (m0098421.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x1PL9VAH133153 for ; Mon, 25 Feb 2019 16:11:48 -0500 Received: from e11.ny.us.ibm.com (e11.ny.us.ibm.com [129.33.205.201]) by mx0a-001b2d01.pphosted.com with ESMTP id 2qvr1j03dm-1 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=NOT) for ; Mon, 25 Feb 2019 16:11:47 -0500 Received: from localhost by e11.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 25 Feb 2019 21:11:47 -0000 Date: Mon, 25 Feb 2019 13:11:38 -0800 From: "Paul E. McKenney" Subject: Re: [PATCH v2 5/6] rcuwait: Annotate task_struct with __rcu Reply-To: paulmck@linux.ibm.com References: <20190223063434.6793-1-joel@joelfernandes.org> <20190223063434.6793-6-joel@joelfernandes.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190223063434.6793-6-joel@joelfernandes.org> Message-Id: <20190225211138.GZ4072@linux.ibm.com> Sender: xdp-newbies-owner@vger.kernel.org List-ID: To: "Joel Fernandes (Google)" Cc: linux-kernel@vger.kernel.org, Alexei Starovoitov , Christian Brauner , Daniel Borkmann , David Ahern , "David S. Miller" , Ingo Molnar , Jakub Kicinski , Jeff Kirsher , Jesper Dangaard Brouer , John Fastabend , Josh Triplett , keescook@chromium.org, kernel-hardening@lists.openwall.com, kernel-team@android.com, Kirill Tkhai , Lai Jiangshan , Martin KaFai Lau , Mathieu Desnoyers , netdev@vger.kernel.org, Peter Zijlstra , Quentin Perret , rcu@vger.kernel.org, Song Liu , Steven Rostedt , Vincent Guittot , xdp-newbies@vger.kernel.org, Yonghong Song On Sat, Feb 23, 2019 at 01:34:33AM -0500, Joel Fernandes (Google) wrote: > This suppresses sparse error generated due to the recently added > rcu_assign_pointer sparse check. > > percpu-rwsem.c:162:9: sparse: error: incompatible types in comparison expression > exit.c:316:16: sparse: error: incompatible types in comparison expression > > Signed-off-by: Joel Fernandes (Google) >From an RCU perspective: Reviewed-by: Paul E. McKenney > --- > include/linux/rcuwait.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/rcuwait.h b/include/linux/rcuwait.h > index 90bfa3279a01..563290fc194f 100644 > --- a/include/linux/rcuwait.h > +++ b/include/linux/rcuwait.h > @@ -18,7 +18,7 @@ > * awoken. > */ > struct rcuwait { > - struct task_struct *task; > + struct task_struct __rcu *task; > }; > > #define __RCUWAIT_INITIALIZER(name) \ > -- > 2.21.0.rc0.258.g878e2cd30e-goog >