diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2013-08-26 10:50:16 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2013-08-26 10:50:16 +0000 |
commit | 2dd4196b34a47c19a301451b0e047917164aad39 (patch) | |
tree | 63dc669ba2ed69da01b97620cdd0d197c562ffbf | |
parent | 1c5c69660b91c8695da872196a4b591774e5cf5b (diff) |
all paths are considered active, not in some unknown state.
-rw-r--r-- | sys/scsi/mpath_sym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/mpath_sym.c b/sys/scsi/mpath_sym.c index 8218b5bab56..54f15a2d744 100644 --- a/sys/scsi/mpath_sym.c +++ b/sys/scsi/mpath_sym.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpath_sym.c,v 1.13 2013/08/26 10:48:58 dlg Exp $ */ +/* $OpenBSD: mpath_sym.c,v 1.14 2013/08/26 10:50:15 dlg Exp $ */ /* * Copyright (c) 2010 David Gwynne <dlg@openbsd.org> @@ -210,5 +210,5 @@ sym_mpath_status(struct scsi_link *link) { struct sym_softc *sc = link->device_softc; - mpath_path_status(&sc->sc_path, MPATH_S_UNKNOWN); + mpath_path_status(&sc->sc_path, MPATH_S_ACTIVE); } |