From patchwork Mon Jan 28 20:31:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 2058251 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id E6CDD3FD86 for ; Mon, 28 Jan 2013 20:31:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753961Ab3A1Ubi (ORCPT ); Mon, 28 Jan 2013 15:31:38 -0500 Received: from mail-ia0-f169.google.com ([209.85.210.169]:37282 "EHLO mail-ia0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753963Ab3A1Ube (ORCPT ); Mon, 28 Jan 2013 15:31:34 -0500 Received: by mail-ia0-f169.google.com with SMTP id j5so4964672iaf.0 for ; Mon, 28 Jan 2013 12:31:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:subject:to:cc:date:message-id:in-reply-to :references:user-agent:mime-version:content-type :content-transfer-encoding; bh=bbhqzrDjKSs0a0Rsl0sQtbWpP8RoPwduoszueI/xYCc=; b=Aef5rFTyyFjm/5LZBZR8IN5W4Ulw+fxIKEthnW0sDBatNLyoCl/mkjLbUfSuUZmFWf yEyv8yOhH6cLer12L/1upXHuQO+Nnp1sWSEivydd2B0VMfj1n06bNQPn0Sd7ur43JS7J 0JQnNLBaXA6kgSBOrbzZBmesRLdCbh+pHmXxhy4JMCADtG/DjQVkRonvnLccHavt8Gkg 2nz2j+TAeYcRqCkJaK+eiDNwEIE/k2K18Y8zgGwi8WrstAXBZJ1AOGvz1NF23/Mqipqp 2SvP0GgA681xk9HEDPE24cJyvBO+IxF2yyRWQ9y2SxpwXC9Hy64NFxeLB6E3FgDeUJtU yRvw== X-Received: by 10.50.216.200 with SMTP id os8mr6047985igc.74.1359405092771; Mon, 28 Jan 2013 12:31:32 -0800 (PST) Received: from seurat.1015granger.net (adsl-99-26-161-222.dsl.sfldmi.sbcglobal.net. [99.26.161.222]) by mx.google.com with ESMTPS id hg2sm6892450igc.3.2013.01.28.12.31.31 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 28 Jan 2013 12:31:32 -0800 (PST) From: Chuck Lever Subject: [PATCH 1 1/5] NFS: Remove unneeded forward declaration To: linux-nfs@vger.kernel.org Cc: Chuck Lever Date: Mon, 28 Jan 2013 15:31:31 -0500 Message-ID: <20130128203131.2523.51442.stgit@seurat.1015granger.net> In-Reply-To: <20130128195843.2523.34798.stgit@seurat.1015granger.net> References: <20130128195843.2523.34798.stgit@seurat.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 I've built with NFSv4 enabled and disabled. This forward declaration does not seem to be required. Signed-off-by: Chuck Lever --- include/linux/nfs_xdr.h | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 29adb12..467167402 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -14,9 +14,6 @@ #define NFS_DEF_FILE_IO_SIZE (4096U) #define NFS_MIN_FILE_IO_SIZE (1024U) -/* Forward declaration for NFS v3 */ -struct nfs4_secinfo_flavors; - struct nfs4_string { unsigned int len; char *data;