From 137e37cac241dfee41f3899d3b97eca4e62b8359 Mon Sep 17 00:00:00 2001 From: Marco Elver Date: Mon, 7 Oct 2019 21:54:59 +0200 Subject: Change KCSAN info file to debugfs --- pkg/host/host_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/host/host_linux.go') diff --git a/pkg/host/host_linux.go b/pkg/host/host_linux.go index da208bbad..a1d5ff1b3 100644 --- a/pkg/host/host_linux.go +++ b/pkg/host/host_linux.go @@ -559,7 +559,7 @@ func checkDebugFS() string { } func checkKCSAN() string { - if err := osutil.IsAccessible("/proc/kcsaninfo"); err != nil { + if err := osutil.IsAccessible("/sys/kernel/debug/kcsan"); err != nil { return err.Error() } return "" -- cgit mrf-deployment