From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiayu Hu Subject: [PATCH] net/virtio-user: fix feature setting with vhost-net backend Date: Mon, 7 May 2018 14:50:06 +0800 Message-ID: <1525675806-22387-1-git-send-email-jiayu.hu@intel.com> Cc: zhiyong.yang@intel.com, maxime.coquelin@redhat.com, Jiayu Hu To: dev@dpdk.org Return-path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 63F7023B for ; Mon, 7 May 2018 08:43:01 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Currently, when the backend is vhost-net, which implies virtio-user works in client mode, virtio-user is assigned to the default feature VIRTIO_USER_SUPPORTED_FEATURES. However, virtio-user should request features from the backend in this case. Fixes: bd8f50a45d0f ("net/virtio-user: support server mode") Signed-off-by: Jiayu Hu --- drivers/net/virtio/virtio_user/virtio_user_dev.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c index 38b8bc9..f745163 100644 --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c @@ -353,20 +353,22 @@ virtio_user_dev_init(struct virtio_user_dev *dev, char *path, int queues, return -1; } - if (dev->vhostfd >= 0) { + if (!dev->is_server) { if (dev->ops->send_request(dev, VHOST_USER_SET_OWNER, - NULL) < 0) { + NULL) < 0) { PMD_INIT_LOG(ERR, "set_owner fails: %s", - strerror(errno)); + strerror(errno)); return -1; } if (dev->ops->send_request(dev, VHOST_USER_GET_FEATURES, - &dev->device_features) < 0) { + &dev->device_features) < 0) { PMD_INIT_LOG(ERR, "get_features failed: %s", - strerror(errno)); + strerror(errno)); return -1; } + if (dev->mac_specified) + dev->device_features |= (1ull << VIRTIO_NET_F_MAC); } else { /* We just pretend vhost-user can support all these features. * Note that this could be problematic that if some feature is @@ -376,9 +378,6 @@ virtio_user_dev_init(struct virtio_user_dev *dev, char *path, int queues, dev->device_features = VIRTIO_USER_SUPPORTED_FEATURES; } - if (dev->mac_specified) - dev->device_features |= (1ull << VIRTIO_NET_F_MAC); - if (cq) { /* device does not really need to know anything about CQ, * so if necessary, we just claim to support CQ -- 2.7.4