Fixed logging format of setting driver sysfs attributes hard to interpret Signed-off-by: James Smart <james.smart@xxxxxxxxxx> --- lpfc_attr.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -upNr a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c --- a/drivers/scsi/lpfc/lpfc_attr.c 2013-09-04 13:18:04.000000000 -0400 +++ b/drivers/scsi/lpfc/lpfc_attr.c 2013-09-06 10:04:15.825058574 -0400 @@ -1865,8 +1865,10 @@ lpfc_##attr##_set(struct lpfc_vport *vpo { \ if (val >= minval && val <= maxval) {\ lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \ - "3053 lpfc_" #attr " changed from %d to %d\n", \ - vport->cfg_##attr, val); \ + "3053 lpfc_" #attr \ + " changed from %d (x%x) to %d (x%x)\n", \ + vport->cfg_##attr, vport->cfg_##attr, \ + val, val); \ vport->cfg_##attr = val;\ return 0;\ }\ -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html