From patchwork Sat Apr 14 09:22:42 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhoujian (jay)" X-Patchwork-Id: 38099 X-Patchwork-Delegate: maxime.coquelin@redhat.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3AF121B75B; Sat, 14 Apr 2018 11:23:04 +0200 (CEST) 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 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" CC: Zhihong Wang Fixes: 8b991d412e (vhost: support selective datapath) Signed-off-by: Jay Zhou Reviewed-by: Maxime Coquelin --- 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']