qcacmn: Add provision to increase num_elements

Add support to change the number of elements in multi pages
alloc function. This is needed to increase the number of tx_descs.

Change-Id: I29ee2764c24c6f83b0c2cff1062ec7239dcc0b4b
CRs-Fixed: 3130833
Cette révision appartient à :
Nandha Kishore Easwaran
2022-03-09 11:44:00 +05:30
révisé par Madan Koyyalamudi
Parent cf10304673
révision 8aa7cab50c
2 fichiers modifiés avec 6 ajouts et 6 suppressions

Voir le fichier

@@ -1,6 +1,6 @@
/* /*
* Copyright (c) 2014-2021 The Linux Foundation. All rights reserved. * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
* *
* Permission to use, copy, modify, and/or distribute this software for * Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the * any purpose with or without fee is hereby granted, provided that the
@@ -198,7 +198,7 @@ void qdf_mem_free_debug(void *ptr, const char *file, uint32_t line);
void qdf_mem_multi_pages_alloc_debug(qdf_device_t osdev, void qdf_mem_multi_pages_alloc_debug(qdf_device_t osdev,
struct qdf_mem_multi_page_t *pages, struct qdf_mem_multi_page_t *pages,
size_t element_size, uint16_t element_num, size_t element_size, uint32_t element_num,
qdf_dma_context_t memctxt, bool cacheable, qdf_dma_context_t memctxt, bool cacheable,
const char *func, uint32_t line, const char *func, uint32_t line,
void *caller); void *caller);
@@ -354,7 +354,7 @@ static inline void qdf_mem_check_for_leaks(void) { }
void qdf_mem_multi_pages_alloc(qdf_device_t osdev, void qdf_mem_multi_pages_alloc(qdf_device_t osdev,
struct qdf_mem_multi_page_t *pages, struct qdf_mem_multi_page_t *pages,
size_t element_size, uint16_t element_num, size_t element_size, uint32_t element_num,
qdf_dma_context_t memctxt, bool cacheable); qdf_dma_context_t memctxt, bool cacheable);
void qdf_mem_multi_pages_free(qdf_device_t osdev, void qdf_mem_multi_pages_free(qdf_device_t osdev,

Voir le fichier

@@ -1,6 +1,6 @@
/* /*
* Copyright (c) 2014-2021 The Linux Foundation. All rights reserved. * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
* *
* Permission to use, copy, modify, and/or distribute this software for * Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the * any purpose with or without fee is hereby granted, provided that the
@@ -1787,7 +1787,7 @@ void qdf_mem_check_for_leaks(void)
*/ */
void qdf_mem_multi_pages_alloc_debug(qdf_device_t osdev, void qdf_mem_multi_pages_alloc_debug(qdf_device_t osdev,
struct qdf_mem_multi_page_t *pages, struct qdf_mem_multi_page_t *pages,
size_t element_size, uint16_t element_num, size_t element_size, uint32_t element_num,
qdf_dma_context_t memctxt, bool cacheable, qdf_dma_context_t memctxt, bool cacheable,
const char *func, uint32_t line, const char *func, uint32_t line,
void *caller) void *caller)
@@ -1978,7 +1978,7 @@ qdf_export_symbol(qdf_mem_malloc_atomic_fl);
*/ */
void qdf_mem_multi_pages_alloc(qdf_device_t osdev, void qdf_mem_multi_pages_alloc(qdf_device_t osdev,
struct qdf_mem_multi_page_t *pages, struct qdf_mem_multi_page_t *pages,
size_t element_size, uint16_t element_num, size_t element_size, uint32_t element_num,
qdf_dma_context_t memctxt, bool cacheable) qdf_dma_context_t memctxt, bool cacheable)
{ {
uint16_t page_idx; uint16_t page_idx;