diff options
author | mjacob <mjacob@FreeBSD.org> | 2006-05-24 15:26:07 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2006-05-24 15:26:07 +0000 |
commit | e81575670663b808a7add1e406d401f0ead86fbb (patch) | |
tree | f75d0992576e1d1cc9869f5f20c42f06ee70168d | |
parent | 434c60ccbb97da7a36e5d42bf66d6d2273d9a3d9 (diff) | |
download | FreeBSD-src-e81575670663b808a7add1e406d401f0ead86fbb.zip FreeBSD-src-e81575670663b808a7add1e406d401f0ead86fbb.tar.gz |
Forced commit - last checkin got away from me.
This version of scsi_target.c removes all SMP locking until
we have a lock-aware CAM stack. This allows us to use KNOTE
without a panic at least.
It's not yet clear whether target mode is working yet or not.
Discussed with: Scott, Ken, Nate, Justin
-rw-r--r-- | sys/cam/scsi/scsi_target.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/cam/scsi/scsi_target.c b/sys/cam/scsi/scsi_target.c index d9789b4..db0df75 100644 --- a/sys/cam/scsi/scsi_target.c +++ b/sys/cam/scsi/scsi_target.c @@ -30,6 +30,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> |