From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7D9F117B515; Fri, 27 Sep 2024 12:27:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727440053; cv=none; b=k8Xwbg5brogpSFd41yjE+yaGPrR02Y+q18LyuThOfF9Erv7Fj9oFwHKVAus7ua4DVRG+JQHnEDJHtUn+68Lc5L+KsBWiARG6dp3zWh2lqhNYNU0KZG6IeWnodX3BsLIlb4ScnNL4SmLvVpZhT15tuF1Qy63IPv5h9W2fMjqkB5k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727440053; c=relaxed/simple; bh=1zsFnrHYJAmv1mvT5X2K7G5THZnmKPDkN9/W6/tHK0s=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=IYgxa/AJWLYToJhs50qgW+d+ED+fRGGNwK81chfh1yWXTdehsPQajntqVdpHODUVlJCjqFMLWpreAlXWNjhVH8VUwZALuQ6KfU9G/Mo8+X6ZQOgQzmgbrITMrTWgjPbhJJHXYrf3lCUgpqLhl46xlW3pyhfHHfeeCMsjdSekIPw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YLTeKpLq; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="YLTeKpLq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0A971C4CEC4; Fri, 27 Sep 2024 12:27:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1727440053; bh=1zsFnrHYJAmv1mvT5X2K7G5THZnmKPDkN9/W6/tHK0s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YLTeKpLqIkPl/+7VTbJIV7v1ose+gkbUoLShKosktfp76GqB/to0suZFtLSxOR5P6 dLSMtyXlSRaZJKurdHuax09bObcFJLRY4JDfRLcT4VfAeijsh+GOsZNDX+fUqd+/1z lpqBpR+Lmu2Zi6wAw/U1+xyuc7ucmNr1fdaIw/cc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Len Brown , Benjamin Berg , Miri Korenblit , Johannes Berg , Sasha Levin Subject: [PATCH 6.10 16/58] wifi: iwlwifi: lower message level for FW buffer destination Date: Fri, 27 Sep 2024 14:23:18 +0200 Message-ID: <20240927121719.473357274@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20240927121718.789211866@linuxfoundation.org> References: <20240927121718.789211866@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Benjamin Berg [ Upstream commit f8a129c1e10256c785164ed5efa5d17d45fbd81b ] An invalid buffer destination is not a problem for the driver and it does not make sense to report it with the KERN_ERR message level. As such, change the message to use IWL_DEBUG_FW. Reported-by: Len Brown Closes: https://lore.kernel.org/r/CAJvTdKkcxJss=DM2sxgv_MR5BeZ4_OC-3ad6tA40TYH2yqHCWw@mail.gmail.com Signed-off-by: Benjamin Berg Signed-off-by: Miri Korenblit Link: https://patch.msgid.link/20240825191257.20abf78f05bc.Ifbcecc2ae9fb40b9698302507dcba8b922c8d856@changeid Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c b/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c index ebf11f276b20a..37f0bc9e0d963 100644 --- a/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c +++ b/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c @@ -89,7 +89,8 @@ iwl_pcie_ctxt_info_dbg_enable(struct iwl_trans *trans, } break; default: - IWL_ERR(trans, "WRT: Invalid buffer destination\n"); + IWL_DEBUG_FW(trans, "WRT: Invalid buffer destination (%d)\n", + le32_to_cpu(fw_mon_cfg->buf_location)); } out: if (dbg_flags) -- 2.43.0