cfg80211: use lockdep to assert lock is held
authorJohannes Berg <johannes.berg@intel.com>
Fri, 1 Feb 2013 00:05:43 +0000 (01:05 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Mon, 4 Feb 2013 17:57:45 +0000 (18:57 +0100)
Instead of annotating with a comment, add a lockdep
annotation which also serves as documentation.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/scan.c

index 1494d94..a56287b 100644 (file)
@@ -41,22 +41,24 @@ static void bss_release(struct kref *ref)
        kfree(bss);
 }
 
-/* must hold dev->bss_lock! */
 static void __cfg80211_unlink_bss(struct cfg80211_registered_device *dev,
                                  struct cfg80211_internal_bss *bss)
 {
+       lockdep_assert_held(&dev->bss_lock);
+
        list_del_init(&bss->list);
        rb_erase(&bss->rbn, &dev->bss_tree);
        kref_put(&bss->ref, bss_release);
 }
 
-/* must hold dev->bss_lock! */
 static void __cfg80211_bss_expire(struct cfg80211_registered_device *dev,
                                  unsigned long expire_time)
 {
        struct cfg80211_internal_bss *bss, *tmp;
        bool expired = false;
 
+       lockdep_assert_held(&dev->bss_lock);
+
        list_for_each_entry_safe(bss, tmp, &dev->bss_list, list) {
                if (atomic_read(&bss->hold))
                        continue;