From patchwork Tue Jul 15 10:15:40 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Veaceslav Falico X-Patchwork-Id: 369948 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id BC8F2140110 for ; Tue, 15 Jul 2014 20:20:19 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758258AbaGOKUQ (ORCPT ); Tue, 15 Jul 2014 06:20:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10532 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758104AbaGOKUH (ORCPT ); Tue, 15 Jul 2014 06:20:07 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s6FAK3q6004859 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Tue, 15 Jul 2014 06:20:04 -0400 Received: from darkmag.usersys.redhat.com (dhcp-27-102.brq.redhat.com [10.34.27.102]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s6FAK0gP030616; Tue, 15 Jul 2014 06:20:02 -0400 From: Veaceslav Falico To: netdev@vger.kernel.org Cc: Veaceslav Falico , Jay Vosburgh , Andy Gospodarek , "David S. Miller" Subject: [PATCH net-next 1/2] bonding: create its own Kconfig Date: Tue, 15 Jul 2014 12:15:40 +0200 Message-Id: <1405419341-31510-2-git-send-email-vfalico@gmail.com> In-Reply-To: <1405419341-31510-1-git-send-email-vfalico@gmail.com> References: <1405419341-31510-1-git-send-email-vfalico@gmail.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org CC: Jay Vosburgh CC: Andy Gospodarek CC: "David S. Miller" Signed-off-by: Veaceslav Falico --- drivers/net/Kconfig | 18 +----------------- drivers/net/bonding/Kconfig | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 17 deletions(-) create mode 100644 drivers/net/bonding/Kconfig diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index c6f6f69..16b6b9c 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -37,23 +37,7 @@ config NET_CORE if NET_CORE -config BONDING - tristate "Bonding driver support" - depends on INET - depends on IPV6 || IPV6=n - ---help--- - Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet - Channels together. This is called 'Etherchannel' by Cisco, - 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux. - - The driver supports multiple bonding modes to allow for both high - performance and high availability operation. - - Refer to for more - information. - - To compile this driver as a module, choose M here: the module - will be called bonding. +source "drivers/net/bonding/Kconfig" config DUMMY tristate "Dummy net driver support" diff --git a/drivers/net/bonding/Kconfig b/drivers/net/bonding/Kconfig new file mode 100644 index 0000000..7b1a0fa --- /dev/null +++ b/drivers/net/bonding/Kconfig @@ -0,0 +1,17 @@ +menuconfig BONDING + tristate "Bonding driver support" + depends on INET + depends on IPV6 || IPV6=n + ---help--- + Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet + Channels together. This is called 'Etherchannel' by Cisco, + 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux. + + The driver supports multiple bonding modes to allow for both high + performance and high availability operation. + + Refer to for more + information. + + To compile this driver as a module, choose M here: the module + will be called bonding.