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 6065942E63; Thu, 13 Jul 2023 17:35:09 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3ED0F40DDB; Thu, 13 Jul 2023 17:35:09 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 3E47540DDA for ; Thu, 13 Jul 2023 17:35:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1689262507; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LXZ0j0ntYHlIIx+8xpY9aHREQ02/Ybr3jGy+JUApG0A=; b=JyKTawLJsDyrnkAL6CtRyLKN40qO6q+pS1ccxNpVWZcsjOF7hB31o1s0GenKJ1PIlFfqdZ WiSlWkjy2G75EAVqVo6tbKyQEJy3P7AYJsFzz+iLIiZQFxJa9lLc3ldIHQB2zImR703Ryd +lmL3aRUdlZWOXKRXLejQcl6fIbAgJY= 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-344-KH1tDto7PuCKbP5n9R_PvQ-1; Thu, 13 Jul 2023 11:35:05 -0400 X-MC-Unique: KH1tDto7PuCKbP5n9R_PvQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id B41A08C7B09; Thu, 13 Jul 2023 15:32:18 +0000 (UTC) Received: from [10.39.208.21] (unknown [10.39.208.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 777EE40C2070; Thu, 13 Jul 2023 15:32:17 +0000 (UTC) Message-ID: <0a005307-6306-10cd-da3c-ea7f09dfc8ea@redhat.com> Date: Thu, 13 Jul 2023 17:32:16 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0 Subject: Re: [PATCH v3 0/2] vduse: TSO & vIOMMU fixes To: dev@dpdk.org, david.marchand@redhat.com, thomas@monjalon.net, chenbo.xia@intel.com, aconole@redhat.com, ktraynor@redhat.com References: <20230713135240.240453-1-maxime.coquelin@redhat.com> From: Maxime Coquelin In-Reply-To: <20230713135240.240453-1-maxime.coquelin@redhat.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 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 7/13/23 15:52, Maxime Coquelin wrote: > This series contains two patches to fix TSO support > and enable vIOMMU by default as it is required by > VDUSE. > > Changes in v3: > ============== > - Ensure async copy cannot be enabled with VDUSE (Kevin) > > Changes in v2: > ============== > - Fix typo in commit message > - Fix build when VDUSE is not supported by the Kernel (0-day robot) > > Maxime Coquelin (2): > vhost: fix net offload compliance > vhost: force vIOMMU enablement with VDUSE > > lib/vhost/socket.c | 14 ++++++++------ > lib/vhost/vduse.c | 4 ++-- > lib/vhost/vduse.h | 6 ++++-- > 3 files changed, 14 insertions(+), 10 deletions(-) > Thanks for the review! Applied to dpdk-next-virtio/main. Maxime