From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailnew.nyi.internal (Postfix) with ESMTP id 922EFC83; Sun, 8 Oct 2017 22:55:06 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Sun, 08 Oct 2017 22:55:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=uGIau86EgapUbZ8RA1RZv8B2WdPERn64vB7KLmahN qM=; b=BjkuYRAULfJw4ipRmyprPCmmljOu+8bcykYT5sQvN7pkRVLAm1VJPo/8l l9/rQJ/vTndlXoTZLQJqEtUussQ3L/G3ENQiulnjvGguU9emahnAqhdR1Sbxn4o9 cJIyd+To57M6Okkx5DzR319ee5VBwTIJb7kXzfIPyQPmLtaVoUN5Hkc78BDnEaur mtonuvdnLzuEY+PNEiD9TDnmHlxFKIqPwKDYLgcqXsEiXa5RrOe1lD7t9IpY71ml lPpUq7IClqcaUavGWlqYHgOba1kectzBUVUsCD3039DMCfJGYbF6Wemn0rr3/kwb SD9fZTwOnWjmfWVyeqVhuMaUPDFdA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=uGIau86EgapUbZ8RA1 RZv8B2WdPERn64vB7KLmahNqM=; b=Ba6SBN/0TFWHAsm6UjlnR7AjXg+0jeHIBy JpHbfO6CodqAInRPmz/WoUUD+UZrrsN6ndg8ow8nVvxZfAI/xpfxsLPdhV22STT1 crm70wyVBdB2hBN8jaLu87ioHrk9KF65tjtU/vj7MnveRdZa8p4QG8wf0X/euj3/ QagrDll/cPa5rY613GEJo0y9duVm/LGWcIazgMTOZQIYtwO7Diao6I6OQnDB8xEC 40zIwGv4vPh9aDHAdhNTuLomO5z1zO9bbvsdrVS8ziA2E7blipeldw9TlwHtcp9F 7e6rnJ64NBTHwPuy/H0LmblgW8HpHeMVNq2C3/Qs3ChBDQHA6cvg== X-ME-Sender: X-Sasl-enc: qcZRt2yggpYbMXeIH09HMcPcYbF2sDBGZwMxh2f81hrw 1507517705 Received: from yliu-home (unknown [222.64.136.243]) by mail.messagingengine.com (Postfix) with ESMTPA id 7414A24772; Sun, 8 Oct 2017 22:55:05 -0400 (EDT) Date: Mon, 9 Oct 2017 10:55:02 +0800 From: Yuanhan Liu To: Thomas Monjalon Cc: olivier.matz@6wind.com, maxime.coquelin@redhat.com, dev@dpdk.org 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 Content-Disposition: inline In-Reply-To: <1963011.gX7c8kfyiN@xps> User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [dpdk-dev] [git pull] virtio changes for 17.11-rc1 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Oct 2017 02:55:07 -0000 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