Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 159083
b: refs/heads/master
c: b291ba1
h: refs/heads/master
i:
  159081: 11d7498
  159079: 3aa619c
v: v3
  • Loading branch information
Johannes Berg authored and John W. Linville committed Jul 24, 2009
1 parent 763fc59 commit 5b114c0
Show file tree
Hide file tree
Showing 4 changed files with 228 additions and 73 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ca386f3137eb68621fadba546d9eb35ac2f82de3
refs/heads/master: b291ba11181d46dfbd2d7a5c00a5f3335228191e
20 changes: 12 additions & 8 deletions trunk/net/mac80211/ieee80211_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,13 @@ struct ieee80211_mgd_work {

/* flags used in struct ieee80211_if_managed.flags */
enum ieee80211_sta_flags {
IEEE80211_STA_PROBEREQ_POLL = BIT(3),
IEEE80211_STA_CONTROL_PORT = BIT(4),
IEEE80211_STA_WMM_ENABLED = BIT(5),
IEEE80211_STA_DISABLE_11N = BIT(6),
IEEE80211_STA_CSA_RECEIVED = BIT(7),
IEEE80211_STA_MFP_ENABLED = BIT(8),
IEEE80211_STA_BEACON_POLL = BIT(0),
IEEE80211_STA_CONNECTION_POLL = BIT(1),
IEEE80211_STA_CONTROL_PORT = BIT(2),
IEEE80211_STA_WMM_ENABLED = BIT(3),
IEEE80211_STA_DISABLE_11N = BIT(4),
IEEE80211_STA_CSA_RECEIVED = BIT(5),
IEEE80211_STA_MFP_ENABLED = BIT(6),
};

/* flags for MLME request */
Expand All @@ -271,11 +272,16 @@ enum ieee80211_sta_request {

struct ieee80211_if_managed {
struct timer_list timer;
struct timer_list conn_mon_timer;
struct timer_list bcn_mon_timer;
struct timer_list chswitch_timer;
struct work_struct work;
struct work_struct monitor_work;
struct work_struct chswitch_work;
struct work_struct beacon_loss_work;

unsigned long probe_timeout;

struct mutex mtx;
struct ieee80211_bss *associated;
struct list_head work_list;
Expand All @@ -292,8 +298,6 @@ struct ieee80211_if_managed {

unsigned long request;

unsigned long last_beacon;

unsigned int flags;

u32 beacon_crc;
Expand Down
Loading

0 comments on commit 5b114c0

Please sign in to comment.