aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2016-07-08 22:20:35 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2016-07-08 22:20:35 +0000
commitaaf8b608cafb51f8569a690d0dbf8e478a4bc2f4 (patch)
tree646be44400fa57f582c6a53e6abac68f9c8d1100 /sys/dev/ath
parent23c4e11be650ca20cee9d5b0172b6ea022a19d7b (diff)
downloadsrc-aaf8b608cafb51f8569a690d0dbf8e478a4bc2f4.tar.gz
src-aaf8b608cafb51f8569a690d0dbf8e478a4bc2f4.zip
[ath] add a new buf flag, marking a buffer as involved with ToA/ToD positioning.
Notes
Notes: svn path=/head/; revision=302464
Diffstat (limited to 'sys/dev/ath')
-rw-r--r--sys/dev/ath/if_athvar.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h
index e7b1648c5e41..ce2abc1f2404 100644
--- a/sys/dev/ath/if_athvar.h
+++ b/sys/dev/ath/if_athvar.h
@@ -314,8 +314,9 @@ typedef TAILQ_HEAD(ath_bufhead_s, ath_buf) ath_bufhead;
#define ATH_BUF_BUSY 0x00000002 /* (tx) desc owned by h/w */
#define ATH_BUF_FIFOEND 0x00000004
#define ATH_BUF_FIFOPTR 0x00000008
+#define ATH_BUF_TOA_PROBE 0x00000010 /* ToD/ToA exchange probe */
-#define ATH_BUF_FLAGS_CLONE (ATH_BUF_MGMT)
+#define ATH_BUF_FLAGS_CLONE (ATH_BUF_MGMT | ATH_BUF_TOA_PROBE)
/*
* DMA state for tx/rx descriptors.