From 14943fc591992b858229c7216bcfd8a3184c86db Mon Sep 17 00:00:00 2001 From: Costa Shulyupin Date: Sun, 16 Sep 2018 15:40:54 +0300 Subject: [PATCH] *cflow_linux --- srcxray.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcxray.py b/srcxray.py index 57aad1c..e5a9adb 100755 --- a/srcxray.py +++ b/srcxray.py @@ -773,6 +773,7 @@ def cflow_linux(): # dirs += ('mm net/ipv4 crypto').split() dirs = ('init kernel arch/x86/kernel fs ').split() + dirs += ['mm'] # fs/notify/fanotify fs/notify/inotify @@ -798,7 +799,7 @@ def cflow_linux(): write_dot(start_kernel, 'start_kernel.dot') write_dot(reduce_graph(start_kernel), 'start_kernel-reduced.dot') write_dot(reduce_graph(reduce_graph(start_kernel)), 'start_kernel-reduced2.dot') - write_dot(reduce_graph(digraph_tree(all, ['sys_clone']), 'sys_clone.dot')) + write_dot(reduce_graph(digraph_tree(all, ['sys_clone'])), 'sys_clone.dot') def stats(a):