Missed fio.h update for filehash, oops
authorJens Axboe <jens.axboe@oracle.com>
Sat, 1 Mar 2008 17:58:08 +0000 (18:58 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Sat, 1 Mar 2008 17:58:08 +0000 (18:58 +0100)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
fio.h

diff --git a/fio.h b/fio.h
index 6b8ffe29512bffe563a28263e7bbebb1bd50cd67..fe1a227d317649f52398565881edbce715e7c998 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -274,6 +274,7 @@ enum fio_file_flags {
        FIO_FILE_EXTEND         = 1 << 2,       /* needs extend */
        FIO_FILE_DONE           = 1 << 3,       /* io completed to this file */
        FIO_SIZE_KNOWN          = 1 << 4,       /* size has been set */
        FIO_FILE_EXTEND         = 1 << 2,       /* needs extend */
        FIO_FILE_DONE           = 1 << 3,       /* io completed to this file */
        FIO_SIZE_KNOWN          = 1 << 4,       /* size has been set */
+       FIO_FILE_HASHED         = 1 << 5,       /* file is on hash */
 };
 
 /*
 };
 
 /*
@@ -281,6 +282,7 @@ enum fio_file_flags {
  * this structure holds state information for a single file.
  */
 struct fio_file {
  * this structure holds state information for a single file.
  */
 struct fio_file {
+       struct list_head hash_list;
        enum fio_filetype filetype;
 
        /*
        enum fio_filetype filetype;
 
        /*