diff options
author | Shaohua Li <ShLi@fusionio.com> | 2012-06-11 08:56:32 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2012-06-11 08:56:32 +0200 |
commit | 89ac1d48971578ccb0645c292d4a058340aeb909 (patch) | |
tree | eae846f834bd4c9626c94f91be5cf2c61539703f /file.h | |
parent | a93c5f049da63a60f9962177d8ada50094d234de (diff) | |
download | fio-89ac1d48971578ccb0645c292d4a058340aeb909.tar.gz fio-89ac1d48971578ccb0645c292d4a058340aeb909.tar.bz2 |
Fix "fio: file hash not empty on exit" with blktrace replay
There are two problems:
1. blktrace data hasn't file close action
2. redirect file fileno isn't correct
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -72,6 +72,7 @@ struct fio_file { */ char *file_name; unsigned int major, minor; + int fileno; void *mmap_ptr; size_t mmap_sz; |