Commit 8e6c5363 authored by Robert Love's avatar Robert Love

libfc, libfcoe, fcoe: Convert debug_logging macros to pr_info

Convert libfc, libfcoe and fcoe's debug_logging macros
to use pr_info() instead of printk(KERN_INFO, ...). checkpatch.pl
now complains about this, so convert libfcoe to preferred
method.
Signed-off-by: default avatarRobert Love <robert.w.love@intel.com>
Tested-by: default avatarMarcus Dennis <marcusx.e.dennis@intel.com>
parent 6e89ea3f
...@@ -55,11 +55,11 @@ do { \ ...@@ -55,11 +55,11 @@ do { \
#define FCOE_DBG(fmt, args...) \ #define FCOE_DBG(fmt, args...) \
FCOE_CHECK_LOGGING(FCOE_LOGGING, \ FCOE_CHECK_LOGGING(FCOE_LOGGING, \
printk(KERN_INFO "fcoe: " fmt, ##args);) pr_info("fcoe: " fmt, ##args);)
#define FCOE_NETDEV_DBG(netdev, fmt, args...) \ #define FCOE_NETDEV_DBG(netdev, fmt, args...) \
FCOE_CHECK_LOGGING(FCOE_NETDEV_LOGGING, \ FCOE_CHECK_LOGGING(FCOE_NETDEV_LOGGING, \
printk(KERN_INFO "fcoe: %s: " fmt, \ pr_info("fcoe: %s: " fmt, \
netdev->name, ##args);) netdev->name, ##args);)
/** /**
......
...@@ -17,17 +17,16 @@ do { \ ...@@ -17,17 +17,16 @@ do { \
#define LIBFCOE_DBG(fmt, args...) \ #define LIBFCOE_DBG(fmt, args...) \
LIBFCOE_CHECK_LOGGING(LIBFCOE_LOGGING, \ LIBFCOE_CHECK_LOGGING(LIBFCOE_LOGGING, \
printk(KERN_INFO "libfcoe: " fmt, ##args);) pr_info("libfcoe: " fmt, ##args);)
#define LIBFCOE_FIP_DBG(fip, fmt, args...) \ #define LIBFCOE_FIP_DBG(fip, fmt, args...) \
LIBFCOE_CHECK_LOGGING(LIBFCOE_FIP_LOGGING, \ LIBFCOE_CHECK_LOGGING(LIBFCOE_FIP_LOGGING, \
printk(KERN_INFO "host%d: fip: " fmt, \ pr_info("host%d: fip: " fmt, \
(fip)->lp->host->host_no, ##args);) (fip)->lp->host->host_no, ##args);)
#define LIBFCOE_TRANSPORT_DBG(fmt, args...) \ #define LIBFCOE_TRANSPORT_DBG(fmt, args...) \
LIBFCOE_CHECK_LOGGING(LIBFCOE_TRANSPORT_LOGGING, \ LIBFCOE_CHECK_LOGGING(LIBFCOE_TRANSPORT_LOGGING, \
printk(KERN_INFO "%s: " fmt, \ pr_info("%s: " fmt, __func__, ##args);)
__func__, ##args);)
#define LIBFCOE_SYSFS_DBG(cdev, fmt, args...) \ #define LIBFCOE_SYSFS_DBG(cdev, fmt, args...) \
LIBFCOE_CHECK_LOGGING(LIBFCOE_SYSFS_LOGGING, \ LIBFCOE_CHECK_LOGGING(LIBFCOE_SYSFS_LOGGING, \
......
...@@ -41,23 +41,23 @@ extern unsigned int fc_debug_logging; ...@@ -41,23 +41,23 @@ extern unsigned int fc_debug_logging;
#define FC_LIBFC_DBG(fmt, args...) \ #define FC_LIBFC_DBG(fmt, args...) \
FC_CHECK_LOGGING(FC_LIBFC_LOGGING, \ FC_CHECK_LOGGING(FC_LIBFC_LOGGING, \
printk(KERN_INFO "libfc: " fmt, ##args)) pr_info("libfc: " fmt, ##args))
#define FC_LPORT_DBG(lport, fmt, args...) \ #define FC_LPORT_DBG(lport, fmt, args...) \
FC_CHECK_LOGGING(FC_LPORT_LOGGING, \ FC_CHECK_LOGGING(FC_LPORT_LOGGING, \
printk(KERN_INFO "host%u: lport %6.6x: " fmt, \ pr_info("host%u: lport %6.6x: " fmt, \
(lport)->host->host_no, \ (lport)->host->host_no, \
(lport)->port_id, ##args)) (lport)->port_id, ##args))
#define FC_DISC_DBG(disc, fmt, args...) \ #define FC_DISC_DBG(disc, fmt, args...) \
FC_CHECK_LOGGING(FC_DISC_LOGGING, \ FC_CHECK_LOGGING(FC_DISC_LOGGING, \
printk(KERN_INFO "host%u: disc: " fmt, \ pr_info("host%u: disc: " fmt, \
fc_disc_lport(disc)->host->host_no, \ fc_disc_lport(disc)->host->host_no, \
##args)) ##args))
#define FC_RPORT_ID_DBG(lport, port_id, fmt, args...) \ #define FC_RPORT_ID_DBG(lport, port_id, fmt, args...) \
FC_CHECK_LOGGING(FC_RPORT_LOGGING, \ FC_CHECK_LOGGING(FC_RPORT_LOGGING, \
printk(KERN_INFO "host%u: rport %6.6x: " fmt, \ pr_info("host%u: rport %6.6x: " fmt, \
(lport)->host->host_no, \ (lport)->host->host_no, \
(port_id), ##args)) (port_id), ##args))
...@@ -70,13 +70,13 @@ extern unsigned int fc_debug_logging; ...@@ -70,13 +70,13 @@ extern unsigned int fc_debug_logging;
if ((pkt)->seq_ptr) { \ if ((pkt)->seq_ptr) { \
struct fc_exch *_ep = NULL; \ struct fc_exch *_ep = NULL; \
_ep = fc_seq_exch((pkt)->seq_ptr); \ _ep = fc_seq_exch((pkt)->seq_ptr); \
printk(KERN_INFO "host%u: fcp: %6.6x: " \ pr_info("host%u: fcp: %6.6x: " \
"xid %04x-%04x: " fmt, \ "xid %04x-%04x: " fmt, \
(pkt)->lp->host->host_no, \ (pkt)->lp->host->host_no, \
(pkt)->rport->port_id, \ (pkt)->rport->port_id, \
(_ep)->oxid, (_ep)->rxid, ##args); \ (_ep)->oxid, (_ep)->rxid, ##args); \
} else { \ } else { \
printk(KERN_INFO "host%u: fcp: %6.6x: " fmt, \ pr_info("host%u: fcp: %6.6x: " fmt, \
(pkt)->lp->host->host_no, \ (pkt)->lp->host->host_no, \
(pkt)->rport->port_id, ##args); \ (pkt)->rport->port_id, ##args); \
} \ } \
...@@ -84,13 +84,13 @@ extern unsigned int fc_debug_logging; ...@@ -84,13 +84,13 @@ extern unsigned int fc_debug_logging;
#define FC_EXCH_DBG(exch, fmt, args...) \ #define FC_EXCH_DBG(exch, fmt, args...) \
FC_CHECK_LOGGING(FC_EXCH_LOGGING, \ FC_CHECK_LOGGING(FC_EXCH_LOGGING, \
printk(KERN_INFO "host%u: xid %4x: " fmt, \ pr_info("host%u: xid %4x: " fmt, \
(exch)->lp->host->host_no, \ (exch)->lp->host->host_no, \
exch->xid, ##args)) exch->xid, ##args))
#define FC_SCSI_DBG(lport, fmt, args...) \ #define FC_SCSI_DBG(lport, fmt, args...) \
FC_CHECK_LOGGING(FC_SCSI_LOGGING, \ FC_CHECK_LOGGING(FC_SCSI_LOGGING, \
printk(KERN_INFO "host%u: scsi: " fmt, \ pr_info("host%u: scsi: " fmt, \
(lport)->host->host_no, ##args)) (lport)->host->host_no, ##args))
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment