From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2BF9DFD4F19 for ; Tue, 10 Mar 2026 19:17:39 +0000 (UTC) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B318140E16; Tue, 10 Mar 2026 20:17:14 +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 B5D1240E39 for ; Tue, 10 Mar 2026 20:17:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1773170232; 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=l3IpC9XR7b/hOeVa4dSJzIBfxfc4ub4+4aA88Uh/Zf8=; b=d6oRtfL9GR9YM/5JIdiE2zm6tcV5zQ5MyHSceFxJP225BSOs9g9okFNVAaAGSaPSjnUHZE Tz4tzoFHe7yuNW3A9BRI076mUJN4CG1Y/Q5b+HXNyCU8I1D9eEZjyCuYPpG4omxi7DNnDS L1XiRWBBUwxefQGVyhtqacH73Zj31Hw= Received: from mx-prod-mc-08.mail-002.prod.us-west-2.aws.redhat.com (ec2-35-165-154-97.us-west-2.compute.amazonaws.com [35.165.154.97]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-381-4E7ytr8nNKK_nUNqIbw_0A-1; Tue, 10 Mar 2026 15:17:11 -0400 X-MC-Unique: 4E7ytr8nNKK_nUNqIbw_0A-1 X-Mimecast-MFC-AGG-ID: 4E7ytr8nNKK_nUNqIbw_0A_1773170230 Received: from mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.17]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-08.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id ECFFF18002D0; Tue, 10 Mar 2026 19:17:09 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.44.32.202]) by mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 36D641956095; Tue, 10 Mar 2026 19:17:06 +0000 (UTC) From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= To: Maxime Coquelin Cc: david.marchand@redhat.com, mst@redhat.com, chenbox@nvidia.com, Yongji Xie , jasowang@redhat.com, dev@dpdk.org Subject: [RFC v2 06/10] vhost: claim VDUSE support for API version 1 Date: Tue, 10 Mar 2026 20:16:41 +0100 Message-ID: <20260310191645.1104892-7-eperezma@redhat.com> In-Reply-To: <20260310191645.1104892-1-eperezma@redhat.com> References: <20260310191645.1104892-1-eperezma@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.0 on 10.30.177.17 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: YR4QctOkNY_dq12SKRS-Efg0ASfiUW_kWfV29qrY3dE_1773170230 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 From: Maxime Coquelin Signed-off-by: Maxime Coquelin Signed-off-by: Eugenio Pérez --- lib/vhost/vduse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vhost/vduse.c b/lib/vhost/vduse.c index 4e1920f9441e..80020d3d5413 100644 --- a/lib/vhost/vduse.c +++ b/lib/vhost/vduse.c @@ -25,7 +25,7 @@ #include "vhost.h" #include "virtio_net_ctrl.h" -#define VHOST_VDUSE_API_VERSION 0ULL +#define VHOST_VDUSE_API_VERSION 1ULL #define VDUSE_CTRL_PATH "/dev/vduse/control" struct vduse { -- 2.53.0