aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-10-10 17:32:28 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-10-10 17:32:28 +0200
commitba8cd6d708b97d6be4f9164758b6a7c690d252b2 (patch)
treec6b799121457077479bdcbfbaf36c2989d9c2ba3 /pkg/report/linux.go
parenta9495352a0c4fe83ff788edd6460def6508ea636 (diff)
pkg/report: ignore arch/.*/mm/physaddr.c as guilty file
This is called from kfree in the added test. We already ignore everything related to kmalloc/free and e.g. arch/.*/mm/fault.c, so it looks reasonable to ignore this one too.
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index 11b88c6c6..ff5878370 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -69,6 +69,7 @@ func ctorLinux(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter,
regexp.MustCompile(`^kernel/rcu/.*`),
regexp.MustCompile(`^arch/.*/kernel/traps.c`),
regexp.MustCompile(`^arch/.*/mm/fault.c`),
+ regexp.MustCompile(`^arch/.*/mm/physaddr.c`),
regexp.MustCompile(`^kernel/locking/.*`),
regexp.MustCompile(`^kernel/panic.c`),
regexp.MustCompile(`^kernel/printk/printk.*.c`),