Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6
From: Haakon Riiser (haakon.riiser_at_fys.uio.no)
Date: 01/13/04
- Previous message: Richard B. Johnson: "Re: [OT] use of patented algorithms in the kernel ok or not?"
- Next in thread: Andrew Morton: "Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Reply: Andrew Morton: "Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Maybe reply: Peter Maas: "Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Maybe reply: Manfred Spraul: "Re: Fw: Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 13 Jan 2004 22:09:23 +0100 To: linux-kernel@vger.kernel.org
When I first upgraded to Linux 2.6.0, I noticed that my mail
program (mutt) would occasionally stall when I send mails, even
when I send to a local account.
I investigated this further using the following strace command
(must be done as root) on qmail-inject:
env - /usr/bin/strace -s1024 -tt -T -fF -o /tmp/st.out \
/var/qmail/bin/qmail-inject </tmp/mail.test
/tmp/mail.test is this file:
-----BEGIN-----
From: hakonrk
To: hakonrk
Subject: hello
world
-----END-----
The entire output from strace is available for download from
<http://home.chello.no/~hakonrk/2.6.1.strace.out>, but I think
only this line is interesting:
5083 16:00:30.714309 write(5, "\0", 1) = 1 <1.637019>
This the only write() to file descriptor 5 issued by qmail-queue,
right before it exists, and this is what causes the delay.
Notice that writing this single NUL-byte takes almost 1.64 seconds
(the number in the angle brackets at the end of the line is the
time spent in the system call, given by the -T flag to strace).
Furthermore, the kernel appears to be busy-waiting in this system
call, because the CPU usage quickly jumps to 100%.
Compare this to the result on Linux 2.4.24:
<http://home.chello.no/~hakonrk/2.4.24.strace.out>
Here's the same line that causes the delay on 2.6:
5172 17:55:23.979799 write(5, "\0", 1) = 1 <0.000441>
Three orders of magnitude faster on 2.4!
I should also mention that the write-delay varies greatly. I got
the above result (1.64 seconds) on a 2.6-system that had been
up for around four hours. After rebooting, the delay dropped to
0.3 seconds, but it increases steadily while the system is up.
Finally, some info on my system:
OS: Slackware 9.1
Kernels: 2.6.0, 2.6.1, 2.4.24
Qmail: 1.03
libc: 2.3.2
gcc: 3.2.3
CPU: Athlon XP2500+
Kernel 2.6.1 was configured with
<http://home.chello.no/~hakonrk/config-2.6.1>
and 2.4.24 with <http://home.chello.no/~hakonrk/config-2.4.24>.
If you need to know more, just ask.
If anyone on this list uses Qmail on Linux 2.6.x, I'd appreciate
it if you could do the strace test and see if you can reproduce
this bug. Thanks in advance!
-- Haakon - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Previous message: Richard B. Johnson: "Re: [OT] use of patented algorithms in the kernel ok or not?"
- Next in thread: Andrew Morton: "Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Reply: Andrew Morton: "Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Maybe reply: Peter Maas: "Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Maybe reply: Manfred Spraul: "Re: Fw: Re: Busy-wait delay in qmail 1.03 after upgrading to Linux 2.6"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|