diff options
| author | Greg Lehey <grog@FreeBSD.org> | 1999-08-14 06:22:15 +0000 |
|---|---|---|
| committer | Greg Lehey <grog@FreeBSD.org> | 1999-08-14 06:22:15 +0000 |
| commit | 466c1060d96c13d58d3d28c69f382587bc043c06 (patch) | |
| tree | 7a3e7a74e5e7b2b948d0427023ae33787611cbb8 | |
| parent | 98256dfef8a1e789e23497062c839d83ef7c216e (diff) | |
Notes
| -rw-r--r-- | sys/dev/vinum/vinum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/vinum/vinum.c b/sys/dev/vinum/vinum.c index 9bf36e342313..cb49ed25a0e3 100644 --- a/sys/dev/vinum/vinum.c +++ b/sys/dev/vinum/vinum.c @@ -299,6 +299,9 @@ vinumopen(dev_t dev, case VINUM_PLEX_TYPE: if (Volno(dev) >= vinum_conf.volumes_allocated) return ENXIO; + /* FALLTHROUGH */ + + case VINUM_RAWPLEX_TYPE: index = Plexno(dev); /* get plex index in vinum_conf */ if (index >= vinum_conf.plexes_allocated) return ENXIO; /* no such device */ |
