OSDN Git Service

ChangeLog, findsuper.c:
authorTheodore Ts'o <tytso@mit.edu>
Sat, 4 Jul 1998 17:47:52 +0000 (17:47 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 4 Jul 1998 17:47:52 +0000 (17:47 +0000)
  findsuper.c (main): Print the block group number which is now being
   written by e2fsprogs.

misc/ChangeLog
misc/findsuper.c

index 5868c97..e1a9dd4 100644 (file)
@@ -1,3 +1,8 @@
+1998-07-04  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * findsuper.c (main): Print the block group number which is now
+               being written by e2fsprogs.
+
 1998-06-25  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * fsck.c (ignore): Remove unused variable cp.
index 4cc3e40..2a059f8 100644 (file)
@@ -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);