From e3fa59c884838ee5bc098043c3d955fa6fdeef99 Mon Sep 17 00:00:00 2001 From: Himanshu Agarwal Date: Tue, 31 Jan 2017 13:15:33 +0530 Subject: qcacmn: Add support to dump ICMPV6 RS and RA in wow wakeup stats Propagation from qcacld-2.0 to qcacmn. Add support to dump information for ICMPV6 RS and RA packets in wow wakeup stats. Change-Id: I1a2852189664fff31e29b487d7a8c66ee83931c5 CRs-Fixed: 1115364 --- qdf/linux/src/qdf_nbuf.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'qdf/linux/src') diff --git a/qdf/linux/src/qdf_nbuf.c b/qdf/linux/src/qdf_nbuf.c index 88ba0722d7e3..60f97cbe98fb 100644 --- a/qdf/linux/src/qdf_nbuf.c +++ b/qdf/linux/src/qdf_nbuf.c @@ -651,6 +651,18 @@ __qdf_nbuf_data_get_icmpv6_subtype(uint8_t *data) case ICMPV6_RESPONSE: proto_subtype = QDF_PROTO_ICMPV6_RES; break; + case ICMPV6_RS: + proto_subtype = QDF_PROTO_ICMPV6_RS; + break; + case ICMPV6_RA: + proto_subtype = QDF_PROTO_ICMPV6_RA; + break; + case ICMPV6_NS: + proto_subtype = QDF_PROTO_ICMPV6_NS; + break; + case ICMPV6_NA: + proto_subtype = QDF_PROTO_ICMPV6_NA; + break; default: break; } -- cgit v1.2.3