Handle large setb/testb/freeb commands in debugfs

Fix a signed vs. unsigned problem by using blk_t instead of int

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
This commit is contained in:
Eric Sandeen 2007-04-10 15:40:04 -04:00 committed by Theodore Ts'o
parent c9105ffbe5
commit 3e41913c48
3 changed files with 5 additions and 5 deletions

View 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;

View 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,

View 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;