From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5CF87C433DF for ; Tue, 23 Jun 2020 21:01:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 131C520724 for ; Tue, 23 Jun 2020 21:01:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592946107; bh=E2z47KbmtpHgIyDZQzRHYJTmu2inPrsJCmR5Nu0mEJ0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=1FcUAnUmjQ9QZfURm7KPf1+Q56H7Sir9/oVmEtBeJXPD9iaGSHtqFdfxyT1uUBbuP x9wUDzp761/fvvl5FjwewPSq8XyJdbzQxCEWn8l3UYO1KVT95oMvX+yDtvOeMwBIfp Sm0zAlntjN7wlbBkUWm+s9q1ma3REhYaIQXlXA+w= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392086AbgFWUjo (ORCPT ); Tue, 23 Jun 2020 16:39:44 -0400 Received: from mail.kernel.org ([198.145.29.99]:35324 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2392055AbgFWUjg (ORCPT ); Tue, 23 Jun 2020 16:39:36 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A51B8215A4; Tue, 23 Jun 2020 20:39:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592944776; bh=E2z47KbmtpHgIyDZQzRHYJTmu2inPrsJCmR5Nu0mEJ0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dH9+i21fVzccIUn5WAJtk4p3ecS4hcgiM2gWVYsqrHQx4WC31xJQqknmtg0EzbsNO qkthxcsHgBV847QkdSzAmR0Y20WWIaZaYfyHevFEoC7yuNCxpKswZdRySDbynK2AL1 o4F7yFDykWQQt6YiaZ0PZWw4ZhDvuAfIMGZY2yGY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Olga Kornievskaia , Anna Schumaker , Sasha Levin Subject: [PATCH 4.19 120/206] NFSv4.1 fix rpc_call_done assignment for BIND_CONN_TO_SESSION Date: Tue, 23 Jun 2020 21:57:28 +0200 Message-Id: <20200623195322.862847559@linuxfoundation.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200623195316.864547658@linuxfoundation.org> References: <20200623195316.864547658@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Olga Kornievskaia [ Upstream commit 1c709b766e73e54d64b1dde1b7cfbcf25bcb15b9 ] Fixes: 02a95dee8cf0 ("NFS add callback_ops to nfs4_proc_bind_conn_to_session_callback") Signed-off-by: Olga Kornievskaia Signed-off-by: Anna Schumaker Signed-off-by: Sasha Levin --- fs/nfs/nfs4proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 668b648064b72..05cb68ca1ba1a 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -7624,7 +7624,7 @@ nfs4_bind_one_conn_to_session_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, + .rpc_call_done = nfs4_bind_one_conn_to_session_done, }; /* -- 2.25.1