diff options
| -rw-r--r-- | sys/dev/md/md.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 06976f5a745d..b0f179504d83 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -903,6 +903,10 @@ mdcreate_vnode(struct md_ioctl *mdio, struct thread *td) return (EBUSY); } + if (mdio->md_fwsectors != 0) + sc->fwsectors = mdio->md_fwsectors; + if (mdio->md_fwheads != 0) + sc->fwheads = mdio->md_fwheads; sc->type = MD_VNODE; sc->flags = mdio->md_options & MD_FORCE; if (!(flags & FWRITE)) |
