cfg80211/mac80211: use lockdep_assert_held
Instead of using a WARN_ON(!mutex_is_locked()) use lockdep_assert_held() which compiles away completely when lockdep isn't enabled, and also is a more accurate assertion since it checks that the current thread is holding the mutex. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:

committed by
John W. Linville

parent
f5521b1388
commit
46a5ebaf02
@@ -1296,9 +1296,9 @@ void ieee80211_recalc_smps(struct ieee80211_local *local,
|
||||
int count = 0;
|
||||
|
||||
if (forsdata)
|
||||
WARN_ON(!mutex_is_locked(&forsdata->u.mgd.mtx));
|
||||
lockdep_assert_held(&forsdata->u.mgd.mtx);
|
||||
|
||||
WARN_ON(!mutex_is_locked(&local->iflist_mtx));
|
||||
lockdep_assert_held(&local->iflist_mtx);
|
||||
|
||||
/*
|
||||
* This function could be improved to handle multiple
|
||||
|
Reference in New Issue
Block a user