diff options
Diffstat (limited to 'arch/unicore32/kernel')
| -rw-r--r-- | arch/unicore32/kernel/module.c | 2 | ||||
| -rw-r--r-- | arch/unicore32/kernel/signal.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/arch/unicore32/kernel/module.c b/arch/unicore32/kernel/module.c index dc41f6dfedb6..e191b3448bd3 100644 --- a/arch/unicore32/kernel/module.c +++ b/arch/unicore32/kernel/module.c @@ -25,7 +25,7 @@  void *module_alloc(unsigned long size)  {  	return __vmalloc_node_range(size, 1, MODULES_VADDR, MODULES_END, -				GFP_KERNEL, PAGE_KERNEL_EXEC, NUMA_NO_NODE, +				GFP_KERNEL, PAGE_KERNEL_EXEC, 0, NUMA_NO_NODE,  				__builtin_return_address(0));  } diff --git a/arch/unicore32/kernel/signal.c b/arch/unicore32/kernel/signal.c index 7c8fb7018dc6..d329f85766cc 100644 --- a/arch/unicore32/kernel/signal.c +++ b/arch/unicore32/kernel/signal.c @@ -105,7 +105,7 @@ asmlinkage int __sys_rt_sigreturn(struct pt_regs *regs)  	struct rt_sigframe __user *frame;  	/* Always make any pending restarted system calls return -EINTR */ -	current_thread_info()->restart_block.fn = do_no_restart_syscall; +	current->restart_block.fn = do_no_restart_syscall;  	/*  	 * Since we stacked the signal on a 64-bit boundary, |