diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-21 15:55:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-21 15:55:43 -0400 |
commit | bc4016f48161454a9a8e5eb209b0693c6cde9f62 (patch) | |
tree | f470f5d711e975b152eec90282f5dd30a1d5dba5 /arch/x86/Kconfig | |
parent | 5d70f79b5ef6ea2de4f72a37b2d96e2601e40a22 (diff) | |
parent | b7dadc38797584f6203386da1947ed5edf516646 (diff) |
Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: (29 commits)
sched: Export account_system_vtime()
sched: Call tick_check_idle before __irq_enter
sched: Remove irq time from available CPU power
sched: Do not account irq time to current task
x86: Add IRQ_TIME_ACCOUNTING
sched: Add IRQ_TIME_ACCOUNTING, finer accounting of irq time
sched: Add a PF flag for ksoftirqd identification
sched: Consolidate account_system_vtime extern declaration
sched: Fix softirq time accounting
sched: Drop group_capacity to 1 only if local group has extra capacity
sched: Force balancing on newidle balance if local group has capacity
sched: Set group_imb only a task can be pulled from the busiest cpu
sched: Do not consider SCHED_IDLE tasks to be cache hot
sched: Drop all load weight manipulation for RT tasks
sched: Create special class for stop/migrate work
sched: Unindent labels
sched: Comment updates: fix default latency and granularity numbers
tracing/sched: Add sched_pi_setprio tracepoint
sched: Give CPU bound RT tasks preference
sched: Try not to migrate higher priority RT tasks
...
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index fd227d6b8d9c..89b88e3a56e9 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -799,6 +799,17 @@ config SCHED_MC | |||
799 | making when dealing with multi-core CPU chips at a cost of slightly | 799 | making when dealing with multi-core CPU chips at a cost of slightly |
800 | increased overhead in some places. If unsure say N here. | 800 | increased overhead in some places. If unsure say N here. |
801 | 801 | ||
802 | config IRQ_TIME_ACCOUNTING | ||
803 | bool "Fine granularity task level IRQ time accounting" | ||
804 | default n | ||
805 | ---help--- | ||
806 | Select this option to enable fine granularity task irq time | ||
807 | accounting. This is done by reading a timestamp on each | ||
808 | transitions between softirq and hardirq state, so there can be a | ||
809 | small performance impact. | ||
810 | |||
811 | If in doubt, say N here. | ||
812 | |||
802 | source "kernel/Kconfig.preempt" | 813 | source "kernel/Kconfig.preempt" |
803 | 814 | ||
804 | config X86_UP_APIC | 815 | config X86_UP_APIC |