Ver Fonte

qcacmn: Add msdu index for tso stats in msdu info

Add msdu index for tso stats in msdu info.

Change-Id: I37413ab7ccf6bd5171815af0038401925aa7831b
CRs-Fixed: 1114150
Himanshu Agarwal há 8 anos atrás
pai
commit
2388a52210
1 ficheiros alterados com 2 adições e 0 exclusões
  1. 2 0
      qdf/inc/qdf_types.h

+ 2 - 0
qdf/inc/qdf_types.h

@@ -705,6 +705,7 @@ struct qdf_tso_num_seg_elem_t {
  * @tso_seg_list: list of TSO segments for this jumbo packet
  * @curr_seg: segment that is currently being processed
  * @tso_num_seg_list: num of tso seg for this jumbo packet
+ * @msdu_stats_idx: msdu index for tso stats
  *
  * This structure holds the TSO information extracted after parsing the TSO
  * jumbo network buffer. It contains a chain of the TSO segments belonging to
@@ -716,6 +717,7 @@ struct qdf_tso_info_t {
 	struct qdf_tso_seg_elem_t *tso_seg_list;
 	struct qdf_tso_seg_elem_t *curr_seg;
 	struct qdf_tso_num_seg_elem_t *tso_num_seg_list;
+	uint32_t msdu_stats_idx;
 };
 
 /**