[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20070711205701.GT24114@agk.fab.redhat.com>
Date: Wed, 11 Jul 2007 21:57:01 +0100
From: Alasdair G Kergon <agk@...hat.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: dm-devel@...hat.com, linux-kernel@...r.kernel.org,
Jens Axboe <jens.axboe@...cle.com>
Subject: [2.6.23 PATCH 02/18] dm: bio_list prefetch removal
From: Alasdair G Kergon <agk@...hat.com>
Remove dubious prefetch from bio_list_for_each() macro.
Cc: Jens Axboe <jens.axboe@...cle.com>
Signed-off-by: Alasdair G Kergon <agk@...hat.com>
---
drivers/md/dm-bio-list.h | 4 +---
1 files changed, 1 insertion(+), 3 deletions(-)
Index: linux/drivers/md/dm-bio-list.h
===================================================================
--- linux.orig/drivers/md/dm-bio-list.h 2007-07-11 21:37:36.000000000 +0100
+++ linux/drivers/md/dm-bio-list.h 2007-07-11 21:37:37.000000000 +0100
@@ -8,7 +8,6 @@
#define DM_BIO_LIST_H
#include <linux/bio.h>
-#include <linux/prefetch.h>
struct bio_list {
struct bio *head;
@@ -31,8 +30,7 @@ static inline void bio_list_init(struct
}
#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)
{
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists