summaryrefslogtreecommitdiff
path: root/qdf/linux
diff options
context:
space:
mode:
authorHimanshu Agarwal <himanaga@codeaurora.org>2017-01-31 13:15:33 +0530
committerqcabuildsw <qcabuildsw@localhost>2017-02-03 23:37:10 -0800
commite3fa59c884838ee5bc098043c3d955fa6fdeef99 (patch)
treee45477d1c77e033f99dc313f8d4358fdbd07cb96 /qdf/linux
parent23160d7aad15e865f9dcfc1f89f61523a7fbe0f6 (diff)
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
Diffstat (limited to 'qdf/linux')
-rw-r--r--qdf/linux/src/qdf_nbuf.c12
1 files changed, 12 insertions, 0 deletions
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;
}