Deleted Added
full compact
30c30
< __FBSDID("$FreeBSD: head/sys/cam/scsi/scsi_sa.c 144430 2005-03-31 21:43:19Z sam $");
---
> __FBSDID("$FreeBSD: head/sys/cam/scsi/scsi_sa.c 145050 2005-04-14 04:51:18Z mjacob $");
812a813,834
> case MTIOCTOP:
> {
> struct mtop *mt = (struct mtop *) arg;
>
> /*
> * Check to make sure it's an OP we can perform
> * with no media inserted.
> */
> switch (mt->mt_op) {
> case MTSETBSIZ:
> case MTSETDNSTY:
> case MTCOMP:
> mt = NULL;
> /* FALLTHROUGH */
> default:
> break;
> }
> if (mt != NULL) {
> break;
> }
> /* FALLTHROUGH */
> }
814,816d835
< case MTSETBSIZ:
< case MTSETDNSTY:
< case MTCOMP: