Index: g_stripe.c =================================================================== RCS file: /private/FreeBSD/src/sys/geom/stripe/g_stripe.c,v retrieving revision 1.19 diff -u -p -r1.19 g_stripe.c --- g_stripe.c 30 Aug 2004 18:50:06 -0000 1.19 +++ g_stripe.c 20 Sep 2004 15:43:55 -0000 @@ -878,8 +878,11 @@ g_stripe_taste(struct g_class *mp, struc G_STRIPE_DEBUG(3, "Tasting %s.", pp->name); /* Skip providers with 0 sectorsize. */ - if (pp->sectorsize == 0) + if (pp->sectorsize == 0) { + G_STRIPE_DEBUG(0, "Provider %s has 0 sectorsize, skipping.", + pp->name); return (NULL); + } gp = g_new_geomf(mp, "stripe:taste"); gp->start = g_stripe_start;