From patchwork Thu Feb 19 02:49:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tetsuya Mukawa X-Patchwork-Id: 3466 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 183C5B4F1; Thu, 19 Feb 2015 03:50:15 +0100 (CET) Received: from mail-pd0-f172.google.com (mail-pd0-f172.google.com [209.85.192.172]) by dpdk.org (Postfix) with ESMTP id 25EDEB4F8 for ; Thu, 19 Feb 2015 03:50:09 +0100 (CET) Received: by pdev10 with SMTP id v10so5580149pde.10 for ; Wed, 18 Feb 2015 18:50:08 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=pIXOZB8+OneZLpkbBw6O4I0zbzkHDVWU/2ik7SEL+uE=; b=gVmjZMiqD3tubI1HNT8p8gBI354jtZHb1LyLTO6nqMIp4oa2YxMYfljbnh0fOWkzRS k8ZSbkLorYZW6UNwFFFhCUC9ksFX9edk+vQggkOC8wlF+/efbGG4mFqKDP685wFi4/uy 32jaICEd8MbYfz2DJPnNzLyJ9UuS0iFs4opGUZgFqK1YPP7IR3ROucjx50lKT3VyOi6j OTCB4869byYF6VDnl8r9Oxf9lhMTg21FU7WWudmXWEIse9tw+ItDi/j8vGqTC/rvW1vK Kf/ZamLkito5h7flE60KFIOCB8H/RyLy+N7CP6WCYOUv7znmpakhZqXxkZOV69jQfeRU iWIw== X-Gm-Message-State: ALoCoQm8D0GxtCFtiB2BfCjGsHE+3PIDub68psMWpPkm6f+NXScW4IG9IKCBL+DtJzLKcMdEfUXW X-Received: by 10.68.133.198 with SMTP id pe6mr3517730pbb.119.1424314208509; Wed, 18 Feb 2015 18:50:08 -0800 (PST) Received: from localhost.localdomain (napt.igel.co.jp. [219.106.231.132]) by mx.google.com with ESMTPSA id iy1sm17860786pbb.14.2015.02.18.18.50.05 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 18 Feb 2015 18:50:07 -0800 (PST) From: Tetsuya Mukawa To: dev@dpdk.org Date: Thu, 19 Feb 2015 11:49:32 +0900 Message-Id: <1424314187-25177-2-git-send-email-mukawa@igel.co.jp> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1424314187-25177-1-git-send-email-mukawa@igel.co.jp> References: <1424060073-23484-12-git-send-email-mukawa@igel.co.jp> <1424314187-25177-1-git-send-email-mukawa@igel.co.jp> Subject: [dpdk-dev] [PATCH v9 01/14] eal: Enable port Hotplug framework in Linux X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The patch adds CONFIG_RTE_LIBRTE_EAL_HOTPLUG in Linux and BSD configuration. So far, Hotplug functions only support linux. v9: - Move this patch at the top of this patch series. (Thanks to Thomas Monjalon) Signed-off-by: Tetsuya Mukawa --- config/common_bsdapp | 6 ++++++ config/common_linuxapp | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/config/common_bsdapp b/config/common_bsdapp index 8cfa4e6..d73cbba 100644 --- a/config/common_bsdapp +++ b/config/common_bsdapp @@ -116,6 +116,12 @@ CONFIG_RTE_LIBRTE_EAL_BSDAPP=y CONFIG_RTE_LIBRTE_EAL_LINUXAPP=n # +# Compile Environment Abstraction Layer to support hotplug +# So far, Hotplug functions only support linux +# +CONFIG_RTE_LIBRTE_EAL_HOTPLUG=n + +# # Compile Environment Abstraction Layer to support Vmware TSC map # CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y diff --git a/config/common_linuxapp b/config/common_linuxapp index db8332d..a677071 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -114,6 +114,11 @@ CONFIG_RTE_PCI_MAX_READ_REQUEST_SIZE=0 CONFIG_RTE_LIBRTE_EAL_LINUXAPP=y # +# Compile Environment Abstraction Layer to support hotplug +# +CONFIG_RTE_LIBRTE_EAL_HOTPLUG=y + +# # Compile Environment Abstraction Layer to support Vmware TSC map # CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y