Searched refs:current_l1_stack_save (Results 1 – 2 of 2) sorted by relevance
22 extern void *current_l1_stack_save;62 if (current_l1_stack_save) in activate_l1stack()63 memcpy(current_l1_stack_save, l1_stack_base, l1_stack_len); in activate_l1stack()64 mm->context.l1_stack_save = current_l1_stack_save = (void*)sp_base; in activate_l1stack()65 memcpy(l1_stack_base, current_l1_stack_save, l1_stack_len); in activate_l1stack()92 if (next_mm->context.l1_stack_save == current_l1_stack_save) in __switch_mm()94 if (current_l1_stack_save) { in __switch_mm()95 memcpy(current_l1_stack_save, l1_stack_base, l1_stack_len); in __switch_mm()97 current_l1_stack_save = next_mm->context.l1_stack_save; in __switch_mm()98 memcpy(l1_stack_base, current_l1_stack_save, l1_stack_len); in __switch_mm()[all …]
29 void *current_l1_stack_save; variable