summaryrefslogtreecommitdiff
path: root/dhd_debug.h
diff options
context:
space:
mode:
authorDamon Kim <taekhun.kim@broadcom.corp-partner.google.com>2021-02-26 15:53:47 +0900
committerRoger Wang <wangroger@google.com>2021-02-26 17:55:20 +0800
commit5c7cfaa9505cbc0f8ed3abdc1331dafc19c8e5ab (patch)
tree5b8189d4b559eb81b845fb4a5769f44e76403911 /dhd_debug.h
parentc495191b426e5026033e9447a460581a890b4b4b (diff)
downloadbcm4389-5c7cfaa9505cbc0f8ed3abdc1331dafc19c8e5ab.tar.gz
Monthly release(2021 Feb.) Point fix for bcm4389, 2021.02.26 Version : 101.10.483.1
[Features] BUG: 178813134 Report usable channels for different interface [BUGs] BUG: 173477163 Removed forward declaration in wl_cfg_cellavoid.h BUG: 177517838 Packet debug ring: de-couple txcontrol logic with pktlog BUG: 179460317 Fixed unbalanced irq enable BUG: 180770644 Fixed return invalid channel bandwidth to the 5GHz 80+80Hz AP Monthly release(2021 Feb.) for bcm4389, 2021.02.26 Version : 101.10.483 [Features] BUG: 168654724 Cellular channel avoidance [BUGs] BUG: 179786625 Fixed not to drop FW assoc/roam log in dhd BUG: 179815416 Send up btm request frame irrespective of btm response status BUG: 178469164 Fixed for the hotspot turned OFF automatically when turning STA OFF BUG: 179196884 Fixed no RSN IE in softAP beacon/probe response frame BUG: 179499457 Log refactorinng - reduced PM logs BUG: 178681660 Fixed burst frame number mismatch in RTT BUG: 178685662 Enabled 160MHz RTT support Bug: 181273004 Test: Wifi is able to connect to AP. Hotspot is able to turn ON. Change-Id: I9f661d983d23e001116e238f9c91b0d9e4ce42a2 Signed-off-by: Roger Wang <wangroger@google.com>
Diffstat (limited to 'dhd_debug.h')
-rw-r--r--dhd_debug.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/dhd_debug.h b/dhd_debug.h
index da7b601..3b19de7 100644
--- a/dhd_debug.h
+++ b/dhd_debug.h
@@ -99,7 +99,13 @@ enum {
/* Packet log ring, ring id 7 */
#ifdef DHD_PKT_LOGGING_DBGRING
#define DHD_PACKET_LOG_RING_NAME "packet_log"
-#define DHD_PACKET_LOG_RING_SIZE (MIN_PKTLOG_LEN * sizeof(dhd_pktlog_ring_info_t))
+#define DHD_PACKET_LOG_RING_PKTS MIN_PKTLOG_LEN
+#define DHD_PACKET_LOG_RING_SUSPEND_THRESHOLD \
+ (DHD_PACKET_LOG_RING_PKTS * 8u / 10u)
+#define DHD_PACKET_LOG_RING_RESUME_THRESHOLD \
+ (DHD_PACKET_LOG_RING_PKTS * 2u / 10u)
+#define DHD_PACKET_LOG_RING_SIZE \
+ (DHD_PACKET_LOG_RING_PKTS * sizeof(dhd_pktlog_ring_info_t))
#endif /* DHD_PKT_LOGGING_DBGRING */
#define TLV_LOG_SIZE(tlv) ((tlv) ? (sizeof(tlv_log) + (tlv)->len) : 0)