Home
last modified time | relevance | path

Searched refs:bl (Results 1 – 1 of 1) sorted by relevance

/include/linux/
Dbio.h581 static inline int bio_list_empty(const struct bio_list *bl) in bio_list_empty() argument
583 return bl->head == NULL; in bio_list_empty()
586 static inline void bio_list_init(struct bio_list *bl) in bio_list_init() argument
588 bl->head = bl->tail = NULL; in bio_list_init()
593 #define bio_list_for_each(bio, bl) \ argument
594 for (bio = (bl)->head; bio; bio = bio->bi_next)
596 static inline unsigned bio_list_size(const struct bio_list *bl) in bio_list_size() argument
601 bio_list_for_each(bio, bl) in bio_list_size()
607 static inline void bio_list_add(struct bio_list *bl, struct bio *bio) in bio_list_add() argument
611 if (bl->tail) in bio_list_add()
[all …]