All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] more network layer static funcs and data
@ 2004-04-29 21:58 Stephen Hemminger
  2004-04-29 23:26 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Hemminger @ 2004-04-29 21:58 UTC (permalink / raw
  To: David S. Miller; +Cc: netdev

Still more data structures and functions only referenced in the local file.

diff -Nru a/net/core/neighbour.c b/net/core/neighbour.c
--- a/net/core/neighbour.c	Thu Apr 29 14:46:31 2004
+++ b/net/core/neighbour.c	Thu Apr 29 14:46:31 2004
@@ -1479,7 +1479,7 @@
 
 #ifdef CONFIG_SYSCTL
 
-struct neigh_sysctl_table {
+static struct neigh_sysctl_table {
 	struct ctl_table_header *sysctl_header;
 	ctl_table		neigh_vars[17];
 	ctl_table		neigh_dev[2];
diff -Nru a/net/ipv4/route.c b/net/ipv4/route.c
--- a/net/ipv4/route.c	Thu Apr 29 14:46:31 2004
+++ b/net/ipv4/route.c	Thu Apr 29 14:46:31 2004
@@ -144,7 +144,7 @@
 static int rt_garbage_collect(void);
 
 
-struct dst_ops ipv4_dst_ops = {
+static struct dst_ops ipv4_dst_ops = {
 	.family =		AF_INET,
 	.protocol =		__constant_htons(ETH_P_IP),
 	.gc =			rt_garbage_collect,
@@ -1525,7 +1525,7 @@
  *	2. IP spoofing attempts are filtered with 100% of guarantee.
  */
 
-int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
+static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
 			u8 tos, struct net_device *dev)
 {
 	struct fib_result res;
@@ -1910,7 +1910,7 @@
  * Major route resolver routine.
  */
 
-int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
+static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
 {
 	u32 tos	= oldflp->fl4_tos & (IPTOS_RT_MASK | RTO_ONLINK);
 	struct flowi fl = { .nl_u = { .ip4_u =
diff -Nru a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c
--- a/net/ipv6/af_inet6.c	Thu Apr 29 14:46:31 2004
+++ b/net/ipv6/af_inet6.c	Thu Apr 29 14:46:31 2004
@@ -539,7 +539,7 @@
 	.sendpage =	sock_no_sendpage,
 };
 
-struct net_proto_family inet6_family_ops = {
+static struct net_proto_family inet6_family_ops = {
 	.family = PF_INET6,
 	.create = inet6_create,
 	.owner	= THIS_MODULE,
diff -Nru a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c
--- a/net/ipv6/ndisc.c	Thu Apr 29 14:46:31 2004
+++ b/net/ipv6/ndisc.c	Thu Apr 29 14:46:31 2004
@@ -1418,7 +1418,7 @@
 	return NOTIFY_DONE;
 }
 
-struct notifier_block ndisc_netdev_notifier = {
+static struct notifier_block ndisc_netdev_notifier = {
 	.notifier_call = ndisc_netdev_event,
 };
 

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

* Re: [PATCH] more network layer static funcs and data
  2004-04-29 21:58 [PATCH] more network layer static funcs and data Stephen Hemminger
@ 2004-04-29 23:26 ` David S. Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2004-04-29 23:26 UTC (permalink / raw
  To: Stephen Hemminger; +Cc: netdev

On Thu, 29 Apr 2004 14:58:53 -0700
Stephen Hemminger <shemminger@osdl.org> wrote:

> Still more data structures and functions only referenced in the local file.

Applied, thanks Stephen.

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

end of thread, other threads:[~2004-04-29 23:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-29 21:58 [PATCH] more network layer static funcs and data Stephen Hemminger
2004-04-29 23:26 ` David S. Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.