• Home
  • Raw
  • Download

Lines Matching refs:new_beacon

3132 	struct cfg80211_beacon_data *new_beacon;  in cfg80211_beacon_dup()  local
3141 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL); in cfg80211_beacon_dup()
3142 if (!new_beacon) in cfg80211_beacon_dup()
3146 new_beacon->mbssid_ies = in cfg80211_beacon_dup()
3147 kzalloc(struct_size(new_beacon->mbssid_ies, in cfg80211_beacon_dup()
3150 if (!new_beacon->mbssid_ies) { in cfg80211_beacon_dup()
3151 kfree(new_beacon); in cfg80211_beacon_dup()
3156 pos = (u8 *)(new_beacon + 1); in cfg80211_beacon_dup()
3158 new_beacon->head_len = beacon->head_len; in cfg80211_beacon_dup()
3159 new_beacon->head = pos; in cfg80211_beacon_dup()
3164 new_beacon->tail_len = beacon->tail_len; in cfg80211_beacon_dup()
3165 new_beacon->tail = pos; in cfg80211_beacon_dup()
3170 new_beacon->beacon_ies_len = beacon->beacon_ies_len; in cfg80211_beacon_dup()
3171 new_beacon->beacon_ies = pos; in cfg80211_beacon_dup()
3176 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len; in cfg80211_beacon_dup()
3177 new_beacon->proberesp_ies = pos; in cfg80211_beacon_dup()
3182 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len; in cfg80211_beacon_dup()
3183 new_beacon->assocresp_ies = pos; in cfg80211_beacon_dup()
3188 new_beacon->probe_resp_len = beacon->probe_resp_len; in cfg80211_beacon_dup()
3189 new_beacon->probe_resp = pos; in cfg80211_beacon_dup()
3195 new_beacon->mbssid_ies, in cfg80211_beacon_dup()
3199 new_beacon->ftm_responder = beacon->ftm_responder; in cfg80211_beacon_dup()
3201 new_beacon->lci_len = beacon->lci_len; in cfg80211_beacon_dup()
3202 new_beacon->lci = pos; in cfg80211_beacon_dup()
3207 new_beacon->civicloc_len = beacon->civicloc_len; in cfg80211_beacon_dup()
3208 new_beacon->civicloc = pos; in cfg80211_beacon_dup()
3213 return new_beacon; in cfg80211_beacon_dup()