diff options
author | David S. Miller <davem@davemloft.net> | 2016-05-10 15:04:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-10 15:04:57 -0400 |
commit | 3b0d190aeb21cf5aabf7157161468970296bb88c (patch) | |
tree | 8d54a352040648ddc202a7e93a2d31ea29b97c0b /Documentation/devicetree | |
parent | d99079e2fbd5ac38884f498ca99435d525152a88 (diff) | |
parent | 05c00d82f4d170987ac29607e7f3c27223b52d1e (diff) |
Merge branch 'nps_enet-fixes'
Elad Kanfi says:
====================
nps_enet: Net driver bugs fix
v3:
tx_packet_sent flag is not necessary, use socket buffer pointer
instead.
Use wmb() instead of smp_wmb().
v2:
Remove code style commit for now.
Code style commit will be added after the bugs fix will be approved.
Summary:
1. Bug description: TX done interrupts that arrives while interrupts
are masked, during NAPI poll, will not trigger an interrupt handling.
Since TX interrupt is of level edge we will lose the TX done interrupt.
As a result all pending tx frames will get no service.
Solution: Check if there is a pending tx request after unmasking the
interrupt and if answer is yes then re-add ourselves to
the NAPI poll list.
2. Bug description: CPU-A before sending a frame will set a variable
to true. CPU-B that executes the tx done interrupt service routine
might read a non valid value of that variable.
Solution: Use the socket buffer pointer instead of the variable,
and add a write memory barrier at the tx sending function after
the pointer is set.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/devicetree')
0 files changed, 0 insertions, 0 deletions