setup-common.c (e995265252fad3cf10cec6821ff0870cd95c4f08) | setup-common.c (ed1cd6deb013a11959d17a94e35ce159197632da) |
---|---|
1/* 2 * Common boot and setup code for both 32-bit and 64-bit. 3 * Extracted from arch/powerpc/kernel/setup_64.c. 4 * 5 * Copyright (C) 2001 PPC64 Team, IBM Corp 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License --- 923 unchanged lines hidden (view full) --- 932#endif 933 934 /* Print various info about the machine that has been gathered so far. */ 935 print_system_info(); 936 937 /* Reserve large chunks of memory for use by CMA for KVM. */ 938 kvm_cma_reserve(); 939 | 1/* 2 * Common boot and setup code for both 32-bit and 64-bit. 3 * Extracted from arch/powerpc/kernel/setup_64.c. 4 * 5 * Copyright (C) 2001 PPC64 Team, IBM Corp 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License --- 923 unchanged lines hidden (view full) --- 932#endif 933 934 /* Print various info about the machine that has been gathered so far. */ 935 print_system_info(); 936 937 /* Reserve large chunks of memory for use by CMA for KVM. */ 938 kvm_cma_reserve(); 939 |
940 klp_init_thread_info(&init_thread_info); | 940 klp_init_thread_info(&init_task); |
941 942 init_mm.start_code = (unsigned long)_stext; 943 init_mm.end_code = (unsigned long) _etext; 944 init_mm.end_data = (unsigned long) _edata; 945 init_mm.brk = klimit; 946 947#ifdef CONFIG_PPC_MM_SLICES 948#ifdef CONFIG_PPC64 --- 41 unchanged lines hidden --- | 941 942 init_mm.start_code = (unsigned long)_stext; 943 init_mm.end_code = (unsigned long) _etext; 944 init_mm.end_data = (unsigned long) _edata; 945 init_mm.brk = klimit; 946 947#ifdef CONFIG_PPC_MM_SLICES 948#ifdef CONFIG_PPC64 --- 41 unchanged lines hidden --- |