Lines Matching refs:new_beacon
3060 struct cfg80211_beacon_data *new_beacon; in cfg80211_beacon_dup() local
3068 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL); in cfg80211_beacon_dup()
3069 if (!new_beacon) in cfg80211_beacon_dup()
3072 pos = (u8 *)(new_beacon + 1); in cfg80211_beacon_dup()
3074 new_beacon->head_len = beacon->head_len; in cfg80211_beacon_dup()
3075 new_beacon->head = pos; in cfg80211_beacon_dup()
3080 new_beacon->tail_len = beacon->tail_len; in cfg80211_beacon_dup()
3081 new_beacon->tail = pos; in cfg80211_beacon_dup()
3086 new_beacon->beacon_ies_len = beacon->beacon_ies_len; in cfg80211_beacon_dup()
3087 new_beacon->beacon_ies = pos; in cfg80211_beacon_dup()
3092 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len; in cfg80211_beacon_dup()
3093 new_beacon->proberesp_ies = pos; in cfg80211_beacon_dup()
3098 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len; in cfg80211_beacon_dup()
3099 new_beacon->assocresp_ies = pos; in cfg80211_beacon_dup()
3104 new_beacon->probe_resp_len = beacon->probe_resp_len; in cfg80211_beacon_dup()
3105 new_beacon->probe_resp = pos; in cfg80211_beacon_dup()
3111 new_beacon->ftm_responder = beacon->ftm_responder; in cfg80211_beacon_dup()
3113 new_beacon->lci_len = beacon->lci_len; in cfg80211_beacon_dup()
3114 new_beacon->lci = pos; in cfg80211_beacon_dup()
3119 new_beacon->civicloc_len = beacon->civicloc_len; in cfg80211_beacon_dup()
3120 new_beacon->civicloc = pos; in cfg80211_beacon_dup()
3125 return new_beacon; in cfg80211_beacon_dup()