summaryrefslogtreecommitdiffstats
path: root/net/mac80211/trace.h
diff options
context:
space:
mode:
authorLuciano Coelho2014-11-07 14:28:34 +0100
committerJohannes Berg2014-11-10 10:18:04 +0100
commit127f10ec6069aa0ddc214f14cb424198e1741256 (patch)
tree78a7e5bceb6ac01cecf303c5a3dc05bef68cf9b6 /net/mac80211/trace.h
parentmac80211: fix order of setting ch_switch and drv_pre_channel_switch call (diff)
downloadkernel-qcow2-linux-127f10ec6069aa0ddc214f14cb424198e1741256.tar.gz
kernel-qcow2-linux-127f10ec6069aa0ddc214f14cb424198e1741256.tar.xz
kernel-qcow2-linux-127f10ec6069aa0ddc214f14cb424198e1741256.zip
mac80211: add device_timestamp to the drv_pre_channel_switch trace
The device_timestamp value was left out of the event trace for drv_pre_channel_switch by mistake. Add it. Signed-off-by: Luciano Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/trace.h')
-rw-r--r--net/mac80211/trace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/trace.h b/net/mac80211/trace.h
index 809a4983eb4a..96847e788488 100644
--- a/net/mac80211/trace.h
+++ b/net/mac80211/trace.h
@@ -2140,6 +2140,7 @@ TRACE_EVENT(drv_pre_channel_switch,
VIF_ENTRY
CHANDEF_ENTRY
__field(u64, timestamp)
+ __field(u32, device_timestamp)
__field(bool, block_tx)
__field(u8, count)
),
@@ -2149,6 +2150,7 @@ TRACE_EVENT(drv_pre_channel_switch,
VIF_ASSIGN;
CHANDEF_ASSIGN(&ch_switch->chandef)
__entry->timestamp = ch_switch->timestamp;
+ __entry->device_timestamp = ch_switch->device_timestamp;
__entry->block_tx = ch_switch->block_tx;
__entry->count = ch_switch->count;
),