X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=io_u.h;h=206e24fee09ec955a05220203576a6e9c03220d3;hb=114eadb2d1df6a86afdcc42a21310d8c5559e72d;hp=bdbac52577afeff573e6895621dccc903acc1d0a;hpb=a7194b2d3d427e7e5678c55a128639df9caf4a48;p=fio.git diff --git a/io_u.h b/io_u.h index bdbac525..206e24fe 100644 --- a/io_u.h +++ b/io_u.h @@ -21,7 +21,6 @@ enum { IO_U_F_TRIMMED = 1 << 5, IO_U_F_BARRIER = 1 << 6, IO_U_F_VER_LIST = 1 << 7, - IO_U_F_HIGH_PRIO = 1 << 8, }; /* @@ -50,6 +49,7 @@ struct io_u { * IO priority. */ unsigned short ioprio; + unsigned short clat_prio_index; /* * Allocated/set buffer and length @@ -193,6 +193,5 @@ static inline enum fio_ddir acct_ddir(struct io_u *io_u) td_flags_clear((td), &(io_u->flags), (val)) #define io_u_set(td, io_u, val) \ td_flags_set((td), &(io_u)->flags, (val)) -#define io_u_is_high_prio(io_u) (io_u->flags & IO_U_F_HIGH_PRIO) #endif