diff options
author | pjd <pjd@FreeBSD.org> | 2009-10-09 09:42:22 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2009-10-09 09:42:22 +0000 |
commit | f5413acb70ea2e88c166cb6cd6b299589f5881a8 (patch) | |
tree | 60a15b285e372d2d672678038108727e91d53877 /sys/geom/concat/g_concat.c | |
parent | 5c6baa445dcc7eb15b27fa3dc3fbb8b055eb7b47 (diff) | |
download | FreeBSD-src-f5413acb70ea2e88c166cb6cd6b299589f5881a8.zip FreeBSD-src-f5413acb70ea2e88c166cb6cd6b299589f5881a8.tar.gz |
If provider is open for writing when we taste it, skip it for classes that
depend on on-disk metadata. This was we won't attach to providers that are used
by other classes. For example we don't want to configure partitions on da0 if
it is part of gmirror, what we really want is partitions on mirror/foo.
During regular work it works like this: if provider is open for writing a class
receives the spoiled event from GEOM and detaches, once provider is closed the
taste event is send again and class can rediscover its metadata if it is still
there. This doesn't work that way when new class arrives, because GEOM gives
all existing providers for it to taste, also those open for writing. Classes
have to decided on their own if they want to deal with such providers (eg.
geom_dev) or not (classes modified by this commit).
Reported by: des, Oliver Lehmann <lehmann@ans-netz.de>
Tested by: des, Oliver Lehmann <lehmann@ans-netz.de>
Discussed with: phk, marcel
Reviewed by: marcel
MFC after: 3 days
Diffstat (limited to 'sys/geom/concat/g_concat.c')
-rw-r--r-- | sys/geom/concat/g_concat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/geom/concat/g_concat.c b/sys/geom/concat/g_concat.c index 021c9f5..a12f7b8 100644 --- a/sys/geom/concat/g_concat.c +++ b/sys/geom/concat/g_concat.c @@ -599,6 +599,10 @@ g_concat_taste(struct g_class *mp, struct g_provider *pp, int flags __unused) g_trace(G_T_TOPOLOGY, "%s(%s, %s)", __func__, mp->name, pp->name); g_topology_assert(); + /* Skip providers that are already open for writing. */ + if (pp->acw > 0) + return (NULL); + G_CONCAT_DEBUG(3, "Tasting %s.", pp->name); gp = g_new_geomf(mp, "concat:taste"); |