mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Suitably shrink a comment so it applies again.
Submitted by: bde
This commit is contained in:
parent
f05c39e9d5
commit
c3bdb2f779
2 changed files with 4 additions and 10 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue