Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 59277
b: refs/heads/master
c: 79e15ae
h: refs/heads/master
i:
  59275: e7a0c28
v: v3
  • Loading branch information
Alasdair G Kergon authored and Linus Torvalds committed Jul 12, 2007
1 parent ead0364 commit 1c1f931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4aabab2181f20560948c2045ce1faaa9ac1507a8
refs/heads/master: 79e15ae424afa0a40b1a0c4478046d6ba0b71e20
4 changes: 1 addition & 3 deletions trunk/drivers/md/dm-bio-list.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#define DM_BIO_LIST_H

#include <linux/bio.h>
#include <linux/prefetch.h>

struct bio_list {
struct bio *head;
Expand All @@ -31,8 +30,7 @@ static inline void bio_list_init(struct bio_list *bl)
}

#define bio_list_for_each(bio, bl) \
for (bio = (bl)->head; bio && ({ prefetch(bio->bi_next); 1; }); \
bio = bio->bi_next)
for (bio = (bl)->head; bio; bio = bio->bi_next)

static inline unsigned bio_list_size(const struct bio_list *bl)
{
Expand Down

0 comments on commit 1c1f931

Please sign in to comment.