On 10/09/2017 04:55 AM, Yuanhan Liu wrote:
On Sat, Oct 07, 2017 at 04:37:53PM +0200, Thomas Monjalon wrote:
06/10/2017 08:45, Yuanhan Liu:
Hi Thomas,
Please consider pulling following virtio changes for 17.11-rc1 at
git://dpdk.org/next/dpdk-next-virtio master
There is a compilation error on ARM with
"net/virtio: rationalize setting of Rx/Tx handlers"
An include of rte_cpuflags.h is missing.
There is also an error seen by clang in
"vhost-user: add support to IOTLB miss slave requests"
implicit conversion from enumeration type 'enum VhostUserSlaveRequest'
to different enumeration type 'VhostUserRequest'
This last error may be a real issue because VHOST_USER_SLAVE_IOTLB_MSG in
VhostUserSlaveRequest can be understood as VHOST_USER_GET_FEATURES in
VhostUserRequest.
It won't be an issue, as the vhost-user frontend can distinguish it:
the two different kind of messages are sent over by two different fd.
I agree this is not an issue.
Thanks,
Maxime