]> git.droids-corp.org - dpdk.git/commitdiff
vhost: fix MTU device feature check
authorMaxime Coquelin <maxime.coquelin@redhat.com>
Thu, 29 Jun 2017 07:58:10 +0000 (09:58 +0200)
committerYuanhan Liu <yliu@fridaylinux.org>
Sat, 1 Jul 2017 23:39:29 +0000 (01:39 +0200)
The MTU feature support check has to be done against MTU
feature bit mask, and not bit position.

Fixes: 72e8543093df ("vhost: add API to get MTU value")
Cc: stable@dpdk.org
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Reviewed-by: Jianfeng Tan <jianfeng.tan@intel.com>
Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
lib/librte_vhost/vhost.c

index 19c5a43a51b3e89b85aa8a1bdd82996c3c03592e..653152fc7d39a1a388dc49cdebb1a93d948e7d31 100644 (file)
@@ -272,7 +272,7 @@ rte_vhost_get_mtu(int vid, uint16_t *mtu)
        if (!(dev->flags & VIRTIO_DEV_READY))
                return -EAGAIN;
 
-       if (!(dev->features & VIRTIO_NET_F_MTU))
+       if (!(dev->features & (1ULL << VIRTIO_NET_F_MTU)))
                return -ENOTSUP;
 
        *mtu = dev->mtu;