diff options
Diffstat (limited to 'arch/s390/kernel/setup.c')
| -rw-r--r-- | arch/s390/kernel/setup.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c index 77a63ae419f..91625f759cc 100644 --- a/arch/s390/kernel/setup.c +++ b/arch/s390/kernel/setup.c @@ -25,7 +25,6 @@  #include <linux/stddef.h>  #include <linux/unistd.h>  #include <linux/ptrace.h> -#include <linux/slab.h>  #include <linux/user.h>  #include <linux/tty.h>  #include <linux/ioport.h> @@ -401,7 +400,7 @@ setup_lowcore(void)  	 * Setup lowcore for boot cpu  	 */  	BUILD_BUG_ON(sizeof(struct _lowcore) != LC_PAGES * 4096); -	lc = __alloc_bootmem(LC_PAGES * PAGE_SIZE, LC_PAGES * PAGE_SIZE, 0); +	lc = __alloc_bootmem_low(LC_PAGES * PAGE_SIZE, LC_PAGES * PAGE_SIZE, 0);  	lc->restart_psw.mask = PSW_BASE_BITS | PSW_DEFAULT_KEY;  	lc->restart_psw.addr =  		PSW_ADDR_AMODE | (unsigned long) restart_int_handler; @@ -433,7 +432,7 @@ setup_lowcore(void)  #ifndef CONFIG_64BIT  	if (MACHINE_HAS_IEEE) {  		lc->extended_save_area_addr = (__u32) -			__alloc_bootmem(PAGE_SIZE, PAGE_SIZE, 0); +			__alloc_bootmem_low(PAGE_SIZE, PAGE_SIZE, 0);  		/* enable extended save area */  		__ctl_set_bit(14, 29);  	}  |