aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/ip6_fib.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-08-15 02:49:16 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:54:38 -0400
commit90d41122f79c8c3687d965dde4c6d30a6e0cac4c (patch)
tree97aba5d36e7e7a923b9cc0611602219d88b4766e /net/ipv6/ip6_fib.c
parentd1aa62f15b511457af2233150c960dc1fd02769b (diff)
[IPV6] ip6_fib.c: make code static
Make the following needlessly global code static: - fib6_walker_lock - struct fib6_walker_list - fib6_walk_continue() - fib6_walk() Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_fib.c')
-rw-r--r--net/ipv6/ip6_fib.c29
1 files changed, 24 insertions, 5 deletions
diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c
index bececbe9dd2c..be36f4acda94 100644
--- a/net/ipv6/ip6_fib.c
+++ b/net/ipv6/ip6_fib.c
@@ -69,8 +69,7 @@ struct fib6_cleaner_t
69 void *arg; 69 void *arg;
70}; 70};
71 71
72DEFINE_RWLOCK(fib6_walker_lock); 72static DEFINE_RWLOCK(fib6_walker_lock);
73
74 73
75#ifdef CONFIG_IPV6_SUBTREES 74#ifdef CONFIG_IPV6_SUBTREES
76#define FWS_INIT FWS_S 75#define FWS_INIT FWS_S
@@ -82,6 +81,8 @@ DEFINE_RWLOCK(fib6_walker_lock);
82 81
83static void fib6_prune_clones(struct fib6_node *fn, struct rt6_info *rt); 82static void fib6_prune_clones(struct fib6_node *fn, struct rt6_info *rt);
84static struct fib6_node * fib6_repair_tree(struct fib6_node *fn); 83static struct fib6_node * fib6_repair_tree(struct fib6_node *fn);
84static int fib6_walk(struct fib6_walker_t *w);
85static int fib6_walk_continue(struct fib6_walker_t *w);
85 86
86/* 87/*
87 * A routing update causes an increase of the serial number on the 88 * A routing update causes an increase of the serial number on the
@@ -94,13 +95,31 @@ static __u32 rt_sernum;
94 95
95static DEFINE_TIMER(ip6_fib_timer, fib6_run_gc, 0, 0); 96static DEFINE_TIMER(ip6_fib_timer, fib6_run_gc, 0, 0);
96 97
97struct fib6_walker_t fib6_walker_list = { 98static struct fib6_walker_t fib6_walker_list = {
98 .prev = &fib6_walker_list, 99 .prev = &fib6_walker_list,
99 .next = &fib6_walker_list, 100 .next = &fib6_walker_list,
100}; 101};
101 102
102#define FOR_WALKERS(w) for ((w)=fib6_walker_list.next; (w) != &fib6_walker_list; (w)=(w)->next) 103#define FOR_WALKERS(w) for ((w)=fib6_walker_list.next; (w) != &fib6_walker_list; (w)=(w)->next)
103 104
105static inline void fib6_walker_link(struct fib6_walker_t *w)
106{
107 write_lock_bh(&fib6_walker_lock);
108 w->next = fib6_walker_list.next;
109 w->prev = &fib6_walker_list;
110 w->next->prev = w;
111 w->prev->next = w;
112 write_unlock_bh(&fib6_walker_lock);
113}
114
115static inline void fib6_walker_unlink(struct fib6_walker_t *w)
116{
117 write_lock_bh(&fib6_walker_lock);
118 w->next->prev = w->prev;
119 w->prev->next = w->next;
120 w->prev = w->next = w;
121 write_unlock_bh(&fib6_walker_lock);
122}
104static __inline__ u32 fib6_new_sernum(void) 123static __inline__ u32 fib6_new_sernum(void)
105{ 124{
106 u32 n = ++rt_sernum; 125 u32 n = ++rt_sernum;
@@ -1173,7 +1192,7 @@ int fib6_del(struct rt6_info *rt, struct nlmsghdr *nlh, void *_rtattr, struct ne
1173 * <0 -> walk is terminated by an error. 1192 * <0 -> walk is terminated by an error.
1174 */ 1193 */
1175 1194
1176int fib6_walk_continue(struct fib6_walker_t *w) 1195static int fib6_walk_continue(struct fib6_walker_t *w)
1177{ 1196{
1178 struct fib6_node *fn, *pn; 1197 struct fib6_node *fn, *pn;
1179 1198
@@ -1247,7 +1266,7 @@ int fib6_walk_continue(struct fib6_walker_t *w)
1247 } 1266 }
1248} 1267}
1249 1268
1250int fib6_walk(struct fib6_walker_t *w) 1269static int fib6_walk(struct fib6_walker_t *w)
1251{ 1270{
1252 int res; 1271 int res;
1253 1272