diff -urNp x86-64-ref/MAINTAINERS x86-64/MAINTAINERS --- x86-64-ref/MAINTAINERS Wed May 29 18:37:34 2002 +++ x86-64/MAINTAINERS Wed May 29 18:37:47 2002 @@ -1861,6 +1861,13 @@ P: Ingo Molnar M: mingo@redhat.com S: Maintained +X86-64 port +P: Andi Kleen +M: ak@suse.de +L: discuss@x86-64.org +W: http://www.x86-64.org +S: Maintained + YAM DRIVER FOR AX.25 P: Jean-Paul Roubelat M: jpr@f6fbb.org diff -urNp x86-64-ref/include/linux/auto_fs.h x86-64/include/linux/auto_fs.h --- x86-64-ref/include/linux/auto_fs.h Wed May 29 02:12:46 2002 +++ x86-64/include/linux/auto_fs.h Wed May 29 18:37:47 2002 @@ -45,7 +45,7 @@ * If so, 32-bit user-space code should be backwards compatible. */ -#if defined(__sparc__) || defined(__mips__) || defined(__s390__) +#if defined(__sparc__) || defined(__mips__) || defined(__s390__) || defined(__x86_64__) typedef unsigned int autofs_wqt_t; #else typedef unsigned long autofs_wqt_t; diff -urNp x86-64-ref/include/linux/brlock.h x86-64/include/linux/brlock.h --- x86-64-ref/include/linux/brlock.h Fri May 3 20:23:55 2002 +++ x86-64/include/linux/brlock.h Wed May 29 18:37:47 2002 @@ -45,7 +45,7 @@ enum brlock_indices { #include #include -#if defined(__i386__) || defined(__ia64__) || defined(__x86_64__) +#if defined(__i386__) || defined(__ia64__) #define __BRLOCK_USE_ATOMICS #else #undef __BRLOCK_USE_ATOMICS diff -urNp x86-64-ref/include/linux/kernel.h x86-64/include/linux/kernel.h --- x86-64-ref/include/linux/kernel.h Wed May 29 18:37:34 2002 +++ x86-64/include/linux/kernel.h Wed May 29 18:37:47 2002 @@ -189,4 +189,6 @@ struct sysinfo { #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0) +#define warn_if_not_ulong(x) do { unsigned long foo; (void) (&(x) == &foo); } while (0) + #endif /* _LINUX_KERNEL_H */ diff -urNp x86-64-ref/init/main.c x86-64/init/main.c --- x86-64-ref/init/main.c Wed May 29 18:37:33 2002 +++ x86-64/init/main.c Wed May 29 18:38:01 2002 @@ -288,6 +288,7 @@ static void __init parse_options(char *l extern void setup_arch(char **); extern void cpu_idle(void); +extern void disable_early_printk(void); #ifndef CONFIG_SMP @@ -359,6 +360,9 @@ asmlinkage void __init start_kernel(void * we've done PCI setups etc, and console_init() must be aware of * this. But we do want output early, in case something goes wrong. */ +#ifdef CONFIG_EARLY_PRINTK + disable_early_printk(); +#endif console_init(); #ifdef CONFIG_MODULES init_modules();