|
@@ -13992,13 +13992,14 @@ lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
|
|
|
}
|
|
|
|
|
|
lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
|
|
|
- "2538 Received frame rctl:%s type:%s "
|
|
|
- "Frame Data:%08x %08x %08x %08x %08x %08x\n",
|
|
|
- rctl_names[fc_hdr->fh_r_ctl],
|
|
|
- type_names[fc_hdr->fh_type],
|
|
|
+ "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
|
|
|
+ "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
|
|
|
+ rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
|
|
|
+ type_names[fc_hdr->fh_type], fc_hdr->fh_type,
|
|
|
be32_to_cpu(header[0]), be32_to_cpu(header[1]),
|
|
|
be32_to_cpu(header[2]), be32_to_cpu(header[3]),
|
|
|
- be32_to_cpu(header[4]), be32_to_cpu(header[5]));
|
|
|
+ be32_to_cpu(header[4]), be32_to_cpu(header[5]),
|
|
|
+ be32_to_cpu(header[6]));
|
|
|
return 0;
|
|
|
drop:
|
|
|
lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
|