entry.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #ifndef _ENTRY_H
  2. #define _ENTRY_H
  3. #include <linux/types.h>
  4. #include <linux/signal.h>
  5. #include <asm/ptrace.h>
  6. #include <asm/idle.h>
  7. extern void *restart_stack;
  8. extern unsigned long suspend_zero_pages;
  9. void system_call(void);
  10. void pgm_check_handler(void);
  11. void ext_int_handler(void);
  12. void io_int_handler(void);
  13. void mcck_int_handler(void);
  14. void restart_int_handler(void);
  15. void restart_call_handler(void);
  16. void psw_idle(struct s390_idle_data *, unsigned long);
  17. asmlinkage long do_syscall_trace_enter(struct pt_regs *regs);
  18. asmlinkage void do_syscall_trace_exit(struct pt_regs *regs);
  19. int alloc_vector_registers(struct task_struct *tsk);
  20. void do_protection_exception(struct pt_regs *regs);
  21. void do_dat_exception(struct pt_regs *regs);
  22. void addressing_exception(struct pt_regs *regs);
  23. void data_exception(struct pt_regs *regs);
  24. void default_trap_handler(struct pt_regs *regs);
  25. void divide_exception(struct pt_regs *regs);
  26. void execute_exception(struct pt_regs *regs);
  27. void hfp_divide_exception(struct pt_regs *regs);
  28. void hfp_overflow_exception(struct pt_regs *regs);
  29. void hfp_significance_exception(struct pt_regs *regs);
  30. void hfp_sqrt_exception(struct pt_regs *regs);
  31. void hfp_underflow_exception(struct pt_regs *regs);
  32. void illegal_op(struct pt_regs *regs);
  33. void operand_exception(struct pt_regs *regs);
  34. void overflow_exception(struct pt_regs *regs);
  35. void privileged_op(struct pt_regs *regs);
  36. void space_switch_exception(struct pt_regs *regs);
  37. void special_op_exception(struct pt_regs *regs);
  38. void specification_exception(struct pt_regs *regs);
  39. void transaction_exception(struct pt_regs *regs);
  40. void translation_exception(struct pt_regs *regs);
  41. void vector_exception(struct pt_regs *regs);
  42. void do_per_trap(struct pt_regs *regs);
  43. void do_report_trap(struct pt_regs *regs, int si_signo, int si_code, char *str);
  44. void syscall_trace(struct pt_regs *regs, int entryexit);
  45. void kernel_stack_overflow(struct pt_regs * regs);
  46. void do_signal(struct pt_regs *regs);
  47. void handle_signal32(struct ksignal *ksig, sigset_t *oldset,
  48. struct pt_regs *regs);
  49. void do_notify_resume(struct pt_regs *regs);
  50. void __init init_IRQ(void);
  51. void do_IRQ(struct pt_regs *regs, int irq);
  52. void do_restart(void);
  53. void __init startup_init(void);
  54. void die(struct pt_regs *regs, const char *str);
  55. int setup_profiling_timer(unsigned int multiplier);
  56. void __init time_init(void);
  57. int pfn_is_nosave(unsigned long);
  58. void s390_early_resume(void);
  59. unsigned long prepare_ftrace_return(unsigned long parent, unsigned long ip);
  60. struct s390_mmap_arg_struct;
  61. struct fadvise64_64_args;
  62. struct old_sigaction;
  63. long sys_s390_personality(unsigned int personality);
  64. long sys_s390_runtime_instr(int command, int signum);
  65. #endif /* _ENTRY_H */