From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Subject: Re: [PATCH] xfs: Fix build breakage in xfs_iops.c when CONFIG_FS_POSIX_ACL is not set Date: Tue, 26 Jul 2011 05:34:01 -0400 Message-ID: <20110726093401.GA8334@infradead.org> References: <20110725185649.GA22133@ZenIV.linux.org.uk> <20110726033535.GA11939@x4.trippels.de> <20110726082146.GB11939@x4.trippels.de> <20110726085804.GA1639@x4.trippels.de> <20110726091520.GB1639@x4.trippels.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Steven Liu , Linus Torvalds , Al Viro , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, Christoph Hellwig To: Markus Trippelsdorf Return-path: Content-Disposition: inline In-Reply-To: <20110726091520.GB1639@x4.trippels.de> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Tue, Jul 26, 2011 at 11:15:20AM +0200, Markus Trippelsdorf wrote: > commit 4e34e719e45, that takes the ACL checks to common code, > accidentely broke the build when CONFIG_FS_POSIX_ACL is not set: > > CC fs/xfs/linux-2.6/xfs_iops.o > fs/xfs/linux-2.6/xfs_iops.c:1025:14: error: ???xfs_get_acl??? undeclared here (not in a function) > > Fix this by declaring xfs_get_acl a static inline function. Do you have OPTIMIZE_INLINING enabled? In general I dont think we can take the address of an inline function, so without this option I far the code might not compile, in which case we'll need ifdefs around the inode operation assignment in addition to your patch.