From patchwork Tue Dec 14 14:58:49 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever III X-Patchwork-Id: 410191 X-Patchwork-Delegate: Trond.Myklebust@netapp.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oBEEstSI007667 for ; Tue, 14 Dec 2010 14:58:55 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757846Ab0LNO6y (ORCPT ); Tue, 14 Dec 2010 09:58:54 -0500 Received: from mail-iy0-f174.google.com ([209.85.210.174]:42836 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756678Ab0LNO6x (ORCPT ); Tue, 14 Dec 2010 09:58:53 -0500 Received: by iyi12 with SMTP id 12so349341iyi.19 for ; Tue, 14 Dec 2010 06:58:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:subject:to:cc :date:message-id:in-reply-to:references:user-agent:mime-version :content-type:content-transfer-encoding; bh=3Zuen2D5ctLgnNa8WykA7QCJe4CMfPp4lIi05pmlmmo=; b=VWA4cLCnztdiZ4+isfV83EkdyBdZS1LXP7z2Adecpx6ogshEP2PdRbGJc+pePnJInz zQuy+x41hEOgv79J3ZmM2ZvlfCa5YaIEbIMkvK2rPdp1b6bsgNeX6cLyN2W0ui49ZEnX LdJh4b+wJsE/PhovM9vOflXkvQTgtEu2bpj7Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:subject:to:cc:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:content-transfer-encoding; b=HjmTpnbnb9uNZpB51dT5VEN/dBWEwvJt+WOdnE9KqYtQ/mYhuY610NC3Y+EH/XU8Sd CalBuBIBXo08Ph3nurzfPusVMNOmDkn3w/WTcG6YKBH9TidIg1x3J6jBPYlYal266FHz 8xzLcFfbD6Nfrp2ruRSiov5hx0CSQIoS9IISU= Received: by 10.231.19.138 with SMTP id a10mr3348003ibb.127.1292338732293; Tue, 14 Dec 2010 06:58:52 -0800 (PST) Received: from matisse.1015granger.net (adsl-99-26-161-222.dsl.sfldmi.sbcglobal.net [99.26.161.222]) by mx.google.com with ESMTPS id z4sm110182ibg.7.2010.12.14.06.58.50 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 14 Dec 2010 06:58:51 -0800 (PST) From: Chuck Lever Subject: [PATCH 27/31] NFS: Remove unused UMNT response data structure To: trond.myklebust@netapp.com Cc: linux-nfs@vger.kernel.org Date: Tue, 14 Dec 2010 09:58:49 -0500 Message-ID: <20101214145849.2293.99438.stgit@matisse.1015granger.net> In-Reply-To: <20101214144747.2293.68070.stgit@matisse.1015granger.net> References: <20101214144747.2293.68070.stgit@matisse.1015granger.net> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 14 Dec 2010 14:58:56 +0000 (UTC) diff --git a/fs/nfs/mount_clnt.c b/fs/nfs/mount_clnt.c index c82547e..97c3ec7 100644 --- a/fs/nfs/mount_clnt.c +++ b/fs/nfs/mount_clnt.c @@ -236,10 +236,8 @@ void nfs_umount(const struct nfs_mount_request *info) .authflavor = RPC_AUTH_UNIX, .flags = RPC_CLNT_CREATE_NOPING, }; - struct mountres result; struct rpc_message msg = { .rpc_argp = info->dirpath, - .rpc_resp = &result, }; struct rpc_clnt *clnt; int status;