Whamcloud - gitweb
Work around Debian Bug #712530
[tools/e2fsprogs.git] / e2fsck / scantest.c
index 47acfff..16380b3 100644 (file)
@@ -2,6 +2,7 @@
  * scantest.c - test the speed of the inode scan routine
  */
 
+#include "config.h"
 #include <string.h>
 #include <fcntl.h>
 #include <ctype.h>
 #include <getopt.h>
 #endif
 #include <unistd.h>
-#ifdef HAVE_MNTENT_H
-#include <mntent.h>
-#endif
 #include <sys/ioctl.h>
+#ifdef HAVE_MALLOC_H
 #include <malloc.h>
+#endif
 #include <sys/resource.h>
 
 #include "et/com_err.h"
@@ -29,8 +29,7 @@
 #include <sys/types.h>
 #include <sys/time.h>
 
-#include <linux/ext2_fs.h>
-
+#include "ext2fs/ext2_fs.h"
 #include "ext2fs/ext2fs.h"
 
 
@@ -54,7 +53,7 @@ struct resource_track global_rtrack;
 void init_resource_track(struct resource_track *track)
 {
        struct rusage r;
-       
+
        track->brk_start = sbrk(0);
        gettimeofday(&track->time_start, 0);
        getrusage(RUSAGE_SELF, &r);
@@ -93,13 +92,13 @@ int main (int argc, char *argv[])
        int             i;
        ext2_filsys     fs;
        ext2_inode_scan scan;
-       ino_t   ino;
+       ext2_ino_t      ino;
        struct ext2_inode inode;
 
        printf(_("size of inode=%d\n"), sizeof(inode));
 
        device_name = "/dev/hda3";
-       
+
        init_resource_track(&global_rtrack);
 
        retval = ext2fs_open(device_name, 0,
@@ -132,11 +131,11 @@ int main (int argc, char *argv[])
                        exit(1);
                }
        }
-       
+
 
        ext2fs_close(fs);
-       
+
        print_resource_track(&global_rtrack);
-       
+
        return exit_value;
 }