qcacmn: Change per peer delay histogram stats buckets to 13 from 10

Per peer extended stats are maintained as a histogram having 10
delay buckets. Each packet will fall into one of these buckets as per the
delay calculated. These buckets are now increased to 13 as per requirement.

Change-Id: I7f9a01c21b748a0f589bb44e6f7dd69a1c5702a7
CRs-Fixed: 3163423
此提交包含在:
Parikshit Gune
2022-04-06 12:49:31 +05:30
提交者 Madan Koyyalamudi
父節點 a5e928212a
當前提交 083ffa0268
共有 4 個檔案被更改,包括 35 行新增19 行删除

查看文件

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2020 The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -35,6 +36,9 @@
* @CDP_HIST_BUCKET_7: Bucket Index 7
* @CDP_HIST_BUCKET_8: Bucket Index 8
* @CDP_HIST_BUCKET_9: Bucket Index 9
* @CDP_HIST_BUCKET_10: Bucket Index 10
* @CDP_HIST_BUCKET_11: Bucket Index 11
* @CDP_HIST_BUCKET_12: Bucket Index 12
*/
enum cdp_hist_bucket_index {
CDP_HIST_BUCKET_0,
@@ -47,6 +51,9 @@ enum cdp_hist_bucket_index {
CDP_HIST_BUCKET_7,
CDP_HIST_BUCKET_8,
CDP_HIST_BUCKET_9,
CDP_HIST_BUCKET_10,
CDP_HIST_BUCKET_11,
CDP_HIST_BUCKET_12,
CDP_HIST_BUCKET_MAX,
};