diff options
Diffstat (limited to 'arch/s390/kernel')
| -rw-r--r-- | arch/s390/kernel/asm-offsets.c | 3 | ||||
| -rw-r--r-- | arch/s390/kernel/compat_wrapper.S | 6 | ||||
| -rw-r--r-- | arch/s390/kernel/early.c | 14 | ||||
| -rw-r--r-- | arch/s390/kernel/entry64.S | 6 | ||||
| -rw-r--r-- | arch/s390/kernel/ipl.c | 7 | ||||
| -rw-r--r-- | arch/s390/kernel/syscalls.S | 2 | 
6 files changed, 22 insertions, 16 deletions
diff --git a/arch/s390/kernel/asm-offsets.c b/arch/s390/kernel/asm-offsets.c index 532fd432215..2b45591e158 100644 --- a/arch/s390/kernel/asm-offsets.c +++ b/arch/s390/kernel/asm-offsets.c @@ -10,6 +10,7 @@  #include <linux/sched.h>  #include <asm/vdso.h>  #include <asm/sigp.h> +#include <asm/pgtable.h>  /*   * Make sure that the compiler is new enough. We want a compiler that @@ -126,6 +127,7 @@ int main(void)  	DEFINE(__LC_KERNEL_STACK, offsetof(struct _lowcore, kernel_stack));  	DEFINE(__LC_ASYNC_STACK, offsetof(struct _lowcore, async_stack));  	DEFINE(__LC_PANIC_STACK, offsetof(struct _lowcore, panic_stack)); +	DEFINE(__LC_USER_ASCE, offsetof(struct _lowcore, user_asce));  	DEFINE(__LC_INT_CLOCK, offsetof(struct _lowcore, int_clock));  	DEFINE(__LC_MCCK_CLOCK, offsetof(struct _lowcore, mcck_clock));  	DEFINE(__LC_MACHINE_FLAGS, offsetof(struct _lowcore, machine_flags)); @@ -151,6 +153,7 @@ int main(void)  	DEFINE(__LC_VDSO_PER_CPU, offsetof(struct _lowcore, vdso_per_cpu_data));  	DEFINE(__LC_GMAP, offsetof(struct _lowcore, gmap));  	DEFINE(__LC_CMF_HPP, offsetof(struct _lowcore, cmf_hpp)); +	DEFINE(__GMAP_ASCE, offsetof(struct gmap, asce));  #endif /* CONFIG_32BIT */  	return 0;  } diff --git a/arch/s390/kernel/compat_wrapper.S b/arch/s390/kernel/compat_wrapper.S index 08ab9aa6a0d..7526db6bf50 100644 --- a/arch/s390/kernel/compat_wrapper.S +++ b/arch/s390/kernel/compat_wrapper.S @@ -665,12 +665,6 @@ ENTRY(sys32_poll_wrapper)  	lgfr	%r4,%r4			# long  	jg	sys_poll		# branch to system call -ENTRY(compat_sys_nfsservctl_wrapper) -	lgfr	%r2,%r2			# int -	llgtr	%r3,%r3			# struct compat_nfsctl_arg* -	llgtr	%r4,%r4			# union compat_nfsctl_res* -	jg	compat_sys_nfsservctl	# branch to system call -  ENTRY(sys32_setresgid16_wrapper)  	llgfr	%r2,%r2			# __kernel_old_gid_emu31_t  	llgfr	%r3,%r3			# __kernel_old_gid_emu31_t diff --git a/arch/s390/kernel/early.c b/arch/s390/kernel/early.c index 068f8465c4e..f297456dba7 100644 --- a/arch/s390/kernel/early.c +++ b/arch/s390/kernel/early.c @@ -396,17 +396,19 @@ static __init void detect_machine_facilities(void)  static __init void rescue_initrd(void)  {  #ifdef CONFIG_BLK_DEV_INITRD +	unsigned long min_initrd_addr = (unsigned long) _end + (4UL << 20);  	/* -	 * Move the initrd right behind the bss section in case it starts -	 * within the bss section. So we don't overwrite it when the bss -	 * section gets cleared. +	 * Just like in case of IPL from VM reader we make sure there is a +	 * gap of 4MB between end of kernel and start of initrd. +	 * That way we can also be sure that saving an NSS will succeed, +	 * which however only requires different segments.  	 */  	if (!INITRD_START || !INITRD_SIZE)  		return; -	if (INITRD_START >= (unsigned long) __bss_stop) +	if (INITRD_START >= min_initrd_addr)  		return; -	memmove(__bss_stop, (void *) INITRD_START, INITRD_SIZE); -	INITRD_START = (unsigned long) __bss_stop; +	memmove((void *) min_initrd_addr, (void *) INITRD_START, INITRD_SIZE); +	INITRD_START = min_initrd_addr;  #endif  } diff --git a/arch/s390/kernel/entry64.S b/arch/s390/kernel/entry64.S index 5f729d627ce..713da076053 100644 --- a/arch/s390/kernel/entry64.S +++ b/arch/s390/kernel/entry64.S @@ -1076,6 +1076,11 @@ sie_loop:  	lg	%r14,__LC_THREAD_INFO		# pointer thread_info struct  	tm	__TI_flags+7(%r14),_TIF_EXIT_SIE  	jnz	sie_exit +	lg	%r14,__LC_GMAP			# get gmap pointer +	ltgr	%r14,%r14 +	jz	sie_gmap +	lctlg	%c1,%c1,__GMAP_ASCE(%r14)	# load primary asce +sie_gmap:  	lg	%r14,__SF_EMPTY(%r15)		# get control block pointer  	SPP	__SF_EMPTY(%r15)		# set guest id  	sie	0(%r14) @@ -1083,6 +1088,7 @@ sie_done:  	SPP	__LC_CMF_HPP			# set host id  	lg	%r14,__LC_THREAD_INFO		# pointer thread_info struct  sie_exit: +	lctlg	%c1,%c1,__LC_USER_ASCE		# load primary asce  	ni	__TI_flags+6(%r14),255-(_TIF_SIE>>8)  	lg	%r14,__SF_EMPTY+8(%r15)		# load guest register save area  	stmg	%r0,%r13,0(%r14)		# save guest gprs 0-13 diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index 04361d5a427..48c71020636 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c @@ -1220,7 +1220,7 @@ static int __init reipl_fcp_init(void)  	/* sysfs: create fcp kset for mixing attr group and bin attrs */  	reipl_fcp_kset = kset_create_and_add(IPL_FCP_STR, NULL,  					     &reipl_kset->kobj); -	if (!reipl_kset) { +	if (!reipl_fcp_kset) {  		free_page((unsigned long) reipl_block_fcp);  		return -ENOMEM;  	} @@ -1618,7 +1618,8 @@ static struct shutdown_action vmcmd_action = {SHUTDOWN_ACTION_VMCMD_STR,  static void stop_run(struct shutdown_trigger *trigger)  { -	if (strcmp(trigger->name, ON_PANIC_STR) == 0) +	if (strcmp(trigger->name, ON_PANIC_STR) == 0 || +	    strcmp(trigger->name, ON_RESTART_STR) == 0)  		disabled_wait((unsigned long) __builtin_return_address(0));  	while (sigp(smp_processor_id(), sigp_stop) == sigp_busy)  		cpu_relax(); @@ -1717,7 +1718,7 @@ static void do_panic(void)  /* on restart */  static struct shutdown_trigger on_restart_trigger = {ON_RESTART_STR, -	&reipl_action}; +	&stop_action};  static ssize_t on_restart_show(struct kobject *kobj,  			       struct kobj_attribute *attr, char *page) diff --git a/arch/s390/kernel/syscalls.S b/arch/s390/kernel/syscalls.S index 6ee39ef8fe4..73eb08c874f 100644 --- a/arch/s390/kernel/syscalls.S +++ b/arch/s390/kernel/syscalls.S @@ -177,7 +177,7 @@ SYSCALL(sys_getresuid16,sys_ni_syscall,sys32_getresuid16_wrapper)	/* 165 old get  NI_SYSCALL							/* for vm86 */  NI_SYSCALL							/* old sys_query_module */  SYSCALL(sys_poll,sys_poll,sys32_poll_wrapper) -SYSCALL(sys_nfsservctl,sys_nfsservctl,compat_sys_nfsservctl_wrapper) +NI_SYSCALL							/* old nfsservctl */  SYSCALL(sys_setresgid16,sys_ni_syscall,sys32_setresgid16_wrapper)	/* 170 old setresgid16 syscall */  SYSCALL(sys_getresgid16,sys_ni_syscall,sys32_getresgid16_wrapper)	/* old getresgid16 syscall */  SYSCALL(sys_prctl,sys_prctl,sys32_prctl_wrapper)  |