We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f23b7 commit 43df7aeCopy full SHA for 43df7ae
tracetools_trace/tracetools_trace/tools/lttng_impl.py
@@ -151,10 +151,10 @@ def setup(
151
channel_ust.name = channel_name_ust
152
# Discard, do not overwrite
153
channel_ust.attr.overwrite = 0
154
- # 2 sub-buffers of 8 times the usual page size
+ # 2 sub-buffers of 32 times the usual page size
155
# We use 2 sub-buffers because the number of sub-buffers is pointless in discard mode,
156
# and switching between sub-buffers introduces noticeable CPU overhead
157
- channel_ust.attr.subbuf_size = 8 * 4096
+ channel_ust.attr.subbuf_size = 32 * 4096
158
channel_ust.attr.num_subbuf = 2
159
# Ignore switch timer interval and use read timer instead
160
channel_ust.attr.switch_timer_interval = 0
0 commit comments