Whamcloud - gitweb
filefrag: fix it so it works in the bmap fallback case.
authorEric Sandeen <sandeen@redhat.com>
Wed, 15 Jul 2009 20:22:55 +0000 (15:22 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 18 Jul 2009 13:56:10 +0000 (09:56 -0400)
It looks like some debugging crept in?

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
misc/filefrag.c

index 46e9f56..eed2b86 100644 (file)
@@ -95,8 +95,6 @@ static int get_bmap(int fd, unsigned long block, unsigned long *phy_blk)
        int     ret;
        unsigned int b;
 
-       printf("Calling get_bmap for block %lu\n", block);
-       abort();
        b = block;
        ret = ioctl(fd, FIBMAP, &b); /* FIBMAP takes pointer to integer */
        if (ret < 0) {