From: Felix Fietkau Date: Thu, 23 May 2013 13:05:59 +0000 (+0200) Subject: cfg80211: fix reporting 64-bit station info tx bytes X-Git-Tag: v3.10~13^2~34^2^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4325d724cd91643c727ca4cb063e8bb19989950b;p=platform%2Fkernel%2Flinux-stable.git cfg80211: fix reporting 64-bit station info tx bytes Copy & paste mistake - STATION_INFO_TX_BYTES64 is the name of the flag, not NL80211_STA_INFO_TX_BYTES64. Signed-off-by: Felix Fietkau Signed-off-by: Johannes Berg --- diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index dfdb5e6..d5aed3b 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -3411,7 +3411,7 @@ static int nl80211_send_station(struct sk_buff *msg, u32 portid, u32 seq, (u32)sinfo->rx_bytes)) goto nla_put_failure; if ((sinfo->filled & (STATION_INFO_TX_BYTES | - NL80211_STA_INFO_TX_BYTES64)) && + STATION_INFO_TX_BYTES64)) && nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES, (u32)sinfo->tx_bytes)) goto nla_put_failure;