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
This commit is contained in:
Bjoern A. Zeeb 2012-05-25 01:43:52 +00:00
parent 2cf62998da
commit 1b53a49ad9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235954

View File

@ -62,6 +62,7 @@ route6_input(struct mbuf **mp, int *offp, int proto)
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, int proto)
return IPPROTO_DONE;
}
}
#endif
#ifndef PULLDOWN_TEST
IP6_EXTHDR_CHECK(m, off, sizeof(*rh), IPPROTO_DONE);