X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=trim.h;h=37f5d7c871127a8bf5858a3fda620684a0e8438d;hp=6584606253f8edcab29e65d70f6bf23a6d49bc8d;hb=8019f14b8f0538adffd8af39e06e5627b9c8773b;hpb=1d7f28e1ba1c7ca20bdc1d48b7fa04f7f1673093 diff --git a/trim.h b/trim.h index 65846062..37f5d7c8 100644 --- a/trim.h +++ b/trim.h @@ -4,8 +4,8 @@ #include "fio.h" #ifdef FIO_HAVE_TRIM -extern int __must_check get_next_trim(struct thread_data *td, struct io_u *io_u); -extern int io_u_should_trim(struct thread_data *td, struct io_u *io_u); +extern bool __must_check get_next_trim(struct thread_data *td, struct io_u *io_u); +extern bool io_u_should_trim(struct thread_data *td, struct io_u *io_u); /* * Determine whether a given io_u should be logged for verify or @@ -20,13 +20,13 @@ static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ip } #else -static inline int get_next_trim(struct thread_data *td, struct io_u *io_u) +static inline bool get_next_trim(struct thread_data *td, struct io_u *io_u) { - return 1; + return false; } -static inline int io_u_should_trim(struct thread_data *td, struct io_u *io_u) +static inline bool io_u_should_trim(struct thread_data *td, struct io_u *io_u) { - return 0; + return false; } static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo) {