<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
From: Joe Thornber &lt;thornber@redhat.com&gt;

Make sure that we maintain ordering when deferring bios.


---

 25-akpm/drivers/md/dm-bio-list.h |   68 +++++++++++++++++++++++++++++++++++++++
 25-akpm/drivers/md/dm.c          |    9 ++---
 2 files changed, 72 insertions(+), 5 deletions(-)

diff -puN /dev/null drivers/md/dm-bio-list.h
--- /dev/null	Thu Apr 11 07:25:15 2002
+++ 25-akpm/drivers/md/dm-bio-list.h	Tue Feb 10 13:01:40 2004
@@ -0,0 +1,68 @@
+/*
+ * Copyright (C) 2004 Red Hat UK Ltd.
+ *
+ * This file is released under the GPL.
+ */
+
+#ifndef DM_BIO_LIST_H
+#define DM_BIO_LIST_H
+
+#include &lt;linux/bio.h&gt;
+
+struct bio_list {
+	struct bio *head;
+	struct bio *tail;
+};
+
+static inline void bio_list_init(struct bio_list *bl)
+{
+	bl-&gt;head = bl-&gt;tail = NULL;
+}
+
+static inline void bio_list_add(struct bio_list *bl, struct bio *bio)
+{
+	bio-&gt;bi_next = NULL;
+
+	if (bl-&gt;tail)
+		bl-&gt;tail-&gt;bi_next = bio;
+	else
+		bl-&gt;head = bio;
+
+	bl-&gt;tail = bio;
+}
+
+static inline void bio_list_merge(struct bio_list *bl, struct bio_list *bl2)
+{
+	if (bl-&gt;tail)
+		bl-&gt;tail-&gt;bi_next = bl2-&gt;head;
+	else
+		bl-&gt;head = bl2-&gt;head;
+
+	bl-&gt;tail = bl2-&gt;tail;
+}
+
+static inline struct bio *bio_list_pop(struct bio_list *bl)
+{
+	struct bio *bio = bl-&gt;head;
+
+	if (bio) {
+		bl-&gt;head = bl-&gt;head-&gt;bi_next;
+		if (!bl-&gt;head)
+			bl-&gt;tail = NULL;
+
+		bio-&gt;bi_next = NULL;
+	}
+
+	return bio;
+}
+
+static inline struct bio *bio_list_get(struct bio_list *bl)
+{
+	struct bio *bio = bl-&gt;head;
+
+	bl-&gt;head = bl-&gt;tail = NULL;
+
+	return bio;
+}
+
+#endif
diff -puN drivers/md/dm.c~dm-04-maintain-bio-ordering drivers/md/dm.c
--- 25/drivers/md/dm.c~dm-04-maintain-bio-ordering	Tue Feb 10 13:01:40 2004
+++ 25-akpm/drivers/md/dm.c	Tue Feb 10 13:01:40 2004
@@ -5,6 +5,7 @@
  */
 
 #include "dm.h"
+#include "dm-bio-list.h"
 
 #include &lt;linux/init.h&gt;
 #include &lt;linux/module.h&gt;
@@ -47,7 +48,7 @@ struct mapped_device {
 	 */
 	atomic_t pending;
 	wait_queue_head_t wait;
-	struct bio *deferred;
+ 	struct bio_list deferred;
 
 	/*
 	 * The current mapping.
@@ -195,8 +196,7 @@ static int queue_io(struct mapped_device
 		return 1;
 	}
 
-	bio-&gt;bi_next = md-&gt;deferred;
-	md-&gt;deferred = bio;
+	bio_list_add(&amp;md-&gt;deferred, bio);
 
 	up_write(&amp;md-&gt;lock);
 	return 0;		/* deferred successfully */
@@ -822,8 +822,7 @@ int dm_resume(struct mapped_device *md)
 	dm_table_resume_targets(md-&gt;map);
 	clear_bit(DMF_SUSPENDED, &amp;md-&gt;flags);
 	clear_bit(DMF_BLOCK_IO, &amp;md-&gt;flags);
-	def = md-&gt;deferred;
-	md-&gt;deferred = NULL;
+	def = bio_list_get(&amp;md-&gt;deferred);
 	up_write(&amp;md-&gt;lock);
 
 	flush_deferred_io(def);

_
</pre></body></html>