From: Stephen Hemminger <shemminger@linux-foundation.org>
To: Mike McCormack <mikem@ring3k.org>
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH] Fix a race between sky2_down and sky2_poll.
Date: Mon, 1 Jun 2009 21:07:28 -0700 [thread overview]
Message-ID: <20090601210728.2be1a903@nehalam> (raw)
In-Reply-To: <392fb48f0906011840n4914ef32x8aa316358b2ceacc@mail.gmail.com>
On Tue, 2 Jun 2009 10:40:12 +0900
Mike McCormack <mikem@ring3k.org> wrote:
> If sky2_down was called between an interrupt and the corresponding sky2_poll,
> rx_ring will have been free'd and we'll crash.
>
> Deal with rx_ring being NULL in sky2_status_intr rather than trying to force
> napi polls to complete before freeing rx_ring.
>
> Signed-off-by: Mike McCormack <mikem@ring3k.org>
> ---
> drivers/net/sky2.c | 17 +++++++++++++++--
> 1 files changed, 15 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
> index a2ff9cb..1f2a5ab 100644
> --- a/drivers/net/sky2.c
> +++ b/drivers/net/sky2.c
> @@ -1822,8 +1822,8 @@ static int sky2_down(struct net_device *dev)
> ctrl &= ~(GM_GPCR_TX_ENA | GM_GPCR_RX_ENA);
> gma_write16(hw, port, GM_GP_CTRL, ctrl);
>
> - /* Make sure no packets are pending */
> - napi_synchronize(&hw->napi);
> + /* disable soft interrupts */
> + napi_disable(&hw->napi);
>
> sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
>
> @@ -1878,6 +1878,9 @@ static int sky2_down(struct net_device *dev)
> sky2->rx_ring = NULL;
> sky2->tx_ring = NULL;
>
> + /* re-enable soft interrupts */
> + napi_enable(&hw->napi);
> +
> return 0;
> }
>
> @@ -2372,6 +2375,16 @@ static int sky2_status_intr(struct sky2_hw *hw,
> int to_do, u16 idx)
> length = le16_to_cpu(le->length);
> status = le32_to_cpu(le->status);
>
> + /*
> + * rx_ring may have been free'd in sky2_down
> + * if we are responding to an interrupt queued to
> + * napi before interrupts were disabled
> + */
> + if (!sky2->rx_ring) {
> + work_done = to_do;
> + break;
> + }
> +
> le->opcode = 0;
> switch (opcode & ~HW_OWNER) {
> case OP_RXSTAT:
Down is also used during suspend/resume and changing MTU so this needs
more inspection.
--
next prev parent reply other threads:[~2009-06-02 4:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-02 1:40 [PATCH] Fix a race between sky2_down and sky2_poll Mike McCormack
2009-06-02 4:07 ` Stephen Hemminger [this message]
2009-06-02 6:29 ` Mike McCormack
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=20090601210728.2be1a903@nehalam \
--to=shemminger@linux-foundation.org \
--cc=mikem@ring3k.org \
--cc=netdev@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).