qcacmn: Add WBUFF statistics

Currently, there are no statistics whatsoever present in WBUFF module.
To start with, add some basic statistics to the WBUFF module.

Change-Id: I63c06cfb8b1430b2e86539f88025e6d74a00012b
CRs-Fixed: 3548509
This commit is contained in:
Manikanta Pubbisetty
2023-07-03 18:30:58 +05:30
committed by Rahul Choudhary
parent 799450bbce
commit e2b9779df7
4 changed files with 164 additions and 0 deletions

View File

@@ -5232,6 +5232,18 @@ static inline qdf_size_t qdf_nbuf_get_truesize(qdf_nbuf_t nbuf)
return __qdf_nbuf_get_truesize(nbuf); return __qdf_nbuf_get_truesize(nbuf);
} }
/**
* qdf_nbuf_get_allocsize() - Return the actual size of the skb->head
* excluding the header and variable data area
* @nbuf: qdf_nbuf_t
*
* Return: actual allocated size of network buffer
*/
static inline qdf_size_t qdf_nbuf_get_allocsize(qdf_nbuf_t nbuf)
{
return __qdf_nbuf_get_allocsize(nbuf);
}
#ifdef NBUF_FRAG_MEMORY_DEBUG #ifdef NBUF_FRAG_MEMORY_DEBUG
#define qdf_nbuf_move_frag_page_offset(f, i, o) \ #define qdf_nbuf_move_frag_page_offset(f, i, o) \

View File

@@ -2837,6 +2837,19 @@ static inline unsigned int __qdf_nbuf_get_truesize(struct sk_buff *skb)
return skb->truesize; return skb->truesize;
} }
/**
* __qdf_nbuf_get_allocsize() - Return the actual size of the skb->head
* excluding the header and variable data area
* @skb: sk buff
*
* Return: actual allocated size of network buffer
*/
static inline unsigned int __qdf_nbuf_get_allocsize(struct sk_buff *skb)
{
return SKB_WITH_OVERHEAD(skb->truesize) -
SKB_DATA_ALIGN(sizeof(struct sk_buff));
}
#ifdef CONFIG_WLAN_SYSFS_MEM_STATS #ifdef CONFIG_WLAN_SYSFS_MEM_STATS
/** /**
* __qdf_record_nbuf_nbytes() - add or subtract the size of the nbuf * __qdf_record_nbuf_nbytes() - add or subtract the size of the nbuf

View File

@@ -48,12 +48,18 @@ struct wbuff_handle {
* @pool: nbuf pool * @pool: nbuf pool
* @buffer_size: size of the buffer in this @pool * @buffer_size: size of the buffer in this @pool
* @pool_id: pool identifier * @pool_id: pool identifier
* @alloc_success: Successful allocations for this pool
* @alloc_fail: Failed allocations for this pool
* @mem_alloc: Memory allocated for this pool
*/ */
struct wbuff_pool { struct wbuff_pool {
bool initialized; bool initialized;
qdf_nbuf_t pool; qdf_nbuf_t pool;
uint16_t buffer_size; uint16_t buffer_size;
uint8_t pool_id; uint8_t pool_id;
uint64_t alloc_success;
uint64_t alloc_fail;
uint64_t mem_alloc;
}; };
/** /**
@@ -82,10 +88,14 @@ struct wbuff_module {
* @initialized: to identified whether module is initialized * @initialized: to identified whether module is initialized
* @mod: list of modules * @mod: list of modules
* @pf_cache: Reference to page frag cache, used for nbuf allocations * @pf_cache: Reference to page frag cache, used for nbuf allocations
* @wbuff_debugfs_dir: wbuff debugfs root directory
* @wbuff_stats_dentry: wbuff debugfs stats file
*/ */
struct wbuff_holder { struct wbuff_holder {
bool initialized; bool initialized;
struct wbuff_module mod[WBUFF_MAX_MODULES]; struct wbuff_module mod[WBUFF_MAX_MODULES];
qdf_frag_cache_t pf_cache; qdf_frag_cache_t pf_cache;
struct dentry *wbuff_debugfs_dir;
struct dentry *wbuff_stats_dentry;
}; };
#endif /* _WBUFF_H */ #endif /* _WBUFF_H */

View File

