* Re: Global IPV6 auto-configuration does not work as expected.
@ 2010-01-22 19:01 greg
2010-01-22 20:24 ` [PATCH] IPv6: Update documentation for better built-in help with params Brian Haley
0 siblings, 1 reply; 8+ messages in thread
From: greg @ 2010-01-22 19:01 UTC (permalink / raw)
To: David Miller, greg; +Cc: brian.haley, nhorman, netdev
On Jan 19, 12:35pm, David Miller wrote:
} Subject: Re: Global IPV6 auto-configuration does not work as expected.
> From: greg@enjellic.com
Hi, hope the day is going well for everyone.
> Date: Tue, 19 Jan 2010 14:34:00 -0600
>
> > That would only be effective with a modular implementation of ipv6.
> > As I noted above these are completely static kernels.
> That's incorrect, you can still set the parameter if ipv6 is
> built statically into your kernel.
>
> You can set "module" parameters on the kernel command line by
> saying, f.e., "ipv6.autoconf=0"
Dave to the rescue.... :-)
That option works perfectly well. I had actually hacked the kernel
source to set the default but the kernel command-line is less
invasive.
Thanks to everyone for the input.
Best wishes for a pleasant week.
}-- End of excerpt from David Miller
As always,
Dr. G.W. Wettstein, Ph.D. Enjellic Systems Development, LLC.
4206 N. 19th Ave. Specializing in information infra-structure
Fargo, ND 58102 development.
PH: 701-281-1686
FAX: 701-281-3949 EMAIL: greg@enjellic.com
------------------------------------------------------------------------------
"Boy, it must not take much to make a phone work. Looking at
everthing else here it must be the same way with the INTERNET."
-- Francis 'Fritz' Wettstein
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-22 19:01 Global IPV6 auto-configuration does not work as expected greg
@ 2010-01-22 20:24 ` Brian Haley
2010-01-23 2:32 ` David Miller
0 siblings, 1 reply; 8+ messages in thread
From: Brian Haley @ 2010-01-22 20:24 UTC (permalink / raw)
To: David Miller; +Cc: greg, nhorman, netdev
Update IPv6 documentation to describe how to set parameters when it's
built-into the kernel. Reported by <greg@enjellic.com>.
Signed-off-by: Brian Haley <brian.haley@hp.com>
---
diff --git a/Documentation/networking/ipv6.txt b/Documentation/networking/ipv6.txt
index 9fd7e21..d52166b 100644
--- a/Documentation/networking/ipv6.txt
+++ b/Documentation/networking/ipv6.txt
@@ -6,6 +6,10 @@ or modprobe command, but are usually specified in either the
/etc/modules.conf or /etc/modprobe.conf configuration file, or in a
distro-specific configuration file.
+For cases where IPv6 is built-into the kernel, you can set these
+parameters by specifying them on the kernel command line, for
+example, "ipv6.autoconf=0".
+
The available ipv6 module parameters are listed below. If a parameter
is not specified the default value is used.
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-22 20:24 ` [PATCH] IPv6: Update documentation for better built-in help with params Brian Haley
@ 2010-01-23 2:32 ` David Miller
2010-01-25 17:28 ` Brian Haley
0 siblings, 1 reply; 8+ messages in thread
From: David Miller @ 2010-01-23 2:32 UTC (permalink / raw)
To: brian.haley; +Cc: greg, nhorman, netdev
From: Brian Haley <brian.haley@hp.com>
Date: Fri, 22 Jan 2010 15:24:49 -0500
> Update IPv6 documentation to describe how to set parameters when it's
> built-into the kernel. Reported by <greg@enjellic.com>.
>
> Signed-off-by: Brian Haley <brian.haley@hp.com>
So are you going to also add a mention of this fact to every single
place in the documentation that talks about some arbitrary module
option?
That doesn't make any sense, and neither does this patch.
It's better to make it more apparent that module options can
be set on the kernel command line when something is compiled
statically into the kernel.
That way it only needs to be explained in one place, not in
several.
I'm not applying this.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-23 2:32 ` David Miller
@ 2010-01-25 17:28 ` Brian Haley
2010-01-25 21:21 ` David Miller
0 siblings, 1 reply; 8+ messages in thread
From: Brian Haley @ 2010-01-25 17:28 UTC (permalink / raw)
To: David Miller; +Cc: greg, nhorman, netdev
David Miller wrote:
> From: Brian Haley <brian.haley@hp.com>
> Date: Fri, 22 Jan 2010 15:24:49 -0500
>
>> Update IPv6 documentation to describe how to set parameters when it's
>> built-into the kernel. Reported by <greg@enjellic.com>.
>>
>> Signed-off-by: Brian Haley <brian.haley@hp.com>
>
> So are you going to also add a mention of this fact to every single
> place in the documentation that talks about some arbitrary module
> option?
>
> That doesn't make any sense, and neither does this patch.
>
> It's better to make it more apparent that module options can
> be set on the kernel command line when something is compiled
> statically into the kernel.
>
> That way it only needs to be explained in one place, not in
> several.
I guess Documentation/kernel-parameters.txt is where such things
live, can I send you a patch for that or does it need to go
through someone else?
-Brian
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-25 17:28 ` Brian Haley
@ 2010-01-25 21:21 ` David Miller
2010-01-25 21:31 ` Randy Dunlap
0 siblings, 1 reply; 8+ messages in thread
From: David Miller @ 2010-01-25 21:21 UTC (permalink / raw)
To: brian.haley; +Cc: greg, nhorman, netdev
From: Brian Haley <brian.haley@hp.com>
Date: Mon, 25 Jan 2010 12:28:15 -0500
> I guess Documentation/kernel-parameters.txt is where such things
> live, can I send you a patch for that or does it need to go
> through someone else?
I think lkml is a suitable place to submit something like
that.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-25 21:21 ` David Miller
@ 2010-01-25 21:31 ` Randy Dunlap
2010-01-25 21:34 ` David Miller
0 siblings, 1 reply; 8+ messages in thread
From: Randy Dunlap @ 2010-01-25 21:31 UTC (permalink / raw)
To: David Miller; +Cc: brian.haley, greg, nhorman, netdev
On Mon, 25 Jan 2010 13:21:42 -0800 (PST) David Miller wrote:
> From: Brian Haley <brian.haley@hp.com>
> Date: Mon, 25 Jan 2010 12:28:15 -0500
>
> > I guess Documentation/kernel-parameters.txt is where such things
> > live, can I send you a patch for that or does it need to go
> > through someone else?
>
> I think lkml is a suitable place to submit something like
> that.
> --
Sure, but if it's networking parameters, you (David) could still merge it...
---
~Randy
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-25 21:31 ` Randy Dunlap
@ 2010-01-25 21:34 ` David Miller
2010-01-25 21:43 ` Randy Dunlap
0 siblings, 1 reply; 8+ messages in thread
From: David Miller @ 2010-01-25 21:34 UTC (permalink / raw)
To: rdunlap; +Cc: brian.haley, greg, nhorman, netdev
From: Randy Dunlap <rdunlap@xenotime.net>
Date: Mon, 25 Jan 2010 13:31:33 -0800
> On Mon, 25 Jan 2010 13:21:42 -0800 (PST) David Miller wrote:
>
>> From: Brian Haley <brian.haley@hp.com>
>> Date: Mon, 25 Jan 2010 12:28:15 -0500
>>
>> > I guess Documentation/kernel-parameters.txt is where such things
>> > live, can I send you a patch for that or does it need to go
>> > through someone else?
>>
>> I think lkml is a suitable place to submit something like
>> that.
>> --
>
> Sure, but if it's networking parameters, you (David) could still merge it...
It's not about networking parameters.
It's about adding a generic mention somewhere central that you can set
"module parameters" on the kernel command line when a module is built
statically into the kernel.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] IPv6: Update documentation for better built-in help with params
2010-01-25 21:34 ` David Miller
@ 2010-01-25 21:43 ` Randy Dunlap
0 siblings, 0 replies; 8+ messages in thread
From: Randy Dunlap @ 2010-01-25 21:43 UTC (permalink / raw)
To: David Miller; +Cc: brian.haley, greg, nhorman, netdev
On Mon, 25 Jan 2010 13:34:11 -0800 (PST) David Miller wrote:
> From: Randy Dunlap <rdunlap@xenotime.net>
> Date: Mon, 25 Jan 2010 13:31:33 -0800
>
> > On Mon, 25 Jan 2010 13:21:42 -0800 (PST) David Miller wrote:
> >
> >> From: Brian Haley <brian.haley@hp.com>
> >> Date: Mon, 25 Jan 2010 12:28:15 -0500
> >>
> >> > I guess Documentation/kernel-parameters.txt is where such things
> >> > live, can I send you a patch for that or does it need to go
> >> > through someone else?
> >>
> >> I think lkml is a suitable place to submit something like
> >> that.
> >> --
> >
> > Sure, but if it's networking parameters, you (David) could still merge it...
>
> It's not about networking parameters.
OK, I didn't see the patch itself, sorry.
> It's about adding a generic mention somewhere central that you can set
> "module parameters" on the kernel command line when a module is built
> statically into the kernel.
Maybe like this, from that same file:
Module parameters for modules that are built into the kernel image
are specified on the kernel command line with the module name plus
'.' plus parameter name, with '=' and value if appropriate, such as:
usbcore.blinkenlights=1
I'll search for the patch...
---
~Randy
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-01-25 21:43 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-22 19:01 Global IPV6 auto-configuration does not work as expected greg
2010-01-22 20:24 ` [PATCH] IPv6: Update documentation for better built-in help with params Brian Haley
2010-01-23 2:32 ` David Miller
2010-01-25 17:28 ` Brian Haley
2010-01-25 21:21 ` David Miller
2010-01-25 21:31 ` Randy Dunlap
2010-01-25 21:34 ` David Miller
2010-01-25 21:43 ` Randy Dunlap
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).