Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f5fb691 authored by Vinod Kumar Pirla's avatar Vinod Kumar Pirla
Browse files

qcacld-3.0: Reduce log level of certain error logs

Reduce log level of a few error logs to reduce
excessive logging.

Change-Id: I3e93d033bc29a7dfee5c5ef18d52cded54fc1cbb
CRs-Fixed: 3035970
parent c240bb04
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2012-2018, 2020 The Linux Foundation. All rights reserved.
 * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
 *
 * Permission to use, copy, modify, and/or distribute this software for
 * any purpose with or without fee is hereby granted, provided that the
@@ -156,7 +157,7 @@ QDF_STATUS ucfg_action_oui_send(struct wlan_objmgr_psoc *psoc)
			continue;
		status = action_oui_send(psoc_priv, id);
		if (!QDF_IS_STATUS_SUCCESS(status))
			action_oui_err("Failed to send: %u", id);
			action_oui_debug("Failed to send: %u", id);
	}

exit:
+1 −1
Original line number Diff line number Diff line
@@ -601,7 +601,7 @@ void hdd_enable_ns_offload(struct hdd_adapter *adapter,
	/* cache ns request */
	status = ucfg_pmo_cache_ns_offload_req(ns_req);
	if (QDF_IS_STATUS_ERROR(status)) {
		hdd_err("Failed to cache ns request; status:%d", status);
		hdd_debug("Failed to cache ns request; status:%d", status);
		goto free_req;
	}

+2 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
 * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
 *
 * Permission to use, copy, modify, and/or distribute this software for
 * any purpose with or without fee is hereby granted, provided that the
@@ -1519,7 +1520,7 @@ static void lim_process_addba_req(struct mac_context *mac_ctx, uint8_t *rx_pkt_i
					WMI_MGMT_TX_COMP_TYPE_DISCARD);
		}
	} else {
		pe_err_rl("Failed to process addba request");
		pe_debug_rl("Failed to process addba request");
	}

error:
+3 −3
Original line number Diff line number Diff line
/*
 * Copyright (c) 2013-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
 * any purpose with or without fee is hereby granted, provided that the
@@ -2992,7 +2992,7 @@ int wma_peer_create_confirm_handler(void *handle, uint8_t *evt_param_info,
	req_msg = wma_find_remove_req_msgtype(wma, peer_create_rsp->vdev_id,
					      WMA_PEER_CREATE_REQ);
	if (!req_msg) {
		wma_err("vdev:%d Failed to lookup peer create request message",
		wma_debug("vdev:%d Failed to lookup peer create request msg",
			  peer_create_rsp->vdev_id);
		return -EINVAL;
	}