LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Jeff Chua <jeff.chua.linux@gmail.com>
To: lkml <linux-kernel@vger.kernel.org>,
cups-bugs <cups-bugs@easysw.com>,
Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>,
Krzysztof Piotr Oledzki <ole@ans.pl>,
Patrick McHardy <kaber@trash.net>,
"David S. Miller" <davem@davemloft.net>,
cups-bugs@easysw.com
Subject: Re: cups slow on linux-2.6.24
Date: Tue, 29 Jan 2008 06:41:06 +0800 (SGT) [thread overview]
Message-ID: <Pine.LNX.4.64.0801290635001.23096@boston.corp.fedex.com> (raw)
On Jan 28, 2008 7:18 AM, Jeff Chua <jeff.chua.linux@gmail.com> wrote:
> I'm sending printing jobs to a network printer (it's actually printing
> to the localhost simply creating a file), and running this on
> Linux-2.6.24 will cause the printing to slow down to 1 print every 3
> seconds after printing 500 times.
I bisected the kernel since the last known good 2.6.23 and zeroed in to
this commit.
commit 17311393f969090ab060540bd9dbe7dc885a76d5
Author: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Date: Thu Oct 11 14:35:52 2007 -0700
[NETFILTER]: nf_conntrack_tcp: fix connection reopening
Reverting this commit solves the problem.
Version 1000 jobs
2.6.23 90 sec
2.6.24 1,492 sec <== with commit
2.6.24(patch) 90 sec <== reverted the commit
Since the code has changed an can't simply revert the commit for the
latest linux git download, I made a patch to revert the above commit. I've
tested and it's working, but don't know if it breaks other things. Please
review.
Thanks,
Jeff.
--- net/netfilter/nf_conntrack_proto_tcp.c.org 2008-01-29 03:34:43 +0800
+++ net/netfilter/nf_conntrack_proto_tcp.c 2008-01-29 03:36:26 +0800
@@ -836,8 +836,8 @@
break;
if ((conntrack->proto.tcp.seen[!dir].flags &
IP_CT_TCP_FLAG_CLOSE_INIT)
- || (conntrack->proto.tcp.last_dir == dir
- && conntrack->proto.tcp.last_index == TCP_RST_SET)) {
+ || after(ntohl(th->seq),
+ conntrack->proto.tcp.seen[dir].td_end)) {
/* Attempt to reopen a closed/aborted connection.
* Delete this connection and look up again. */
write_unlock_bh(&tcp_lock);
@@ -845,6 +845,12 @@
conntrack->timeout.function((unsigned long)
conntrack);
return -NF_REPEAT;
+ } else {
+ write_unlock_bh(&tcp_lock);
+ if (LOG_INVALID(IPPROTO_TCP))
+ nf_log_packet(pf, 0, skb, NULL, NULL,
+ NULL, "nf_ct_tcp: invalid SYN");
+ return -NF_ACCEPT;
}
/* Fall through */
case TCP_CONNTRACK_IGNORE:
next reply other threads:[~2008-01-28 22:42 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-28 22:41 Jeff Chua [this message]
2008-01-28 22:56 ` Krzysztof Oledzki
2008-01-28 23:55 ` Jeff Chua
2008-01-29 10:53 ` Jozsef Kadlecsik
[not found] ` <b6a2187b0801291924k15f883aeg54f704156e4f2e3e@mail.gmail.com>
2008-01-30 13:47 ` Patrick McHardy
2008-01-31 2:23 ` Jeff Chua
[not found] ` <b6a2187b0801301826l5a50ce84p7d5dce3d0a74b3c0@mail.gmail.com>
2008-01-31 2:41 ` Patrick McHardy
2008-01-31 3:21 ` Jeff Chua
2008-01-31 3:25 ` Patrick McHardy
2008-01-31 5:01 ` Jeff Chua
2008-01-31 10:40 ` Jozsef Kadlecsik
2008-01-31 18:53 ` Patrick McHardy
2008-02-01 0:47 ` David Newall
2008-02-01 2:12 ` David Miller
2008-02-01 6:07 ` David Newall
2008-02-01 6:10 ` Patrick McHardy
2008-02-01 5:28 ` Jeff Chua
2008-02-02 14:44 ` Jozsef Kadlecsik
2008-02-03 16:08 ` Jeff Chua
-- strict thread matches above, loose matches on Subject: below --
2008-02-10 15:06 Jeff Chua
2008-02-14 15:02 ` Jozsef Kadlecsik
2008-02-14 22:50 ` David Miller
2008-02-15 1:44 ` Patrick McHardy
2008-02-05 1:17 Jeff Chua
2008-02-05 8:16 ` Jozsef Kadlecsik
2008-02-05 13:47 ` Patrick McHardy
[not found] <Pine.LNX.4.64.0802042226340.28805@boston.corp.fedex.com>
2008-02-04 20:17 ` Jozsef Kadlecsik
2008-01-27 23:18 Jeff Chua
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=Pine.LNX.4.64.0801290635001.23096@boston.corp.fedex.com \
--to=jeff.chua.linux@gmail.com \
--cc=cups-bugs@easysw.com \
--cc=davem@davemloft.net \
--cc=kaber@trash.net \
--cc=kadlec@blackhole.kfki.hu \
--cc=linux-kernel@vger.kernel.org \
--cc=ole@ans.pl \
--subject='Re: cups slow on linux-2.6.24' \
/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
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).