diff options
author | phk <phk@FreeBSD.org> | 2004-11-03 09:08:10 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-11-03 09:08:10 +0000 |
commit | cc263b99342cbf38792d8aa46db2621f5798a9de (patch) | |
tree | b855f6d8e977548001239ba15ea9566c5a7cb852 /sys/geom | |
parent | 020e7745249e3cc88dae054414ed9cce47633413 (diff) | |
download | FreeBSD-src-cc263b99342cbf38792d8aa46db2621f5798a9de.zip FreeBSD-src-cc263b99342cbf38792d8aa46db2621f5798a9de.tar.gz |
Stop wasting a bootverbose line on all geom slices.
Diffstat (limited to 'sys/geom')
-rw-r--r-- | sys/geom/geom_slice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_slice.c b/sys/geom/geom_slice.c index 45b552b..e69db3b 100644 --- a/sys/geom/geom_slice.c +++ b/sys/geom/geom_slice.c @@ -364,7 +364,7 @@ g_slice_config(struct g_geom *gp, u_int idx, int how, off_t offset, off_t length pp->stripesize = pp2->stripesize; pp->stripeoffset = (pp2->stripeoffset + offset) % pp->stripesize; } - if (bootverbose) + if (0 && bootverbose) printf("GEOM: Configure %s, start %jd length %jd end %jd\n", pp->name, (intmax_t)offset, (intmax_t)length, (intmax_t)(offset + length - 1)); |