Deleted Added
full compact
33c33
< __FBSDID("$FreeBSD: head/sys/netinet6/nd6_rtr.c 191548 2009-04-26 22:06:42Z zec $");
---
> __FBSDID("$FreeBSD: head/sys/netinet6/nd6_rtr.c 193232 2009-06-01 15:49:42Z bz $");
1552d1551
< INIT_VNET_NET(curvnet);
1635c1634,1635
< rnh = V_rt_tables[rt->rt_fibnum][AF_INET6];
---
> rnh = rt_tables_get_rnh(rt->rt_fibnum, AF_INET6);
> /* XXX what if rhn == NULL? */
2061,2062c2061
< INIT_VNET_NET(curvnet);
< struct radix_node_head *rnh = V_rt_tables[0][AF_INET6];
---
> struct radix_node_head *rnh;
2070a2070,2073
> rnh = rt_tables_get_rnh(0, AF_INET6);
> if (rnh == NULL)
> return;
>