1 Star 0 Fork 1

492973555/fio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
blktrace.h 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef FIO_BLKTRACE_H
#define FIO_BLKTRACE_H
#ifdef FIO_HAVE_BLKTRACE
#include <asm/types.h>
#include "blktrace_api.h"
struct blktrace_cursor {
struct fifo *fifo; // fifo queue for reading
int fd; // blktrace file
__u64 length; // length of trace
struct blk_io_trace t; // current io trace
int swap; // bitwise reverse required
int scalar; // scale percentage
int iter; // current iteration
int nr_iter; // number of iterations to run
};
bool is_blktrace(const char *, int *);
bool load_blktrace(struct thread_data *, const char *, int);
int merge_blktrace_iologs(struct thread_data *td);
#else
static inline bool is_blktrace(const char *fname, int *need_swap)
{
return false;
}
static inline bool load_blktrace(struct thread_data *td, const char *fname,
int need_swap)
{
return false;
}
static inline int merge_blktrace_iologs(struct thread_data *td)
{
return false;
}
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/qq492973555/fio.git
[email protected]:qq492973555/fio.git
qq492973555
fio
fio
master

搜索帮助