diff options
author | bz <bz@FreeBSD.org> | 2007-07-04 00:18:39 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2007-07-04 00:18:39 +0000 |
commit | 9a790548f120077025d2a875e3a6042995316ec1 (patch) | |
tree | 432ddcd37338a6618834805292b5d0c2178db535 /sys/i4b | |
parent | 196b6346ba4e13a3f7679e2de3317b6aa65983df (diff) | |
download | FreeBSD-src-9a790548f120077025d2a875e3a6042995316ec1.zip FreeBSD-src-9a790548f120077025d2a875e3a6042995316ec1.tar.gz |
Temporary disconnect i4bing, i4bisppp and i4bipr from the build for
the 7.0 timeframe.
This is needed because I4B is not locked and NET_NEEDS_GIANT goes away.
The plan is to lock I4B and bring everything back for 7.1.
Approved by: re (kensmith)
Diffstat (limited to 'sys/i4b')
-rw-r--r-- | sys/i4b/driver/i4b_ing.c | 2 | ||||
-rw-r--r-- | sys/i4b/driver/i4b_ipr.c | 2 | ||||
-rw-r--r-- | sys/i4b/driver/i4b_isppp.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/sys/i4b/driver/i4b_ing.c b/sys/i4b/driver/i4b_ing.c index a61e1e8..5dda622 100644 --- a/sys/i4b/driver/i4b_ing.c +++ b/sys/i4b/driver/i4b_ing.c @@ -58,6 +58,8 @@ __FBSDID("$FreeBSD$"); #include <i4b/layer4/i4b_l4.h> +#error "Cannot be used until I4B is locked." + #define I4BINGACCT 1 /* enable accounting messages */ #define I4BINGACCTINTVL 2 /* accounting msg interval in secs */ diff --git a/sys/i4b/driver/i4b_ipr.c b/sys/i4b/driver/i4b_ipr.c index 0d90b8a..a6ac95f 100644 --- a/sys/i4b/driver/i4b_ipr.c +++ b/sys/i4b/driver/i4b_ipr.c @@ -106,7 +106,7 @@ __FBSDID("$FreeBSD$"); #include <i4b/layer4/i4b_l4.h> -NET_NEEDS_GIANT("i4b_ipr"); +#error "Cannot be used until I4B is locked." #define I4BIPRMTU 1500 /* regular MTU */ #define I4BIPRMAXMTU 2000 /* max MTU */ diff --git a/sys/i4b/driver/i4b_isppp.c b/sys/i4b/driver/i4b_isppp.c index 2d9abe8..2001b88 100644 --- a/sys/i4b/driver/i4b_isppp.c +++ b/sys/i4b/driver/i4b_isppp.c @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); #include <i4b/layer4/i4b_l4.h> -NET_NEEDS_GIANT("i4b_isppp"); +#error "Cannot be used until I4B is locked." #define ISPPP_FMT "isp%d: " #define ISPPP_ARG(sc) (sc->sc_ifp->if_dunit) |