From 85c102245a7c19586b9f2eff2a331e2b31697f25 Mon Sep 17 00:00:00 2001 From: Marco Elver Date: Tue, 9 Nov 2021 16:30:35 +0100 Subject: dashboard/config/linux: refactor lockdep configs into lockdep.yml All of lockdep comes with a number of config options, so let's refactor it into a separate lockdep.yml, which makes it easier to disable selectively. --- dashboard/config/linux/bits/lockdep.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 dashboard/config/linux/bits/lockdep.yml (limited to 'dashboard/config/linux/bits/lockdep.yml') diff --git a/dashboard/config/linux/bits/lockdep.yml b/dashboard/config/linux/bits/lockdep.yml new file mode 100644 index 000000000..be271b294 --- /dev/null +++ b/dashboard/config/linux/bits/lockdep.yml @@ -0,0 +1,21 @@ +# Copyright 2021 syzkaller project authors. All rights reserved. +# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +config: + - LOCKDEP + - LOCKDEP_BITS: [16, v5.13] + - LOCKDEP_CHAINS_BITS: [17, v5.13] + - LOCKDEP_STACK_TRACE_BITS: [20, v5.13] + - LOCKDEP_STACK_TRACE_HASH_BITS: [14, v5.13] + - LOCKDEP_CIRCULAR_QUEUE_BITS: [12, v5.13] + - PROVE_LOCKING + - DEBUG_ATOMIC_SLEEP + - PROVE_RCU + - RCU_EQS_DEBUG + - DEBUG_LOCK_ALLOC + - DEBUG_RT_MUTEXES + - DEBUG_SPINLOCK + - DEBUG_MUTEXES + - DEBUG_WW_MUTEX_SLOWPATH + - DEBUG_RWSEMS: [v4.16] + - DEBUG_IRQFLAGS: [v5.12] -- cgit mrf-deployment