diff options
author | jmg <jmg@FreeBSD.org> | 2006-09-09 21:45:37 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2006-09-09 21:45:37 +0000 |
commit | ecd9e77d3e390be599f5cc1767de85c967bcf755 (patch) | |
tree | 84526cadb4bbd2f0c29c540a72b7f9f31d1a7b6c /sys/geom/raid3 | |
parent | 0ba4a0aa5d1f1a50e37125fe64189ed18afe58f6 (diff) | |
download | FreeBSD-src-ecd9e77d3e390be599f5cc1767de85c967bcf755.zip FreeBSD-src-ecd9e77d3e390be599f5cc1767de85c967bcf755.tar.gz |
move created/detected/activated under debug level 1 to quiet the common case..
add count of active and total components to the launched line so you can
see at a glance if your mirror/raid3 is complete...
now:
GEOM_MIRROR: Device mirror/sam launched (2/2).
Reviewed by: pjd
Diffstat (limited to 'sys/geom/raid3')
-rw-r--r-- | sys/geom/raid3/g_raid3.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/geom/raid3/g_raid3.c b/sys/geom/raid3/g_raid3.c index 177148b..23e2f1b 100644 --- a/sys/geom/raid3/g_raid3.c +++ b/sys/geom/raid3/g_raid3.c @@ -2266,8 +2266,9 @@ g_raid3_launch_provider(struct g_raid3_softc *sc) sc->sc_provider = pp; g_error_provider(pp, 0); g_topology_unlock(); - G_RAID3_DEBUG(0, "Device %s: provider %s launched.", sc->sc_name, - pp->name); + G_RAID3_DEBUG(0, "Device %s launched (%u/%u).", pp->name, + g_raid3_ndisks(sc, G_RAID3_DISK_STATE_ACTIVE), sc->sc_ndisks); + if (sc->sc_state == G_RAID3_DEVICE_STATE_DEGRADED) g_raid3_sync_start(sc); } @@ -2632,7 +2633,7 @@ again: DISK_STATE_CHANGED(); disk->d_state = state; - G_RAID3_DEBUG(0, "Device %s: provider %s detected.", + G_RAID3_DEBUG(1, "Device %s: provider %s detected.", sc->sc_name, g_raid3_get_diskname(disk)); if (sc->sc_state == G_RAID3_DEVICE_STATE_STARTING) break; @@ -2675,7 +2676,7 @@ again: disk->d_sync.ds_offset_done = 0; g_raid3_update_idle(sc, disk); g_raid3_update_metadata(disk); - G_RAID3_DEBUG(0, "Device %s: provider %s activated.", + G_RAID3_DEBUG(1, "Device %s: provider %s activated.", sc->sc_name, g_raid3_get_diskname(disk)); break; case G_RAID3_DISK_STATE_STALE: @@ -3126,7 +3127,8 @@ g_raid3_create(struct g_class *mp, const struct g_raid3_metadata *md) return (NULL); } - G_RAID3_DEBUG(0, "Device %s created (id=%u).", sc->sc_name, sc->sc_id); + G_RAID3_DEBUG(1, "Device %s created (%u components, id=%u).", + sc->sc_name, sc->sc_ndisks, sc->sc_id); sc->sc_rootmount = root_mount_hold("GRAID3"); G_RAID3_DEBUG(1, "root_mount_hold %p", sc->sc_rootmount); |