Commit d0a2f454 authored by Don Hiatt's avatar Don Hiatt Committed by Doug Ledford

IB/hfi1: Mask out A bit from psn trace

The trace logic prior to the fixes below used to mask the
A bit from the psn. It now mistakenly displays the A bit,
which is already displayed separately.

Fix by adding the appropriate mask to the psn tracing.

Fixes: 228d2af1 ("IB/hfi1: Separate input/output header tracing")
Fixes: 863cf89d ("IB/hfi1: Add 16B trace support")
Reviewed-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: default avatarDon Hiatt <don.hiatt@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent b65c2045
...@@ -154,7 +154,7 @@ void hfi1_trace_parse_9b_bth(struct ib_other_headers *ohdr, ...@@ -154,7 +154,7 @@ void hfi1_trace_parse_9b_bth(struct ib_other_headers *ohdr,
*opcode = ib_bth_get_opcode(ohdr); *opcode = ib_bth_get_opcode(ohdr);
*tver = ib_bth_get_tver(ohdr); *tver = ib_bth_get_tver(ohdr);
*pkey = ib_bth_get_pkey(ohdr); *pkey = ib_bth_get_pkey(ohdr);
*psn = ib_bth_get_psn(ohdr); *psn = mask_psn(ib_bth_get_psn(ohdr));
*qpn = ib_bth_get_qpn(ohdr); *qpn = ib_bth_get_qpn(ohdr);
} }
...@@ -169,7 +169,7 @@ void hfi1_trace_parse_16b_bth(struct ib_other_headers *ohdr, ...@@ -169,7 +169,7 @@ void hfi1_trace_parse_16b_bth(struct ib_other_headers *ohdr,
*pad = ib_bth_get_pad(ohdr); *pad = ib_bth_get_pad(ohdr);
*se = ib_bth_get_se(ohdr); *se = ib_bth_get_se(ohdr);
*tver = ib_bth_get_tver(ohdr); *tver = ib_bth_get_tver(ohdr);
*psn = ib_bth_get_psn(ohdr); *psn = mask_psn(ib_bth_get_psn(ohdr));
*qpn = ib_bth_get_qpn(ohdr); *qpn = ib_bth_get_qpn(ohdr);
} }
......
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