aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/Kconfig
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2010-11-01 19:40:02 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2010-11-11 17:57:41 -0500
commitc6182ba4a548baf0d1238d0df54e7d38ed299c3e (patch)
tree3d1f5272e7051ade00ffccb76c69514923ad6cdf /litmus/Kconfig
parent8e10e1803e695a08f1fb59e90dac4ba0d8744f89 (diff)
sched_trace: make buffer size configurable
Large sched_trace buffers cause boot problems on the ARM box. Allow the user to specify smaller buffers.
Diffstat (limited to 'litmus/Kconfig')
-rw-r--r--litmus/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/litmus/Kconfig b/litmus/Kconfig
index 9888589ef126..f1de6fabfc17 100644
--- a/litmus/Kconfig
+++ b/litmus/Kconfig
@@ -108,6 +108,26 @@ config SCHED_TASK_TRACE
108 Say Yes for debugging. 108 Say Yes for debugging.
109 Say No for overhead tracing. 109 Say No for overhead tracing.
110 110
111config SCHED_TASK_TRACE_SHIFT
112 int "Buffer size for sched_trace_xxx() events"
113 depends on SCHED_TASK_TRACE
114 range 8 13
115 default 9
116 help
117
118 Select the buffer size of sched_trace_xxx() events as a power of two.
119 These buffers are statically allocated as per-CPU data. Each event
120 requires 24 bytes storage plus one additional flag byte. Too large
121 buffers can cause issues with the per-cpu allocator (and waste
122 memory). Too small buffers can cause scheduling events to be lost. The
123 "right" size is workload dependent and depends on the number of tasks,
124 each task's period, each task's number of suspensions, and how often
125 the buffer is flushed.
126
127 Examples: 12 => 4k events
128 10 => 1k events
129 8 => 512 events
130
111config SCHED_OVERHEAD_TRACE 131config SCHED_OVERHEAD_TRACE
112 bool "Record timestamps for overhead measurements" 132 bool "Record timestamps for overhead measurements"
113 depends on FEATHER_TRACE 133 depends on FEATHER_TRACE