X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=trim.h;h=37f5d7c871127a8bf5858a3fda620684a0e8438d;hp=d0d7a8dc10941fe90e8f2df20309fea4b168be3a;hb=e5f9a813ea5ea001c5612bccb587ebd960b36212;hpb=0d29de831183dfd049c97a03008d425ce21e2fa4 diff --git a/trim.h b/trim.h index d0d7a8dc..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,18 +20,17 @@ 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) { } -#error foo #endif #endif