qcacld-3.0: Increase the buffer size for LL_STATS

ll_stats are not fit into current buffer sizeof
12288 bytes to write into debugfs

Increase the LL_STATS buffer size i.e DEBUGFS_LLSTATS_BUF_SIZE
from 3 pages to 4 pages for single vdev case also double the
buffer size for MLO case.

Change-Id: Idcae0816de0a29ae92a821623d3d2e8c4f33bdf8
CRs-Fixed: 3214694
This commit is contained in:
Divyajyothi Goparaju
2022-06-15 20:48:57 +05:30
committed by Madan Koyyalamudi
parent c01e68f5b4
commit d7ae20bac5

View File

@@ -28,10 +28,11 @@
#define _WLAN_HDD_DEBUGFS_LLSTAT_H #define _WLAN_HDD_DEBUGFS_LLSTAT_H
#if defined(WLAN_FEATURE_11BE_MLO) && defined(CFG80211_11BE_BASIC) #if defined(WLAN_FEATURE_11BE_MLO) && defined(CFG80211_11BE_BASIC)
#define DEBUGFS_LLSTATS_BUF_SIZE 24576 #define DEBUGFS_LLSTATS_BUF_SIZE 32768
#else #else
#define DEBUGFS_LLSTATS_BUF_SIZE 12288 #define DEBUGFS_LLSTATS_BUF_SIZE 16384
#endif #endif
#define DEBUGFS_LLSTATS_REQID 4294967295UL #define DEBUGFS_LLSTATS_REQID 4294967295UL
#define DEBUGFS_LLSTATS_REQMASK 0x7 #define DEBUGFS_LLSTATS_REQMASK 0x7