On Fri, Mar 06, 2009 at 12:42:14AM -0600, Rob Landley wrote: >Apparently, nobody other than me has ever attempted to use User Mode Linux >built from 2.6.28 on x86-64, because it doesn't work. It still doesn't work >in current git. I complained about it not working back in January: > >http://sourceforge.net/mailarchive/forum.php?thread_name=200901130159.04389.rob%40landley.net&forum_name=user- >mode-linux-devel >http://lkml.indiana.edu/hypermail/linux/kernel/0901.2/00669.html > >And today, I bothered to track down why. > >This is the commit that broke it, when Peter Anvin merged x86 and x86-64 for >ARCH=um: http://kernel.org/hg/linux-2.6/rev/117978 > >Here's a patch that fixes it for me:
Thanks, Bob! > >Signed-off-by: Rob Landley <r...@landley.net> > >diff -r 178a096e9e38 arch/um/Kconfig.x86 >--- a/arch/um/Kconfig.x86 Fri Feb 27 16:49:46 2009 -0800 >+++ b/arch/um/Kconfig.x86 Thu Mar 05 23:35:55 2009 -0600 >@@ -26,9 +26,8 @@ > def_bool !X86_XADD > > config 3_LEVEL_PGTABLES >- bool "Three-level pagetables (EXPERIMENTAL)" if !64BIT >+ bool > default 64BIT >- depends on EXPERIMENTAL So, on i386, it will not depend on EXPERIMENTAL any more, right? How about changing it to the following? depends on 64BIT || EXPERIMENTAL > help > Three-level pagetables will let UML have more than 4G of physical > memory. All the memory that can't be mapped directly will be treated >