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 2C366436B3; Sat, 9 Dec 2023 08:19:41 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CD5A4402F1; Sat, 9 Dec 2023 08:19:40 +0100 (CET) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id B2BAF402DF for ; Sat, 9 Dec 2023 08:19:39 +0100 (CET) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.53]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4SnKBs44wZz14Lmn; Sat, 9 Dec 2023 15:19:33 +0800 (CST) Received: from [10.67.121.161] (10.67.121.161) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.35; Sat, 9 Dec 2023 15:19:36 +0800 Subject: Re: [RFC v2 14/14] lib: use per line logging in helpers To: David Marchand , CC: , , , , , Nicolas Chautru , Konstantin Ananyev , Cristian Dumitrescu , Fan Zhang , Ashish Gupta , Akhil Goyal , Kevin Laatz , Andrew Rybchenko , Jerin Jacob , Erik Gabriel Carrillo , Elena Agostini , Kiran Kumar K , Nithin Dabilpuram , Zhirun Yan , Yipeng Wang , Sameh Gobriel , Srikanth Yalavarthi , Jasvinder Singh , Pavan Nikhilesh , Reshma Pattan , Anatoly Burakov , David Hunt , Sivaprasad Tummala , Sachin Saxena , Hemant Agrawal , Honnappa Nagarahalli , Ori Kam , Ciara Power , Maxime Coquelin , Chenbo Xia References: <20231117131824.1977792-1-david.marchand@redhat.com> <20231208145950.2184940-1-david.marchand@redhat.com> <20231208145950.2184940-15-david.marchand@redhat.com> From: fengchengwen Message-ID: Date: Sat, 9 Dec 2023 15:19:36 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20231208145950.2184940-15-david.marchand@redhat.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.121.161] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected 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 For lib/dmadev part Reviewed-by: Chengwen Feng On 2023/12/8 22:59, David Marchand wrote: > Use RTE_LOG_LINE in existing macros that append a \n. > > Signed-off-by: David Marchand > --- > Changes since RFC v1: > - converted all logging helpers in lib/, > > --- > lib/bbdev/rte_bbdev.c | 5 +++-- > lib/bpf/bpf_impl.h | 2 +- > lib/cfgfile/rte_cfgfile.c | 4 ++-- > lib/compressdev/rte_compressdev_internal.h | 5 +++-- > lib/cryptodev/rte_cryptodev.h | 16 +++++++--------- > lib/dmadev/rte_dmadev.c | 6 ++++-- > lib/ethdev/rte_ethdev.h | 3 +-- > lib/eventdev/eventdev_pmd.h | 8 ++++---- > lib/eventdev/rte_event_timer_adapter.c | 17 ++++++++++------- > lib/gpudev/gpudev.c | 6 ++++-- > lib/graph/graph_private.h | 5 +++-- > lib/member/member.h | 4 ++-- > lib/metrics/rte_metrics_telemetry.c | 4 ++-- > lib/mldev/rte_mldev.h | 5 +++-- > lib/net/rte_net_crc.c | 8 ++++---- > lib/node/node_private.h | 6 ++++-- > lib/pdump/rte_pdump.c | 5 ++--- > lib/power/power_common.h | 2 +- > lib/rawdev/rte_rawdev_pmd.h | 4 ++-- > lib/rcu/rte_rcu_qsbr.h | 8 +++----- > lib/regexdev/rte_regexdev.h | 3 +-- > lib/stack/stack_pvt.h | 4 ++-- > lib/telemetry/telemetry.c | 4 +--- > lib/vhost/vhost.h | 8 ++++---- > lib/vhost/vhost_crypto.c | 6 +++--- > 25 files changed, 76 insertions(+), 72 deletions(-) > ...