1 /* bnx2fc_debug.c: QLogic Linux FCoE offload driver.
2 * Handles operations such as session offload/upload etc, and manages
3 * session resources such as connection id and qp resources.
5 * Copyright (c) 2008-2013 Broadcom Corporation
6 * Copyright (c) 2014-2016 QLogic Corporation
7 * Copyright (c) 2016-2017 Cavium Inc.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation.
17 void BNX2FC_IO_DBG(const struct bnx2fc_cmd
*io_req
, const char *fmt
, ...)
22 if (likely(!(bnx2fc_debug_level
& LOG_IO
)))
30 if (io_req
&& io_req
->port
&& io_req
->port
->lport
&&
31 io_req
->port
->lport
->host
)
32 shost_printk(KERN_INFO
, io_req
->port
->lport
->host
,
36 pr_info("NULL %pV", &vaf
);
41 void BNX2FC_TGT_DBG(const struct bnx2fc_rport
*tgt
, const char *fmt
, ...)
46 if (likely(!(bnx2fc_debug_level
& LOG_TGT
)))
54 if (tgt
&& tgt
->port
&& tgt
->port
->lport
&& tgt
->port
->lport
->host
&&
56 shost_printk(KERN_INFO
, tgt
->port
->lport
->host
,
58 tgt
->rport
->port_id
, &vaf
);
60 pr_info("NULL %pV", &vaf
);
65 void BNX2FC_HBA_DBG(const struct fc_lport
*lport
, const char *fmt
, ...)
70 if (likely(!(bnx2fc_debug_level
& LOG_HBA
)))
78 if (lport
&& lport
->host
)
79 shost_printk(KERN_INFO
, lport
->host
, PFX
"%pV", &vaf
);
81 pr_info("NULL %pV", &vaf
);