Showing error 1126

User: Jiri Slaby
Error type: Double Lock
Error type description: Some lock is locked twice unintentionally in a sequence
File location: drivers/net/wireless/iwlwifi/iwl-sta.c
Line in file: 91
Project: Linux Kernel
Project version: 2.6.28
Tools: Stanse (1.2)
Entered: 2012-04-29 14:49:11 UTC


Source:

  61                                         addr))) {
  62                        ret = i;
  63                        goto out;
  64                }
  65
  66        IWL_DEBUG_ASSOC_LIMIT("can not find STA %s total %d\n",
  67                              print_mac(mac, addr), priv->num_stations);
  68
  69 out:
  70        spin_unlock_irqrestore(&priv->sta_lock, flags);
  71        return ret;
  72}
  73EXPORT_SYMBOL(iwl_find_station);
  74
  75int iwl_get_ra_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
  76{
  77        if (priv->iw_mode == NL80211_IFTYPE_STATION) {
  78                return IWL_AP_ID;
  79        } else {
  80                u8 *da = ieee80211_get_DA(hdr);
  81                return iwl_find_station(priv, da);
  82        }
  83}
  84EXPORT_SYMBOL(iwl_get_ra_sta_id);
  85
  86static void iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id)
  87{
  88        unsigned long flags;
  89        DECLARE_MAC_BUF(mac);
  90
  91        spin_lock_irqsave(&priv->sta_lock, flags);
  92
  93        if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE))
  94                IWL_ERROR("ACTIVATE a non DRIVER active station %d\n", sta_id);
  95
  96        priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE;
  97        IWL_DEBUG_ASSOC("Added STA to Ucode: %s\n",
  98                        print_mac(mac, priv->stations[sta_id].sta.sta.addr));
  99
 100        spin_unlock_irqrestore(&priv->sta_lock, flags);
 101}
Show full sources