Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e858e8b0 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge branch 'sched-fixes-for-linus' of...

Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
  sched: account system time properly
parents da87bbd1 f5f293a4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4732,7 +4732,7 @@ void account_process_tick(struct task_struct *p, int user_tick)

	if (user_tick)
		account_user_time(p, one_jiffy, one_jiffy_scaled);
	else if (p != rq->idle)
	else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
		account_system_time(p, HARDIRQ_OFFSET, one_jiffy,
				    one_jiffy_scaled);
	else