From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 186AC1B1A8 for ; Wed, 24 Jan 2018 16:40:14 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B022B226D0; Wed, 24 Jan 2018 10:40:13 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 24 Jan 2018 10:40:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=Mg6FBfgtyMxRqfPIG 0GqMHxPHJv+5z6QL0WORZe1ou0=; b=WG9hot+d26HbXaC8v2Zi9T5FUR8G64q0M qqHnWPm5g4btjgo7zU+2TKoqoM+9Wsgf+7e6nllup6HP2evaRJ6xaZrVoJRHhTSk 98Bqj6Ek/WOidKGz17O8/xv6ERhyuSwh+su7mcCXhwRmVJqlY09I5AS/fEvs3XsX SAPlrqrD7c3yvA2FzqY3SdF1UtayX4kPp1DFKip6DfzvoLQNhKtL7YvN8HE5T46p v/BVwlLZv4yEao9Ssa0fu6nI9Kqy/w/sUqAfZBK2VCWGVirkI+hFxBayghrNDqeY lpltbT42WcH8dDqv60DT8f07UKLbZgGGneEF564xmL2UQwQ0WYBuA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=Mg6FBfgtyMxRqfPIG0GqMHxPHJv+5z6QL0WORZe1ou0=; b=CdaRLMGY Xv7WGNdrc9hrckmhZoNCQTclkAkjOjCYQsX2IHhDX+4lIxLreTnNGTHEfmfk2wmh uWOgpDIAEHZkDfz5H3BF6hmUoNE7xv1h7qMOopAk13HV4UaJwGUy2xlSL8uegw+e i+qy/4asljKnz58HLlvf6xyCu/xyVSfeaviooAeRoMDa/4OrnNNh5Q9PQH7DGHgt HeLHQdh2XaPtSjR4N6aOyHh7tefEXcTjX6bdNajTmTlflb6z4fHC4OW1iMa7Fw3H +fkVau3ThHOCDCf+5+CvhmPPb9wKphics96RnfJzWGlFxxFYz6Ns4ooVAFprTWZi wlDzriCa63Mh3g== X-ME-Sender: Received: from localhost.localdomain (unknown [115.150.27.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 36BB27E1A2; Wed, 24 Jan 2018 10:40:10 -0500 (EST) From: Yuanhan Liu To: Stephen Hemminger Cc: Stephen Hemminger , Ferruh Yigit , dpdk stable Date: Wed, 24 Jan 2018 23:32:45 +0800 Message-Id: <1516808026-25523-97-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> References: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'net/tap: remove unused kernel version definitions' has been queued to LTS release 17.11.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jan 2018 15:40:14 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 01/26/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 978fab1f55ca2461d3877a467515abd5c189af19 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 27 Dec 2017 10:28:36 -0800 Subject: [PATCH] net/tap: remove unused kernel version definitions [ upstream commit d732ec19dcad45070c85e5b43aca95b2d49ec8a6 ] The TAP device does not use these definitions in current version. And kernel version is not the correct way to detect features. Fixes: 7c2d03d65f5e ("net/tap: remove Linux version check") Signed-off-by: Stephen Hemminger Reviewed-by: Ferruh Yigit --- drivers/net/tap/rte_eth_tap.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index fdb77c1..036028f 100644 --- a/drivers/net/tap/rte_eth_tap.c +++ b/drivers/net/tap/rte_eth_tap.c @@ -60,7 +60,6 @@ #include #include #include -#include #include #include @@ -78,9 +77,6 @@ #define ETH_TAP_MAC_ARG "mac" #define ETH_TAP_MAC_FIXED "fixed" -#define FLOWER_KERNEL_VERSION KERNEL_VERSION(4, 2, 0) -#define FLOWER_VLAN_KERNEL_VERSION KERNEL_VERSION(4, 9, 0) - static struct rte_vdev_driver pmd_tap_drv; static const char *valid_arguments[] = { -- 2.7.4