summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Lehey <grog@FreeBSD.org>1999-08-14 06:22:15 +0000
committerGreg Lehey <grog@FreeBSD.org>1999-08-14 06:22:15 +0000
commit466c1060d96c13d58d3d28c69f382587bc043c06 (patch)
tree7a3e7a74e5e7b2b948d0427023ae33787611cbb8
parent98256dfef8a1e789e23497062c839d83ef7c216e (diff)
Notes
-rw-r--r--sys/dev/vinum/vinum.c3
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 */