summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qdf/inc/qdf_types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/qdf/inc/qdf_types.h b/qdf/inc/qdf_types.h
index a489f9d0c895..f36e11b49db1 100644
--- a/qdf/inc/qdf_types.h
+++ b/qdf/inc/qdf_types.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -487,6 +487,7 @@ struct qdf_tso_frag_t {
};
#define FRAG_NUM_MAX 6
+#define TSO_SEG_MAGIC_COOKIE 0x7EED
/**
* struct qdf_tso_flags_t - TSO specific flags
@@ -563,6 +564,8 @@ struct qdf_tso_seg_t {
*/
struct qdf_tso_seg_elem_t {
struct qdf_tso_seg_t seg;
+ uint16_t cookie:15,
+ on_freelist:1;
struct qdf_tso_seg_elem_t *next;
};