qcacmn: Implement delay VOW stats for hawkeye

Delay counters per TID have been implemented for following types:
1. Linux stack to hw enqueue delay
2. HW enqueue delay to tx completion delay
3. TX interframe delay
4. RX interframe delay
5. RX frame delay from ring reap to networking stack

Change-Id: I836596cbd878a43955c18b4981cb5b7b43d4df5e
This commit is contained in:
Varsha Mishra
2019-03-11 12:16:14 +05:30
committad av nshrivas
förälder 17e1cb5cf4
incheckning a331e6e55f
14 ändrade filer med 380 tillägg och 17 borttagningar

Visa fil

@@ -3274,6 +3274,19 @@ qdf_nbuf_set_timestamp(struct sk_buff *skb)
__qdf_nbuf_set_timestamp(skb);
}
/**
* qdf_nbuf_get_timestamp() - get the timestamp for frame
*
* @buf: sk buff
*
* Return: timestamp stored in skb in ms
*/
static inline uint64_t
qdf_nbuf_get_timestamp(struct sk_buff *skb)
{
return __qdf_nbuf_get_timestamp(skb);
}
/**
* qdf_nbuf_get_timedelta_ms() - get time difference in ms
*