Symbol: logit
drivers/scsi/lpfc/lpfc_attr.c
7504
int logit = 0;
drivers/scsi/lpfc/lpfc_attr.c
7508
logit = 1;
drivers/scsi/lpfc/lpfc_attr.c
7512
logit = 1;
drivers/scsi/lpfc/lpfc_attr.c
7516
logit = 1;
drivers/scsi/lpfc/lpfc_attr.c
7518
if (logit)
drivers/scsi/lpfc/lpfc_init.c
12635
goto logit;
drivers/scsi/lpfc/lpfc_init.c
12640
logit:
drivers/scsi/lpfc/lpfc_scsi.c
3838
uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
drivers/scsi/lpfc/lpfc_scsi.c
3891
logit = LOG_FCP_ERROR;
drivers/scsi/lpfc/lpfc_scsi.c
3894
logit = LOG_FCP_UNDER;
drivers/scsi/lpfc/lpfc_scsi.c
3897
lpfc_printf_vlog(vport, KERN_WARNING, logit,
drivers/scsi/lpfc/lpfc_scsi.c
4025
u32 logit = LOG_FCP;
drivers/scsi/lpfc/lpfc_scsi.c
4107
logit = 0;
drivers/scsi/lpfc/lpfc_scsi.c
4109
logit = LOG_FCP | LOG_FCP_UNDER;
drivers/scsi/lpfc/lpfc_scsi.c
4110
lpfc_printf_vlog(vport, KERN_WARNING, logit,
drivers/scsi/lpfc/lpfc_scsi.c
4162
lpfc_printf_vlog(vport, KERN_WARNING, logit,
drivers/scsi/lpfc/lpfc_scsi.c
4231
lpfc_printf_vlog(vport, KERN_WARNING, logit,
drivers/scsi/lpfc/lpfc_scsi.c
4356
uint32_t logit = LOG_FCP;
drivers/scsi/lpfc/lpfc_scsi.c
4429
logit = 0;
drivers/scsi/lpfc/lpfc_scsi.c
4431
logit = LOG_FCP | LOG_FCP_UNDER;
drivers/scsi/lpfc/lpfc_scsi.c
4432
lpfc_printf_vlog(vport, KERN_WARNING, logit,
drivers/scsi/lpfc/lpfc_scsi.c
6004
u32 logit = LOG_FCP;
drivers/scsi/lpfc/lpfc_scsi.c
6040
logit = LOG_TRACE_EVENT;
drivers/scsi/lpfc/lpfc_scsi.c
6042
lpfc_printf_vlog(vport, KERN_ERR, logit,
drivers/scsi/lpfc/lpfc_scsi.c
6082
u32 logit = LOG_FCP;
drivers/scsi/lpfc/lpfc_scsi.c
6135
logit = LOG_TRACE_EVENT;
drivers/scsi/lpfc/lpfc_scsi.c
6154
lpfc_printf_vlog(vport, KERN_ERR, logit,
drivers/scsi/lpfc/lpfc_scsi.c
6170
lpfc_printf_vlog(vport, KERN_ERR, logit,
drivers/scsi/qla2xxx/qla_isr.c
2320
int res, logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
2421
logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
2439
if (logit) {
drivers/scsi/qla2xxx/qla_isr.c
2458
} else if (logit) {
drivers/scsi/qla2xxx/qla_isr.c
2529
int logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
2607
logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
2611
logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
2644
if (logit)
drivers/scsi/qla2xxx/qla_isr.c
2749
int logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
2763
logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
2791
logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
2825
logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
2831
logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
2835
if (unlikely(logit))
drivers/scsi/qla2xxx/qla_isr.c
3332
int logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
3524
logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
3582
logit = 0;
drivers/scsi/qla2xxx/qla_isr.c
3593
logit = 1;
drivers/scsi/qla2xxx/qla_isr.c
3650
logit = qla2x00_handle_dif_error(sp, sts24);
drivers/scsi/qla2xxx/qla_isr.c
3685
if (logit)
drivers/scsi/qla2xxx/qla_mr.c
2265
int logit = 1;
drivers/scsi/qla2xxx/qla_mr.c
2372
logit = 0;
drivers/scsi/qla2xxx/qla_mr.c
2438
logit = 0;
drivers/scsi/qla2xxx/qla_mr.c
2450
logit = 1;
drivers/scsi/qla2xxx/qla_mr.c
2499
if (logit)
tools/thermal/lib/log.h
16
extern void logit(int level, const char *format, ...);
tools/thermal/lib/log.h
18
#define DEBUG(fmt, ...) logit(LOG_DEBUG, "%s:%d: " fmt, __func__, __LINE__, ##__VA_ARGS__)
tools/thermal/lib/log.h
19
#define INFO(fmt, ...) logit(LOG_INFO, fmt, ##__VA_ARGS__)
tools/thermal/lib/log.h
20
#define NOTICE(fmt, ...) logit(LOG_NOTICE, fmt, ##__VA_ARGS__)
tools/thermal/lib/log.h
21
#define WARN(fmt, ...) logit(LOG_WARNING, fmt, ##__VA_ARGS__)
tools/thermal/lib/log.h
22
#define ERROR(fmt, ...) logit(LOG_ERR, fmt, ##__VA_ARGS__)
tools/thermal/lib/log.h
23
#define CRITICAL(fmt, ...) logit(LOG_CRIT, fmt, ##__VA_ARGS__)
tools/thermal/lib/log.h
24
#define ALERT(fmt, ...) logit(LOG_ALERT, fmt, ##__VA_ARGS__)
tools/thermal/lib/log.h
25
#define EMERG(fmt, ...) logit(LOG_EMERG, fmt, ##__VA_ARGS__)