From 48e53d4b79e3ec6da2752e139385edd69796eafc Mon Sep 17 00:00:00 2001 From: briggs Date: Thu, 3 Feb 1994 05:11:09 +0000 Subject: [PATCH] ifdef out code that relies on changes to struct buf. This breaks the "user" scsi device. Oh, well. --- sys/arch/mac68k/scsi/scsi_ioctl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/arch/mac68k/scsi/scsi_ioctl.c b/sys/arch/mac68k/scsi/scsi_ioctl.c index bdbd8806386d..3f7b1ea336c7 100644 --- a/sys/arch/mac68k/scsi/scsi_ioctl.c +++ b/sys/arch/mac68k/scsi/scsi_ioctl.c @@ -38,6 +38,7 @@ void scsi_user_done(xs) struct scsi_xfer *xs; { +#ifdef notyet struct buf *bp; scsireq_t *screq; @@ -95,6 +96,7 @@ scsi_user_done(xs) } biodone(bp); /* we're waiting on it in scsi_strategy() */ return; /* it'll free the xs and restart any queue */ +#endif } @@ -115,6 +117,7 @@ scsi_user_done(xs) */ void scsistrategy(struct buf *bp) { +#ifdef notyet int err; struct scsi_link *sc_link = bp->b_sc_link; scsireq_t *screq; @@ -191,6 +194,7 @@ void scsistrategy(struct buf *bp) splx(s); SC_DEBUG(sc_link, SDEV_DB3, ("back from sleep\n")); return; +#endif } void scsiminphys(struct buf *bp)