Collect all VIMAGE_GLOBALS variables in one place.

No longer export rt_tables as all lookups go through
rt_tables_get_rnh().

We cannot make rt_tables (and rtstat, rttrash[1]) static as
netstat -r (-rs[1]) would stop working on a stripped
VIMAGE_GLOBALS kernel.

Reviewed by:		zec
Presumably broken by:	phk 13.5y ago in r12820 [1]
This commit is contained in:
Bjoern A. Zeeb 2009-06-22 15:07:12 +00:00
parent be5888e34c
commit f987f19301
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194629
2 changed files with 4 additions and 9 deletions

View file

@ -90,10 +90,10 @@ SYSCTL_INT(_net, OID_AUTO, add_addr_allfibs, CTLFLAG_RW,
TUNABLE_INT("net.add_addr_allfibs", &rt_add_addr_allfibs);
#ifdef VIMAGE_GLOBALS
static struct rtstat rtstat;
struct radix_node_head *rt_tables;
static int rttrash; /* routes not in table but not freed */
struct radix_node_head *rt_tables;
static uma_zone_t rtzone; /* Routing table UMA zone. */
int rttrash; /* routes not in table but not freed */
struct rtstat rtstat;
#endif
static void rt_maskedcopy(struct sockaddr *,
@ -129,10 +129,6 @@ static const vnet_modinfo_t vnet_rtable_modinfo = {
*/
#define RNTORT(p) ((struct rtentry *)(p))
#ifdef VIMAGE_GLOBALS
static uma_zone_t rtzone; /* Routing table UMA zone. */
#endif
#if 0
/* default fib for tunnels to use */
u_int tunnel_fib = 0;

View file

@ -373,7 +373,6 @@ struct rt_addrinfo {
} \
} while (0)
extern struct radix_node_head *rt_tables;
struct radix_node_head *rt_tables_get_rnh(int, int);
struct ifmultiaddr;