Return-Path: Received: from mail-it0-f66.google.com ([209.85.214.66]:35762 "EHLO mail-it0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752338AbdBRAwm (ORCPT ); Fri, 17 Feb 2017 19:52:42 -0500 Received: by mail-it0-f66.google.com with SMTP id 203so5158145ith.2 for ; Fri, 17 Feb 2017 16:52:41 -0800 (PST) From: Trond Myklebust To: Anna Schumaker Cc: linux-nfs@vger.kernel.org Subject: [PATCH 4/4] NFSv4: Remove bogus "struct nfs_client" argument from decode_ace() Date: Fri, 17 Feb 2017 19:52:35 -0500 Message-Id: <20170218005235.65198-4-trond.myklebust@primarydata.com> In-Reply-To: <20170218005235.65198-3-trond.myklebust@primarydata.com> References: <20170218005235.65198-1-trond.myklebust@primarydata.com> <20170218005235.65198-2-trond.myklebust@primarydata.com> <20170218005235.65198-3-trond.myklebust@primarydata.com> Sender: linux-nfs-owner@vger.kernel.org List-ID: We shouldn't need to force callers to carry an unused argument. Signed-off-by: Trond Myklebust --- fs/nfs/nfs4xdr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index 7510a0cd93fa..dbb765fb4180 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -3125,7 +3125,7 @@ static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected) } /* Dummy routine */ -static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp) +static int decode_ace(struct xdr_stream *xdr, void *ace) { __be32 *p; unsigned int strlen; @@ -5073,7 +5073,7 @@ static int decode_rw_delegation(struct xdr_stream *xdr, if (decode_space_limit(xdr, &res->pagemod_limit) < 0) return -EIO; } - return decode_ace(xdr, NULL, res->server->nfs_client); + return decode_ace(xdr, NULL); out_overflow: print_overflow_msg(__func__, xdr); return -EIO; -- 2.9.3