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 5CB0C430C3; Mon, 21 Aug 2023 18:25:14 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4C70C40DF8; Mon, 21 Aug 2023 18:25:14 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 65CC540DF5 for ; Mon, 21 Aug 2023 18:25:12 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id CA3A0211FA3F; Mon, 21 Aug 2023 09:25:11 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com CA3A0211FA3F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1692635111; bh=uEdawoPGchR+WQt1VusccbjbGkKfHVRlsgzGGKrhyLM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZWUujI1iDR9Ppz/gZ8LGKf9oOnToiD/HrXqHtiIVOcVo596Tb6vDbThOQrM3lg2XB yfDOkoe/qJi9lNIvh/M8OATRrqo1S5Azl5HvJwHloIFC2KUjvivDwJpNMQ6t4I1uw5 ybGWAzSqadDUVvUzSO0W4rzVjtq7HXEzVdCSpjBA= Date: Mon, 21 Aug 2023 09:25:11 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, viacheslavo@nvidia.com, Matan Azrad , Ori Kam , Suanming Mou , Gregory Etelson Subject: Re: [PATCH v3] common/mlx5: replace use of PMD logtype Message-ID: <20230821162511.GC26145@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230223174127.189231-1-stephen@networkplumber.org> <20230821161625.413827-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230821161625.413827-1-stephen@networkplumber.org> User-Agent: Mutt/1.5.21 (2010-09-15) 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 On Mon, Aug 21, 2023 at 09:16:25AM -0700, Stephen Hemminger wrote: > The goal to eliminate the generic PMD logtype. > One place it is used unnecessarily is in the mlx5 common code. > Change the one RTE_LOG() call here to use the same macro > as other log messages in same file. > > Fixes: 9c410b28b27a ("common/mlx5: refactor HCA attributes query") > Cc: viacheslavo@nvidia.com > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff