* [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral
@ 2006-04-09 15:58 Adrian Bunk
2006-04-09 16:56 ` Matt Mackall
2006-04-10 5:29 ` David S. Miller
0 siblings, 2 replies; 6+ messages in thread
From: Adrian Bunk @ 2006-04-09 15:58 UTC (permalink / raw)
To: Andrew Morton; +Cc: mpm, linux-kernel, netdev
This patch removes the unused EXPORT_SYMBOL(secure_ipv6_port_ephemeral).
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
This patch was already sent on:
- 5 Apr 2006
--- linux-2.6.17-rc1-mm1-full/drivers/char/random.c.old 2006-04-05 17:00:04.000000000 +0200
+++ linux-2.6.17-rc1-mm1-full/drivers/char/random.c 2006-04-05 17:00:22.000000000 +0200
@@ -1584,7 +1584,6 @@
return twothirdsMD4Transform(daddr, hash);
}
-EXPORT_SYMBOL(secure_ipv6_port_ephemeral);
#endif
#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral
2006-04-09 15:58 [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral Adrian Bunk
@ 2006-04-09 16:56 ` Matt Mackall
2006-04-10 5:29 ` David S. Miller
1 sibling, 0 replies; 6+ messages in thread
From: Matt Mackall @ 2006-04-09 16:56 UTC (permalink / raw)
To: Adrian Bunk; +Cc: Andrew Morton, linux-kernel, netdev
On Sun, Apr 09, 2006 at 05:58:22PM +0200, Adrian Bunk wrote:
> This patch removes the unused EXPORT_SYMBOL(secure_ipv6_port_ephemeral).
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Matt Mackall <mpm@selenic.com>
Adrian appears to be correct that this doesn't break modular ipv6.
--
Mathematics is the supreme nostalgia of our time.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral
2006-04-09 15:58 [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral Adrian Bunk
2006-04-09 16:56 ` Matt Mackall
@ 2006-04-10 5:29 ` David S. Miller
1 sibling, 0 replies; 6+ messages in thread
From: David S. Miller @ 2006-04-10 5:29 UTC (permalink / raw)
To: bunk; +Cc: akpm, mpm, linux-kernel, netdev
From: Adrian Bunk <bunk@stusta.de>
Date: Sun, 9 Apr 2006 17:58:22 +0200
> This patch removes the unused EXPORT_SYMBOL(secure_ipv6_port_ephemeral).
>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
Applied, thanks Adrian.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral
@ 2006-04-05 16:36 Adrian Bunk
2006-04-05 17:11 ` Stephen Hemminger
0 siblings, 1 reply; 6+ messages in thread
From: Adrian Bunk @ 2006-04-05 16:36 UTC (permalink / raw)
To: mpm; +Cc: linux-kernel, netdev
This patch removes the unused EXPORT_SYMBOL(secure_ipv6_port_ephemeral).
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.17-rc1-mm1-full/drivers/char/random.c.old 2006-04-05 17:00:04.000000000 +0200
+++ linux-2.6.17-rc1-mm1-full/drivers/char/random.c 2006-04-05 17:00:22.000000000 +0200
@@ -1584,7 +1584,6 @@
return twothirdsMD4Transform(daddr, hash);
}
-EXPORT_SYMBOL(secure_ipv6_port_ephemeral);
#endif
#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral
2006-04-05 16:36 Adrian Bunk
@ 2006-04-05 17:11 ` Stephen Hemminger
2006-04-05 17:19 ` Adrian Bunk
0 siblings, 1 reply; 6+ messages in thread
From: Stephen Hemminger @ 2006-04-05 17:11 UTC (permalink / raw)
To: Adrian Bunk; +Cc: mpm, linux-kernel, netdev
On Wed, 5 Apr 2006 18:36:10 +0200
Adrian Bunk <bunk@stusta.de> wrote:
> This patch removes the unused EXPORT_SYMBOL(secure_ipv6_port_ephemeral).
>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
>
> --- linux-2.6.17-rc1-mm1-full/drivers/char/random.c.old 2006-04-05 17:00:04.000000000 +0200
> +++ linux-2.6.17-rc1-mm1-full/drivers/char/random.c 2006-04-05 17:00:22.000000000 +0200
> @@ -1584,7 +1584,6 @@
>
> return twothirdsMD4Transform(daddr, hash);
> }
> -EXPORT_SYMBOL(secure_ipv6_port_ephemeral);
> #endif
>
> #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
>
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
NAK
If IPV6 is built as a module, then it is needed.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral
2006-04-05 17:11 ` Stephen Hemminger
@ 2006-04-05 17:19 ` Adrian Bunk
0 siblings, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2006-04-05 17:19 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: mpm, linux-kernel, netdev
On Wed, Apr 05, 2006 at 10:11:11AM -0700, Stephen Hemminger wrote:
> On Wed, 5 Apr 2006 18:36:10 +0200
> Adrian Bunk <bunk@stusta.de> wrote:
>
> > This patch removes the unused EXPORT_SYMBOL(secure_ipv6_port_ephemeral).
> >
> > Signed-off-by: Adrian Bunk <bunk@stusta.de>
> >
> > --- linux-2.6.17-rc1-mm1-full/drivers/char/random.c.old 2006-04-05 17:00:04.000000000 +0200
> > +++ linux-2.6.17-rc1-mm1-full/drivers/char/random.c 2006-04-05 17:00:22.000000000 +0200
> > @@ -1584,7 +1584,6 @@
> >
> > return twothirdsMD4Transform(daddr, hash);
> > }
> > -EXPORT_SYMBOL(secure_ipv6_port_ephemeral);
> > #endif
> >
> > #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe netdev" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
>
> NAK
>
> If IPV6 is built as a module, then it is needed.
No, it isn't:
obj-$(subst m,y,$(CONFIG_IPV6)) += inet6_hashtables.o
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-04-10 5:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-09 15:58 [2.6 patch] drivers/char/random.c: unexport secure_ipv6_port_ephemeral Adrian Bunk
2006-04-09 16:56 ` Matt Mackall
2006-04-10 5:29 ` David S. Miller
-- strict thread matches above, loose matches on Subject: below --
2006-04-05 16:36 Adrian Bunk
2006-04-05 17:11 ` Stephen Hemminger
2006-04-05 17:19 ` Adrian Bunk
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).