mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Argl!, finally found this bummer. The code testing for a write-
protected drive at open() time has been *totally bogus*! The guy who submitted it didn't understand all the implications of calling set_motor(), and the `who' who included the patch into the tree did it blindly... Pleeeeze, don't commit code to this driver unless you are really going to understand what it does! This one caused me to pull out even more hears, and those who know me do know that i ain't got too many o'them. :-)
This commit is contained in:
parent
d5453ba5c4
commit
dac0f2dbc1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5552
3 changed files with 30 additions and 108 deletions
|
@ -43,7 +43,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
|
||||
* $Id: fd.c,v 1.16.1.2 1995/01/10 23:49:30 j Exp $
|
||||
* $Id: fd.c,v 1.48 1995/01/11 16:13:01 joerg Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -971,33 +971,6 @@ Fdopen(dev_t dev, int flags)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* select it */
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNON);
|
||||
|
||||
if (flags & FWRITE) {
|
||||
/*
|
||||
* Check to make sure the diskette is writable:
|
||||
*/
|
||||
int err = 0;
|
||||
|
||||
if (fd_sense_drive_status(fdc, &st3) != 0)
|
||||
err = EIO;
|
||||
else if ( (st3 & NE7_ST3_WP) )
|
||||
{
|
||||
/* XXX should be tprintf() */
|
||||
printf("fd%d: drive is write protected.\n", fdu);
|
||||
err = EIO;
|
||||
}
|
||||
|
||||
if (err) {
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNOFF);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNOFF);
|
||||
|
||||
fd_data[fdu].ft = fd_types + type - 1;
|
||||
fd_data[fdu].flags |= FD_OPEN;
|
||||
kdc_fd[fdu].kdc_state = DC_BUSY;
|
||||
|
@ -1597,14 +1570,8 @@ fdstate(fdcu_t fdcu, fdc_p fdc)
|
|||
return(1); /* will return immediatly */
|
||||
default:
|
||||
printf("fdc%d: Unexpected FD int->", fdcu);
|
||||
if (fd_sense_int(fdc, &st0, &cyl) != 0)
|
||||
{
|
||||
printf("[controller is dead now]\n");
|
||||
return(0);
|
||||
}
|
||||
printf("ST0 = %x, PCN = %x\n", st0, cyl);
|
||||
if (fd_read_status(fdc, fd->fdsu) == 0)
|
||||
printf("FDC status :%lx %lx %lx %lx %lx %lx %lx\n",
|
||||
printf("FDC status :%lx %lx %lx %lx %lx %lx %lx ",
|
||||
fdc->status[0],
|
||||
fdc->status[1],
|
||||
fdc->status[2],
|
||||
|
@ -1613,9 +1580,16 @@ fdstate(fdcu_t fdcu, fdc_p fdc)
|
|||
fdc->status[5],
|
||||
fdc->status[6] );
|
||||
else
|
||||
printf("No status available\n");
|
||||
printf("No status available ");
|
||||
if (fd_sense_int(fdc, &st0, &cyl) != 0)
|
||||
{
|
||||
printf("[controller is dead now]\n");
|
||||
return(0);
|
||||
}
|
||||
printf("ST0 = %x, PCN = %x\n", st0, cyl);
|
||||
return(0);
|
||||
}
|
||||
/*XXX confusing: some branches return immediately, others end up here*/
|
||||
return(1); /* Come back immediatly to new state */
|
||||
}
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
|
||||
* $Id: fd.c,v 1.16.1.2 1995/01/10 23:49:30 j Exp $
|
||||
* $Id: fd.c,v 1.48 1995/01/11 16:13:01 joerg Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -971,33 +971,6 @@ Fdopen(dev_t dev, int flags)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* select it */
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNON);
|
||||
|
||||
if (flags & FWRITE) {
|
||||
/*
|
||||
* Check to make sure the diskette is writable:
|
||||
*/
|
||||
int err = 0;
|
||||
|
||||
if (fd_sense_drive_status(fdc, &st3) != 0)
|
||||
err = EIO;
|
||||
else if ( (st3 & NE7_ST3_WP) )
|
||||
{
|
||||
/* XXX should be tprintf() */
|
||||
printf("fd%d: drive is write protected.\n", fdu);
|
||||
err = EIO;
|
||||
}
|
||||
|
||||
if (err) {
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNOFF);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNOFF);
|
||||
|
||||
fd_data[fdu].ft = fd_types + type - 1;
|
||||
fd_data[fdu].flags |= FD_OPEN;
|
||||
kdc_fd[fdu].kdc_state = DC_BUSY;
|
||||
|
@ -1597,14 +1570,8 @@ fdstate(fdcu_t fdcu, fdc_p fdc)
|
|||
return(1); /* will return immediatly */
|
||||
default:
|
||||
printf("fdc%d: Unexpected FD int->", fdcu);
|
||||
if (fd_sense_int(fdc, &st0, &cyl) != 0)
|
||||
{
|
||||
printf("[controller is dead now]\n");
|
||||
return(0);
|
||||
}
|
||||
printf("ST0 = %x, PCN = %x\n", st0, cyl);
|
||||
if (fd_read_status(fdc, fd->fdsu) == 0)
|
||||
printf("FDC status :%lx %lx %lx %lx %lx %lx %lx\n",
|
||||
printf("FDC status :%lx %lx %lx %lx %lx %lx %lx ",
|
||||
fdc->status[0],
|
||||
fdc->status[1],
|
||||
fdc->status[2],
|
||||
|
@ -1613,9 +1580,16 @@ fdstate(fdcu_t fdcu, fdc_p fdc)
|
|||
fdc->status[5],
|
||||
fdc->status[6] );
|
||||
else
|
||||
printf("No status available\n");
|
||||
printf("No status available ");
|
||||
if (fd_sense_int(fdc, &st0, &cyl) != 0)
|
||||
{
|
||||
printf("[controller is dead now]\n");
|
||||
return(0);
|
||||
}
|
||||
printf("ST0 = %x, PCN = %x\n", st0, cyl);
|
||||
return(0);
|
||||
}
|
||||
/*XXX confusing: some branches return immediately, others end up here*/
|
||||
return(1); /* Come back immediatly to new state */
|
||||
}
|
||||
|
||||
|
|
46
sys/isa/fd.c
46
sys/isa/fd.c
|
@ -43,7 +43,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
|
||||
* $Id: fd.c,v 1.16.1.2 1995/01/10 23:49:30 j Exp $
|
||||
* $Id: fd.c,v 1.48 1995/01/11 16:13:01 joerg Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -971,33 +971,6 @@ Fdopen(dev_t dev, int flags)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* select it */
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNON);
|
||||
|
||||
if (flags & FWRITE) {
|
||||
/*
|
||||
* Check to make sure the diskette is writable:
|
||||
*/
|
||||
int err = 0;
|
||||
|
||||
if (fd_sense_drive_status(fdc, &st3) != 0)
|
||||
err = EIO;
|
||||
else if ( (st3 & NE7_ST3_WP) )
|
||||
{
|
||||
/* XXX should be tprintf() */
|
||||
printf("fd%d: drive is write protected.\n", fdu);
|
||||
err = EIO;
|
||||
}
|
||||
|
||||
if (err) {
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNOFF);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
set_motor(fdc->fdcu, fd_data[fdu].fdsu, TURNOFF);
|
||||
|
||||
fd_data[fdu].ft = fd_types + type - 1;
|
||||
fd_data[fdu].flags |= FD_OPEN;
|
||||
kdc_fd[fdu].kdc_state = DC_BUSY;
|
||||
|
@ -1597,14 +1570,8 @@ fdstate(fdcu_t fdcu, fdc_p fdc)
|
|||
return(1); /* will return immediatly */
|
||||
default:
|
||||
printf("fdc%d: Unexpected FD int->", fdcu);
|
||||
if (fd_sense_int(fdc, &st0, &cyl) != 0)
|
||||
{
|
||||
printf("[controller is dead now]\n");
|
||||
return(0);
|
||||
}
|
||||
printf("ST0 = %x, PCN = %x\n", st0, cyl);
|
||||
if (fd_read_status(fdc, fd->fdsu) == 0)
|
||||
printf("FDC status :%lx %lx %lx %lx %lx %lx %lx\n",
|
||||
printf("FDC status :%lx %lx %lx %lx %lx %lx %lx ",
|
||||
fdc->status[0],
|
||||
fdc->status[1],
|
||||
fdc->status[2],
|
||||
|
@ -1613,9 +1580,16 @@ fdstate(fdcu_t fdcu, fdc_p fdc)
|
|||
fdc->status[5],
|
||||
fdc->status[6] );
|
||||
else
|
||||
printf("No status available\n");
|
||||
printf("No status available ");
|
||||
if (fd_sense_int(fdc, &st0, &cyl) != 0)
|
||||
{
|
||||
printf("[controller is dead now]\n");
|
||||
return(0);
|
||||
}
|
||||
printf("ST0 = %x, PCN = %x\n", st0, cyl);
|
||||
return(0);
|
||||
}
|
||||
/*XXX confusing: some branches return immediately, others end up here*/
|
||||
return(1); /* Come back immediatly to new state */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue