|
@@ -44,8 +44,8 @@ qla2100_intr_handler(int irq, void *dev_id)
|
|
|
|
|
|
rsp = (struct rsp_que *) dev_id;
|
|
|
if (!rsp) {
|
|
|
- printk(KERN_INFO
|
|
|
- "%s(): NULL response queue pointer.\n", __func__);
|
|
|
+ ql_log(ql_log_info, NULL, 0x505d,
|
|
|
+ "%s: NULL response queue pointer.\n", __func__);
|
|
|
return (IRQ_NONE);
|
|
|
}
|
|
|
|
|
@@ -141,8 +141,8 @@ qla2300_intr_handler(int irq, void *dev_id)
|
|
|
|
|
|
rsp = (struct rsp_que *) dev_id;
|
|
|
if (!rsp) {
|
|
|
- printk(KERN_INFO
|
|
|
- "%s(): NULL response queue pointer.\n", __func__);
|
|
|
+ ql_log(ql_log_info, NULL, 0x5058,
|
|
|
+ "%s: NULL response queue pointer.\n", __func__);
|
|
|
return (IRQ_NONE);
|
|
|
}
|
|
|
|
|
@@ -2097,8 +2097,8 @@ qla24xx_intr_handler(int irq, void *dev_id)
|
|
|
|
|
|
rsp = (struct rsp_que *) dev_id;
|
|
|
if (!rsp) {
|
|
|
- printk(KERN_INFO
|
|
|
- "%s(): NULL response queue pointer.\n", __func__);
|
|
|
+ ql_log(ql_log_info, NULL, 0x5059,
|
|
|
+ "%s: NULL response queue pointer.\n", __func__);
|
|
|
return IRQ_NONE;
|
|
|
}
|
|
|
|
|
@@ -2181,8 +2181,8 @@ qla24xx_msix_rsp_q(int irq, void *dev_id)
|
|
|
|
|
|
rsp = (struct rsp_que *) dev_id;
|
|
|
if (!rsp) {
|
|
|
- printk(KERN_INFO
|
|
|
- "%s(): NULL response queue pointer.\n", __func__);
|
|
|
+ ql_log(ql_log_info, NULL, 0x505a,
|
|
|
+ "%s: NULL response queue pointer.\n", __func__);
|
|
|
return IRQ_NONE;
|
|
|
}
|
|
|
ha = rsp->hw;
|
|
@@ -2211,8 +2211,8 @@ qla25xx_msix_rsp_q(int irq, void *dev_id)
|
|
|
|
|
|
rsp = (struct rsp_que *) dev_id;
|
|
|
if (!rsp) {
|
|
|
- printk(KERN_INFO
|
|
|
- "%s(): NULL response queue pointer.\n", __func__);
|
|
|
+ ql_log(ql_log_info, NULL, 0x505b,
|
|
|
+ "%s: NULL response queue pointer.\n", __func__);
|
|
|
return IRQ_NONE;
|
|
|
}
|
|
|
ha = rsp->hw;
|
|
@@ -2245,8 +2245,8 @@ qla24xx_msix_default(int irq, void *dev_id)
|
|
|
|
|
|
rsp = (struct rsp_que *) dev_id;
|
|
|
if (!rsp) {
|
|
|
- printk(KERN_INFO
|
|
|
- "%s(): NULL response queue pointer.\n", __func__);
|
|
|
+ ql_log(ql_log_info, NULL, 0x505c,
|
|
|
+ "%s: NULL response queue pointer.\n", __func__);
|
|
|
return IRQ_NONE;
|
|
|
}
|
|
|
ha = rsp->hw;
|