From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sc8-sf-mx2-b.sourceforge.net ([10.3.1.92] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1JNdEl-0003UC-2K for user-mode-linux-devel@lists.sourceforge.net; Fri, 08 Feb 2008 16:06:31 -0800 Received: from twin.jikos.cz ([213.151.79.26] ident=root) by mail.sourceforge.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.44) id 1JNdEi-0004k2-D6 for user-mode-linux-devel@lists.sourceforge.net; Fri, 08 Feb 2008 16:06:30 -0800 Date: Sat, 9 Feb 2008 01:05:15 +0100 (CET) From: Jiri Kosina In-Reply-To: <20080208223228.GD6505@cs181133002.pp.htv.fi> Message-ID: References: <20080208223228.GD6505@cs181133002.pp.htv.fi> MIME-Version: 1.0 Subject: Re: [uml-devel] uml compile error List-Id: The user-mode Linux development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: user-mode-linux-devel-bounces@lists.sourceforge.net Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: Adrian Bunk Cc: Andrew Morton , jdike@addtoit.com, Miklos Szeredi , linux-kernel@vger.kernel.org, user-mode-linux-devel@lists.sourceforge.net On Sat, 9 Feb 2008, Adrian Bunk wrote: > Commit dd2cc4dff3b08ab54c4c177a080046bcc84ac41d broke uml: > <-- snip --> > ... > CC fs/hostfs/hostfs_kern.o > /home/bunk/linux/kernel-2.6/git/linux-2.6/fs/hostfs/hostfs_kern.c: In function 'hostfs_show_options': > /home/bunk/linux/kernel-2.6/git/linux-2.6/fs/hostfs/hostfs_kern.c:328: error: dereferencing pointer to incomplete type > make[3]: *** [fs/hostfs/hostfs_kern.o] Error 1 I guess we need this one? From: Jiri Kosina UML: fix hostfs build We need to include mount.h to get vfsmount. Signed-off-by: Jiri Kosina diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index d0549cb..5222345 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "hostfs.h" #include "init.h" #include "kern.h" ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel