Return-Path: linux-nfs-owner@vger.kernel.org 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) 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> In-Reply-To: <52447EA0.7070004@primarydata.com> References: <52447EA0.7070004@primarydata.com> Sender: linux-nfs-owner@vger.kernel.org List-ID: 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 -- 1.8.3.1