diff options
Diffstat (limited to 'net/netlink')
-rw-r--r-- | net/netlink/genetlink.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c index 8a36599d3555..28453ae2a97b 100644 --- a/net/netlink/genetlink.c +++ b/net/netlink/genetlink.c | |||
@@ -33,6 +33,14 @@ void genl_unlock(void) | |||
33 | } | 33 | } |
34 | EXPORT_SYMBOL(genl_unlock); | 34 | EXPORT_SYMBOL(genl_unlock); |
35 | 35 | ||
36 | #ifdef CONFIG_PROVE_LOCKING | ||
37 | int lockdep_genl_is_held(void) | ||
38 | { | ||
39 | return lockdep_is_held(&genl_mutex); | ||
40 | } | ||
41 | EXPORT_SYMBOL(lockdep_genl_is_held); | ||
42 | #endif | ||
43 | |||
36 | #define GENL_FAM_TAB_SIZE 16 | 44 | #define GENL_FAM_TAB_SIZE 16 |
37 | #define GENL_FAM_TAB_MASK (GENL_FAM_TAB_SIZE - 1) | 45 | #define GENL_FAM_TAB_MASK (GENL_FAM_TAB_SIZE - 1) |
38 | 46 | ||