浏览代码

qcacmn: Add fix to receive response window ppdu

Received window ppdu are dropped in work queue context as it doesn't
have ppdu timestamp. Added fix to populate ppdu timestamp.

Change-Id: I3276284351f27ae2e8bfb787aa96fb031e4025ac
CRs-Fixed: 3439473
nobelj 2 年之前
父节点
当前提交
d1ddb7d4fe
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      hal/wifi3.0/be/hal_be_generic_api.h

+ 3 - 0
hal/wifi3.0/be/hal_be_generic_api.h

@@ -474,6 +474,9 @@ hal_txmon_parse_response_end_status(void *tx_tlv,
 		resp_end_status->mba_user_count;
 		resp_end_status->mba_user_count;
 	TXMON_STATUS_INFO(tx_status_info, mba_fake_bitmap_count) =
 	TXMON_STATUS_INFO(tx_status_info, mba_fake_bitmap_count) =
 		resp_end_status->mba_fake_bitmap_count;
 		resp_end_status->mba_fake_bitmap_count;
+	TXMON_HAL_STATUS(ppdu_info, ppdu_timestamp) =
+		(resp_end_status->start_of_frame_timestamp_15_0 |
+		 (resp_end_status->start_of_frame_timestamp_31_16 << 16));
 }
 }
 
 
 /**
 /**