From patchwork Thu Sep 26 18:42:54 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benny Halevy X-Patchwork-Id: 2950511 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 419DFBFF0B for ; Thu, 26 Sep 2013 18:43:07 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C632B2017B for ; Thu, 26 Sep 2013 18:43:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 47C8920164 for ; Thu, 26 Sep 2013 18:43:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753559Ab3IZSm7 (ORCPT ); Thu, 26 Sep 2013 14:42:59 -0400 Received: from mail-qe0-f45.google.com ([209.85.128.45]:39594 "EHLO mail-qe0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753005Ab3IZSm7 (ORCPT ); Thu, 26 Sep 2013 14:42:59 -0400 Received: by mail-qe0-f45.google.com with SMTP id 6so1089336qea.18 for ; Thu, 26 Sep 2013 11:42:58 -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; bh=47bGLG/iF1EyVMeH0TDV0Sj0f7bekVmX9ZAc3+dv4kQ=; b=jYx+biQQtwVN+0Jq/i8WuTC/bM2Gy/PR8z5FKXsZdBKqtN4U7CE4pw7veP3kXXgry9 VOoVi/2PvYDj3zIEaBigskoDKdJVpUzOIlgWDltm+gF56heDPbJ6aVaFI9yq7xlm+It2 q5VeMAqX3NNGlDkf+CluiVHqQ/HOfxp1tFrFwYGFwxQEFIg+tZ4Jh3PD7tZ5mq84xYwk 5b25DBWGeLcjVJVqjtOsICmoxBt9nSavJVQwP22+I4hvi9ATWK8IjiLaWBGEMwEggL2b X4byQ0MbMYKlHSsiKIqxiDgt9a2ktNZTykXJGniq7bdwSK+WbWneqkBj5YhX2SxN204v cO8A== X-Received: by 10.224.16.8 with SMTP id m8mr8807379qaa.28.1380220978028; Thu, 26 Sep 2013 11:42:58 -0700 (PDT) Received: from bhalevy-lt.il.tonian.com.com (nat-pool-bos-u.redhat.com. [66.187.233.207]) by mx.google.com with ESMTPSA id fy7sm5149405qeb.1.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 26 Sep 2013 11:42:57 -0700 (PDT) From: Benny Halevy To: " J. Bruce Fields" Cc: linux-nfs@vger.kernel.org Subject: [PATCH RFC v0 44/49] posix_acl: resolve compile dependency in posix_acl.h Date: Thu, 26 Sep 2013 14:42:54 -0400 Message-Id: <1380220974-14716-1-git-send-email-bhalevy@primarydata.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <52447EA0.7070004@primarydata.com> References: <52447EA0.7070004@primarydata.com> Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-9.2 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 From: Benny Halevy get_cached_acl is defined as inline in posix_acl.h requiring the full definition of struct inode as it dereferences its struct inode * parameter. Cc: Alexander Viro Cc: linux-fsdevel@vger.kernel.org Cc: J. Bruce Fields Cc: Trond Myklebust Signed-off-by: Benny Halevy Signed-off-by: Benny Halevy --- include/linux/posix_acl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/posix_acl.h b/include/linux/posix_acl.h index 7931efe..a7d8b04 100644 --- a/include/linux/posix_acl.h +++ b/include/linux/posix_acl.h @@ -9,6 +9,7 @@ #define __LINUX_POSIX_ACL_H #include +#include #include #include