summaryrefslogtreecommitdiffstats
path: root/sys/geom/shsec
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2009-10-09 09:42:22 +0000
committerpjd <pjd@FreeBSD.org>2009-10-09 09:42:22 +0000
commitf5413acb70ea2e88c166cb6cd6b299589f5881a8 (patch)
tree60a15b285e372d2d672678038108727e91d53877 /sys/geom/shsec
parent5c6baa445dcc7eb15b27fa3dc3fbb8b055eb7b47 (diff)
downloadFreeBSD-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/shsec')
-rw-r--r--sys/geom/shsec/g_shsec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/geom/shsec/g_shsec.c b/sys/geom/shsec/g_shsec.c
index 96650cf..7be39bb 100644
--- a/sys/geom/shsec/g_shsec.c
+++ b/sys/geom/shsec/g_shsec.c
@@ -638,6 +638,10 @@ g_shsec_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_SHSEC_DEBUG(3, "Tasting %s.", pp->name);
gp = g_new_geomf(mp, "shsec:taste");
OpenPOWER on IntegriCloud