debugfs: open file systems using EXT2_FLAG_64BITS

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Eric Sandeen 2009-10-25 21:41:13 -04:00 committed by Theodore Ts'o
parent 72a729dbf9
commit 03b9dca63a
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ void do_open_filesys(int argc, char **argv)
int catastrophic = 0;
blk64_t superblock = 0;
blk64_t blocksize = 0;
int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES | EXT2_FLAG_64BITS;
char *data_filename = 0;
reset_getopt();
@ -2150,7 +2150,7 @@ int main(int argc, char **argv)
int sci_idx;
const char *usage = "Usage: %s [-b blocksize] [-s superblock] [-f cmd_file] [-R request] [-V] [[-w] [-c] device]";
int c;
int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES | EXT2_FLAG_64BITS;
char *request = 0;
int exit_status = 0;
char *cmd_file = 0;