diff options
author | James Smart <James.Smart@Emulex.Com> | 2009-05-22 14:53:12 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-06-08 12:26:01 -0400 |
commit | f4b4c68f74dcd5da03df851090cad28ad4e8d7cc (patch) | |
tree | c9ae4867a01cbdb11c008c23830ddd7c7220bee8 /drivers/scsi/lpfc/lpfc_logmsg.h | |
parent | d8e93df13c8f7bde45a7756944aab528c58df4cf (diff) |
[SCSI] lpfc 8.3.2 : Miscellaneous Changes
Miscellaneous Changes:
- Convert from SLI2_ACTIVE flag to more correct SLI_ACTIVE (generic) flag
- Reposition log verbose messaging definitions
- Update naming for vpi object name from vport slang name
- Handle deferred error attention condition
- Add 10G link support
- Small bug fixup
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_logmsg.h')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_logmsg.h | 52 |
1 files changed, 29 insertions, 23 deletions
diff --git a/drivers/scsi/lpfc/lpfc_logmsg.h b/drivers/scsi/lpfc/lpfc_logmsg.h index db1ba22b8016..954ba57970a3 100644 --- a/drivers/scsi/lpfc/lpfc_logmsg.h +++ b/drivers/scsi/lpfc/lpfc_logmsg.h | |||
@@ -18,33 +18,39 @@ | |||
18 | * included with this package. * | 18 | * included with this package. * |
19 | *******************************************************************/ | 19 | *******************************************************************/ |
20 | 20 | ||
21 | #define LOG_ELS 0x1 /* ELS events */ | 21 | #define LOG_ELS 0x00000001 /* ELS events */ |
22 | #define LOG_DISCOVERY 0x2 /* Link discovery events */ | 22 | #define LOG_DISCOVERY 0x00000002 /* Link discovery events */ |
23 | #define LOG_MBOX 0x4 /* Mailbox events */ | 23 | #define LOG_MBOX 0x00000004 /* Mailbox events */ |
24 | #define LOG_INIT 0x8 /* Initialization events */ | 24 | #define LOG_INIT 0x00000008 /* Initialization events */ |
25 | #define LOG_LINK_EVENT 0x10 /* Link events */ | 25 | #define LOG_LINK_EVENT 0x00000010 /* Link events */ |
26 | #define LOG_IP 0x20 /* IP traffic history */ | 26 | #define LOG_IP 0x00000020 /* IP traffic history */ |
27 | #define LOG_FCP 0x40 /* FCP traffic history */ | 27 | #define LOG_FCP 0x00000040 /* FCP traffic history */ |
28 | #define LOG_NODE 0x80 /* Node table events */ | 28 | #define LOG_NODE 0x00000080 /* Node table events */ |
29 | #define LOG_TEMP 0x100 /* Temperature sensor events */ | 29 | #define LOG_TEMP 0x00000100 /* Temperature sensor events */ |
30 | #define LOG_BG 0x200 /* BlockGuard events */ | 30 | #define LOG_BG 0x00000200 /* BlockGuard events */ |
31 | #define LOG_MISC 0x400 /* Miscellaneous events */ | 31 | #define LOG_MISC 0x00000400 /* Miscellaneous events */ |
32 | #define LOG_SLI 0x800 /* SLI events */ | 32 | #define LOG_SLI 0x00000800 /* SLI events */ |
33 | #define LOG_FCP_ERROR 0x1000 /* log errors, not underruns */ | 33 | #define LOG_FCP_ERROR 0x00001000 /* log errors, not underruns */ |
34 | #define LOG_LIBDFC 0x2000 /* Libdfc events */ | 34 | #define LOG_LIBDFC 0x00002000 /* Libdfc events */ |
35 | #define LOG_VPORT 0x4000 /* NPIV events */ | 35 | #define LOG_VPORT 0x00004000 /* NPIV events */ |
36 | #define LOG_ALL_MSG 0xffff /* LOG all messages */ | 36 | #define LOF_SECURITY 0x00008000 /* Security events */ |
37 | #define LOG_EVENT 0x00010000 /* CT,TEMP,DUMP, logging */ | ||
38 | #define LOG_ALL_MSG 0xffffffff /* LOG all messages */ | ||
37 | 39 | ||
38 | #define lpfc_printf_vlog(vport, level, mask, fmt, arg...) \ | 40 | #define lpfc_printf_vlog(vport, level, mask, fmt, arg...) \ |
39 | do { \ | 41 | do { \ |
40 | { if (((mask) &(vport)->cfg_log_verbose) || (level[1] <= '3')) \ | 42 | { if (((mask) & (vport)->cfg_log_verbose) || (level[1] <= '3')) \ |
41 | dev_printk(level, &((vport)->phba->pcidev)->dev, "%d:(%d):" \ | 43 | dev_printk(level, &((vport)->phba->pcidev)->dev, "%d:(%d):" \ |
42 | fmt, (vport)->phba->brd_no, vport->vpi, ##arg); } \ | 44 | fmt, (vport)->phba->brd_no, vport->vpi, ##arg); } \ |
43 | } while (0) | 45 | } while (0) |
44 | 46 | ||
45 | #define lpfc_printf_log(phba, level, mask, fmt, arg...) \ | 47 | #define lpfc_printf_log(phba, level, mask, fmt, arg...) \ |
46 | do { \ | 48 | do { \ |
47 | { if (((mask) &(phba)->pport->cfg_log_verbose) || (level[1] <= '3')) \ | 49 | { uint32_t log_verbose = (phba)->pport ? \ |
50 | (phba)->pport->cfg_log_verbose : \ | ||
51 | (phba)->cfg_log_verbose; \ | ||
52 | if (((mask) & log_verbose) || (level[1] <= '3')) \ | ||
48 | dev_printk(level, &((phba)->pcidev)->dev, "%d:" \ | 53 | dev_printk(level, &((phba)->pcidev)->dev, "%d:" \ |
49 | fmt, phba->brd_no, ##arg); } \ | 54 | fmt, phba->brd_no, ##arg); \ |
50 | } while (0) | 55 | } \ |
56 | } while (0) | ||