From: Eric Dumazet <eric.dumazet@gmail.com>
To: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
Cc: davem@davemloft.net, netdev@vger.kernel.org, eugenia@mellanox.co.il
Subject: Re: [PATCH net] mlx4_core: fix race on comm channel
Date: Sun, 18 Mar 2012 05:55:51 -0700 [thread overview]
Message-ID: <1332075351.3722.38.camel@edumazet-laptop> (raw)
In-Reply-To: <4F65D27F.7010102@mellanox.co.il>
Le dimanche 18 mars 2012 à 14:18 +0200, Yevgeny Petrilin a écrit :
> From: Eugenia Emantayev <eugenia@mellanox.co.il>
>
> Prevent race condition between commands on comm channel.
> Happened while unloading the driver when switching from
> event to polling mode. VF got completion on the last command
> before switching to polling mode, but toggle was not changed.
> After the fix - VF will not write the next command before
> toggle is updated.
>
> Signed-off-by: Eugenia Emantayev <eugenia@mellanox.co.il>
> ---
> drivers/net/ethernet/mellanox/mlx4/cmd.c | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx4/cmd.c b/drivers/net/ethernet/mellanox/mlx4/cmd.c
> index eaf09d4..2f1f4a1 100644
> --- a/drivers/net/ethernet/mellanox/mlx4/cmd.c
> +++ b/drivers/net/ethernet/mellanox/mlx4/cmd.c
> @@ -239,6 +239,7 @@ static int mlx4_comm_cmd_wait(struct mlx4_dev *dev, u8 op,
> {
> struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
> struct mlx4_cmd_context *context;
> + unsigned long end;
> int err = 0;
>
> down(&cmd->event_sem);
> @@ -268,6 +269,13 @@ static int mlx4_comm_cmd_wait(struct mlx4_dev *dev, u8 op,
> }
>
> out:
> + /* wait for comm channel ready
> + this is necessary for prevention the race
> + when switching between event to polling mode */
> + end = msecs_to_jiffies(timeout) + jiffies;
> + while (comm_pending(dev) && time_before(jiffies, end))
> + cond_resched();
> +
> spin_lock(&cmd->context_lock);
> context->next = cmd->free_head;
> cmd->free_head = context - cmd->context;
David wants your comment like this :
/* dfgdgg rertert cxvcvcxv
* sddsf sdfsdfdsf sfddfd dfdfd fdfdfdfd df
* bxvqir sdjqpo cqljcdlskjs d.
*/
(I wont comment on the grammar)
prev parent reply other threads:[~2012-03-18 12:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-18 12:18 [PATCH net] mlx4_core: fix race on comm channel Yevgeny Petrilin
2012-03-18 12:55 ` Eric Dumazet [this message]
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=1332075351.3722.38.camel@edumazet-laptop \
--to=eric.dumazet@gmail.com \
--cc=davem@davemloft.net \
--cc=eugenia@mellanox.co.il \
--cc=netdev@vger.kernel.org \
--cc=yevgenyp@mellanox.co.il \
/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