From: Kenn H. <ke...@us...> - 2001-01-29 01:09:27
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/boot In directory usw-pr-cvs1:/tmp/cvs-serv29867/arch/vax/boot Modified Files: tmp_init.c Log Message: Semaphores added. SYSV IPC and proc filesystem compile and sort-of-work. Init sequence now gets as far as tty init. EXTRAVERSION updated to -20010129 Index: tmp_init.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/tmp_init.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- tmp_init.c 2001/01/26 00:27:00 1.2 +++ tmp_init.c 2001/01/29 01:09:18 1.3 @@ -137,7 +137,7 @@ boot_rpb.l_pfncnt, boot_rpb.l_vmb_version, boot_rpb.l_badpgs); printk("Physical memory: %08x pages (%dKB)\n", - boot_rpb.l_pfncnt, boot_rpb.l_pfncnt / 2); + max_pfn, max_pfn / 2); setup_arch(&command_line); @@ -162,7 +162,6 @@ memory on the free list */ mem_init(); - kmem_cache_sizes_init(); #ifdef CONFIG_PROC_FS @@ -233,11 +232,8 @@ #if defined(CONFIG_NET) sock_init(); - net_dev_init(); #endif - device_setup(); - start_context_thread(); do_initcalls(); @@ -254,14 +250,6 @@ printk("tmp_init: in init thread\n"); tmp_do_basic_setup(); - -#if 0 - kernel_thread(bdflush, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGHAND); - kernel_thread(kupdate, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGHAND); - kswapd_setup(); - kernel_thread(kpiod, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGHAND); - kernel_thread(kswapd, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGHAND); -#endif panic("No init found."); } |