diff options
author | Tobin C. Harding <me@tobin.cc> | 2017-11-09 14:02:41 +1100 |
---|---|---|
committer | Tobin C. Harding <me@tobin.cc> | 2017-11-14 09:29:27 +1100 |
commit | 1c1e3be0bf37db1396b4ecd995992643a6d92c00 (patch) | |
tree | bec00162b52da21473d9844ef53e54394d4a221f /scripts | |
parent | a284733e26e8e173cb5f589531a655d723ecb3ea (diff) | |
download | linux-1c1e3be0bf37db1396b4ecd995992643a6d92c00.tar.bz2 |
leaking_addresses: add to exclude files/paths list
There are a couple more files that cause the script to stall.
/sys/firmware/devicetree and its symlink /proc/device-tree, reported by
Michael Ellerman.
usbmon should be skipped were ever it appears. Reported by Kees Cook
Add files to be excluded from parsing.
Signed-off-by: Tobin C. Harding <me@tobin.cc>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/leaking_addresses.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/leaking_addresses.pl b/scripts/leaking_addresses.pl index 3f8c6e230962..0aac03a020a8 100755 --- a/scripts/leaking_addresses.pl +++ b/scripts/leaking_addresses.pl @@ -37,6 +37,8 @@ my @skip_parse_files_abs = ('/proc/kmsg', '/proc/kcore', '/proc/fs/ext4/sdb1/mb_groups', '/proc/1/fd/3', + '/sys/firmware/devicetree', + '/proc/device-tree', '/sys/kernel/debug/tracing/trace_pipe', '/sys/kernel/security/apparmor/revision'); @@ -61,6 +63,7 @@ my @skip_walk_dirs_any = ('self', 'thread-self', 'cwd', 'fd', + 'usbmon', 'stderr', 'stdin', 'stdout'); |