diff options
author | James Smart <james.smart@emulex.com> | 2012-08-03 12:35:34 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-09-14 09:37:45 -0400 |
commit | 7e56aa25e3510ae72f0feada4b2d04eda48f95db (patch) | |
tree | c43b41e5d41cc9be0f81eabfbec5e7dd54a1997a /drivers/scsi/lpfc/lpfc_debugfs.c | |
parent | b9a7c631d4f0ddd482e2c3183d5e02148bdf5365 (diff) |
[SCSI] lpfc 8.3.33: Formally separate lpfc_sli_ring SLI-3 and SLI-4 variantions
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_debugfs.c')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_debugfs.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/scsi/lpfc/lpfc_debugfs.c b/drivers/scsi/lpfc/lpfc_debugfs.c index 3217d63ed282..5eac0942f13d 100644 --- a/drivers/scsi/lpfc/lpfc_debugfs.c +++ b/drivers/scsi/lpfc/lpfc_debugfs.c | |||
@@ -490,9 +490,11 @@ lpfc_debugfs_dumpHostSlim_data(struct lpfc_hba *phba, char *buf, int size) | |||
490 | len += snprintf(buf+len, size-len, | 490 | len += snprintf(buf+len, size-len, |
491 | "Ring %d: CMD GetInx:%d (Max:%d Next:%d " | 491 | "Ring %d: CMD GetInx:%d (Max:%d Next:%d " |
492 | "Local:%d flg:x%x) RSP PutInx:%d Max:%d\n", | 492 | "Local:%d flg:x%x) RSP PutInx:%d Max:%d\n", |
493 | i, pgpp->cmdGetInx, pring->numCiocb, | 493 | i, pgpp->cmdGetInx, pring->sli.sli3.numCiocb, |
494 | pring->next_cmdidx, pring->local_getidx, | 494 | pring->sli.sli3.next_cmdidx, |
495 | pring->flag, pgpp->rspPutInx, pring->numRiocb); | 495 | pring->sli.sli3.local_getidx, |
496 | pring->flag, pgpp->rspPutInx, | ||
497 | pring->sli.sli3.numRiocb); | ||
496 | } | 498 | } |
497 | 499 | ||
498 | if (phba->sli_rev <= LPFC_SLI_REV3) { | 500 | if (phba->sli_rev <= LPFC_SLI_REV3) { |