aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2006-08-17 21:17:37 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:55:07 -0400
commite92b43a3455d3e817c13481bb3ea3cd29d0a47f4 (patch)
treee1c02f4f95c9887a0498175023c77a1f37553d5c /net/core
parentd889ce3b29e55b91257964b4c9aac70b91fedd91 (diff)
[NET] neighbour: reduce exports
There are several symbols only used by rtnetlink and since it can not be a module, there is no reason to export them. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/neighbour.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index c7e653ff5ed0..c0a27407f445 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -889,7 +889,7 @@ out_unlock_bh:
889 return rc; 889 return rc;
890} 890}
891 891
892static __inline__ void neigh_update_hhs(struct neighbour *neigh) 892static void neigh_update_hhs(struct neighbour *neigh)
893{ 893{
894 struct hh_cache *hh; 894 struct hh_cache *hh;
895 void (*update)(struct hh_cache*, struct net_device*, unsigned char *) = 895 void (*update)(struct hh_cache*, struct net_device*, unsigned char *) =
@@ -2724,7 +2724,6 @@ void neigh_sysctl_unregister(struct neigh_parms *p)
2724#endif /* CONFIG_SYSCTL */ 2724#endif /* CONFIG_SYSCTL */
2725 2725
2726EXPORT_SYMBOL(__neigh_event_send); 2726EXPORT_SYMBOL(__neigh_event_send);
2727EXPORT_SYMBOL(neigh_add);
2728EXPORT_SYMBOL(neigh_changeaddr); 2727EXPORT_SYMBOL(neigh_changeaddr);
2729EXPORT_SYMBOL(neigh_compat_output); 2728EXPORT_SYMBOL(neigh_compat_output);
2730EXPORT_SYMBOL(neigh_connected_output); 2729EXPORT_SYMBOL(neigh_connected_output);
@@ -2744,11 +2743,8 @@ EXPORT_SYMBOL(neigh_table_clear);
2744EXPORT_SYMBOL(neigh_table_init); 2743EXPORT_SYMBOL(neigh_table_init);
2745EXPORT_SYMBOL(neigh_table_init_no_netlink); 2744EXPORT_SYMBOL(neigh_table_init_no_netlink);
2746EXPORT_SYMBOL(neigh_update); 2745EXPORT_SYMBOL(neigh_update);
2747EXPORT_SYMBOL(neigh_update_hhs);
2748EXPORT_SYMBOL(pneigh_enqueue); 2746EXPORT_SYMBOL(pneigh_enqueue);
2749EXPORT_SYMBOL(pneigh_lookup); 2747EXPORT_SYMBOL(pneigh_lookup);
2750EXPORT_SYMBOL(neightbl_dump_info);
2751EXPORT_SYMBOL(neightbl_set);
2752 2748
2753#ifdef CONFIG_ARPD 2749#ifdef CONFIG_ARPD
2754EXPORT_SYMBOL(neigh_app_ns); 2750EXPORT_SYMBOL(neigh_app_ns);