diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2012-04-26 15:49:44 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2012-04-26 15:49:44 +0000 |
commit | 989f28072d20c73ae0955d6a1e3e2fc74831cb39 (patch) | |
tree | 58240a19d06cfc768da50e9e02bd1813900e2807 /usr/src/cmd/fm | |
parent | 951bafea4a4c40f620a735a1b4827188d065e18c (diff) | |
download | illumos-gate-989f28072d20c73ae0955d6a1e3e2fc74831cb39.tar.gz |
370 would like an open ipmi baseboard driver
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Reviewed by: Albert Lee <trisk@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
Reviewed by: Alek Pinchuk <pinchuk.alek@gmail.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Dan McDonald <danmcd@nexenta.com>
Diffstat (limited to 'usr/src/cmd/fm')
-rw-r--r-- | usr/src/cmd/fm/modules/common/fdd-msg/fdd_msg.c | 2 | ||||
-rw-r--r-- | usr/src/cmd/fm/modules/common/sp-monitor/sp_monitor.c | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/usr/src/cmd/fm/modules/common/fdd-msg/fdd_msg.c b/usr/src/cmd/fm/modules/common/fdd-msg/fdd_msg.c index 7137297c0b..b618de53e0 100644 --- a/usr/src/cmd/fm/modules/common/fdd-msg/fdd_msg.c +++ b/usr/src/cmd/fm/modules/common/fdd-msg/fdd_msg.c @@ -188,7 +188,7 @@ send_fma_cap_to_ilom(fmd_hdl_t *hdl, uint32_t fma_cap) if ((ipmi_hdl = ipmi_open(&error, &msg, IPMI_TRANSPORT_BMC, NULL)) == NULL) { /* - * If /dev/bmc doesn't exist on the system, then return + * If /dev/ipmi0 doesn't exist on the system, then return * without doing anything. */ if (error != EIPMI_BMC_OPEN_FAILED) diff --git a/usr/src/cmd/fm/modules/common/sp-monitor/sp_monitor.c b/usr/src/cmd/fm/modules/common/sp-monitor/sp_monitor.c index 789e16e08d..431c0f10ce 100644 --- a/usr/src/cmd/fm/modules/common/sp-monitor/sp_monitor.c +++ b/usr/src/cmd/fm/modules/common/sp-monitor/sp_monitor.c @@ -22,13 +22,14 @@ /* * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. + * Copyright 2012 Joyent, Inc. All rights reserved. */ /* - * /dev/bmc IPMI monitor + * /dev/ipmi IPMI monitor * * The purpose of this module is to monitor the connection between the system - * and the service processor attached via /dev/bmc. The module assumes the SP + * and the service processor attached via /dev/ipmi0. The module assumes the SP * supports the Sun OEM uptime IPMI command. If the BMC connection does not * exist, or the uptime function is not implemented, then the module unloads * without doing anything. @@ -148,7 +149,7 @@ _fmd_init(fmd_hdl_t *hdl) if ((smp->sm_hdl = ipmi_open(&error, &msg, IPMI_TRANSPORT_BMC, NULL)) == NULL) { /* - * If /dev/bmc doesn't exist on the system, then unload the + * If /dev/ipmi0 doesn't exist on the system, then unload the * module without doing anything. */ if (error != EIPMI_BMC_OPEN_FAILED) |