qcacmn: Add QDF infra for the minidump feature

Add QDF infra for minidump feature and define the
minidump_log and minidump_remove functions.

Change-Id: I875b991b7a7d9295f8b2acd95a7551a747ec962c
CRs-Fixed: 2856193
This commit is contained in:
Aditya Kodukula
2021-01-14 18:06:25 -08:00
committed by snandini
parent 17660198d7
commit 20380cee21
2 changed files with 49 additions and 8 deletions

View File

@@ -1600,19 +1600,23 @@ int qdf_sprint_symbol(char *buffer, void *addr);
* @name: String to identify this entry
*/
static inline
void qdf_minidump_log(void *start_addr, size_t size, const char *name)
void qdf_minidump_log(void *start_addr,
const size_t size, const char *name)
{
__qdf_minidump_log(start_addr, size, name);
}
/**
* qdf_minidump_remove() - Remove memory address from minidump
* @addr: Start address of the memory previously added
* @start_addr: Start address of the memory previously added
* @size: Size in bytes
* @name: String to identify this entry
*/
static inline
void qdf_minidump_remove(void *addr)
void qdf_minidump_remove(void *start_addr,
const size_t size, const char *name)
{
__qdf_minidump_remove(addr);
__qdf_minidump_remove(start_addr, size, name);
}
#endif /* __QDF_TRACE_H */