From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6DE6DA0564; Sat, 7 Mar 2020 14:35:28 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A72841BFF7; Sat, 7 Mar 2020 14:35:22 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id C51741BFF0; Sat, 7 Mar 2020 14:35:19 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Mar 2020 05:35:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,526,1574150400"; d="scan'208";a="352980477" Received: from dpdk_yexl_af_xdp.sh.intel.com ([10.67.119.201]) by fmsmga001.fm.intel.com with ESMTP; 07 Mar 2020 05:35:17 -0800 From: Xiaolong Ye To: maxime.coquelin@redhat.com, Tiwei Bie , Zhihong Wang Cc: dev@dpdk.org, Xiaolong Ye , stable@dpdk.org Date: Sat, 7 Mar 2020 21:22:35 +0800 Message-Id: <20200307132235.210168-3-xiaolong.ye@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200307132235.210168-1-xiaolong.ye@intel.com> References: <20200307132235.210168-1-xiaolong.ye@intel.com> Subject: [dpdk-dev] [PATCH v1 2/2] vhost: remove unused variable 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" VHOST_FEATURES has been removed in previous refactor. Fixes: 0917f9d1f059 ("vhost: use new APIs to handle features") Cc: stable@dpdk.org Signed-off-by: Xiaolong Ye --- lib/librte_vhost/vhost.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/librte_vhost/vhost.h b/lib/librte_vhost/vhost.h index 2087d1400..507dbf214 100644 --- a/lib/librte_vhost/vhost.h +++ b/lib/librte_vhost/vhost.h @@ -543,7 +543,6 @@ extern int vhost_data_log_level; #define PRINT_PACKET(device, addr, size, header) do {} while (0) #endif -extern uint64_t VHOST_FEATURES; #define MAX_VHOST_DEVICE 1024 extern struct virtio_net *vhost_devices[MAX_VHOST_DEVICE]; -- 2.17.1