7 extern int __must_check get_next_trim(struct thread_data *td, struct io_u *io_u);
8 extern int io_u_should_trim(struct thread_data *td, struct io_u *io_u);
11 * Determine whether a given io_u should be logged for verify or
14 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo)
16 if (!flist_empty(&ipo->trim_list)) {
17 flist_del_init(&ipo->trim_list);
23 static inline int get_next_trim(struct thread_data *td, struct io_u *io_u)
27 static inline int io_u_should_trim(struct thread_data *td, struct io_u *io_u)
31 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo)