diff options
author | Robert Mustacchi <rm@joyent.com> | 2015-08-07 02:19:32 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-09-12 16:00:59 -0700 |
commit | 9bd90b910ac60a25b2b3f2a00f19fca0af45b174 (patch) | |
tree | 84afbd13efa4d873bdd3d001235e01973cbf21bb /usr/src | |
parent | 363d35fde600fdc6ede49498a7efc2ff2ab12a66 (diff) | |
download | illumos-joyent-9bd90b910ac60a25b2b3f2a00f19fca0af45b174.tar.gz |
6207 fm topo ses plugin should process enclosures in 'UNKNOWN' state
Reviewed by: Hans Rosenfeld <hans.rosenfeld@nexenta.com>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/lib/fm/topo/modules/common/ses/ses.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/lib/fm/topo/modules/common/ses/ses.c b/usr/src/lib/fm/topo/modules/common/ses/ses.c index 835c6e7b9a..37b991e3a4 100644 --- a/usr/src/lib/fm/topo/modules/common/ses/ses.c +++ b/usr/src/lib/fm/topo/modules/common/ses/ses.c @@ -23,6 +23,7 @@ * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright 2012 Milan Jurik. All rights reserved. * Copyright 2015 Nexenta Systems, Inc. All rights reserved. + * Copyright 2015 Joyent, Inc. */ #include <alloca.h> @@ -1149,7 +1150,8 @@ ses_create_disk(ses_enum_data_t *sdp, tnode_t *pnode, nvlist_t *props) status != SES_ESC_CRITICAL && status != SES_ESC_NONCRITICAL && status != SES_ESC_UNRECOVERABLE && - status != SES_ESC_NO_ACCESS) + status != SES_ESC_NO_ACCESS && + status != SES_ESC_UNKNOWN) return (0); topo_mod_dprintf(mod, "found attached disk"); |