From: Theodore Ts'o Date: Sat, 4 Jul 1998 17:47:52 +0000 (+0000) Subject: ChangeLog, findsuper.c: X-Git-Tag: E2FSPROGS-1_12~8 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=eb5ab749afac30e24247509b3b6ec462f9ad1502;p=tools%2Fe2fsprogs.git ChangeLog, findsuper.c: findsuper.c (main): Print the block group number which is now being written by e2fsprogs. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 5868c97..e1a9dd4 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,8 @@ +1998-07-04 Theodore Ts'o + + * findsuper.c (main): Print the block group number which is now + being written by e2fsprogs. + 1998-06-25 Theodore Ts'o * fsck.c (ignore): Remove unused variable cp. diff --git a/misc/findsuper.c b/misc/findsuper.c index 4cc3e40..2a059f8 100644 --- a/misc/findsuper.c +++ b/misc/findsuper.c @@ -78,7 +78,7 @@ main(int argc, char *argv[]) } /* Now, go looking for the superblock ! */ - printf(" thisoff block fs_blk_sz blksz last_mount\n"); + printf(" thisoff block fs_blk_sz blksz grp last_mount\n"); for (;!feof(f) && (i=fseek(f,sk,SEEK_SET))!= -1; sk+=skiprate){ if (i=fread(&ext2,sizeof(ext2),1, f)!=1) { perror("read failed"); @@ -86,7 +86,10 @@ main(int argc, char *argv[]) tm = ext2.s_mtime; s=ctime(&tm); s[24]=0; - printf("%9ld %9ld %9ld %5ld %s\n",sk,sk/1024,ext2.s_blocks_count,ext2.s_log_block_size,s); + printf("%9ld %9ld %9ld %5ld %4d %s\n", sk, + sk/1024, ext2.s_blocks_count, + ext2.s_log_block_size, + ext2.s_block_group_nr, s); } } printf("Failed on %d at %ld\n", i, sk);