Deleted Added
full compact
zdb.c (273348) zdb.c (273349)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 1447 unchanged lines hidden (view full) ---

1456 uint64_t unused;
1457 char bytes[32];
1458 char comp[32];
1459 char uncomp[32];
1460
1461 if (dump_opt['d'] < 3)
1462 return;
1463
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 1447 unchanged lines hidden (view full) ---

1456 uint64_t unused;
1457 char bytes[32];
1458 char comp[32];
1459 char uncomp[32];
1460
1461 if (dump_opt['d'] < 3)
1462 return;
1463
1464 if (dl->dl_oldfmt) {
1465 dump_bpobj(&dl->dl_bpobj, "old-format deadlist", 0);
1466 return;
1467 }
1468
1464 zdb_nicenum(dl->dl_phys->dl_used, bytes);
1465 zdb_nicenum(dl->dl_phys->dl_comp, comp);
1466 zdb_nicenum(dl->dl_phys->dl_uncomp, uncomp);
1467 (void) printf("\n Deadlist: %s (%s/%s comp)\n",
1468 bytes, comp, uncomp);
1469
1470 if (dump_opt['d'] < 4)
1471 return;

--- 2164 unchanged lines hidden ---
1469 zdb_nicenum(dl->dl_phys->dl_used, bytes);
1470 zdb_nicenum(dl->dl_phys->dl_comp, comp);
1471 zdb_nicenum(dl->dl_phys->dl_uncomp, uncomp);
1472 (void) printf("\n Deadlist: %s (%s/%s comp)\n",
1473 bytes, comp, uncomp);
1474
1475 if (dump_opt['d'] < 4)
1476 return;

--- 2164 unchanged lines hidden ---