summaryrefslogtreecommitdiff
path: root/sys/scsi/mpath_hds.c
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2013-08-27 00:53:11 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2013-08-27 00:53:11 +0000
commit4113944c94ed8ed679fbc0e3e99f6d8bbf900719 (patch)
tree4e7c6d0940c30da810b837ccab4a334082191fcb /sys/scsi/mpath_hds.c
parent7293eb683ef570f5ebe82bec57f518663131177d (diff)
get rid of the different path scheduler types, which simplifies the
code that picks the next path. we assume roundrobin within a group of paths now. the asym sym(4) devices work around this by putting every path in its own group.
Diffstat (limited to 'sys/scsi/mpath_hds.c')
-rw-r--r--sys/scsi/mpath_hds.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/scsi/mpath_hds.c b/sys/scsi/mpath_hds.c
index e4f28508bdb..9e5b969e1d4 100644
--- a/sys/scsi/mpath_hds.c
+++ b/sys/scsi/mpath_hds.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpath_hds.c,v 1.10 2013/08/27 00:24:03 dlg Exp $ */
+/* $OpenBSD: mpath_hds.c,v 1.11 2013/08/27 00:53:10 dlg Exp $ */
/*
* Copyright (c) 2011 David Gwynne <dlg@openbsd.org>
@@ -91,8 +91,7 @@ void hds_mpath_status(struct scsi_link *);
const struct mpath_ops hds_mpath_ops = {
"hds",
hds_mpath_checksense,
- hds_mpath_status,
- MPATH_ROUNDROBIN
+ hds_mpath_status
};
struct hds_device {