Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759647AbYBIAGl (ORCPT ); Fri, 8 Feb 2008 19:06:41 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752281AbYBIAGd (ORCPT ); Fri, 8 Feb 2008 19:06:33 -0500 Received: from twin.jikos.cz ([213.151.79.26]:37467 "EHLO twin.jikos.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751228AbYBIAGc (ORCPT ); Fri, 8 Feb 2008 19:06:32 -0500 Date: Sat, 9 Feb 2008 01:05:15 +0100 (CET) From: Jiri Kosina X-X-Sender: jikos@twin.jikos.cz To: Adrian Bunk cc: Miklos Szeredi , jdike@addtoit.com, user-mode-linux-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Andrew Morton Subject: Re: uml compile error In-Reply-To: <20080208223228.GD6505@cs181133002.pp.htv.fi> Message-ID: References: <20080208223228.GD6505@cs181133002.pp.htv.fi> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1199 Lines: 39 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" -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/