1. NAME

cfg80211_inform_bss_frame - inform cfg80211 of a received BSS frame

2. SYNOPSIS

struct cfg80211_bss * cfg80211_inform_bss_frame(struct wiphy *  wiphy , struct ieee80211_channel *  channel , struct ieee80211_mgmt *  mgmt , size_t  len , s32  signal , gfp_t  gfp );

3. ARGUMENTS

wiphy
    the wiphy reporting the BSS

channel
    The channel the frame was received on

mgmt
    the management frame (probe response or beacon)

len
    length of the management frame

signal
    the signal strength, type depends on the wiphyAqs signal_type

gfp
    context flags

4. DESCRIPTION

This informs cfg80211 that BSS information was found and the BSS should be updated/added.

5. RETURN

A referenced struct, must be released with cfg80211_put_bss! Or NULL on error.

6. AUTHOR

Johannes Berg <>
    Author.

7. COPYRIGHT