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 D392041C5F; Fri, 10 Feb 2023 10:58:49 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6AE6E40EE6; Fri, 10 Feb 2023 10:58:49 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 6A7C140687 for ; Fri, 10 Feb 2023 10:58:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1676023127; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=jfAl2rfljgQPu6OgnKXrW8PTCmpHe4kcTJ0KmlZJUBQ=; b=I0nh0tbANNn9JFUYTP2PRnpEQ9wXPOTuNr+y135R5Q41eiSxrV6L7mx1EQm8yjM81bHP7b CqA/ruSudONehiGVe/EwT/oLT0+a+dbJgRoVbo+JGLu4o+c2s45EF8DX7f/eB1/rUETKSP AkAmD+w6ZgL77oMQjBrMkMQ/Zx8KKeg= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-263-vgxBtUhQPZ22Zt7XYbsB1Q-1; Fri, 10 Feb 2023 04:58:44 -0500 X-MC-Unique: vgxBtUhQPZ22Zt7XYbsB1Q-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 7FEB0185A7A4; Fri, 10 Feb 2023 09:58:44 +0000 (UTC) Received: from [10.39.208.26] (unknown [10.39.208.26]) by smtp.corp.redhat.com (Postfix) with ESMTPS id CEC47C16022; Fri, 10 Feb 2023 09:58:43 +0000 (UTC) Message-ID: Date: Fri, 10 Feb 2023 10:58:42 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Subject: Re: [PATCH v3 4/5] vhost: use logtype instead of RTE_LOGTYPE_USER1 To: Stephen Hemminger , dev@dpdk.org Cc: Chenbo Xia References: <20230208044825.1682620-1-stephen@networkplumber.org> <20230210002222.812379-1-stephen@networkplumber.org> <20230210002222.812379-5-stephen@networkplumber.org> From: Maxime Coquelin In-Reply-To: <20230210002222.812379-5-stephen@networkplumber.org> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 2/10/23 01:22, Stephen Hemminger wrote: > Fix instances of USER1 logtype in fdset and crypto > sections. > > Acked-by: Chenbo Xia > Signed-off-by: Stephen Hemminger > --- > lib/vhost/fd_man.c | 16 +++++++++------- > lib/vhost/vhost_crypto.c | 25 +++++++++++-------------- > 2 files changed, 20 insertions(+), 21 deletions(-) > Reviewed-by: Maxime Coquelin Thanks, Maxime