Skip to content

Commit 051b29f

Browse files
committed
Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull scheduler fix from Thomas Gleixner: "A single fix to prevent math underflow in the numa balancing code" * 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: sched/numa: Fix math underflow in task_tick_numa()
2 parents 8f98e29 + 25b3e5a commit 051b29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/sched/fair.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2302,7 +2302,7 @@ void task_tick_numa(struct rq *rq, struct task_struct *curr)
23022302
now = curr->se.sum_exec_runtime;
23032303
period = (u64)curr->numa_scan_period * NSEC_PER_MSEC;
23042304

2305-
if (now - curr->node_stamp > period) {
2305+
if (now > curr->node_stamp + period) {
23062306
if (!curr->node_stamp)
23072307
curr->numa_scan_period = task_scan_min(curr);
23082308
curr->node_stamp += period;

0 commit comments

Comments
 (0)