From ba8cd6d708b97d6be4f9164758b6a7c690d252b2 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 10 Oct 2018 17:32:28 +0200 Subject: 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. --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') 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`), -- cgit mrf-deployment