if block size is > 2048, set it to 2048. atapi drives that lie!
authorderaadt <deraadt@openbsd.org>
Thu, 5 Dec 1996 13:12:11 +0000 (13:12 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 5 Dec 1996 13:12:11 +0000 (13:12 +0000)
sys/dev/atapi/acd.c

index 618073d..15113b3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: acd.c,v 1.15 1996/12/05 13:11:21 deraadt Exp $        */
+/*     $OpenBSD: acd.c,v 1.16 1996/12/05 13:12:11 deraadt Exp $        */
 
 /*
  * Copyright (c) 1996 Manuel Bouyer.  All rights reserved.
@@ -1047,6 +1047,8 @@ acd_size(acd, flags)
 
        ATAPI_DEBUG_PRINT(("acd_size: %ld %ld\n", acd->params.blksize,
            acd->params.disksize));
+       if (acd->params.blksize > 2048)
+               acd->params.blksize = 2048;
        return acd->params.disksize;
 }