We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a68ea5e commit 40887fcCopy full SHA for 40887fc
srcxray.py
@@ -773,6 +773,7 @@ def cflow_linux():
773
774
# dirs += ('mm net/ipv4 crypto').split()
775
dirs = ('init kernel arch/x86/kernel fs ').split()
776
+ dirs += ['mm']
777
778
# fs/notify/fanotify fs/notify/inotify
779
@@ -798,7 +799,7 @@ def cflow_linux():
798
799
write_dot(start_kernel, 'start_kernel.dot')
800
write_dot(reduce_graph(start_kernel), 'start_kernel-reduced.dot')
801
write_dot(reduce_graph(reduce_graph(start_kernel)), 'start_kernel-reduced2.dot')
- write_dot(reduce_graph(digraph_tree(all, ['sys_clone']), 'sys_clone.dot'))
802
+ write_dot(reduce_graph(digraph_tree(all, ['sys_clone'])), 'sys_clone.dot')
803
804
805
def stats(a):
0 commit comments