| .. | .. |
|---|
| 9 | 9 | #include <asm/idle.h> |
|---|
| 10 | 10 | |
|---|
| 11 | 11 | extern void *restart_stack; |
|---|
| 12 | | -extern unsigned long suspend_zero_pages; |
|---|
| 13 | 12 | |
|---|
| 14 | 13 | void system_call(void); |
|---|
| 15 | 14 | void pgm_check_handler(void); |
|---|
| .. | .. |
|---|
| 17 | 16 | void io_int_handler(void); |
|---|
| 18 | 17 | void mcck_int_handler(void); |
|---|
| 19 | 18 | void restart_int_handler(void); |
|---|
| 20 | | -void restart_call_handler(void); |
|---|
| 21 | 19 | |
|---|
| 22 | 20 | asmlinkage long do_syscall_trace_enter(struct pt_regs *regs); |
|---|
| 23 | 21 | asmlinkage void do_syscall_trace_exit(struct pt_regs *regs); |
|---|
| 24 | 22 | |
|---|
| 25 | 23 | void do_protection_exception(struct pt_regs *regs); |
|---|
| 26 | 24 | void do_dat_exception(struct pt_regs *regs); |
|---|
| 25 | +void do_secure_storage_access(struct pt_regs *regs); |
|---|
| 26 | +void do_non_secure_storage_access(struct pt_regs *regs); |
|---|
| 27 | +void do_secure_storage_violation(struct pt_regs *regs); |
|---|
| 27 | 28 | |
|---|
| 28 | 29 | void addressing_exception(struct pt_regs *regs); |
|---|
| 29 | 30 | void data_exception(struct pt_regs *regs); |
|---|
| .. | .. |
|---|
| 45 | 46 | void transaction_exception(struct pt_regs *regs); |
|---|
| 46 | 47 | void translation_exception(struct pt_regs *regs); |
|---|
| 47 | 48 | void vector_exception(struct pt_regs *regs); |
|---|
| 49 | +void monitor_event_exception(struct pt_regs *regs); |
|---|
| 48 | 50 | |
|---|
| 49 | 51 | void do_per_trap(struct pt_regs *regs); |
|---|
| 50 | 52 | void do_report_trap(struct pt_regs *regs, int si_signo, int si_code, char *str); |
|---|
| .. | .. |
|---|
| 58 | 60 | void __init init_IRQ(void); |
|---|
| 59 | 61 | void do_IRQ(struct pt_regs *regs, int irq); |
|---|
| 60 | 62 | void do_restart(void); |
|---|
| 61 | | -void __init startup_init_nobss(void); |
|---|
| 62 | 63 | void __init startup_init(void); |
|---|
| 63 | 64 | void die(struct pt_regs *regs, const char *str); |
|---|
| 64 | 65 | int setup_profiling_timer(unsigned int multiplier); |
|---|
| 65 | 66 | void __init time_init(void); |
|---|
| 66 | | -int pfn_is_nosave(unsigned long); |
|---|
| 67 | | -void s390_early_resume(void); |
|---|
| 68 | | -unsigned long prepare_ftrace_return(unsigned long parent, unsigned long ip); |
|---|
| 67 | +unsigned long prepare_ftrace_return(unsigned long parent, unsigned long sp, unsigned long ip); |
|---|
| 69 | 68 | |
|---|
| 70 | 69 | struct s390_mmap_arg_struct; |
|---|
| 71 | 70 | struct fadvise64_64_args; |
|---|
| .. | .. |
|---|
| 86 | 85 | void gs_load_bc_cb(struct pt_regs *regs); |
|---|
| 87 | 86 | void set_fs_fixup(void); |
|---|
| 88 | 87 | |
|---|
| 88 | +unsigned long stack_alloc(void); |
|---|
| 89 | +void stack_free(unsigned long stack); |
|---|
| 90 | + |
|---|
| 91 | +extern char kprobes_insn_page[]; |
|---|
| 92 | + |
|---|
| 89 | 93 | #endif /* _ENTRY_H */ |
|---|