Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Linux: Kernel

[PATCH] fix typo in net/ipv6/Kconfig

 

 

Linux kernel RSS feed   Index | Next | Previous | View Threaded


youvegotmoxie at gmail

Apr 24, 2008, 3:39 AM

Post #1 of 4 (197 views)
Permalink
[PATCH] fix typo in net/ipv6/Kconfig

diff --git a/net/ipv6/Kconfig b/net/ipv6/Kconfig
index eb0b808..56b4d86 100644
--- a/net/ipv6/Kconfig
+++ b/net/ipv6/Kconfig
@@ -172,7 +172,7 @@ config IPV6_SIT
Tunneling means encapsulating data of one protocol type within
another protocol and sending it over a channel that understands the
encapsulating protocol. This driver implements encapsulation of IPv6
- into IPv4 packets. This is useful if you want to connect two IPv6
+ into IPv4 packets. This is useful if you want to connect to IPv6
networks over an IPv4-only path.

Saying M here will produce a module called sit.ko. If unsure, say Y.

Two is used in the wrong context here, as you are connecting to an IPv6 network
over IPv4; not connecting two IPv6 networks to an IPv4 one.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo[at]vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/


davem at davemloft

Apr 24, 2008, 3:47 AM

Post #2 of 4 (182 views)
Permalink
Re: [PATCH] fix typo in net/ipv6/Kconfig [In reply to]

From: Michael Beasley <youvegotmoxie[at]gmail.com>
Date: Thu, 24 Apr 2008 06:39:50 -0400

> diff --git a/net/ipv6/Kconfig b/net/ipv6/Kconfig
> index eb0b808..56b4d86 100644
> --- a/net/ipv6/Kconfig
> +++ b/net/ipv6/Kconfig
> @@ -172,7 +172,7 @@ config IPV6_SIT
> Tunneling means encapsulating data of one protocol type within
> another protocol and sending it over a channel that understands the
> encapsulating protocol. This driver implements encapsulation of IPv6
> - into IPv4 packets. This is useful if you want to connect two IPv6
> + into IPv4 packets. This is useful if you want to connect to IPv6
> networks over an IPv4-only path.
>
> Saying M here will produce a module called sit.ko. If unsure, say Y.

Your email client corrupted the patch, it has turned tab characters
into spaces.

You should also be sure to post your networking patches to
netdev[at]vger.kernel.org as that's where the networking developers
listen.

Please also provide a proper Signed-off-by: line for your patch (see
linux/Docuemtnation/SubmittingPatches, section 5).

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo[at]vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/


macro at linux-mips

Apr 25, 2008, 4:58 PM

Post #3 of 4 (174 views)
Permalink
Re: [PATCH] fix typo in net/ipv6/Kconfig [In reply to]

On Thu, 24 Apr 2008, Michael Beasley wrote:

> diff --git a/net/ipv6/Kconfig b/net/ipv6/Kconfig
> index eb0b808..56b4d86 100644
> --- a/net/ipv6/Kconfig
> +++ b/net/ipv6/Kconfig
> @@ -172,7 +172,7 @@ config IPV6_SIT
> Tunneling means encapsulating data of one protocol type within
> another protocol and sending it over a channel that understands the
> encapsulating protocol. This driver implements encapsulation of IPv6
> - into IPv4 packets. This is useful if you want to connect two IPv6
> + into IPv4 packets. This is useful if you want to connect to IPv6
> networks over an IPv4-only path.
>
> Saying M here will produce a module called sit.ko. If unsure, say Y.
>
> Two is used in the wrong context here, as you are connecting to an IPv6 network
> over IPv4; not connecting two IPv6 networks to an IPv4 one.

NAK. The text correctly describes the scenario. You have two IPv6
networks, between which you set up a SIT tunnel which transmits data
between the two networks encapsulated in IPv4 packets. If you find the
text not self-explanatory, then perhaps the sentence could be rewritten as
follows:

"This is useful if you want to connect two IPv6 networks to each other
over an IPv4-only path."

Maciej
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo[at]vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/


davem at davemloft

Apr 25, 2008, 5:18 PM

Post #4 of 4 (173 views)
Permalink
Re: [PATCH] fix typo in net/ipv6/Kconfig [In reply to]

From: "Maciej W. Rozycki" <macro[at]linux-mips.org>
Date: Sat, 26 Apr 2008 00:58:49 +0100 (BST)

> On Thu, 24 Apr 2008, Michael Beasley wrote:
>
> > diff --git a/net/ipv6/Kconfig b/net/ipv6/Kconfig
> > index eb0b808..56b4d86 100644
> > --- a/net/ipv6/Kconfig
> > +++ b/net/ipv6/Kconfig
> > @@ -172,7 +172,7 @@ config IPV6_SIT
> > Tunneling means encapsulating data of one protocol type within
> > another protocol and sending it over a channel that understands the
> > encapsulating protocol. This driver implements encapsulation of IPv6
> > - into IPv4 packets. This is useful if you want to connect two IPv6
> > + into IPv4 packets. This is useful if you want to connect to IPv6
> > networks over an IPv4-only path.
> >
> > Saying M here will produce a module called sit.ko. If unsure, say Y.
> >
> > Two is used in the wrong context here, as you are connecting to an IPv6 network
> > over IPv4; not connecting two IPv6 networks to an IPv4 one.
>
> NAK. The text correctly describes the scenario. You have two IPv6
> networks, between which you set up a SIT tunnel which transmits data
> between the two networks encapsulated in IPv4 packets. If you find the
> text not self-explanatory, then perhaps the sentence could be rewritten as
> follows:
>
> "This is useful if you want to connect two IPv6 networks to each other
> over an IPv4-only path."

This patch is already in Linus's tree, someone send me a revert
if they want it changed back.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo[at]vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

Linux kernel RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.