File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 5353 * than any thread`s kernel stack.
5454 */
5555
56- #undef interrupt_stack
57- #undef int_stack_top
58-
5956/*
6057 * Addresses of bottom and top of interrupt stacks.
6158 */
6259vm_offset_t interrupt_stack [NCPUS ];
63- vm_offset_t int_stack_top [NCPUS ];
60+ vm_offset_t _int_stack_top [NCPUS ];
6461
6562/*
6663 * Barrier address.
@@ -282,11 +279,11 @@ interrupt_stack_alloc(void)
282279 for (i = 0 ; i < NCPUS ; i ++ ) {
283280 if (i == master_cpu ) {
284281 interrupt_stack [i ] = (vm_offset_t ) intstack ;
285- int_stack_top [i ] = (vm_offset_t ) eintstack ;
282+ _int_stack_top [i ] = (vm_offset_t ) eintstack ;
286283 }
287284 else if (machine_slot [i ].is_cpu ) {
288285 interrupt_stack [i ] = stack_start ;
289- int_stack_top [i ] = stack_start + INTSTACK_SIZE ;
286+ _int_stack_top [i ] = stack_start + INTSTACK_SIZE ;
290287
291288 stack_start += INTSTACK_SIZE ;
292289 }
You can’t perform that action at this time.
0 commit comments