Eric Dumazet
5517d86bea
Speed up divides by cpu_power in scheduler
...
I noticed expensive divides done in try_to_wakeup() and
find_busiest_group() on a bi dual core Opteron machine (total of 4 cores),
moderatly loaded (15.000 context switch per second)
oprofile numbers :
CPU: AMD64 processors, speed 2600.05 MHz (estimated)
Counted CPU_CLK_UNHALTED events (Cycles outside of halt state) with a unit
mask of 0x00 (No unit mask) count 50000
samples % symbol name
...
613914 1.0498 try_to_wake_up
834 0.0013 :ffffffff80227ae1: div %rcx
77513 0.1191 :ffffffff80227ae4: mov %rax,%r11
608893 1.0413 find_busiest_group
1841 0.0031 :ffffffff802260bf: div %rdi
140109 0.2394 :ffffffff802260c2: test %sil,%sil
Some of these divides can use the reciprocal divides we introduced some
time ago (currently used in slab AFAIK)
We can assume a load will fit in a 32bits number, because with a
SCHED_LOAD_SCALE=128 value, its still a theorical limit of 33554432
When/if we reach this limit one day, probably cpus will have a fast
hardware divide and we can zap the reciprocal divide trick.
Ingo suggested to rename cpu_power to __cpu_power to make clear it should
not be modified without changing its reciprocal value too.
I did not convert the divide in cpu_avg_load_per_task(), because tracking
nr_running changes may be not worth it ? We could use a static table of 32
reciprocal values but it would add a conditional branch and table lookup.
[akpm@linux-foundation.org: !SMP build fix]
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-08 11:15:17 -07:00
..
2007-05-08 11:15:00 -07:00
2007-04-27 15:44:34 -03:00
2007-05-08 11:15:16 -07:00
2007-05-07 12:34:24 -07:00
2007-05-01 16:11:57 +02:00
2007-04-27 19:16:19 +01:00
2007-05-03 03:34:42 -07:00
2007-04-25 22:28:58 -07:00
2007-04-25 22:25:34 -07:00
2007-02-14 08:09:53 -08:00
2007-04-04 21:12:47 -07:00
2007-05-08 11:15:16 -07:00
2007-04-30 22:17:15 -07:00
2007-04-27 13:28:39 -07:00
2007-02-16 08:13:58 -08:00
2007-02-13 02:58:52 -05:00
2007-04-28 14:40:40 -04:00
2007-04-25 22:25:31 -07:00
2007-03-06 09:30:25 -08:00
2007-02-20 17:10:15 -08:00
2007-03-16 19:25:05 -07:00
2007-02-20 09:26:53 +00:00
2007-02-13 13:26:26 +01:00
2007-04-30 09:08:17 +02:00
2007-04-30 09:01:23 +02:00
2007-05-02 19:27:08 +02:00
2007-05-07 12:12:55 -07:00
2007-02-20 17:10:14 -08:00
2007-02-20 17:10:14 -08:00
2007-05-08 11:15:15 -07:00
2007-05-08 11:15:06 -07:00
2007-02-12 09:48:46 -08:00
2007-03-08 07:38:22 -08:00
2007-05-07 12:12:52 -07:00
2007-05-07 12:12:52 -07:00
2007-05-07 12:13:00 -07:00
2007-05-07 12:13:00 -07:00
2007-03-26 14:23:52 -07:00
2007-05-08 11:15:04 -07:00
2007-05-08 11:15:13 -07:00
2007-05-08 11:15:05 -07:00
2007-05-05 14:55:20 -07:00
2007-02-20 17:10:13 -08:00
2007-02-12 09:48:44 -08:00
2007-05-02 19:27:09 +02:00
2007-05-02 14:38:33 +10:00
2007-05-08 11:15:03 -07:00
2007-05-08 11:15:03 -07:00
2007-04-25 22:28:56 -07:00
2007-04-27 10:57:31 -07:00
2007-05-08 11:15:10 -07:00
2007-05-01 09:11:12 +01:00
2007-05-08 11:15:14 -07:00
2007-05-08 11:15:10 -07:00
2007-02-12 09:48:46 -08:00
2007-05-07 12:12:58 -07:00
2007-05-02 19:27:12 +02:00
2007-05-02 19:27:17 +02:00
2007-05-07 12:13:02 -07:00
2007-05-03 13:17:25 -07:00
2007-03-27 09:05:15 -07:00
2007-05-08 11:15:12 -07:00
2007-02-17 19:20:16 +01:00
2007-02-12 09:48:46 -08:00
2007-02-20 08:38:46 +00:00
2007-05-06 20:38:28 -04:00
2007-04-25 22:28:35 -07:00
2007-05-08 11:15:04 -07:00
2007-04-28 11:01:04 -04:00
2007-05-08 11:15:03 -07:00
2007-05-07 12:12:57 -07:00
2007-05-01 00:39:13 -04:00
2007-02-16 08:13:59 -08:00
2007-04-28 11:01:07 -04:00
2007-04-19 14:56:12 +02:00
2007-05-05 14:55:20 -07:00
2007-03-16 00:59:29 -04:00
2007-04-07 10:03:43 -07:00
2007-05-07 12:12:51 -07:00
2007-05-01 23:26:33 +02:00
2007-05-01 23:26:34 +02:00
2007-05-01 23:26:32 +02:00
2007-05-01 23:26:34 +02:00
2007-04-25 22:25:31 -07:00
2007-04-25 22:25:31 -07:00
2007-05-05 22:03:49 +02:00
2007-05-05 11:43:04 -07:00
2007-04-25 22:23:43 -07:00
2007-04-25 22:25:12 -07:00
2007-04-25 22:28:44 -07:00
2007-04-25 22:30:01 -07:00
2007-04-25 22:29:10 -07:00
2007-04-25 22:29:14 -07:00
2007-04-25 22:28:57 -07:00
2007-04-25 22:24:41 -07:00
2007-04-25 22:26:20 -07:00
2007-04-25 22:25:31 -07:00
2007-04-25 22:29:57 -07:00
2007-04-25 22:29:10 -07:00
2007-05-08 11:15:10 -07:00
2007-05-08 11:15:00 -07:00
2007-04-29 23:42:45 -04:00
2007-05-06 13:21:57 -07:00
2007-05-08 11:15:08 -07:00
2007-04-17 16:36:27 -07:00
2007-04-28 14:15:59 -04:00
2007-04-25 22:25:31 -07:00
2007-05-08 11:15:00 -07:00
2007-04-25 22:25:31 -07:00
2007-05-08 11:15:09 -07:00
2007-05-08 11:15:16 -07:00
2007-04-25 22:25:52 -07:00
2007-02-16 08:13:56 -08:00
2007-05-08 11:15:08 -07:00
2007-03-16 19:25:05 -07:00
2007-05-08 11:15:16 -07:00
2007-05-08 11:15:04 -07:00
2007-04-04 21:12:47 -07:00
2007-05-07 12:13:00 -07:00
2007-05-08 11:15:07 -07:00
2007-04-26 15:46:23 -07:00
2007-02-23 14:54:57 -08:00
2007-05-02 18:57:59 -07:00
2007-05-08 11:15:08 -07:00
2007-02-20 17:10:14 -08:00
2007-04-25 22:29:49 -07:00
2007-03-04 11:12:40 +02:00
2007-05-03 10:52:32 +03:00
2007-02-20 09:26:53 +00:00
2007-04-28 14:51:33 -04:00
2007-05-08 11:15:11 -07:00
2007-03-22 19:39:06 -07:00
2007-02-17 19:17:37 +01:00
2007-05-08 11:15:07 -07:00
2007-03-04 11:12:43 +02:00
2007-05-07 12:12:57 -07:00
2007-02-20 17:10:13 -08:00
2007-05-03 10:52:22 +03:00
2007-05-07 12:12:53 -07:00
2007-05-07 12:12:54 -07:00
2007-05-07 12:12:52 -07:00
2007-05-08 11:15:00 -07:00
2007-05-02 20:58:08 +02:00
2007-05-08 11:15:08 -07:00
2007-02-19 13:29:02 -08:00
2007-05-08 11:15:13 -07:00
2007-05-02 19:02:38 -07:00
2007-03-06 06:14:54 -05:00
2007-04-27 10:57:33 -07:00
2007-03-06 13:26:27 +01:00
2007-02-12 09:48:46 -08:00
2007-04-26 15:48:28 -07:00
2007-05-03 15:13:45 -07:00
2007-05-03 03:36:16 -07:00
2007-04-25 22:27:45 -07:00
2007-05-05 11:42:03 -07:00
2007-02-16 08:14:01 -08:00
2007-02-16 08:14:01 -08:00
2007-03-16 19:25:05 -07:00
2007-04-30 22:17:07 -07:00
2007-04-30 22:17:16 -07:00
2007-04-30 22:17:09 -07:00
2007-02-12 22:43:25 -08:00
2007-04-25 22:29:41 -07:00
2007-02-13 13:26:24 +01:00
2007-02-20 17:10:13 -08:00
2007-05-08 11:15:00 -07:00
2007-05-04 17:59:07 -07:00
2007-05-07 12:12:59 -07:00
2007-05-08 11:14:57 -07:00
2007-05-08 11:15:05 -07:00
2007-05-08 11:15:05 -07:00
2007-05-05 14:15:32 -07:00
2007-05-02 18:57:59 -07:00
2007-05-04 19:36:58 -07:00
2007-03-12 16:31:50 -07:00
2007-05-02 19:02:38 -07:00
2007-05-02 19:27:11 +02:00
2007-05-08 11:15:14 -07:00
2007-02-12 09:48:46 -08:00
2007-04-28 11:01:04 -04:00
2007-05-08 11:15:00 -07:00
2007-03-27 08:55:47 +02:00
2007-04-17 16:36:26 -07:00
2007-04-30 16:40:41 -07:00
2007-03-26 12:35:17 +10:00
2007-05-08 11:15:00 -07:00
2007-05-08 11:14:57 -07:00
2007-05-08 11:15:01 -07:00
2007-02-12 09:48:46 -08:00
2007-05-07 12:12:54 -07:00
2007-05-08 11:15:15 -07:00
2007-05-08 11:15:05 -07:00
2007-02-12 09:48:44 -08:00
2007-05-08 11:15:00 -07:00
2007-02-12 09:48:46 -08:00
2007-05-07 00:34:20 -07:00
2007-04-25 22:27:04 -07:00
2007-04-26 15:48:28 -07:00
2007-05-08 11:15:17 -07:00
2007-04-25 22:25:31 -07:00
2007-03-14 15:27:48 -07:00
2007-04-27 10:44:42 -07:00
2007-05-07 12:12:58 -07:00
2007-02-14 08:09:52 -08:00
2007-05-07 12:12:50 -07:00
2007-02-18 01:40:30 -05:00
2007-03-01 17:18:39 -08:00
2007-05-03 03:16:20 -07:00
2007-05-07 12:12:57 -07:00
2007-05-07 12:12:54 -07:00
2007-02-20 17:10:14 -08:00
2007-02-20 17:10:14 -08:00
2007-04-30 00:58:19 -07:00
2007-04-26 15:48:28 -07:00
2007-04-28 22:06:01 -04:00
2007-05-08 11:15:11 -07:00
2007-03-05 07:57:53 -08:00
2007-05-08 11:14:58 -07:00
2007-02-28 09:41:59 -08:00
2007-04-26 01:54:39 -07:00
2007-05-07 12:12:59 -07:00
2007-02-12 09:48:41 -08:00
2007-02-20 17:10:13 -08:00
2007-04-25 22:28:57 -07:00
2007-05-08 11:15:05 -07:00
2007-04-27 10:57:32 -07:00
2007-04-24 08:23:08 -07:00
2007-04-25 22:25:31 -07:00
2007-02-16 08:13:59 -08:00
2007-05-01 13:04:15 +02:00
2007-05-08 11:15:06 -07:00
2007-05-08 11:15:05 -07:00
2007-02-16 08:13:56 -08:00
2007-03-05 07:57:51 -08:00
2007-02-12 09:48:42 -08:00
2007-05-08 11:15:04 -07:00
2007-04-25 22:25:31 -07:00
2007-02-12 09:48:40 -08:00
2007-03-16 19:25:03 -07:00
2007-05-07 12:12:58 -07:00
2007-02-16 15:32:19 -08:00
2007-04-27 13:28:39 -07:00
2007-02-16 15:32:20 -08:00
2007-05-08 11:15:00 -07:00
2007-04-27 15:43:27 -03:00
2007-05-08 11:15:04 -07:00
2007-03-16 19:25:05 -07:00
2007-04-28 11:01:01 -04:00
2007-05-08 11:15:05 -07:00
2007-04-30 22:17:06 -07:00
2007-05-04 12:55:39 -07:00