@@ -23,6 +23,9 @@
*/ */
#include <wbuff.h> #include <wbuff.h>
#include <linux/debugfs.h>
#include <linux/seq_file.h>
#include <qdf_debugfs.h>
#include "i_wbuff.h" #include "i_wbuff.h"
/* /*
@@ -96,6 +99,8 @@ static qdf_nbuf_t wbuff_prepare_nbuf(uint8_t module_id, uint8_t pool_id,
{ {
qdf_nbuf_t buf; qdf_nbuf_t buf;
unsigned long dev_scratch = 0; unsigned long dev_scratch = 0;
struct wbuff_module *mod = &wbuff.mod[module_id];
struct wbuff_pool *wbuff_pool = &mod->wbuff_pool[pool_id];
buf = qdf_nbuf_page_frag_alloc(NULL, len, reserve, align, buf = qdf_nbuf_page_frag_alloc(NULL, len, reserve, align,
&wbuff.pf_cache); &wbuff.pf_cache);
@@ -106,6 +111,8 @@ static qdf_nbuf_t wbuff_prepare_nbuf(uint8_t module_id, uint8_t pool_id,
dev_scratch |= ((pool_id << WBUFF_POOL_ID_SHIFT) | 1); dev_scratch |= ((pool_id << WBUFF_POOL_ID_SHIFT) | 1);
qdf_nbuf_set_dev_scratch(buf, dev_scratch); qdf_nbuf_set_dev_scratch(buf, dev_scratch);
wbuff_pool->mem_alloc += qdf_nbuf_get_allocsize(buf);
return buf; return buf;
} }
@@ -125,6 +132,115 @@ static bool wbuff_is_valid_handle(struct wbuff_handle *handle)
return false; return false;
} }
static char *wbuff_get_mod_name(enum wbuff_module_id module_id)
{
char *str;
switch (module_id) {
case WBUFF_MODULE_WMI_TX:
str = "WBUFF_MODULE_WMI_TX";
break;
case WBUFF_MODULE_CE_RX:
str = "WBUFF_MODULE_CE_RX";
break;
default:
str = "Invalid Module ID";
break;
}
return str;
}
static void wbuff_debugfs_print(qdf_debugfs_file_t file, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
seq_vprintf(file, fmt, args);
va_end(args);
}
static int wbuff_stats_debugfs_show(qdf_debugfs_file_t file, void *data)
{
struct wbuff_module *mod;
struct wbuff_pool *wbuff_pool;
int i, j;
wbuff_debugfs_print(file, "WBUFF POOL STATS:\n");
wbuff_debugfs_print(file, "=================\n");
for (i = 0; i < WBUFF_MAX_MODULES; i++) {
mod = &wbuff.mod[i];
if (!mod->registered)
continue;
wbuff_debugfs_print(file, "Module (%d) : %s\n", i,
wbuff_get_mod_name(i));
wbuff_debugfs_print(file, "%s %25s %20s %20s\n", "Pool ID",
"Mem Allocated (In Bytes)",
"Wbuff Success Count",
"Wbuff Fail Count");
for (j = 0; j < WBUFF_MAX_POOLS; j++) {
wbuff_pool = &mod->wbuff_pool[j];
if (!wbuff_pool->initialized)
continue;
wbuff_debugfs_print(file, "%d %30llu %20llu %20llu\n",
j, wbuff_pool->mem_alloc,
wbuff_pool->alloc_success,
wbuff_pool->alloc_fail);
}
wbuff_debugfs_print(file, "\n");
}
return 0;
}
static int wbuff_stats_debugfs_open(struct inode *inode, struct file *file)
{
return single_open(file, wbuff_stats_debugfs_show,
inode->i_private);
}
static const struct file_operations wbuff_stats_fops = {
.owner = THIS_MODULE,
.open = wbuff_stats_debugfs_open,
.release = single_release,
.read = seq_read,
.llseek = seq_lseek,
};
static QDF_STATUS wbuff_debugfs_init(void)
{
wbuff.wbuff_debugfs_dir =
qdf_debugfs_create_dir("wbuff", NULL);
if (!wbuff.wbuff_debugfs_dir)
return QDF_STATUS_E_FAILURE;
wbuff.wbuff_stats_dentry =
qdf_debugfs_create_entry("wbuff_stats", QDF_FILE_USR_READ,
wbuff.wbuff_debugfs_dir, NULL,
&wbuff_stats_fops);
if (!wbuff.wbuff_stats_dentry)
return QDF_STATUS_E_FAILURE;
return QDF_STATUS_SUCCESS;
}
static void wbuff_debugfs_exit(void)
{
if (!wbuff.wbuff_debugfs_dir)
return;
debugfs_remove_recursive(wbuff.wbuff_debugfs_dir);
wbuff.wbuff_debugfs_dir = NULL;
}
QDF_STATUS wbuff_module_init(void) QDF_STATUS wbuff_module_init(void)
{ {
struct wbuff_module *mod = NULL; struct wbuff_module *mod = NULL;
@@ -142,6 +258,9 @@ QDF_STATUS wbuff_module_init(void)
mod->wbuff_pool[pool_id].pool = NULL; mod->wbuff_pool[pool_id].pool = NULL;
mod->registered = false; mod->registered = false;
} }
wbuff_debugfs_init();
wbuff.initialized = true; wbuff.initialized = true;
return QDF_STATUS_SUCCESS; return QDF_STATUS_SUCCESS;
@@ -156,6 +275,8 @@ QDF_STATUS wbuff_module_deinit(void)
return QDF_STATUS_E_INVAL; return QDF_STATUS_E_INVAL;
wbuff.initialized = false; wbuff.initialized = false;
wbuff_debugfs_exit();
for (module_id = 0; module_id < WBUFF_MAX_MODULES; module_id++) { for (module_id = 0; module_id < WBUFF_MAX_MODULES; module_id++) {
mod = &wbuff.mod[module_id]; mod = &wbuff.mod[module_id];
if (mod->registered) if (mod->registered)
@@ -267,6 +388,11 @@ QDF_STATUS wbuff_module_deregister(struct wbuff_mod_handle *hdl)
first = qdf_nbuf_next(buf); first = qdf_nbuf_next(buf);
qdf_nbuf_free(buf); qdf_nbuf_free(buf);
} }
wbuff_pool->mem_alloc = 0;
wbuff_pool->alloc_success = 0;
wbuff_pool->alloc_fail = 0;
} }
mod->registered = false; mod->registered = false;
qdf_spin_unlock_bh(&mod->lock); qdf_spin_unlock_bh(&mod->lock);
@@ -312,6 +438,9 @@ wbuff_buff_get(struct wbuff_mod_handle *hdl, uint8_t pool_id, uint32_t len,
if (buf) { if (buf) {
qdf_nbuf_set_next(buf, NULL); qdf_nbuf_set_next(buf, NULL);
qdf_net_buf_debug_update_node(buf, func_name, line_num); qdf_net_buf_debug_update_node(buf, func_name, line_num);
wbuff_pool->alloc_success++;
} else {
wbuff_pool->alloc_fail++;
} }
return buf; return buf;