On Tue, Jan 17, 2017 at 11:35:53AM +0100, Olivier Matz wrote: > + host_features = hw->vtpci_ops->get_features(hw);
Note that hw->vtpci_ops doesn't exist any more, due to fixing the virtio
multiple process bugs. I changed it to:
host_features = VTPCI_OPS(hw)->get_features(hw);
And applied to dpdk-next-virtio.
Thanks.
--yliu

