|
77 | 77 | #include "access-helper.h"
|
78 | 78 |
|
79 | 79 | extern void check_wait(void);
|
80 |
| -extern asmlinkage void rollback_handle_int(void); |
| 80 | +extern asmlinkage void skipover_handle_int(void); |
81 | 81 | extern asmlinkage void handle_int(void);
|
82 | 82 | extern asmlinkage void handle_adel(void);
|
83 | 83 | extern asmlinkage void handle_ades(void);
|
@@ -2066,7 +2066,7 @@ void *set_vi_handler(int n, vi_handler_t addr)
|
2066 | 2066 | {
|
2067 | 2067 | extern const u8 except_vec_vi[];
|
2068 | 2068 | extern const u8 except_vec_vi_ori[], except_vec_vi_end[];
|
2069 |
| - extern const u8 rollback_except_vec_vi[]; |
| 2069 | + extern const u8 skipover_except_vec_vi[]; |
2070 | 2070 | unsigned long handler;
|
2071 | 2071 | unsigned long old_handler = vi_handlers[n];
|
2072 | 2072 | int srssets = current_cpu_data.srsets;
|
@@ -2095,7 +2095,7 @@ void *set_vi_handler(int n, vi_handler_t addr)
|
2095 | 2095 | change_c0_srsmap(0xf << n*4, 0 << n*4);
|
2096 | 2096 | }
|
2097 | 2097 |
|
2098 |
| - vec_start = using_rollback_handler() ? rollback_except_vec_vi : |
| 2098 | + vec_start = using_skipover_handler() ? skipover_except_vec_vi : |
2099 | 2099 | except_vec_vi;
|
2100 | 2100 | #if defined(CONFIG_CPU_MICROMIPS) || defined(CONFIG_CPU_BIG_ENDIAN)
|
2101 | 2101 | ori_offset = except_vec_vi_ori - vec_start + 2;
|
@@ -2426,8 +2426,8 @@ void __init trap_init(void)
|
2426 | 2426 | if (board_be_init)
|
2427 | 2427 | board_be_init();
|
2428 | 2428 |
|
2429 |
| - set_except_vector(EXCCODE_INT, using_rollback_handler() ? |
2430 |
| - rollback_handle_int : handle_int); |
| 2429 | + set_except_vector(EXCCODE_INT, using_skipover_handler() ? |
| 2430 | + skipover_handle_int : handle_int); |
2431 | 2431 | set_except_vector(EXCCODE_MOD, handle_tlbm);
|
2432 | 2432 | set_except_vector(EXCCODE_TLBL, handle_tlbl);
|
2433 | 2433 | set_except_vector(EXCCODE_TLBS, handle_tlbs);
|
|
0 commit comments