From 0e2ff2832c61d874df147ac8bef38f17e265a277 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Fri, 27 Feb 2004 15:34:21 +0000 Subject: Even if we're sure that we can't be orphaned here, we have to define orphan field - we're enforcing it in GEOM. This will reach KASSERT in INVARIANTS case. Add missing space. Approved by: scottl (mentor) --- sys/geom/concat/g_concat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/geom/concat/g_concat.c b/sys/geom/concat/g_concat.c index ce62edab65875..eb7db86599516 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); -- cgit v1.3