[dpdk-dev] [PATCH v3 5/8] vhost: claim that we support GUEST_ANNOUNCE feature

2016-03-11 Thread Olivier MATZ
On 03/11/2016 02:16 PM, Thomas Monjalon wrote: > 2016-03-11 13:39, Olivier MATZ: >> I'm trying to compile the dpdk on an debian-7, and it fails due >> to this patch. Indeed, the define VIRTIO_NET_F_GUEST_ANNOUNCE is >> not present in /usr/include/linux/virtio_net.h on this distribution. > > It w

[dpdk-dev] [PATCH v3 5/8] vhost: claim that we support GUEST_ANNOUNCE feature

2016-03-11 Thread Thomas Monjalon
2016-03-11 13:39, Olivier MATZ: > I'm trying to compile the dpdk on an debian-7, and it fails due > to this patch. Indeed, the define VIRTIO_NET_F_GUEST_ANNOUNCE is > not present in /usr/include/linux/virtio_net.h on this distribution. It will be fixed by this patch: http://dpdk.org/dev/patchwork/

[dpdk-dev] [PATCH v3 5/8] vhost: claim that we support GUEST_ANNOUNCE feature

2016-03-11 Thread Olivier MATZ
Hi Yuanhan, On 01/29/2016 05:58 AM, Yuanhan Liu wrote: > It's actually a feature already enabled in Linux kernel (since v3.5). > What we need to do is simply to claim that we support such feature, > and nothing else. > > With that, the guest will send an ARP message after live migration > to noti

[dpdk-dev] [PATCH v3 5/8] vhost: claim that we support GUEST_ANNOUNCE feature

2016-01-29 Thread Yuanhan Liu
It's actually a feature already enabled in Linux kernel (since v3.5). What we need to do is simply to claim that we support such feature, and nothing else. With that, the guest will send an ARP message after live migration to notify the switches about the new location of migrated VM. Signed-off-b