OSDN Git Service

Handle large setb/testb/freeb commands in debugfs
authorEric Sandeen <sandeen@redhat.com>
Tue, 10 Apr 2007 19:40:04 +0000 (15:40 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 10 Apr 2007 19:40:04 +0000 (15:40 -0400)
Fix a signed vs. unsigned problem by using blk_t instead of int

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
debugfs/debugfs.c
debugfs/debugfs.h
debugfs/util.c

index 5efeb07..c19f2a9 100644 (file)
@@ -726,7 +726,7 @@ void do_testi(int argc, char *argv[])
 void do_freeb(int argc, char *argv[])
 {
        blk_t block;
-       int count = 1;
+       blk_t count = 1;
 
        if (common_block_args_process(argc, argv, &block, &count))
                return;
@@ -745,7 +745,7 @@ void do_freeb(int argc, char *argv[])
 void do_setb(int argc, char *argv[])
 {
        blk_t block;
-       int count = 1;
+       blk_t count = 1;
 
        if (common_block_args_process(argc, argv, &block, &count))
                return;
@@ -764,7 +764,7 @@ void do_setb(int argc, char *argv[])
 void do_testb(int argc, char *argv[])
 {
        blk_t block;
-       int count = 1;
+       blk_t count = 1;
 
        if (common_block_args_process(argc, argv, &block, &count))
                return;
index 449563f..d72c7ac 100644 (file)
@@ -41,7 +41,7 @@ extern int common_args_process(int argc, char *argv[], int min_argc,
 extern int common_inode_args_process(int argc, char *argv[],
                                     ext2_ino_t *inode, int flags);
 extern int common_block_args_process(int argc, char *argv[],
-                                    blk_t *block, int *count);
+                                    blk_t *block, blk_t *count);
 extern int debugfs_read_inode(ext2_ino_t ino, struct ext2_inode * inode,
                              const char *cmd);
 extern int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode,
index c6096ab..714d799 100644 (file)
@@ -325,7 +325,7 @@ int common_inode_args_process(int argc, char *argv[],
  * This is a helper function used by do_freeb, do_setb, and do_testb
  */
 int common_block_args_process(int argc, char *argv[],
-                             blk_t *block, int *count)
+                             blk_t *block, blk_t *count)
 {
        int     err;