Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / md / dm-bio-list.h
blobd4509be0fe67f78ecb91c0a5981d28ab9edd31cc
1 /*
2 * Copyright (C) 2004 Red Hat UK Ltd.
4 * This file is released under the GPL.
5 */
7 #ifndef DM_BIO_LIST_H
8 #define DM_BIO_LIST_H
10 #include <linux/bio.h>
12 #ifdef CONFIG_BLOCK
14 struct bio_list {
15 struct bio *head;
16 struct bio *tail;
19 static inline int bio_list_empty(const struct bio_list *bl)
21 return bl->head == NULL;
24 static inline void bio_list_init(struct bio_list *bl)
26 bl->head = bl->tail = NULL;
29 #define bio_list_for_each(bio, bl) \
30 for (bio = (bl)->head; bio; bio = bio->bi_next)
32 static inline unsigned bio_list_size(const struct bio_list *bl)
34 unsigned sz = 0;
35 struct bio *bio;
37 bio_list_for_each(bio, bl)
38 sz++;
40 return sz;
43 static inline void bio_list_add(struct bio_list *bl, struct bio *bio)
45 bio->bi_next = NULL;
47 if (bl->tail)
48 bl->tail->bi_next = bio;
49 else
50 bl->head = bio;
52 bl->tail = bio;
55 static inline void bio_list_merge(struct bio_list *bl, struct bio_list *bl2)
57 if (!bl2->head)
58 return;
60 if (bl->tail)
61 bl->tail->bi_next = bl2->head;
62 else
63 bl->head = bl2->head;
65 bl->tail = bl2->tail;
68 static inline void bio_list_merge_head(struct bio_list *bl,
69 struct bio_list *bl2)
71 if (!bl2->head)
72 return;
74 if (bl->head)
75 bl2->tail->bi_next = bl->head;
76 else
77 bl->tail = bl2->tail;
79 bl->head = bl2->head;
82 static inline struct bio *bio_list_pop(struct bio_list *bl)
84 struct bio *bio = bl->head;
86 if (bio) {
87 bl->head = bl->head->bi_next;
88 if (!bl->head)
89 bl->tail = NULL;
91 bio->bi_next = NULL;
94 return bio;
97 static inline struct bio *bio_list_get(struct bio_list *bl)
99 struct bio *bio = bl->head;
101 bl->head = bl->tail = NULL;
103 return bio;
106 #endif /* CONFIG_BLOCK */
107 #endif