All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/2] Net driver bugs fix
@ 2016-05-09 17:13 Elad Kanfi
  2016-05-09 17:13 ` [PATCH v3 1/2] net: nps_enet: Tx handler synchronization Elad Kanfi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Elad Kanfi @ 2016-05-09 17:13 UTC (permalink / raw)
  To: davem; +Cc: noamca, linux-kernel, abrodkin, eladkan, netdev

From: Elad Kanfi <eladkan@mellanox.com>

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.

Elad Kanfi (2):
  net: nps_enet: Tx handler synchronization
  net: nps_enet: bug fix - handle lost tx interrupts

 drivers/net/ethernet/ezchip/nps_enet.c |   30 ++++++++++++++++++++++++------
 drivers/net/ethernet/ezchip/nps_enet.h |    2 --
 2 files changed, 24 insertions(+), 8 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-10 18:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-09 17:13 [PATCH v3 0/2] Net driver bugs fix Elad Kanfi
2016-05-09 17:13 ` [PATCH v3 1/2] net: nps_enet: Tx handler synchronization Elad Kanfi
2016-05-09 17:13 ` [PATCH v3 2/2] net: nps_enet: bug fix - handle lost tx interrupts Elad Kanfi
2016-05-10 18:40 ` [PATCH v3 0/2] Net driver bugs fix David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.