From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id E47CE1B74A for ; Wed, 31 Jan 2018 12:12:39 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 73C2320B93; Wed, 31 Jan 2018 06:12:39 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 31 Jan 2018 06:12:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=jN7544Y/NYYDmECVhuj4EGvPhf 4jNL00aJYG/kRnO4I=; b=gYDr3DgZFvGihNQbmzzINJ4ZZlkGIsDxOos/ewkmGs F+zI5OUWkmqgDhyB3p5LsfbyoxzYLUSBF2J4jZTqTfo3tOLrYB+cFrSSuqi6toam JZ0yBrthGDwSvwA1pZt5ZFya/0tBTvCNWcWRUdXTPPYNX0ZlIqvgcG0+oCcgbsP/ 4= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=jN7544 Y/NYYDmECVhuj4EGvPhf4jNL00aJYG/kRnO4I=; b=JoLaaIUn9g37/NgRExkz74 hJSgYQt0AxXOUMPV04kt+XwHWPDNDoJdMKPk34so7sGwlakbA47vYjXbwIZmdVCq qVCKuixf3BpaawiCUkmJh2ev17Gv70sEKNPXBt8FRb0aaHHSm8JMcE41uhfpAImO szzNKAv7dNeNQf/1Y+C3/2yFlbzVZ0Wr7tuqg+GUzkbtOSAFxcYygjCEUZbujRLK cfchgtJU5D14SbzK66xr315Sm1vA2RTlaPup6NOD+ba8t0VesNJvTFWOaPGQ06m5 +2et120SZgpOhqv8KWBLm9Qdye7nVcqNRVhn3/FlIyj3XOHeWstIOzJ9B4AnBhFA == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 17BB67E3FA; Wed, 31 Jan 2018 06:12:39 -0500 (EST) From: Thomas Monjalon To: Zhihong Wang Cc: dev@dpdk.org, Jerin Jacob , Maxime Coquelin , yliu@fridaylinux.org, jianfeng.tan@intel.com Date: Wed, 31 Jan 2018 12:11:53 +0100 Message-ID: <1724337.z8UajUIRIT@xps> In-Reply-To: <20180131093241.GA23724@jerin> References: <1517408457-17271-1-git-send-email-zhihong.wang@intel.com> <38636143-a2bd-188e-ccd8-c60ad08c30e3@redhat.com> <20180131093241.GA23724@jerin> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] vhost: fix ANY_LAYOUT definition for old kernels 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: Wed, 31 Jan 2018 11:12:40 -0000 > > > This patch fixes compile failure with old kernels which have no > > > VIRTIO_F_ANY_LAYOUT defined. > > > > > > Signed-off-by: Zhihong Wang > > > --- > > > lib/librte_vhost/vhost.h | 4 ++++ > > > 1 file changed, 4 insertions(+) > > > > Reviewed-by: Maxime Coquelin > > Cc: Thomas Monjalon > > This fixes a cross compilation issue with arm64 too. > > Tested-by: Jerin Jacob Fixes: 5a8bb6e9020f ("vhost: claim to support any layout feature") Applied, thanks