diff options
author | 2008-02-05 16:24:12 +0000 | |
---|---|---|
committer | 2008-02-05 16:24:12 +0000 | |
commit | 71bb83609ea7a86bf52a9cf26b68dc47f9d582e7 (patch) | |
tree | 71275bc5aa879c3342051e1e3a71c49ac33c7cb6 /sys/dev/softraid.c | |
parent | Create a generic function to validate IO instead of copying and pasting (diff) | |
download | wireguard-openbsd-71bb83609ea7a86bf52a9cf26b68dc47f9d582e7.tar.xz wireguard-openbsd-71bb83609ea7a86bf52a9cf26b68dc47f9d582e7.zip |
Add strip size to debug print.
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r-- | sys/dev/softraid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c index 58f6ca8d485..488d2566526 100644 --- a/sys/dev/softraid.c +++ b/sys/dev/softraid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid.c,v 1.99 2008/02/05 16:15:35 marco Exp $ */ +/* $OpenBSD: softraid.c,v 1.100 2008/02/05 16:24:12 marco Exp $ */ /* * Copyright (c) 2007 Marco Peereboom <marco@peereboom.us> * @@ -2393,6 +2393,7 @@ sr_print_metadata(struct sr_metadata *sm) DNPRINTF(SR_D_META, "\t\tvol no chunks %d\n", im_sv->svm_no_chunk); DNPRINTF(SR_D_META, "\t\tvol uuid "); sr_print_uuid(& im_sv->svm_uuid, 1); + DNPRINTF(SR_D_META, "\t\tvol stripsize %d\n", im_sv->svm_strip_size); for (ch = 0; ch < im_sv->svm_no_chunk; ch++) { DNPRINTF(SR_D_META, "\t\t\tchunk vol id %d\n", |