From patchwork Wed May 23 23:01:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: debugfs: fix strtoblk for 64bit block numbers Date: Wed, 23 May 2012 13:01:14 -0000 From: Eric Sandeen X-Patchwork-Id: 161047 Message-Id: <4FBD6C3A.1020301@redhat.com> To: ext4 development # debugfs -R "icheck 4295032832" testimage debugfs 1.42.3 (14-May-2012) got block 4295032832 for 4295032832 got block 65536 for 4295032832 Block Inode number 65536 Um, that's no good. Affects icheck, freeb, setb, testb... Signed-off-by: Eric Sandeen --- -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/debugfs/util.c b/debugfs/util.c index f43b470..b07a8cc 100644 --- a/debugfs/util.c +++ b/debugfs/util.c @@ -298,7 +298,7 @@ unsigned long long parse_ulonglong(const char *str, const char *cmd, */ int strtoblk(const char *cmd, const char *str, blk64_t *ret) { - blk_t blk; + blk64_t blk; int err; blk = parse_ulonglong(str, cmd, "block number", &err);