From patchwork Mon Jul 14 01:57:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 4542221 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 684A3C0514 for ; Mon, 14 Jul 2014 01:58:00 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9AE5D20145 for ; Mon, 14 Jul 2014 01:57:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BA4E620149 for ; Mon, 14 Jul 2014 01:57:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752500AbaGNB5z (ORCPT ); Sun, 13 Jul 2014 21:57:55 -0400 Received: from mail-qa0-f52.google.com ([209.85.216.52]:64861 "EHLO mail-qa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751943AbaGNB5y (ORCPT ); Sun, 13 Jul 2014 21:57:54 -0400 Received: by mail-qa0-f52.google.com with SMTP id j15so2719512qaq.39 for ; Sun, 13 Jul 2014 18:57:54 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:cc:subject:date:message-id :in-reply-to:references; bh=qVq09/Pn43Kj4riNE430MT3MxW8oWN26T558yW5SvJA=; b=gU+6omVr1LAyPjMiXYmwQAcydA8IgkDAHJn/OteICwPxgSLMosEVGiFxcW6gxd60z4 4AfN++7LviS76b1oauiTV8JS2xwC8M9X29ksD5+4nB/0O4+Z8MgqfTlh85HhCd6rNVs8 mSq6IIgaAHxmUSLMdPh7hwq6HHYR7Ep4N0uy7S5nO0EZeB9r7O1PN3t+nzCNnbRsaejj DMVG9qE5Z9ci12+gk4+qPftHn2PqRmsKIux/zi3oSooxZBWOCPVwHHTJknVauyJHx+xc i7tyH721MYH7F8qhrEWo4Fd5smbbxhbz5hSGBdk/3/Rgf5qMtXiuGk01zTlUVKxPqht4 OeiA== X-Gm-Message-State: ALoCoQm3QdhhM21JAyS+EdYXFI0q+eXbItUdzs9erjtcSbKhSImYrU4yRySEWKUoqd7IbJtZO1oB X-Received: by 10.224.135.2 with SMTP id l2mr18251149qat.37.1405303073938; Sun, 13 Jul 2014 18:57:53 -0700 (PDT) Received: from tlielax.poochiereds.net ([2001:470:8:d63:3a60:77ff:fe93:a95d]) by mx.google.com with ESMTPSA id d69sm5176312qge.35.2014.07.13.18.57.52 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 13 Jul 2014 18:57:53 -0700 (PDT) From: Jeff Layton To: trond.myklebust@primarydata.com Cc: bfields@fieldses.org, linux-nfs@vger.kernel.org, Arnd Bergmann , Paul McKenney Subject: [PATCH 1/7] sunrpc: remove __rcu annotation from struct gss_cl_ctx->gc_gss_ctx Date: Sun, 13 Jul 2014 21:57:38 -0400 Message-Id: <1405303064-9102-2-git-send-email-jlayton@primarydata.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1405303064-9102-1-git-send-email-jlayton@primarydata.com> References: <1405303064-9102-1-git-send-email-jlayton@primarydata.com> Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit 5b22216e11f7 (nfs: __rcu annotations) added a __rcu annotation to the gc_gss_ctx field. I see no rationale for adding that though, as that field does not seem to be managed via RCU at all. Cc: Arnd Bergmann Cc: Paul McKenney Signed-off-by: Jeff Layton --- include/linux/sunrpc/auth_gss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/sunrpc/auth_gss.h b/include/linux/sunrpc/auth_gss.h index cbc6875fb9cf..36eebc451b41 100644 --- a/include/linux/sunrpc/auth_gss.h +++ b/include/linux/sunrpc/auth_gss.h @@ -69,7 +69,7 @@ struct gss_cl_ctx { enum rpc_gss_proc gc_proc; u32 gc_seq; spinlock_t gc_seq_lock; - struct gss_ctx __rcu *gc_gss_ctx; + struct gss_ctx *gc_gss_ctx; struct xdr_netobj gc_wire_ctx; struct xdr_netobj gc_acceptor; u32 gc_win;