diff options
-rw-r--r-- | drivers/md/dm-bio-list.h | 5 | ||||
-rw-r--r-- | drivers/md/dm-delay.c | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/drivers/md/dm-bio-list.h b/drivers/md/dm-bio-list.h index 3f7b827649e3..d4509be0fe67 100644 --- a/drivers/md/dm-bio-list.h +++ b/drivers/md/dm-bio-list.h | |||
@@ -21,11 +21,6 @@ static inline int bio_list_empty(const struct bio_list *bl) | |||
21 | return bl->head == NULL; | 21 | return bl->head == NULL; |
22 | } | 22 | } |
23 | 23 | ||
24 | #define BIO_LIST_INIT { .head = NULL, .tail = NULL } | ||
25 | |||
26 | #define BIO_LIST(bl) \ | ||
27 | struct bio_list bl = BIO_LIST_INIT | ||
28 | |||
29 | static inline void bio_list_init(struct bio_list *bl) | 24 | static inline void bio_list_init(struct bio_list *bl) |
30 | { | 25 | { |
31 | bl->head = bl->tail = NULL; | 26 | bl->head = bl->tail = NULL; |
diff --git a/drivers/md/dm-delay.c b/drivers/md/dm-delay.c index 719f871bbd56..bdd37f881c42 100644 --- a/drivers/md/dm-delay.c +++ b/drivers/md/dm-delay.c | |||
@@ -83,7 +83,7 @@ static struct bio *flush_delayed_bios(struct delay_c *dc, int flush_all) | |||
83 | struct dm_delay_info *delayed, *next; | 83 | struct dm_delay_info *delayed, *next; |
84 | unsigned long next_expires = 0; | 84 | unsigned long next_expires = 0; |
85 | int start_timer = 0; | 85 | int start_timer = 0; |
86 | BIO_LIST(flush_bios); | 86 | struct bio_list flush_bios = { }; |
87 | 87 | ||
88 | mutex_lock(&delayed_bios_lock); | 88 | mutex_lock(&delayed_bios_lock); |
89 | list_for_each_entry_safe(delayed, next, &dc->delayed_bios, list) { | 89 | list_for_each_entry_safe(delayed, next, &dc->delayed_bios, list) { |