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 46223C43458 for ; Tue, 7 Jul 2026 12:45:56 +0000 (UTC) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 28E4F40A84; Tue, 7 Jul 2026 14:45:37 +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 7B7CE40264 for ; Tue, 7 Jul 2026 14:45:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1783428334; 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=fIjKAXA4aEy5lI8YobUoNiZEAkJ3cSq+S0bdaxZ7ZYs=; b=i5VSnfiJVhKzeLgKMsbjsIbMHmFeT9quYameO4JjaN47gXxTh2mCKQa/7w+WT9R3m+Nuvs oFHXCU2Z5FsBALF1n9rYFb0iOIr56w6CGNbtl4vg7cScB9BL6THaS7RsQffjhBPaAAOMPM HXAtNCUmhjHFQpniWXpt3R5Hve4Hw/U= Received: from mx-prod-mc-03.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-446-ZrWEypmTOzuGgnfFu7GNlQ-1; Tue, 07 Jul 2026 08:45:32 -0400 X-MC-Unique: ZrWEypmTOzuGgnfFu7GNlQ-1 X-Mimecast-MFC-AGG-ID: ZrWEypmTOzuGgnfFu7GNlQ_1783428331 Received: from mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.93]) (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-03.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 85E0A1954B2B; Tue, 7 Jul 2026 12:45:31 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.44.48.55]) by mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 1808818005B7; Tue, 7 Jul 2026 12:45:28 +0000 (UTC) From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= To: Maxime Coquelin Cc: Yongji Xie , david.marchand@redhat.com, dev@dpdk.org, mst@redhat.com, jasowangio@gmail.com, chenbox@nvidia.com Subject: [RFC v4 06/11] vhost: claim VDUSE support for API version 1 Date: Tue, 7 Jul 2026 14:45:02 +0200 Message-ID: <20260707124507.251729-7-eperezma@redhat.com> In-Reply-To: <20260707124507.251729-1-eperezma@redhat.com> References: <20260707124507.251729-1-eperezma@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.93 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: mtzY8hUHPUWgwuXn5PMS8T3iIxFRmRNpyGPyfWmFBkQ_1783428331 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 27609f28c1a3..cac1956fbc03 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.55.0