File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -919,7 +919,7 @@ static void uv_heartbeat(unsigned long ignored)
919
919
uv_set_scir_bits (bits );
920
920
921
921
/* enable next timer period */
922
- mod_timer_pinned (timer , jiffies + SCIR_CPU_HB_INTERVAL );
922
+ mod_timer (timer , jiffies + SCIR_CPU_HB_INTERVAL );
923
923
}
924
924
925
925
static void uv_heartbeat_enable (int cpu )
@@ -928,7 +928,7 @@ static void uv_heartbeat_enable(int cpu)
928
928
struct timer_list * timer = & uv_cpu_scir_info (cpu )-> timer ;
929
929
930
930
uv_set_cpu_scir_bits (cpu , SCIR_CPU_HEARTBEAT |SCIR_CPU_ACTIVITY );
931
- setup_timer (timer , uv_heartbeat , cpu );
931
+ setup_pinned_timer (timer , uv_heartbeat , cpu );
932
932
timer -> expires = jiffies + SCIR_CPU_HB_INTERVAL ;
933
933
add_timer_on (timer , cpu );
934
934
uv_cpu_scir_info (cpu )-> enabled = 1 ;
You can’t perform that action at this time.
0 commit comments