diff options
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 63599ab6005b..94a0810ef68e 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -672,8 +672,10 @@ struct station_parameters { | |||
672 | * @STATION_INFO_SIGNAL: @signal filled | 672 | * @STATION_INFO_SIGNAL: @signal filled |
673 | * @STATION_INFO_TX_BITRATE: @txrate fields are filled | 673 | * @STATION_INFO_TX_BITRATE: @txrate fields are filled |
674 | * (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs) | 674 | * (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs) |
675 | * @STATION_INFO_RX_PACKETS: @rx_packets filled | 675 | * @STATION_INFO_RX_PACKETS: @rx_packets filled with 32-bit value |
676 | * @STATION_INFO_TX_PACKETS: @tx_packets filled | 676 | * @STATION_INFO_TX_PACKETS: @tx_packets filled with 32-bit value |
677 | * @STATION_INFO_RX_PACKETS64: @rx_packets filled with 64-bit value | ||
678 | * @STATION_INFO_TX_PACKETS64: @tx_packets filled with 64-bit value | ||
677 | * @STATION_INFO_TX_RETRIES: @tx_retries filled | 679 | * @STATION_INFO_TX_RETRIES: @tx_retries filled |
678 | * @STATION_INFO_TX_FAILED: @tx_failed filled | 680 | * @STATION_INFO_TX_FAILED: @tx_failed filled |
679 | * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled | 681 | * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled |
@@ -714,6 +716,8 @@ enum station_info_flags { | |||
714 | STATION_INFO_LOCAL_PM = 1<<21, | 716 | STATION_INFO_LOCAL_PM = 1<<21, |
715 | STATION_INFO_PEER_PM = 1<<22, | 717 | STATION_INFO_PEER_PM = 1<<22, |
716 | STATION_INFO_NONPEER_PM = 1<<23, | 718 | STATION_INFO_NONPEER_PM = 1<<23, |
719 | STATION_INFO_RX_BYTES64 = 1<<24, | ||
720 | STATION_INFO_TX_BYTES64 = 1<<25, | ||
717 | }; | 721 | }; |
718 | 722 | ||
719 | /** | 723 | /** |
@@ -835,8 +839,8 @@ struct station_info { | |||
835 | u32 filled; | 839 | u32 filled; |
836 | u32 connected_time; | 840 | u32 connected_time; |
837 | u32 inactive_time; | 841 | u32 inactive_time; |
838 | u32 rx_bytes; | 842 | u64 rx_bytes; |
839 | u32 tx_bytes; | 843 | u64 tx_bytes; |
840 | u16 llid; | 844 | u16 llid; |
841 | u16 plid; | 845 | u16 plid; |
842 | u8 plink_state; | 846 | u8 plink_state; |