Skip to content

Commit 4b561c1

Browse files
Sunil Gouthamdavem330
authored andcommitted
net: thunderx: Fix data integrity issues with LDWB
Switching back to LDD transactions from LDWB. While transmitting packets out with LDWB transactions data integrity issues are seen very frequently. hence switching back to LDD. Signed-off-by: Sunil Goutham <[email protected]> Signed-off-by: Robert Richter <[email protected]> Signed-off-by: Aleksey Makarov <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent c8507fb commit 4b561c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/cavium/thunder/nicvf_queues.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry,
992992

993993
memset(gather, 0, SND_QUEUE_DESC_SIZE);
994994
gather->subdesc_type = SQ_DESC_TYPE_GATHER;
995-
gather->ld_type = NIC_SEND_LD_TYPE_E_LDWB;
995+
gather->ld_type = NIC_SEND_LD_TYPE_E_LDD;
996996
gather->size = size;
997997
gather->addr = data;
998998
}

0 commit comments

Comments
 (0)