From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from huawei.com (unknown [45.249.212.32]) by dpdk.org (Postfix) with ESMTP id BE6691B74E for ; Sat, 14 Apr 2018 11:23:02 +0200 (CEST) Received: from DGGEMS410-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 19A9F4F8C9766; Sat, 14 Apr 2018 17:22:57 +0800 (CST) Received: from localhost (10.177.19.14) by DGGEMS410-HUB.china.huawei.com (10.3.19.210) with Microsoft SMTP Server id 14.3.361.1; Sat, 14 Apr 2018 17:22:48 +0800 From: Jay Zhou To: CC: , , , , , , , Zhihong Wang Date: Sat, 14 Apr 2018 17:22:42 +0800 Message-ID: <1523697762-6548-1-git-send-email-jianjay.zhou@huawei.com> X-Mailer: git-send-email 2.6.1.windows.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.177.19.14] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [PATCH] vhost: fix meson build for vDPA 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: Sat, 14 Apr 2018 09:23:03 -0000 CC: Zhihong Wang Fixes: 8b991d412e (vhost: support selective datapath) Signed-off-by: Jay Zhou --- lib/librte_vhost/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_vhost/meson.build b/lib/librte_vhost/meson.build index 66cced1cb..b021894a0 100644 --- a/lib/librte_vhost/meson.build +++ b/lib/librte_vhost/meson.build @@ -10,6 +10,6 @@ endif version = 4 allow_experimental_apis = true sources = files('fd_man.c', 'iotlb.c', 'socket.c', 'vhost.c', 'vhost_user.c', - 'virtio_net.c', 'vhost_crypto.c') + 'virtio_net.c', 'vhost_crypto.c', 'vdpa.c') headers = files('rte_vhost.h', 'rte_vhost_crypto.h') deps += ['ethdev', 'cryptodev', 'hash', 'pci'] -- 2.14.2