diff options
author | marcel <marcel@FreeBSD.org> | 2003-11-02 07:44:59 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-11-02 07:44:59 +0000 |
commit | 841bb23cd98221fbaf9ae257e5be732de6675fb3 (patch) | |
tree | 486abd060899216b7285db60bc462d6bfce6cccb /lib/libdisk | |
parent | 4aa61a879d4729f8ea36fcdbe55b10fd01b0f15e (diff) | |
download | FreeBSD-src-841bb23cd98221fbaf9ae257e5be732de6675fb3.zip FreeBSD-src-841bb23cd98221fbaf9ae257e5be732de6675fb3.tar.gz |
o In Print_Chunk(), don't print the address of the chunk on ia64. It
doesn't have any meaning and only results in lines longer than 80
characters.
o In Delete_Chunk2(), also look for chunks of type "part" under
chunks of type "whole" on ia64. They're not only under chunks of
type "freebsd" there.
Diffstat (limited to 'lib/libdisk')
-rw-r--r-- | lib/libdisk/chunk.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/libdisk/chunk.c b/lib/libdisk/chunk.c index e41796b..0fbb754 100644 --- a/lib/libdisk/chunk.c +++ b/lib/libdisk/chunk.c @@ -392,10 +392,12 @@ Print_Chunk(struct chunk *c1,int offset) putchar('>'); for (; i < 10; i++) putchar(' '); - printf("%p %8ld %8lu %8lu %-8s %-16s %-8s 0x%02x %s", - c1, c1->offset, c1->size, c1->end, c1->name, c1->sname, - chunk_name(c1->type), c1->subtype, - ShowChunkFlags(c1)); +#ifndef __ia64__ + printf("%p ", c1); +#endif + printf("%8ld %8lu %8lu %-8s %-16s %-8s 0x%02x %s", c1->offset, + c1->size, c1->end, c1->name, c1->sname, chunk_name(c1->type), + c1->subtype, ShowChunkFlags(c1)); putchar('\n'); Print_Chunk(c1->part, offset + 2); Print_Chunk(c1->next, offset); @@ -430,6 +432,11 @@ Delete_Chunk2(struct disk *d, struct chunk *c, int rflags) break; case part: c1 = Find_Mother_Chunk(d->chunks, c->offset, c->end, freebsd); +#ifdef __ia64__ + if (c1 == NULL) + c1 = Find_Mother_Chunk(d->chunks, c->offset, c->end, + whole); +#endif break; default: c1 = Find_Mother_Chunk(d->chunks, c->offset, c->end, extended); |