From patchwork Tue Oct 20 19:18:16 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peng Tao X-Patchwork-Id: 7446001 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.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A55C19F302 for ; Tue, 20 Oct 2015 11:19:31 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D4C7820881 for ; Tue, 20 Oct 2015 11:19:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A50A420681 for ; Tue, 20 Oct 2015 11:19:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751701AbbJTLT2 (ORCPT ); Tue, 20 Oct 2015 07:19:28 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:32897 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751666AbbJTLT2 (ORCPT ); Tue, 20 Oct 2015 07:19:28 -0400 Received: by pabrc13 with SMTP id rc13so19042872pab.0 for ; Tue, 20 Oct 2015 04:19:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=GuuMa9ohnThCj4NdVwAX6LDEtCVfMo1wGL2gBrFeA4Y=; b=RvkdjbnsyU5tVyjiIbubWAvKwP7HufA9SEQ5jl3P9D6AjEDvzmVRLbrWOOuSl5A1PF ww092m6NCIHS+386Umdtty0Tr8XIyDKro91idyHkptqxX9GSqFzO5CDpLe59jAifjUuE tAi/azsyXbtov6BYjgGpRi4JOsGo0/KJ4VbZYG5Nbz0U0AWok91Z5d+f+cqLiv6pJvFS Mru7q2I86lA497zGgiYTGh+kQNQJJ05keVJkr7Ak9QJH3viahJ0SPX82uw1/XwkvD9nE yzGhVOr6siUgOKU0Pm3zrKDvLrb2vW0AZS7KSz6yYKRdcBQTANXjNy9gobVPAW0mf/Wu 6TPQ== X-Gm-Message-State: ALoCoQm0oOuh/YWaQuOgntet2C6wk04njpGIxezHxth22DN56XjV3BFL2v2ANMcYkyCVeoC0HzgB X-Received: by 10.66.231.103 with SMTP id tf7mr3425880pac.85.1445339967638; Tue, 20 Oct 2015 04:19:27 -0700 (PDT) Received: from lear.localdomain (ec2-54-65-164-9.ap-northeast-1.compute.amazonaws.com. [54.65.164.9]) by smtp.gmail.com with ESMTPSA id yp5sm1567334pac.38.2015.10.20.04.19.19 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 20 Oct 2015 04:19:26 -0700 (PDT) From: Peng Tao To: linux-nfs@vger.kernel.org Cc: Trond Myklebust , Peng Tao Subject: [PATCH] nfs: add missing linux/types.h Date: Wed, 21 Oct 2015 03:18:16 +0800 Message-Id: <1445368696-10315-1-git-send-email-tao.peng@primarydata.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00, DATE_IN_FUTURE_06_12, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, 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 After merging the nfs tree, today's linux-next build (powerpc allyesconfig produced this warning: ./usr/include/linux/nfs.h:40: found __[us]{8,16,32,64} type without #include Reported-by: Stephen Rothwell Signed-off-by: Peng Tao --- include/uapi/linux/nfs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/uapi/linux/nfs.h b/include/uapi/linux/nfs.h index c6b86cc..654bae3 100644 --- a/include/uapi/linux/nfs.h +++ b/include/uapi/linux/nfs.h @@ -7,6 +7,8 @@ #ifndef _UAPI_LINUX_NFS_H #define _UAPI_LINUX_NFS_H +#include + #define NFS_PROGRAM 100003 #define NFS_PORT 2049 #define NFS_MAXDATA 8192