From patchwork Thu Oct 2 13:41:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Timo_Ter=C3=A4s?= X-Patchwork-Id: 5018631 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 94DDC9F32B for ; Thu, 2 Oct 2014 13:42:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B987B201DD for ; Thu, 2 Oct 2014 13:42:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 983A820165 for ; Thu, 2 Oct 2014 13:42:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753399AbaJBNmj (ORCPT ); Thu, 2 Oct 2014 09:42:39 -0400 Received: from mail-lb0-f174.google.com ([209.85.217.174]:48755 "EHLO mail-lb0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752166AbaJBNmi (ORCPT ); Thu, 2 Oct 2014 09:42:38 -0400 Received: by mail-lb0-f174.google.com with SMTP id p9so2246186lbv.19 for ; Thu, 02 Oct 2014 06:42:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=0hqgH/1ihJmeBuSnBJMwzupWTwKvW7g0l0IX3f1jaQ8=; b=YAaUfpvbP77bWgvqha/t7SKSJWMDhi4bsbk43km5uTlI0jmoTBxuVoXGnwFhykbR+X ZDxS6vVeqBIRPN0vyvGDFP/9k+FM99+Y1HhyKBGuCbCFNajalXCwm7cI4hfJoSX7tLPi udItfTvz3XWY0KyLPrJ4qER/MokA0RifKNANezC73jlZiKBmDe7hRsP91BvVJhqZyW/r SFQATZOQwKIQXwNpnCZ4GSmYwAF2QnXqcv7Su9Ra1NW057MhSsIrmizzKC0qOtqSlC9K yHxrVyoi6pyXBb7XTTPlRaGc82iyc2scsMY4rLp5ka2HjgFPPtnVr5NlVzUcvTNYO1U+ a4pA== X-Received: by 10.112.169.37 with SMTP id ab5mr38388381lbc.27.1412257356643; Thu, 02 Oct 2014 06:42:36 -0700 (PDT) Received: from vostro.util.wtbts.net ([83.145.235.199]) by mx.google.com with ESMTPSA id cm9sm1599925lbb.39.2014.10.02.06.42.36 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 02 Oct 2014 06:42:36 -0700 (PDT) From: =?UTF-8?q?Timo=20Ter=C3=A4s?= To: Steve Dickson , linux-nfs@vger.kernel.org, ncopa@alpinelinux.org Cc: =?UTF-8?q?Timo=20Ter=C3=A4s?= Subject: [PATCH v2 1/5] Add string.h to source files that need it Date: Thu, 2 Oct 2014 16:41:57 +0300 Message-Id: <1412257321-5855-2-git-send-email-timo.teras@iki.fi> X-Mailer: git-send-email 2.1.2 In-Reply-To: <1412257321-5855-1-git-send-email-timo.teras@iki.fi> References: <1412257321-5855-1-git-send-email-timo.teras@iki.fi> MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-7.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Timo Teräs --- support/include/exportfs.h | 1 + support/include/nfsrpc.h | 1 + support/nfs/cacheio.c | 1 + utils/gssd/write_bytes.h | 1 + utils/nfsd/nfssvc.c | 1 + 5 files changed, 5 insertions(+) diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 9021fae..32711e4 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -10,6 +10,7 @@ #define EXPORTFS_H #include +#include #include "sockaddr.h" #include "nfslib.h" diff --git a/support/include/nfsrpc.h b/support/include/nfsrpc.h index 1bfae7a..fbbdb6a 100644 --- a/support/include/nfsrpc.h +++ b/support/include/nfsrpc.h @@ -23,6 +23,7 @@ #ifndef __NFS_UTILS_NFSRPC_H #define __NFS_UTILS_NFSRPC_H +#include #include #include diff --git a/support/nfs/cacheio.c b/support/nfs/cacheio.c index 61e07a8..2726d8f 100644 --- a/support/nfs/cacheio.c +++ b/support/nfs/cacheio.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include diff --git a/utils/gssd/write_bytes.h b/utils/gssd/write_bytes.h index 4fc72cc..b3f342b 100644 --- a/utils/gssd/write_bytes.h +++ b/utils/gssd/write_bytes.h @@ -32,6 +32,7 @@ #define _WRITE_BYTES_H_ #include +#include #include #include /* for ntohl */ diff --git a/utils/nfsd/nfssvc.c b/utils/nfsd/nfssvc.c index 0675b6a..027e5ac 100644 --- a/utils/nfsd/nfssvc.c +++ b/utils/nfsd/nfssvc.c @@ -20,6 +20,7 @@ #include #include #include +#include #include "nfslib.h" #include "xlog.h"