From: Neil Horman <nhorman@redhat.com>
To: Julian Anastasov <ja@ssi.bg>
Cc: Neil Horman <nhorman@redhat.com>,
linux-kernel <linux-kernel@vger.kernel.org>,
Wensong Zhang <wensong@linux-vs.org>,
akpm@osdl.org, netdev@oss.sgi.com, davem@davemloft.net
Subject: Re: [Patch] ipvs: close race conditions on ip_vs_conn_tab list modification
Date: Fri, 24 Jun 2005 13:40:54 -0400 [thread overview]
Message-ID: <20050624174054.GE21499@hmsendeavour.rdu.redhat.com> (raw)
In-Reply-To: <Pine.LNX.4.44.0506241808150.2776-100000@l>
On Fri, Jun 24, 2005 at 06:09:40PM +0300, Julian Anastasov wrote:
>
> Hello,
>
> On Fri, 24 Jun 2005, Neil Horman wrote:
>
> > if (ct) {
> > IP_VS_DBG(4, "del conn template\n");
> > ip_vs_conn_expire_now(ct);
> > }
>
> Don't forget to use cp->control instead of ct, ct is not needed
> anymore.
>
> Regards
>
> --
> Julian Anastasov <ja@ssi.bg>
>
Good catch. Sorry, should have seen that earlier. New patch attached with
corrections. When you're comfortable with this, I'll post the 2.4 version of
the patch.
Regards
Neil
Signed-off-by: Neil Horman <nhorman@redhat.com>
ip_vs_conn.c | 24 ++++--------------------
1 files changed, 4 insertions(+), 20 deletions(-)
--- linux-2.6.git/net/ipv4/ipvs/ip_vs_conn.c.orig 2005-06-23 13:11:00.000000000 -0400
+++ linux-2.6.git/net/ipv4/ipvs/ip_vs_conn.c 2005-06-24 13:33:03.000000000 -0400
@@ -548,7 +548,6 @@
{
if (del_timer(&cp->timer))
mod_timer(&cp->timer, jiffies);
- __ip_vs_conn_put(cp);
}
@@ -801,21 +800,12 @@
continue;
}
- /*
- * Drop the entry, and drop its ct if not referenced
- */
- atomic_inc(&cp->refcnt);
- ct_write_unlock(hash);
-
- if ((ct = cp->control))
- atomic_inc(&ct->refcnt);
IP_VS_DBG(4, "del connection\n");
ip_vs_conn_expire_now(cp);
- if (ct) {
+ if (cp->control) {
IP_VS_DBG(4, "del conn template\n");
- ip_vs_conn_expire_now(ct);
+ ip_vs_conn_expire_now(cp->control);
}
- ct_write_lock(hash);
}
ct_write_unlock(hash);
}
@@ -829,7 +819,6 @@
{
int idx;
struct ip_vs_conn *cp;
- struct ip_vs_conn *ct;
flush_again:
for (idx=0; idx<IP_VS_CONN_TAB_SIZE; idx++) {
@@ -839,18 +828,13 @@
ct_write_lock_bh(idx);
list_for_each_entry(cp, &ip_vs_conn_tab[idx], c_list) {
- atomic_inc(&cp->refcnt);
- ct_write_unlock(idx);
- if ((ct = cp->control))
- atomic_inc(&ct->refcnt);
IP_VS_DBG(4, "del connection\n");
ip_vs_conn_expire_now(cp);
- if (ct) {
+ if (cp->control) {
IP_VS_DBG(4, "del conn template\n");
- ip_vs_conn_expire_now(ct);
+ ip_vs_conn_expire_now(cp->control);
}
- ct_write_lock(idx);
}
ct_write_unlock_bh(idx);
}
--
/***************************************************
*Neil Horman
*Software Engineer
*Red Hat, Inc.
*nhorman@redhat.com
*gpg keyid: 1024D / 0x92A74FA1
*http://pgp.mit.edu
***************************************************/
next prev parent reply other threads:[~2005-06-24 17:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20050624144822.GD21499@hmsendeavour.rdu.redhat.com>
2005-06-24 15:09 ` [Patch] ipvs: close race conditions on ip_vs_conn_tab list modification Julian Anastasov
[not found] ` <Pine.LNX.4.44.0506241808150.2776-100000@l>
2005-06-24 17:40 ` Neil Horman [this message]
2005-06-26 17:05 ` Wensong Zhang
[not found] <20050623183926.GI16783@hmsendeavour.rdu.redhat.com>
2005-06-24 8:46 ` Julian Anastasov
2005-06-24 14:48 ` Neil Horman
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=20050624174054.GE21499@hmsendeavour.rdu.redhat.com \
--to=nhorman@redhat.com \
--cc=akpm@osdl.org \
--cc=davem@davemloft.net \
--cc=ja@ssi.bg \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@oss.sgi.com \
--cc=wensong@linux-vs.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