svn commit: r235954 - head/sys/netinet6
Bjoern A. Zeeb
bz at FreeBSD.org
Fri May 25 01:43:53 UTC 2012
Author: bz
Date: Fri May 25 01:43:52 2012
New Revision: 235954
URL: http://svn.freebsd.org/changeset/base/235954
Log:
MFp4 bz_ipv6_fast:
We currently nowhere set IP6A_SWAP making the entire check useless
with the current code. Keep around but do not compile in.
Sponsored by: The FreeBSD Foundation
Sponsored by: iXsystems
Reviewed by: gnn (as part of the whole)
MFC After: 3 days
Modified:
head/sys/netinet6/route6.c
Modified: head/sys/netinet6/route6.c
==============================================================================
--- head/sys/netinet6/route6.c Fri May 25 01:42:48 2012 (r235953)
+++ head/sys/netinet6/route6.c Fri May 25 01:43:52 2012 (r235954)
@@ -62,6 +62,7 @@ route6_input(struct mbuf **mp, int *offp
struct mbuf *m = *mp;
struct ip6_rthdr *rh;
int off = *offp, rhlen;
+#ifdef __notyet__
struct ip6aux *ip6a;
ip6a = ip6_findaux(m);
@@ -73,6 +74,7 @@ route6_input(struct mbuf **mp, int *offp
return IPPROTO_DONE;
}
}
+#endif
#ifndef PULLDOWN_TEST
IP6_EXTHDR_CHECK(m, off, sizeof(*rh), IPPROTO_DONE);
More information about the svn-src-head
mailing list