From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [git pull] virtio changes for 17.11-rc1 Date: Mon, 9 Oct 2017 10:55:02 +0800 Message-ID: <20171009025502.GJ1545@yliu-home> References: <20171006064558.GE1545@yliu-home> <1963011.gX7c8kfyiN@xps> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: olivier.matz@6wind.com, maxime.coquelin@redhat.com, dev@dpdk.org To: Thomas Monjalon Return-path: Received: from new2-smtp.messagingengine.com (new2-smtp.messagingengine.com [66.111.4.224]) by dpdk.org (Postfix) with ESMTP id 4ED22199A9 for ; Mon, 9 Oct 2017 04:55:07 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1963011.gX7c8kfyiN@xps> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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. --yliu