[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] + dm-multipath-fix-rr_add_path-order.patch added to -mm tree
- From: akpm osdl org
- To: mm-commits vger kernel org
- Cc: dm-devel redhat com, agk redhat com
- Subject: [dm-devel] + dm-multipath-fix-rr_add_path-order.patch added to -mm tree
- Date: Tue, 07 Nov 2006 12:29:17 -0800
The patch titled
dm: multipath: fix rr_add_path order
has been added to the -mm tree. Its filename is
dm-multipath-fix-rr_add_path-order.patch
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: dm: multipath: fix rr_add_path order
From: Jonathan E Brassow <jbrassow redhat com>
When adding paths to the round-robin path selector, their order gets inverted,
which is not desirable.
Fix by replacing list_add() with list_add_tail().
Signed-off-by: Jonathan E Brassow <jbrassow redhat com>
Signed-off-by: Alasdair G Kergon <agk redhat com>
Cc: <dm-devel redhat com>
Signed-off-by: Andrew Morton <akpm osdl org>
---
drivers/md/dm-round-robin.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/md/dm-round-robin.c~dm-multipath-fix-rr_add_path-order drivers/md/dm-round-robin.c
--- a/drivers/md/dm-round-robin.c~dm-multipath-fix-rr_add_path-order
+++ a/drivers/md/dm-round-robin.c
@@ -136,7 +136,7 @@ static int rr_add_path(struct path_selec
path->pscontext = pi;
- list_add(&pi->list, &s->valid_paths);
+ list_add_tail(&pi->list, &s->valid_paths);
return 0;
}
_
Patches currently in -mm which might be from jbrassow redhat com are
dm-multipath-fix-rr_add_path-order.patch
dm-raid1-fix-waiting-for-io-on-suspend.patch
dm-raid1-fix-waiting-for-io-on-suspend-fix.patch
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]