diff options
author | Jonathan E Brassow <jbrassow@redhat.com> | 2006-11-08 17:44:43 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-08 18:29:23 -0800 |
commit | 5d55fdf94998db1df9ee7f1def8806bfd0e5ff73 (patch) | |
tree | 55a1bf7e05a9b319ca0ab5a95a72df6b929147f8 /drivers/md | |
parent | d287483d6d7a2d5b313aee155285f89b57d9cd4a (diff) | |
download | op-kernel-dev-5d55fdf94998db1df9ee7f1def8806bfd0e5ff73.zip op-kernel-dev-5d55fdf94998db1df9ee7f1def8806bfd0e5ff73.tar.gz |
[PATCH] dm: multipath: fix rr_add_path order
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>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-round-robin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-round-robin.c b/drivers/md/dm-round-robin.c index c5a16c5..6f9fcd4 100644 --- a/drivers/md/dm-round-robin.c +++ b/drivers/md/dm-round-robin.c @@ -136,7 +136,7 @@ static int rr_add_path(struct path_selector *ps, struct path *path, path->pscontext = pi; - list_add(&pi->list, &s->valid_paths); + list_add_tail(&pi->list, &s->valid_paths); return 0; } |