qcacld-3.0: components: Remove logs for qdf_mem_malloc() checks
qdf_mem_malloc() function already takes care of logging the caller function name and line number in case of any allocation error. Hence there is no need to add the error log again. Getting rid of these unnecessary logs reduces driver memory footprint. Change-Id: If0b9425f82f9ed793c7639c0ed09eb1f868b6d5c CRs-Fixed: 2781932
This commit is contained in:

committed by
snandini

parent
ecee02da1d
commit
d36054fbd2
@@ -158,10 +158,8 @@ static void wlan_ipa_uc_loaded_uc_cb(void *priv_ctxt)
|
||||
}
|
||||
|
||||
msg = qdf_mem_malloc(sizeof(*msg));
|
||||
if (!msg) {
|
||||
ipa_err("op_msg allocation fails");
|
||||
if (!msg)
|
||||
return;
|
||||
}
|
||||
|
||||
msg->op_code = WLAN_IPA_UC_OPCODE_UC_READY;
|
||||
|
||||
@@ -456,10 +454,8 @@ wlan_ipa_wdi_setup(struct wlan_ipa_priv *ipa_ctx,
|
||||
QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
|
||||
|
||||
sys_in = qdf_mem_malloc(sizeof(*sys_in) * WLAN_IPA_MAX_IFACE);
|
||||
if (!sys_in) {
|
||||
ipa_err("sys_in allocation failed");
|
||||
if (!sys_in)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
for (i = 0; i < WLAN_IPA_MAX_IFACE; i++)
|
||||
qdf_mem_copy(sys_in + i,
|
||||
@@ -1884,11 +1880,8 @@ static QDF_STATUS wlan_ipa_send_msg(qdf_netdev_t net_dev,
|
||||
QDF_IPA_MSG_META_MSG_LEN(&meta) = sizeof(qdf_ipa_wlan_msg_t);
|
||||
|
||||
msg = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta));
|
||||
|
||||
if (!msg) {
|
||||
ipa_err("msg allocation failed");
|
||||
if (!msg)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
QDF_IPA_SET_META_MSG_TYPE(&meta, type);
|
||||
strlcpy(QDF_IPA_WLAN_MSG_NAME(msg), net_dev->name, IPA_RESOURCE_NAME_MAX);
|
||||
@@ -2028,7 +2021,6 @@ static QDF_STATUS __wlan_ipa_wlan_evt(qdf_netdev_t net_dev, uint8_t device_mode,
|
||||
}
|
||||
|
||||
if (!pending_event) {
|
||||
ipa_err("Pending event memory alloc fail");
|
||||
qdf_mutex_release(&ipa_ctx->ipa_lock);
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
@@ -2384,11 +2376,9 @@ static QDF_STATUS __wlan_ipa_wlan_evt(qdf_netdev_t net_dev, uint8_t device_mode,
|
||||
(sizeof(qdf_ipa_wlan_msg_ex_t) +
|
||||
sizeof(qdf_ipa_wlan_hdr_attrib_val_t));
|
||||
msg_ex = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta));
|
||||
|
||||
if (!msg_ex) {
|
||||
ipa_err("msg_ex allocation failed");
|
||||
if (!msg_ex)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
strlcpy(msg_ex->name, net_dev->name,
|
||||
IPA_RESOURCE_NAME_MAX);
|
||||
msg_ex->num_of_attribs = 1;
|
||||
@@ -2503,10 +2493,8 @@ static QDF_STATUS __wlan_ipa_wlan_evt(qdf_netdev_t net_dev, uint8_t device_mode,
|
||||
|
||||
QDF_IPA_MSG_META_MSG_LEN(&meta) = sizeof(qdf_ipa_wlan_msg_t);
|
||||
msg = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta));
|
||||
if (!msg) {
|
||||
ipa_err("msg allocation failed");
|
||||
if (!msg)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
QDF_IPA_SET_META_MSG_TYPE(&meta, type);
|
||||
strlcpy(QDF_IPA_WLAN_MSG_NAME(msg), net_dev->name,
|
||||
@@ -2701,11 +2689,8 @@ wlan_ipa_alloc_tx_desc_free_list(struct wlan_ipa_priv *ipa_ctx)
|
||||
|
||||
ipa_ctx->tx_desc_pool = qdf_mem_malloc(sizeof(struct wlan_ipa_tx_desc) *
|
||||
max_desc_cnt);
|
||||
|
||||
if (!ipa_ctx->tx_desc_pool) {
|
||||
ipa_err("Free Tx descriptor allocation failed");
|
||||
if (!ipa_ctx->tx_desc_pool)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
qdf_list_create(&ipa_ctx->tx_desc_free_list, max_desc_cnt);
|
||||
|
||||
@@ -2836,10 +2821,8 @@ static QDF_STATUS wlan_ipa_uc_send_wdi_control_msg(bool ctrl)
|
||||
/* WDI enable message to IPA */
|
||||
QDF_IPA_MSG_META_MSG_LEN(&meta) = sizeof(*ipa_msg);
|
||||
ipa_msg = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta));
|
||||
if (!ipa_msg) {
|
||||
ipa_err("msg allocation failed");
|
||||
if (!ipa_msg)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
if (ctrl) {
|
||||
QDF_IPA_SET_META_MSG_TYPE(&meta, QDF_WDI_ENABLE);
|
||||
@@ -2994,10 +2977,8 @@ QDF_STATUS wlan_ipa_send_mcc_scc_msg(struct wlan_ipa_priv *ipa_ctx,
|
||||
/* Send SCC/MCC Switching event to IPA */
|
||||
QDF_IPA_MSG_META_MSG_LEN(&meta) = sizeof(*msg);
|
||||
msg = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta));
|
||||
if (!msg) {
|
||||
ipa_err("msg allocation failed");
|
||||
if (!msg)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
if (mcc_mode) {
|
||||
QDF_IPA_SET_META_MSG_TYPE(&meta, QDF_SWITCH_TO_MCC);
|
||||
@@ -3682,10 +3663,8 @@ static QDF_STATUS wlan_ipa_uc_send_evt(qdf_netdev_t net_dev,
|
||||
|
||||
QDF_IPA_MSG_META_MSG_LEN(&meta) = sizeof(qdf_ipa_wlan_msg_t);
|
||||
msg = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta));
|
||||
if (!msg) {
|
||||
ipa_err("msg allocation failed");
|
||||
if (!msg)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
QDF_IPA_SET_META_MSG_TYPE(&meta, type);
|
||||
qdf_str_lcopy(QDF_IPA_WLAN_MSG_NAME(msg), net_dev->name,
|
||||
@@ -3793,10 +3772,8 @@ void wlan_ipa_fw_rejuvenate_send_msg(struct wlan_ipa_priv *ipa_ctx)
|
||||
|
||||
meta.msg_len = sizeof(*msg);
|
||||
msg = qdf_mem_malloc(meta.msg_len);
|
||||
if (!msg) {
|
||||
ipa_debug("msg allocation failed");
|
||||
if (!msg)
|
||||
return;
|
||||
}
|
||||
|
||||
QDF_IPA_SET_META_MSG_TYPE(&meta, QDF_FWR_SSR_BEFORE_SHUTDOWN);
|
||||
ipa_debug("ipa_send_msg(Evt:%d)",
|
||||
|
@@ -47,10 +47,8 @@ QDF_STATUS ipa_config_mem_alloc(void)
|
||||
return QDF_STATUS_SUCCESS;
|
||||
|
||||
ipa_cfg = qdf_mem_malloc(sizeof(*ipa_cfg));
|
||||
if (!ipa_cfg) {
|
||||
ipa_err("Failed to allocate memory for ipa config");
|
||||
if (!ipa_cfg)
|
||||
return QDF_STATUS_E_NOMEM;
|
||||
}
|
||||
|
||||
g_ipa_config = ipa_cfg;
|
||||
|
||||
|
Reference in New Issue
Block a user