netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][BONDING] Add max_bonds kernel parameter
@ 2008-02-29 18:51 Phil Oester
  2008-02-29 19:03 ` Jay Vosburgh
  0 siblings, 1 reply; 3+ messages in thread
From: Phil Oester @ 2008-02-29 18:51 UTC (permalink / raw)
  To: netdev

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]




[-- Attachment #2: patch-maxbonds --]
[-- Type: text/plain, Size: 1586 bytes --]

commit eb8694ab0a53343ebb45abeb2a9568d6267fa2f2
Author: Phil Oester <kernel@linuxace.com>
Date:   Fri Feb 29 13:26:34 2008 -0500

    The bonding driver (and initscripts) seem to assume everyone loads bonding
    as a module.  So when compiled into the kernel, changing the max_bonds
    parameter can only be done in the source code.
    
    Below adds a kernel command line parameter to change max_bonds when
    compiled in.
    
    Phil
    
    Signed-off-by: Phil Oester <kernel@linuxace.com>

diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 9a5b665..4b21045 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -1071,6 +1071,10 @@ and is between 256 and 4096 characters. It is defined in the file
 			(machvec) in a generic kernel.
 			Example: machvec=hpzx1_swiotlb
 
+	max_bonds=	[NET] Maximum number of bonded devices which can be
+			created and the default number of devices which
+			will be created automatically at boot.
+
 	max_loop=	[LOOP] Maximum number of loopback devices that can
 			be mounted
 			Format: <1-256>
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 0942d82..64597d8 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -5032,3 +5032,12 @@ MODULE_SUPPORTED_DEVICE("most ethernet devices");
  * End:
  */
 
+#ifndef MODULE
+static int __init max_bonds_setup(char *str)
+{
+        max_bonds = simple_strtol(str, NULL, 0);
+        return 1;
+}
+
+__setup("max_bonds=", max_bonds_setup);
+#endif

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-02-29 19:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-29 18:51 [PATCH][BONDING] Add max_bonds kernel parameter Phil Oester
2008-02-29 19:03 ` Jay Vosburgh
2008-02-29 19:31   ` Phil Oester

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).