mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-28 12:34:13 +08:00
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:
parent
c9105ffbe5
commit
3e41913c48
@ -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;
|
||||
|
@ -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,
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user