Suitably shrink a comment so it applies again.

Submitted by:	bde
This commit is contained in:
phk 2002-09-15 21:25:55 +00:00
parent c1adb115f5
commit f1fdefb5f0
2 changed files with 4 additions and 10 deletions

View File

@ -2597,13 +2597,10 @@ fdmisccmd(dev_t dev, u_int cmd, void *data)
bp->bio_done = fdbiodone;
bp->bio_flags = 0;
/*
* Now run the command. The wait loop is a version of bufwait()
* adapted for struct bio instead of struct buf and specialized
* for the current context.
*/
/* Now run the command. */
fdstrategy(bp);
error = biowait(bp, "fdcmd");
free(bp, M_TEMP);
return (error);
}

View File

@ -2597,13 +2597,10 @@ fdmisccmd(dev_t dev, u_int cmd, void *data)
bp->bio_done = fdbiodone;
bp->bio_flags = 0;
/*
* Now run the command. The wait loop is a version of bufwait()
* adapted for struct bio instead of struct buf and specialized
* for the current context.
*/
/* Now run the command. */
fdstrategy(bp);
error = biowait(bp, "fdcmd");
free(bp, M_TEMP);
return (error);
}