diff options
author | hrs <hrs@FreeBSD.org> | 2015-09-10 06:08:42 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2015-09-10 06:08:42 +0000 |
commit | e5cef93a397bd18c484c3de6b51f7a36a93513a6 (patch) | |
tree | 5928bab4be5c81d5cfa1a94f2be64dde2b4d48cb /sys/netinet6 | |
parent | 099cf5ebd02d27e10491256340ce2b58ec9a48b5 (diff) | |
download | FreeBSD-src-e5cef93a397bd18c484c3de6b51f7a36a93513a6.zip FreeBSD-src-e5cef93a397bd18c484c3de6b51f7a36a93513a6.tar.gz |
Remove IN6_IFF_NOPFX. This flag was no longer used.
MFC after: 3 days
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/in6_ifattach.c | 3 | ||||
-rw-r--r-- | sys/netinet6/in6_var.h | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c index 37bd720..64981b3 100644 --- a/sys/netinet6/in6_ifattach.c +++ b/sys/netinet6/in6_ifattach.c @@ -566,9 +566,6 @@ in6_ifattach_loopback(struct ifnet *ifp) ifra.ifra_lifetime.ia6t_vltime = ND6_INFINITE_LIFETIME; ifra.ifra_lifetime.ia6t_pltime = ND6_INFINITE_LIFETIME; - /* skip registration to the prefix list. XXX should be temporary. */ - ifra.ifra_flags |= IN6_IFF_NOPFX; - /* * We are sure that this is a newly assigned address, so we can set * NULL to the 3rd arg. diff --git a/sys/netinet6/in6_var.h b/sys/netinet6/in6_var.h index 4d39a5e..8c4e331 100644 --- a/sys/netinet6/in6_var.h +++ b/sys/netinet6/in6_var.h @@ -499,9 +499,6 @@ struct in6_rrenumreq { #define IN6_IFF_AUTOCONF 0x40 /* autoconfigurable address. */ #define IN6_IFF_TEMPORARY 0x80 /* temporary (anonymous) address. */ #define IN6_IFF_PREFER_SOURCE 0x0100 /* preferred address for SAS */ -#define IN6_IFF_NOPFX 0x8000 /* skip kernel prefix management. - * XXX: this should be temporary. - */ /* do not input/output */ #define IN6_IFF_NOTREADY (IN6_IFF_TENTATIVE|IN6_IFF_DUPLICATED) |