Re: linux-next: vfs tree build failure
From: Christoph Hellwig <hch@infradead.org>
Date: 2008-10-20 07:40:41
From: Christoph Hellwig <hch@infradead.org>
Date: 2008-10-20 07:40:41
On Mon, Oct 20, 2008 at 06:13:38PM +1100, Dave Chinner wrote:
quoted
- return d_obtain_alias(cip->i_vnode); + return d_obtain_alias(&cip->i_vnode); }Hmmmm - looks like the VFS patches aren't using the correct accessor function like the original code did. The fix should be: + return d_obtain_alias(VFS_I(cip));
When I did the VFS patches VFS_I wasn't around yet..