diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched.c | 15 | ||||
-rw-r--r-- | kernel/timer.c | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index a9ecac398bb9..6e52e0adff80 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -1658,6 +1658,21 @@ unsigned long nr_iowait(void) | |||
1658 | return sum; | 1658 | return sum; |
1659 | } | 1659 | } |
1660 | 1660 | ||
1661 | unsigned long nr_active(void) | ||
1662 | { | ||
1663 | unsigned long i, running = 0, uninterruptible = 0; | ||
1664 | |||
1665 | for_each_online_cpu(i) { | ||
1666 | running += cpu_rq(i)->nr_running; | ||
1667 | uninterruptible += cpu_rq(i)->nr_uninterruptible; | ||
1668 | } | ||
1669 | |||
1670 | if (unlikely((long)uninterruptible < 0)) | ||
1671 | uninterruptible = 0; | ||
1672 | |||
1673 | return running + uninterruptible; | ||
1674 | } | ||
1675 | |||
1661 | #ifdef CONFIG_SMP | 1676 | #ifdef CONFIG_SMP |
1662 | 1677 | ||
1663 | /* | 1678 | /* |
diff --git a/kernel/timer.c b/kernel/timer.c index 9062a82ee8ec..6b812c04737b 100644 --- a/kernel/timer.c +++ b/kernel/timer.c | |||
@@ -825,7 +825,7 @@ void update_process_times(int user_tick) | |||
825 | */ | 825 | */ |
826 | static unsigned long count_active_tasks(void) | 826 | static unsigned long count_active_tasks(void) |
827 | { | 827 | { |
828 | return (nr_running() + nr_uninterruptible()) * FIXED_1; | 828 | return nr_active() * FIXED_1; |
829 | } | 829 | } |
830 | 830 | ||
831 | /* | 831 | /* |