at v4.14-rc4 249 B view raw
1#ifndef _LIBLOCKDEP_DEBUG_LOCKS_H_ 2#define _LIBLOCKDEP_DEBUG_LOCKS_H_ 3 4#include <stddef.h> 5#include <linux/compiler.h> 6#include <asm/bug.h> 7 8#define DEBUG_LOCKS_WARN_ON(x) WARN_ON(x) 9 10extern bool debug_locks; 11extern bool debug_locks_silent; 12 13#endif