Skip to content

Commit

Permalink
genetlink: define lockdep_genl_is_held() when CONFIG_LOCKDEP
Browse files Browse the repository at this point in the history
lockdep_is_held() is defined when CONFIG_LOCKDEP, not CONFIG_PROVE_LOCKING.

Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jesse Gross <jesse@nicira.com>
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
congwang authored and davem330 committed Jul 24, 2012
1 parent 17bcb68 commit 320f5ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/linux/genetlink.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ enum {
/* All generic netlink requests are serialized by a global lock. */
extern void genl_lock(void);
extern void genl_unlock(void);
#ifdef CONFIG_PROVE_LOCKING
#ifdef CONFIG_LOCKDEP
extern int lockdep_genl_is_held(void);
#endif

Expand Down
2 changes: 1 addition & 1 deletion net/netlink/genetlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void genl_unlock(void)
}
EXPORT_SYMBOL(genl_unlock);

#ifdef CONFIG_PROVE_LOCKING
#ifdef CONFIG_LOCKDEP
int lockdep_genl_is_held(void)
{
return lockdep_is_held(&genl_mutex);
Expand Down

0 comments on commit 320f5ea

Please sign in to comment.