From: David Miller <davem@davemloft.net>
To: eladkan@mellanox.com
Cc: noamca@mellanox.com, linux-kernel@vger.kernel.org,
abrodkin@synopsys.com, talz@mellanox.com, netdev@vger.kernel.org
Subject: Re: [PATCH v2 1/2] net: nps_enet: Sync access to packet sent flag
Date: Thu, 28 Apr 2016 17:11:20 -0400 (EDT) [thread overview]
Message-ID: <20160428.171120.2028974436439452264.davem@davemloft.net> (raw)
In-Reply-To: <1461763110-15263-2-git-send-email-eladkan@mellanox.com>
From: Elad Kanfi <eladkan@mellanox.com>
Date: Wed, 27 Apr 2016 16:18:29 +0300
> From: Elad Kanfi <eladkan@mellanox.com>
>
> Below is a description of a possible problematic
> sequence. CPU-A is sending a frame and CPU-B handles
> the interrupt that indicates the frame was sent. CPU-B
> reads an invalid value of tx_packet_sent.
>
> CPU-A CPU-B
> ----- -----
> nps_enet_send_frame
> .
> .
> tx_packet_sent = true
> order HW to start tx
> .
> .
> HW complete tx
> ------> get tx complete interrupt
> .
> .
> if(tx_packet_sent == true)
>
> end memory transaction
> (tx_packet_sent actually
> written)
>
> Problem solution:
>
> Add a memory barrier after setting tx_packet_sent,
> in order to make sure that it is written before
> the packet is sent.
>
> Signed-off-by: Elad Kanfi <eladkan@mellanox.com>
>
> Acked-by: Noam Camus <noamca@mellanox.com>
Please address the feedback about memory barrier pairing.
Also, for both patches, do not put empty lines between the various
tags at the end of the commit message. They should all be together
in one continuous group.
next prev parent reply other threads:[~2016-04-28 21:11 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-27 13:18 [PATCH v2 0/2] Net driver bugs fix Elad Kanfi
2016-04-27 13:18 ` [PATCH v2 1/2] net: nps_enet: Sync access to packet sent flag Elad Kanfi
2016-04-27 13:56 ` Lino Sanfilippo
2016-04-28 21:11 ` David Miller [this message]
2016-05-02 10:21 ` Elad Kanfi
2016-05-02 11:15 ` Lino Sanfilippo
2016-05-08 13:44 ` Elad Kanfi
2016-05-10 18:32 ` Lino Sanfilippo
2016-04-27 13:18 ` [PATCH v2 2/2] net: nps_enet: bug fix - handle lost tx interrupts Elad Kanfi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160428.171120.2028974436439452264.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=abrodkin@synopsys.com \
--cc=eladkan@mellanox.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=noamca@mellanox.com \
--cc=talz@mellanox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox