From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B2A0AA034F; Sun, 21 Feb 2021 12:16:51 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E775B22A2A3; Sun, 21 Feb 2021 12:16:45 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 6268422A27C; Sun, 21 Feb 2021 12:16:44 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 11LBBKRE013144; Sun, 21 Feb 2021 03:16:43 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=5/P4JfkJ3MXfGmAtc8CbdjFnIl30W0eU667HKON97SI=; b=MNIvu9oAuEReI7F7Knkzwz7YF5ylgRA2m8NissICQr1Nvq4KK3W6b3X30oP7DR4QNUet 8rV54tatpTpiv//OHT8++81vtJwDZtpe6SvxTq/8u5ZcALvKz7PQRoxYadR8J+UAF4Ys 2CmlpA8mTURHBxWpAqpWZyaCAzo5NG7Jr77yFvpWiItpS4a7UP8v/KQf2TAMrkoDkqh7 NYsVpoFPruajpNTmkF/CV6tZ2oGLwMu3b9pw4Rg4zVm3GttXAEuXmGsPIWiiFTI08ptm Atf/p6iKHS4OoGdkAWwVCiDrIL6mEX1ihs5Kab2QG4HbKo6KrZOO/m8dUiUnNqY7uR0n Cg== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com with ESMTP id 36u0nw9t0q-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sun, 21 Feb 2021 03:16:43 -0800 Received: from SC-EXCH02.marvell.com (10.93.176.82) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 21 Feb 2021 03:16:42 -0800 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 21 Feb 2021 03:16:41 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Sun, 21 Feb 2021 03:16:41 -0800 Received: from EL-LT0043.marvell.com (unknown [10.193.38.106]) by maili.marvell.com (Postfix) with ESMTP id 6D4303F7041; Sun, 21 Feb 2021 03:16:40 -0800 (PST) From: Igor Russkikh To: CC: Rasesh Mody , Devendra Singh Rawat , Igor Russkikh , Date: Sun, 21 Feb 2021 12:16:36 +0100 Message-ID: <20210221111637.31193-2-irusskikh@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210221111637.31193-1-irusskikh@marvell.com> References: <20210221111637.31193-1-irusskikh@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369, 18.0.761 definitions=2021-02-21_03:2021-02-18, 2021-02-21 signatures=0 Subject: [dpdk-dev] [PATCH 1/2] qede: reduce trace verbosity level X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On some hardware units it was found this trace is flooding the output, making any dpdk interactive usage kind of problematic. It is only informational, without any consequences handling, so reducing it to verbose from explicit notice level. CC: stable@dpdk.org Signed-off-by: Igor Russkikh --- drivers/net/qede/base/ecore_int.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/qede/base/ecore_int.c b/drivers/net/qede/base/ecore_int.c index 4207b1853..2c4aac941 100644 --- a/drivers/net/qede/base/ecore_int.c +++ b/drivers/net/qede/base/ecore_int.c @@ -928,7 +928,7 @@ static void ecore_int_attn_print(struct ecore_hwfn *p_hwfn, bool b_clear) { /* @DPDK */ - DP_NOTICE(p_hwfn->p_dev, false, "[block_id %d type %d]\n", id, type); + DP_VERBOSE(p_hwfn, ECORE_MSG_INTR, "[block_id %d type %d]\n", id, type); } /** -- 2.25.1