From ffd106f5a3298c6b5952740ecaf44cd9add40c13 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Sun, 30 Apr 2006 22:14:17 +0000 Subject: [PATCH] We shouldn't lock the topology here - we will panic on assertion inside g_raid3_bump_syncid(). Reported by: Bradley W. Dutton MFC after: 1 day --- sys/geom/raid3/g_raid3.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/geom/raid3/g_raid3.c b/sys/geom/raid3/g_raid3.c index 2a71e94b4796..04248b178931 100644 --- a/sys/geom/raid3/g_raid3.c +++ b/sys/geom/raid3/g_raid3.c @@ -1856,9 +1856,7 @@ g_raid3_register_request(struct bio *pbp) */ if ((sc->sc_bump_id & G_RAID3_BUMP_SYNCID) != 0) { sc->sc_bump_id &= ~G_RAID3_BUMP_SYNCID; - g_topology_lock(); g_raid3_bump_syncid(sc); - g_topology_unlock(); } g_raid3_scatter(pbp); break;