aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/mpt2sas
diff options
context:
space:
mode:
authorKashyap, Desai <kashyap.desai@lsi.com>2009-09-23 08:01:01 -0400
committerJames Bottomley <James.Bottomley@suse.de>2009-10-29 13:03:13 -0400
commitec6c2b43b08f29e08ed5440abae1ec18d80fa8b7 (patch)
treed56e98369e1f3e153a101d240dc2a3d9eca00893 /drivers/scsi/mpt2sas
parente0077d607f716f68d15ab6fbf3d9f4c41434142d (diff)
[SCSI] mpt2sas: Added new info messages for IR and Expander events.
(1) for the MPI2_EVENT_IR_OPERATION_STATUS event, add support to print "background init" or "make data consistent" for debugging purposes. If the RAIDOperation is set to a value not defined, then don't print anything (2) for the MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE event, add support to print "expander reduced functionality" and "expander reduced functionality complete", which are new events. Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com> Signed-off-by: Eric Moore <Eric.moore@lsi.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/mpt2sas')
-rw-r--r--drivers/scsi/mpt2sas/mpt2sas_scsih.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c
index eb0215a2b5fa..c20c1e8cb8a7 100644
--- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c
+++ b/drivers/scsi/mpt2sas/mpt2sas_scsih.c
@@ -4279,6 +4279,12 @@ _scsih_sas_device_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4279 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION: 4279 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION:
4280 reason_str = "internal async notification"; 4280 reason_str = "internal async notification";
4281 break; 4281 break;
4282 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY:
4283 reason_str = "expander reduced functionality";
4284 break;
4285 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY:
4286 reason_str = "expander reduced functionality complete";
4287 break;
4282 default: 4288 default:
4283 reason_str = "unknown reason"; 4289 reason_str = "unknown reason";
4284 break; 4290 break;
@@ -5062,11 +5068,17 @@ _scsih_sas_ir_operation_status_event_debug(struct MPT2SAS_ADAPTER *ioc,
5062 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK: 5068 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK:
5063 reason_str = "consistency check"; 5069 reason_str = "consistency check";
5064 break; 5070 break;
5065 default: 5071 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT:
5066 reason_str = "unknown reason"; 5072 reason_str = "background init";
5073 break;
5074 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT:
5075 reason_str = "make data consistent";
5067 break; 5076 break;
5068 } 5077 }
5069 5078
5079 if (!reason_str)
5080 return;
5081
5070 printk(MPT2SAS_INFO_FMT "raid operational status: (%s)" 5082 printk(MPT2SAS_INFO_FMT "raid operational status: (%s)"
5071 "\thandle(0x%04x), percent complete(%d)\n", 5083 "\thandle(0x%04x), percent complete(%d)\n",
5072 ioc->name, reason_str, 5084 ioc->name, reason_str,