diff options
Diffstat (limited to 'sys/geom/concat/g_concat.c')
-rw-r--r-- | sys/geom/concat/g_concat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/geom/concat/g_concat.c b/sys/geom/concat/g_concat.c index ce62eda..eb7db86 100644 --- a/sys/geom/concat/g_concat.c +++ b/sys/geom/concat/g_concat.c @@ -537,7 +537,8 @@ g_concat_taste(struct g_class *mp, struct g_provider *pp, int flags __unused) gp = g_new_geomf(mp, "concat:taste"); gp->start = g_concat_start; - gp->access= g_concat_access; + gp->access = g_concat_access; + gp->orphan = g_concat_orphan; cp = g_new_consumer(gp); g_attach(cp, pp); |