From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-ia64@vger.kernel.org
Subject: Re: IPF Montvale machine panic when running a network-relevent
Date: Wed, 18 Jun 2008 05:12:02 +0000 [thread overview]
Message-ID: <1213765922.25608.36.camel@ymzhang> (raw)
In-Reply-To: <20080617.203703.254889774.davem@davemloft.net>
On Tue, 2008-06-17 at 20:37 -0700, David Miller wrote:
> From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
> Date: Wed, 18 Jun 2008 11:27:43 +0800
>
> > This issue is caused by tcp defer accept. Mostly, process context calls lock_sock
> > to apply a sleeping lock. BH (SoftIRQ) context calls bh_lock_sock(_nested) to just apply
> > for the sk->sk_lock.slock without sleeping, then do appropriate processing based on
> > if sk->sk_lock.owned=0. That works well if both process context and BH context operate
> > the same sk at the same time. But with tcp defer accept, it doesn't, because
> > process context(for example, in inet_csk_accept) locks the listen sk, while BH
> > context (in tcp_v4_rcv, for example) locks the child sk and calls
> > tcp_defer_accept_check => inet_csk_reqsk_queue_add => reqsk_queue_add, so there is a race
> > to access the listen sock.
> >
> > Below patch against 2.6.26-rc6 fixes the issue.
> >
> > Signed-off-by: Zhang Yanmin <yanmin.zhang@intel.com>
>
> We reverted the guilty defer accept changes, please test Linus's
> current tree.
I happened to download git tree on June 16th, which includes the reverting patch.
I confirm it fixes the hang issue.
-yanmin
WARNING: multiple messages have this Message-ID (diff)
From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-ia64@vger.kernel.org
Subject: Re: IPF Montvale machine panic when running a network-relevent testing
Date: Wed, 18 Jun 2008 13:12:02 +0800 [thread overview]
Message-ID: <1213765922.25608.36.camel@ymzhang> (raw)
In-Reply-To: <20080617.203703.254889774.davem@davemloft.net>
On Tue, 2008-06-17 at 20:37 -0700, David Miller wrote:
> From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
> Date: Wed, 18 Jun 2008 11:27:43 +0800
>
> > This issue is caused by tcp defer accept. Mostly, process context calls lock_sock
> > to apply a sleeping lock. BH (SoftIRQ) context calls bh_lock_sock(_nested) to just apply
> > for the sk->sk_lock.slock without sleeping, then do appropriate processing based on
> > if sk->sk_lock.owned==0. That works well if both process context and BH context operate
> > the same sk at the same time. But with tcp defer accept, it doesn't, because
> > process context(for example, in inet_csk_accept) locks the listen sk, while BH
> > context (in tcp_v4_rcv, for example) locks the child sk and calls
> > tcp_defer_accept_check => inet_csk_reqsk_queue_add => reqsk_queue_add, so there is a race
> > to access the listen sock.
> >
> > Below patch against 2.6.26-rc6 fixes the issue.
> >
> > Signed-off-by: Zhang Yanmin <yanmin.zhang@intel.com>
>
> We reverted the guilty defer accept changes, please test Linus's
> current tree.
I happened to download git tree on June 16th, which includes the reverting patch.
I confirm it fixes the hang issue.
-yanmin
WARNING: multiple messages have this Message-ID (diff)
From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-ia64@vger.kernel.org
Subject: Re: IPF Montvale machine panic when running a network-relevent testing
Date: Wed, 18 Jun 2008 13:12:02 +0800 [thread overview]
Message-ID: <1213765922.25608.36.camel@ymzhang> (raw)
In-Reply-To: <20080617.203703.254889774.davem@davemloft.net>
On Tue, 2008-06-17 at 20:37 -0700, David Miller wrote:
> From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
> Date: Wed, 18 Jun 2008 11:27:43 +0800
>
> > This issue is caused by tcp defer accept. Mostly, process context calls lock_sock
> > to apply a sleeping lock. BH (SoftIRQ) context calls bh_lock_sock(_nested) to just apply
> > for the sk->sk_lock.slock without sleeping, then do appropriate processing based on
> > if sk->sk_lock.owned==0. That works well if both process context and BH context operate
> > the same sk at the same time. But with tcp defer accept, it doesn't, because
> > process context(for example, in inet_csk_accept) locks the listen sk, while BH
> > context (in tcp_v4_rcv, for example) locks the child sk and calls
> > tcp_defer_accept_check => inet_csk_reqsk_queue_add => reqsk_queue_add, so there is a race
> > to access the listen sock.
> >
> > Below patch against 2.6.26-rc6 fixes the issue.
> >
> > Signed-off-by: Zhang Yanmin <yanmin.zhang@intel.com>
>
> We reverted the guilty defer accept changes, please test Linus's
> current tree.
I happened to download git tree on June 16th, which includes the reverting patch.
I confirm it fixes the hang issue.
-yanmin
--
To unsubscribe from this list: send the line "unsubscribe linux-ia64" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2008-06-18 5:12 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-13 8:19 IPF Montvale machine panic when running a network-relevent testing Zhang, Yanmin
2008-06-13 8:19 ` Zhang, Yanmin
2008-06-13 8:19 ` Zhang, Yanmin
2008-06-13 16:35 ` Rafael J. Wysocki
2008-06-13 16:35 ` Rafael J. Wysocki
2008-06-13 16:35 ` Rafael J. Wysocki
2008-06-18 3:27 ` IPF Montvale machine panic when running a network-relevent Zhang, Yanmin
2008-06-18 3:27 ` IPF Montvale machine panic when running a network-relevent testing Zhang, Yanmin
2008-06-18 3:27 ` Zhang, Yanmin
2008-06-18 3:37 ` IPF Montvale machine panic when running a network-relevent David Miller
2008-06-18 3:37 ` IPF Montvale machine panic when running a network-relevent testing David Miller
2008-06-18 3:37 ` David Miller
2008-06-18 5:12 ` Zhang, Yanmin [this message]
2008-06-18 5:12 ` Zhang, Yanmin
2008-06-18 5:12 ` Zhang, Yanmin
2008-06-18 5:25 ` IPF Montvale machine panic when running a network-relevent David Miller
2008-06-18 5:25 ` IPF Montvale machine panic when running a network-relevent testing David Miller
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=1213765922.25608.36.camel@ymzhang \
--to=yanmin_zhang@linux.intel.com \
--cc=davem@davemloft.net \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-kernel@vger.kernel.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 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.