aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeongJae Park <sj@kernel.org>2024-04-28 12:11:53 -0700
committerSeongJae Park <sj@kernel.org>2024-04-28 12:12:23 -0700
commit53782083f7fbe29fb6c39a80c66a453c345c05fb (patch)
treeee4bb0dc7e6495c47e73fb68415eef129c550f2f
parent7f18bec380a3a16c909637e2bc48adb0855ad07a (diff)
downloaddamo-53782083f7fbe29fb6c39a80c66a453c345c05fb.tar.gz
damo_record: Do '--include_child_tasks' by default
Signed-off-by: SeongJae Park <sj@kernel.org>
-rw-r--r--damo_record.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/damo_record.py b/damo_record.py
index 716e5e1c..7c586441 100644
--- a/damo_record.py
+++ b/damo_record.py
@@ -136,6 +136,9 @@ def set_argparser(parser):
help='permission of the output file')
parser.add_argument('--perf_path', type=str, default='perf',
help='path of perf tool ')
+ parser.add_argument('--exclude_child_tasks', action='store_false',
+ dest='include_child_tasks',
+ help='do not record access of child processes')
parser.add_argument('--include_child_tasks', action='store_true',
help='record accesses of child processes')
parser.add_argument('--schemes_target_regions', action='store_true',