From patchwork Fri May 20 14:43:48 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Adamson X-Patchwork-Id: 9129721 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 7FB8960467 for ; Fri, 20 May 2016 14:44:24 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 73A5B1FF6C for ; Fri, 20 May 2016 14:44:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6856B27B90; Fri, 20 May 2016 14:44:24 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1C5A91FF6C for ; Fri, 20 May 2016 14:44:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754907AbcETOoW (ORCPT ); Fri, 20 May 2016 10:44:22 -0400 Received: from mx142.netapp.com ([216.240.21.19]:41109 "EHLO mx142.netapp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752645AbcETOoW (ORCPT ); Fri, 20 May 2016 10:44:22 -0400 X-IronPort-AV: E=Sophos;i="5.26,339,1459839600"; d="scan'208";a="112144427" Received: from vmwexchts01-prd.hq.netapp.com ([10.122.105.12]) by mx142-out.netapp.com with ESMTP; 20 May 2016 07:44:21 -0700 Received: from smtp2.corp.netapp.com (10.57.159.114) by VMWEXCHTS01-PRD.hq.netapp.com (10.122.105.12) with Microsoft SMTP Server id 15.0.1156.6; Fri, 20 May 2016 07:44:16 -0700 Received: from localhost.localdomain (andros-new.vpn.netapp.com [10.55.78.52]) by smtp2.corp.netapp.com (8.13.1/8.13.1/NTAP-1.6) with ESMTP id u4KEiIkU025979; Fri, 20 May 2016 07:44:20 -0700 (PDT) From: To: CC: , , , , Andy Adamson Subject: [PATCH Version 5 01/10] NFS rename default callback ops Date: Fri, 20 May 2016 10:43:48 -0400 Message-ID: <1463755437-17649-2-git-send-email-andros@netapp.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1463755437-17649-1-git-send-email-andros@netapp.com> References: <1463755437-17649-1-git-send-email-andros@netapp.com> MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Andy Adamson Also to be used with refactored exchange_id for session trunking Signed-off-by: Andy Adamson --- fs/nfs/nfs4proc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 327b8c3..da2aa2e 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -6784,12 +6784,12 @@ nfs41_same_server_scope(struct nfs41_server_scope *a, } static void -nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata) +nfs4_proc_default_done(struct rpc_task *task, void *calldata) { } -static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = { - .rpc_call_done = &nfs4_bind_one_conn_to_session_done, +static const struct rpc_call_ops nfs4_proc_default_ops = { + .rpc_call_done = &nfs4_proc_default_done, }; /* @@ -6820,7 +6820,7 @@ int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt, struct rpc_task_setup task_setup_data = { .rpc_client = clnt, .rpc_xprt = xprt, - .callback_ops = &nfs4_bind_one_conn_to_session_ops, + .callback_ops = &nfs4_proc_default_ops, .rpc_message = &msg, .flags = RPC_TASK_TIMEOUT, };