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 4488541CEC;
Mon, 20 Feb 2023 02:50:11 +0100 (CET)
Received: from mails.dpdk.org (localhost [127.0.0.1])
by mails.dpdk.org (Postfix) with ESMTP id C0BA942DB3;
Mon, 20 Feb 2023 02:50:10 +0100 (CET)
Received: from inbox.dpdk.org (inbox.dpdk.org [95.142.172.178])
by mails.dpdk.org (Postfix) with ESMTP id 87CA240691
for ; Mon, 20 Feb 2023 02:50:09 +0100 (CET)
Received: by inbox.dpdk.org (Postfix, from userid 33)
id 5CB9A41CED; Mon, 20 Feb 2023 02:50:09 +0100 (CET)
From: bugzilla@dpdk.org
To: dev@dpdk.org
Subject: =?UTF-8?B?W0J1ZyAxMTYxXSBbZHBkay0yMy4wM112aXJ0aW9fdXNlcl9hc19l?=
=?UTF-8?B?eGNlcHRpb25hbF9wYXRoL3Zob3N0X2V4Y2VwdGlvbl9wYXRoX3dpdGhfdmly?=
=?UTF-8?B?dGlvX3VzZXI6IGxhdW5jaCB0ZXN0cG1kIGFzIHZpcnRpby11c2VyIGZhaWxl?=
=?UTF-8?B?ZA==?=
Date: Mon, 20 Feb 2023 01:50:09 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: DPDK
X-Bugzilla-Component: vhost/virtio
X-Bugzilla-Version: 22.03
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: weix.ling@intel.com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: Normal
X-Bugzilla-Assigned-To: dev@dpdk.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID:
In-Reply-To:
References:
Content-Type: multipart/alternative; boundary=16768578090.bCfFEe.3911955
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://bugs.dpdk.org/
Auto-Submitted: auto-generated
X-Auto-Response-Suppress: All
MIME-Version: 1.0
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
--16768578090.bCfFEe.3911955
Date: Mon, 20 Feb 2023 02:50:09 +0100
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://bugs.dpdk.org/
Auto-Submitted: auto-generated
X-Auto-Response-Suppress: All
https://bugs.dpdk.org/show_bug.cgi?id=3D1161
lingwei (weix.ling@intel.com) changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|IN_PROGRESS |RESOLVED
Resolution|--- |FIXED
--- Comment #3 from lingwei (weix.ling@intel.com) ---
Patch have merged into the DPDK main branch.
Verified PASSED.
OS: Ubuntu 22.04.1 LTS/Linux 5.15.45-051545-generic
NIC hardware: Intel Ethernet Controller XL710 for 40GbE QSFP+ 1583
Driver/NIC firmware: i40e-2.22.8/firmware-version: 9.10 0x8000d01e 1.3295.0
commit be26e898ffb3a1719c88bf025d45a847d3a60ffc
Author: Maxime Coquelin
Date: Fri Feb 17 13:31:19 2023 +0100
net/virtio-user: fix vhost-kernel initialization
This patch fixes a regression causing devices with
Vhost-kernel backends initialization to fail.
Indeed, Vhost-kernel backend init expects
dev->max_queue_pairs to be set at setup time, while its
assignment was moved after backend setup when adding
control queue support for Vhost-vdpa backends.
It is safe to set dev->max_queue_pairs early for
Vhost-kernel backends as if the backend does not support
multiqueue, its setup will fail.
Bugzilla ID: 1161
Fixes: 7be724856315 ("net/virtio-user: get max number of queue pairs fr=
om
device")
Reported-by: Wei Ling
Signed-off-by: Maxime Coquelin
--=20
You are receiving this mail because:
You are the assignee for the bug.=
--16768578090.bCfFEe.3911955
Date: Mon, 20 Feb 2023 02:50:09 +0100
MIME-Version: 1.0
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://bugs.dpdk.org/
Auto-Submitted: auto-generated
X-Auto-Response-Suppress: All
lingwei changed
bug 1161
Patch have merged into the DPDK ma=
in branch.
Verified PASSED.
OS: Ubuntu 22.04.1 LTS/Linux 5.15.45-051545-generic
NIC hardware: Intel Ethernet Controller XL710 for 40GbE QSFP+ 1583
Driver/NIC firmware: i40e-2.22.8/firmware-version: 9.10 0x8000d01e 1.3295.0
commit be26e898ffb3a1719c88bf025d45a847d3a60ffc
Author: Maxime Coquelin <maxime.coquelin@redhat.com>
Date: Fri Feb 17 13:31:19 2023 +0100
net/virtio-user: fix vhost-kernel initialization
This patch fixes a regression causing devices with
Vhost-kernel backends initialization to fail.
Indeed, Vhost-kernel backend init expects
dev->max_queue_pairs to be set at setup time, while its
assignment was moved after backend setup when adding
control queue support for Vhost-vdpa backends.
It is safe to set dev->max_queue_pairs early for
Vhost-kernel backends as if the backend does not support
multiqueue, its setup will fail.
Bugzilla ID: 1161
Fixes: 7be724856315 ("net/virtio-user: get max number of queue pai=
rs from
device")
Reported-by: Wei Ling <we=
ix.ling@intel.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>