sta_info.h (c09c9dd2e9c732658c744a802101d5c34fedde22) | sta_info.h (ef044763a3ca6b9e0bb65a9ce0cb38c0eca62756) |
---|---|
1/* 2 * Copyright 2002-2005, Devicescape Software, Inc. 3 * Copyright 2013-2014 Intel Mobile Communications GmbH 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 */ --- 353 unchanged lines hidden (view full) --- 362 * @last_seq_ctrl: last received seq/frag number from this STA (per TID 363 * plus one for non-QoS frames) 364 * @tid_seq: per-TID sequence numbers for sending to this STA 365 * @ampdu_mlme: A-MPDU state machine state 366 * @timer_to_tid: identity mapping to ID timers 367 * @mesh: mesh STA information 368 * @debugfs: debug filesystem info 369 * @dead: set to true when sta is unlinked | 1/* 2 * Copyright 2002-2005, Devicescape Software, Inc. 3 * Copyright 2013-2014 Intel Mobile Communications GmbH 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 */ --- 353 unchanged lines hidden (view full) --- 362 * @last_seq_ctrl: last received seq/frag number from this STA (per TID 363 * plus one for non-QoS frames) 364 * @tid_seq: per-TID sequence numbers for sending to this STA 365 * @ampdu_mlme: A-MPDU state machine state 366 * @timer_to_tid: identity mapping to ID timers 367 * @mesh: mesh STA information 368 * @debugfs: debug filesystem info 369 * @dead: set to true when sta is unlinked |
370 * @removed: set to true when sta is being removed from sta_list |
|
370 * @uploaded: set to true when sta is uploaded to the driver 371 * @sta: station information we share with the driver 372 * @sta_state: duplicates information about station state (for debug) 373 * @beacon_loss_count: number of times beacon loss has triggered 374 * @rcu_head: RCU head used for freeing this station struct 375 * @cur_max_bandwidth: maximum bandwidth to use for TX to the station, 376 * taken from HT/VHT capabilities or VHT operating mode notification 377 * @known_smps_mode: the smps_mode the client thinks we are in. Relevant for --- 29 unchanged lines hidden (view full) --- 407 struct mesh_sta *mesh; 408#endif 409 410 struct work_struct drv_deliver_wk; 411 412 u16 listen_interval; 413 414 bool dead; | 371 * @uploaded: set to true when sta is uploaded to the driver 372 * @sta: station information we share with the driver 373 * @sta_state: duplicates information about station state (for debug) 374 * @beacon_loss_count: number of times beacon loss has triggered 375 * @rcu_head: RCU head used for freeing this station struct 376 * @cur_max_bandwidth: maximum bandwidth to use for TX to the station, 377 * taken from HT/VHT capabilities or VHT operating mode notification 378 * @known_smps_mode: the smps_mode the client thinks we are in. Relevant for --- 29 unchanged lines hidden (view full) --- 408 struct mesh_sta *mesh; 409#endif 410 411 struct work_struct drv_deliver_wk; 412 413 u16 listen_interval; 414 415 bool dead; |
416 bool removed; |
|
415 416 bool uploaded; 417 418 enum ieee80211_sta_state sta_state; 419 420 /* use the accessors defined below */ 421 unsigned long _flags; 422 --- 250 unchanged lines hidden --- | 417 418 bool uploaded; 419 420 enum ieee80211_sta_state sta_state; 421 422 /* use the accessors defined below */ 423 unsigned long _flags; 424 --- 250 unchanged lines hidden --- |