Browse Source

qcacmn: Fix unknown symbol qdf_aligned_malloc_fl

When MEMORY_DEBUG is enabled on WIN, it is reporting qdf_aligned_malloc_fl
as an unknown symbol. qdf_aligned_malloc_fl is defined under
MEMORY_DEBUG flag but its prototype is exposed globally.
Make this function definition available globally to fix the issue.

Change-Id: Ieb002bb892d6f3d525409fc9c3a6b2fa71ceebd8
CRs-Fixed: 2357476
Shiva Krishna Pittala 6 years ago
parent
commit
be6dcc0bed
1 changed files with 27 additions and 25 deletions
  1. 27 25
      qdf/linux/src/qdf_mem.c

+ 27 - 25
qdf/linux/src/qdf_mem.c

@@ -1174,13 +1174,37 @@ void *qdf_mem_malloc_atomic_fl(size_t size, const char *func, uint32_t line)
 }
 qdf_export_symbol(qdf_mem_malloc_atomic_fl);
 
+/**
+ * qdf_mem_free() - free QDF memory
+ * @ptr: Pointer to the starting address of the memory to be free'd.
+ *
+ * This function will free the memory pointed to by 'ptr'.
+ *
+ * Return: None
+ */
+void qdf_mem_free(void *ptr)
+{
+	if (!ptr)
+		return;
+
+	if (qdf_mem_prealloc_put(ptr))
+		return;
+
+	qdf_mem_kmalloc_dec(ksize(ptr));
+
+	kfree(ptr);
+}
+
+qdf_export_symbol(qdf_mem_free);
+#endif
+
 void *qdf_aligned_malloc_fl(qdf_size_t size, uint32_t ring_base_align,
 			    void **vaddr_unaligned,
 			    const char *func, uint32_t line)
 {
 	void *vaddr_aligned;
 
-	*vaddr_unaligned = qdf_mem_malloc(size);
+	*vaddr_unaligned = qdf_mem_malloc_fl(size, func, line);
 	if (!*vaddr_unaligned) {
 		qdf_warn("Failed to alloc %zuB @ %s:%d", size, func, line);
 		return NULL;
@@ -1188,7 +1212,8 @@ void *qdf_aligned_malloc_fl(qdf_size_t size, uint32_t ring_base_align,
 
 	if ((unsigned long)(*vaddr_unaligned) % ring_base_align) {
 		qdf_mem_free(*vaddr_unaligned);
-		*vaddr_unaligned = qdf_mem_malloc(size + ring_base_align - 1);
+		*vaddr_unaligned = qdf_mem_malloc_fl(size + ring_base_align - 1,
+						  func, line);
 		if (!*vaddr_unaligned) {
 			qdf_warn("Failed to alloc %zuB @ %s:%d",
 				 size, func, line);
@@ -1203,29 +1228,6 @@ void *qdf_aligned_malloc_fl(qdf_size_t size, uint32_t ring_base_align,
 }
 qdf_export_symbol(qdf_aligned_malloc_fl);
 
-/**
- * qdf_mem_free() - free QDF memory
- * @ptr: Pointer to the starting address of the memory to be free'd.
- *
- * This function will free the memory pointed to by 'ptr'.
- *
- * Return: None
- */
-void qdf_mem_free(void *ptr)
-{
-	if (ptr == NULL)
-		return;
-
-	if (qdf_mem_prealloc_put(ptr))
-		return;
-
-	qdf_mem_kmalloc_dec(ksize(ptr));
-
-	kfree(ptr);
-}
-qdf_export_symbol(qdf_mem_free);
-#endif
-
 /**
  * qdf_mem_multi_pages_alloc() - allocate large size of kernel memory
  * @osdev: OS device handle pointer