netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
       [not found] <bug-10600-10286@http.bugzilla.kernel.org/>
@ 2008-05-05 22:55 ` Andrew Morton
  2008-05-05 23:18   ` David Miller
  2008-05-05 23:38   ` Ben Liblit
  0 siblings, 2 replies; 16+ messages in thread
From: Andrew Morton @ 2008-05-05 22:55 UTC (permalink / raw)
  To: netdev; +Cc: bugme-daemon, Jesse Brandeburg, Ronciak, John, liblit

(switched to email.  Please respond via emailed reply-to-all, not via the
bugzilla web interface).

On Sat,  3 May 2008 14:55:08 -0700 (PDT)
bugme-daemon@bugzilla.kernel.org wrote:

> http://bugzilla.kernel.org/show_bug.cgi?id=10600
> 
>            Summary: e1000 updates rx_bytes infrequently
>            Product: Networking
>            Version: 2.5
>      KernelVersion: 2.6.24.4
>           Platform: All
>         OS/Version: Linux
>               Tree: Mainline
>             Status: NEW
>           Severity: normal
>           Priority: P1
>          Component: Other
>         AssignedTo: acme@ghostprotocols.net
>         ReportedBy: liblit@acm.org
> 
> 
> Latest working kernel version: not known
> Earliest failing kernel version: 2.6.24.4 for sure, but it's definitely not new
> Distribution: Fedora 8
> Hardware Environment: Intel 82566DC Gigabit Network Connection
> Software Environment: e1000 driver version 7.3.20-k2-NAPI
> Problem Description:
> 
> The count of received bytes reported in
> "/sys/class/net/eth0/statistics/rx_bytes" updates approximately once every two
> seconds, even when data is streaming in smoothly at 300K/s.  This makes
> transfer rates appear to be quite bursty when viewed in network monitoring
> tools such as the GNOME System Monitor applet.
> 
> Data is not *actually* arriving in once-every-two-second bursts.  For example,
> if I am storing a large download in a file, I am definitely seeing data
> arriving continuously.  It's only the "rx_bytes" count that makes things seem
> bursty because it updates so infrequently.
> 
> Is this frequency tunable in some way?
> 
> Steps to reproduce:
> 
> 1. Run the following command to check the "rx_bytes" count every quarter second
> and highlight any changes from the previous count:
> 
>     watch -d -n 0.25 'cat /sys/class/net/eth0/statistics/rx_bytes'
> 
> 2. Start a large download from a site that you know will give you a good,
> smooth, continuous flow of data.
> 
> 3. Observe that "rx_bytes" only updates about once every two seconds, even
> though data is actually arriving continuously.
> 
> Additional information:
> 
> Originally reported as a GNOME System Monitor bug:
> <http://bugzilla.gnome.org/show_bug.cgi?id=518355>.  The conclusion there was
> that this is a kernel issue and therefore should be transferred here.
> 

Yes, that is a bit obnoxious.

I've noticed that when I'm downloading stuff at home, gkrellm will display
eth0 as consuming 0 kbytes/sec, then 400 kbytes/sec, then 0, then 400 ad
nauseum.  I always assumed that gkrellm was busted.  Perhaps wrongly...




^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-05 22:55 ` [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently Andrew Morton
@ 2008-05-05 23:18   ` David Miller
  2008-05-05 23:55     ` Ben Liblit
  2008-05-06  0:55     ` Michael Chan
  2008-05-05 23:38   ` Ben Liblit
  1 sibling, 2 replies; 16+ messages in thread
From: David Miller @ 2008-05-05 23:18 UTC (permalink / raw)
  To: akpm; +Cc: netdev, bugme-daemon, jesse.brandeburg, john.ronciak, liblit

From: Andrew Morton <akpm@linux-foundation.org>
Date: Mon, 5 May 2008 15:55:02 -0700

> I've noticed that when I'm downloading stuff at home, gkrellm will display
> eth0 as consuming 0 kbytes/sec, then 400 kbytes/sec, then 0, then 400 ad
> nauseum.  I always assumed that gkrellm was busted.  Perhaps wrongly...

It's a tradeoff between excess DMA traffic updating the statistics,
and having them updated more frequently.

Actually, the thing that matters is when ->get_stats() is called.

So if a driver can trigger a statistics DMA update at ->get_stats()
time, that's probably what it should do.  But this could get
expensive and make the "do DMA less often" optimization less useful.



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-05 22:55 ` [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently Andrew Morton
  2008-05-05 23:18   ` David Miller
@ 2008-05-05 23:38   ` Ben Liblit
  1 sibling, 0 replies; 16+ messages in thread
From: Ben Liblit @ 2008-05-05 23:38 UTC (permalink / raw)
  To: Andrew Morton; +Cc: netdev, bugme-daemon, Jesse Brandeburg, Ronciak, John

Andrew Morton wrote:
> I've noticed that when I'm downloading stuff at home, gkrellm will display
> eth0 as consuming 0 kbytes/sec, then 400 kbytes/sec, then 0, then 400 ad
> nauseum.  I always assumed that gkrellm was busted.  Perhaps wrongly...

Likewise, my initial assumption was that GNOME System Monitor was 
faulty.  You might try the command that I suggested in my original report:

    watch -d -n 0.25 'cat /sys/class/net/eth0/statistics/rx_bytes'

Run that during a big download and it should be pretty clear whether 
it's being updated frequently or not.  If not, then gkrellm is not to blame.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06  0:55     ` Michael Chan
@ 2008-05-05 23:53       ` David Miller
  0 siblings, 0 replies; 16+ messages in thread
From: David Miller @ 2008-05-05 23:53 UTC (permalink / raw)
  To: mchan; +Cc: akpm, netdev, bugme-daemon, jesse.brandeburg, john.ronciak,
	liblit

From: "Michael Chan" <mchan@broadcom.com>
Date: Mon, 05 May 2008 17:55:35 -0700

> The width of hardware counters may also be limited and so periodic
> fetching or DMA may be needed to prevent overflow.

To the best of my knowledge, they are all 64-bit on e1000, so I don't
think it's a real issue in this specific case.

But yes, in general, this is a concern.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-05 23:18   ` David Miller
@ 2008-05-05 23:55     ` Ben Liblit
  2008-05-06  1:17       ` Michael Chan
  2008-05-06  0:55     ` Michael Chan
  1 sibling, 1 reply; 16+ messages in thread
From: Ben Liblit @ 2008-05-05 23:55 UTC (permalink / raw)
  To: David Miller; +Cc: akpm, netdev, bugme-daemon, jesse.brandeburg, john.ronciak

Perhaps userspace needs a way to tweak the update frequency?  Or perhaps 
the driver needs a way to tell userspace what update frequency it should 
expect?  Without some kind of coordination, we have the present silly 
situation: userspace network activity monitors are checking rx_bytes 
more frequently than could possibly be useful.

Do different Ethernet drivers update rx_bytes at the same rate?  Or is 
this completely ad hoc?

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06  1:17       ` Michael Chan
@ 2008-05-06  0:43         ` Krzysztof Oledzki
  2008-05-06  1:55           ` Michael Chan
  2008-05-06  1:24         ` Ben Liblit
  1 sibling, 1 reply; 16+ messages in thread
From: Krzysztof Oledzki @ 2008-05-06  0:43 UTC (permalink / raw)
  To: Michael Chan
  Cc: Ben Liblit, David Miller, akpm, netdev, bugme-daemon,
	jesse.brandeburg, john.ronciak

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1185 bytes --]



On Mon, 5 May 2008, Michael Chan wrote:

> On Mon, 2008-05-05 at 18:55 -0500, Ben Liblit wrote:
>> Perhaps userspace needs a way to tweak the update frequency?  Or perhaps
>> the driver needs a way to tell userspace what update frequency it should
>> expect?  Without some kind of coordination, we have the present silly
>> situation: userspace network activity monitors are checking rx_bytes
>> more frequently than could possibly be useful.
>>
>> Do different Ethernet drivers update rx_bytes at the same rate?  Or is
>> this completely ad hoc?
>
> "ethtool -C eth0 stats-block-usecs" can be used to control statistics
> update frequency on most tg3 and bnx2 devices.  The default is 1 second
> on these devices.

Hm... strange - I tested it on 2.6.23.17 with:
03:00.0 Ethernet controller: Broadcom Corporation NetXtreme II BCM5708 Gigabit Ethernet (rev 12)

Setting both:
  # ethtool -C eth0 stats-block-usecs 50
and:
  # ethtool -C eth0 stats-block-usecs 5000000
gives exactly the same situation - statistics update frequency is still ~1s.

# ethtool -c eth1 |grep stats-block-usecs
stats-block-usecs: 999936

Best regards,

 				Krzysztof Olędzki

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-05 23:18   ` David Miller
  2008-05-05 23:55     ` Ben Liblit
@ 2008-05-06  0:55     ` Michael Chan
  2008-05-05 23:53       ` David Miller
  1 sibling, 1 reply; 16+ messages in thread
From: Michael Chan @ 2008-05-06  0:55 UTC (permalink / raw)
  To: David Miller
  Cc: akpm, netdev, bugme-daemon, jesse.brandeburg, john.ronciak,
	liblit

On Mon, 2008-05-05 at 16:18 -0700, David Miller wrote:
> Actually, the thing that matters is when ->get_stats() is called.
> 
> So if a driver can trigger a statistics DMA update at ->get_stats()
> time, that's probably what it should do.  But this could get
> expensive and make the "do DMA less often" optimization less useful.
> 
> 

The width of hardware counters may also be limited and so periodic
fetching or DMA may be needed to prevent overflow.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-05 23:55     ` Ben Liblit
@ 2008-05-06  1:17       ` Michael Chan
  2008-05-06  0:43         ` Krzysztof Oledzki
  2008-05-06  1:24         ` Ben Liblit
  0 siblings, 2 replies; 16+ messages in thread
From: Michael Chan @ 2008-05-06  1:17 UTC (permalink / raw)
  To: Ben Liblit
  Cc: David Miller, akpm, netdev, bugme-daemon, jesse.brandeburg,
	john.ronciak

On Mon, 2008-05-05 at 18:55 -0500, Ben Liblit wrote:
> Perhaps userspace needs a way to tweak the update frequency?  Or perhaps 
> the driver needs a way to tell userspace what update frequency it should 
> expect?  Without some kind of coordination, we have the present silly 
> situation: userspace network activity monitors are checking rx_bytes 
> more frequently than could possibly be useful.
> 
> Do different Ethernet drivers update rx_bytes at the same rate?  Or is 
> this completely ad hoc?

"ethtool -C eth0 stats-block-usecs" can be used to control statistics
update frequency on most tg3 and bnx2 devices.  The default is 1 second
on these devices.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06  1:17       ` Michael Chan
  2008-05-06  0:43         ` Krzysztof Oledzki
@ 2008-05-06  1:24         ` Ben Liblit
  2008-05-06 17:22           ` Brandeburg, Jesse
  1 sibling, 1 reply; 16+ messages in thread
From: Ben Liblit @ 2008-05-06  1:24 UTC (permalink / raw)
  To: Michael Chan
  Cc: David Miller, akpm, netdev, bugme-daemon, jesse.brandeburg,
	john.ronciak

Michael Chan wrote:
> "ethtool -C eth0 stats-block-usecs" can be used to control statistics
> update frequency on most tg3 and bnx2 devices.

But not on my e1000-driven Intel 82566DC, sadly:

	# ethtool -C eth0 stats-block-usecs 50
	Cannot get device coalesce settings: Operation not supported

	# ethtool -c eth0
	Coalesce parameters for eth0:
	Cannot get device coalesce settings: Operation not supported

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06  0:43         ` Krzysztof Oledzki
@ 2008-05-06  1:55           ` Michael Chan
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Chan @ 2008-05-06  1:55 UTC (permalink / raw)
  To: Krzysztof Oledzki
  Cc: Ben Liblit, David Miller, akpm, netdev, bugme-daemon,
	jesse.brandeburg, john.ronciak

On Tue, 2008-05-06 at 02:43 +0200, Krzysztof Oledzki wrote:
> Hm... strange - I tested it on 2.6.23.17 with:
> 03:00.0 Ethernet controller: Broadcom Corporation NetXtreme II BCM5708
> Gigabit Ethernet (rev 12)
> 
> Setting both:
>   # ethtool -C eth0 stats-block-usecs 50
> and:
>   # ethtool -C eth0 stats-block-usecs 5000000
> gives exactly the same situation - statistics update frequency is
> still ~1s.
> 
> # ethtool -c eth1 |grep stats-block-usecs
> stats-block-usecs: 999936

Unfortunately, 5708 has a bug in the statistics DMA engine that was
reported here on netdev about 1 year ago.  To work around it, we have to
disable the statistics block DMA and rely on the driver's timer function
which runs at a fixed 1 second interval.  So only 0 and 999936 are
allowed values on the 5708.  Newer chips or the older 5706 do not have
this problem.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* RE: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06  1:24         ` Ben Liblit
@ 2008-05-06 17:22           ` Brandeburg, Jesse
  2008-05-06 20:49             ` Brandeburg, Jesse
  0 siblings, 1 reply; 16+ messages in thread
From: Brandeburg, Jesse @ 2008-05-06 17:22 UTC (permalink / raw)
  To: Ben Liblit, Michael Chan
  Cc: David Miller, akpm, netdev, bugme-daemon, Ronciak, John

Ben Liblit wrote:
> Michael Chan wrote:
>> "ethtool -C eth0 stats-block-usecs" can be used to control statistics
>> update frequency on most tg3 and bnx2 devices.
> 
> But not on my e1000-driven Intel 82566DC, sadly:
> 
> 	# ethtool -C eth0 stats-block-usecs 50
> 	Cannot get device coalesce settings: Operation not supported
> 
> 	# ethtool -c eth0
> 	Coalesce parameters for eth0:
> 	Cannot get device coalesce settings: Operation not supported

e1000/e1000e already has patches upstream that count bytes and packets
"on the fly" to fix this sort of issue.

see commit:
commit ef90e4eca9fcade05dd03f853df75cf459a75422
Author: Auke Kok <auke-jan.h.kok@intel.com>
Date:   Tue Nov 13 20:49:15 2007 -0800

    [E1000]: update netstats traffic counters realtime

    formerly e1000/e1000e only updated traffic counters once every
    2 seconds with the register values of bytes/packets. With newer
    code however in the interrupt and polling code we can real-time
    fill in these values in the netstats struct for users to see.

    Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>

and for e1000e (which you should be using for 82566)
commit 419886927796dfeca87c1fd11d1fe2ed442103cc
Author: Auke Kok <auke-jan.h.kok@intel.com>
Date:   Tue Nov 13 20:48:36 2007 -0800

    [E1000E]: update netstats traffic counters realtime

    formerly e1000/e1000e only updated traffic counters once every
    2 seconds with the register values of bytes/packets. With newer
    code however in the interrupt and polling code we can real-time
    fill in these values in the netstats struct for users to see.

    Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>

I'm not sure if this patch is in 2.6.24 and my git foo is lacking... 
is this patch not working for you?  if so we need to figure out why.

Jesse

^ permalink raw reply	[flat|nested] 16+ messages in thread

* RE: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06 17:22           ` Brandeburg, Jesse
@ 2008-05-06 20:49             ` Brandeburg, Jesse
  2008-05-12  5:44               ` Ben Liblit
  2008-05-12  6:42               ` Ben Liblit
  0 siblings, 2 replies; 16+ messages in thread
From: Brandeburg, Jesse @ 2008-05-06 20:49 UTC (permalink / raw)
  To: Brandeburg, Jesse, Ben Liblit, Michael Chan
  Cc: David Miller, akpm, netdev, bugme-daemon, Ronciak, John

Brandeburg, Jesse wrote:
>Ben Liblit wrote:
>> Michael Chan wrote:
>>> "ethtool -C eth0 stats-block-usecs" can be used to control
statistics
>>> update frequency on most tg3 and bnx2 devices.
>> 
>> But not on my e1000-driven Intel 82566DC, sadly:

> e1000 commit ef90e4eca9fcade05dd03f853df75cf459a75422

> and for e1000e (which you should be using for 82566)
> commit 419886927796dfeca87c1fd11d1fe2ed442103cc

> I'm not sure if this patch is in 2.6.24 and my git foo is lacking...
> is this patch not working for you?  if so we need to figure out why.

I found that these commits (to do real time stats update) are in
2.6.25-rc1, not 2.6.24, it would be great if you were able to try a
newer kernel version to verify that these fixes work for you.

an ethtool -C parameter implementation to support modifiable polling
frequency for the other stats is in progress.

Jesse

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06 20:49             ` Brandeburg, Jesse
@ 2008-05-12  5:44               ` Ben Liblit
  2008-05-12  6:18                 ` David Miller
  2008-05-12  6:42               ` Ben Liblit
  1 sibling, 1 reply; 16+ messages in thread
From: Ben Liblit @ 2008-05-12  5:44 UTC (permalink / raw)
  To: Brandeburg, Jesse
  Cc: Michael Chan, David Miller, akpm, netdev, bugme-daemon,
	Ronciak, John

Jesse Brandeburg wrote:
> and for e1000e (which you should be using for 82566)

That seems unlikely.  When I replace "alias eth0 e1000" with "alias eth0 
e100e" in my module configuration I lose the network interface entirely. 
  "ip link" does not mention it and it does not appear in 
"/sys/class/net".  Switching back to "alias eth0 e1000" restores the 
ability to use the network interface.

It seems pretty clear from my end that the e1000e driver is *not* 
recognizing and driving my Intel 82566DC ethernet device.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-12  5:44               ` Ben Liblit
@ 2008-05-12  6:18                 ` David Miller
  2008-05-12  6:26                   ` Ben Liblit
  0 siblings, 1 reply; 16+ messages in thread
From: David Miller @ 2008-05-12  6:18 UTC (permalink / raw)
  To: liblit; +Cc: jesse.brandeburg, mchan, akpm, netdev, bugme-daemon, john.ronciak

From: Ben Liblit <liblit@acm.org>
Date: Mon, 12 May 2008 00:44:39 -0500

> Jesse Brandeburg wrote:
> > and for e1000e (which you should be using for 82566)
> 
> That seems unlikely.  When I replace "alias eth0 e1000" with "alias eth0 
> e100e" in my module configuration I lose the network interface entirely. 

You're missing a zero in that string, it's "e1000e" not "e100e", and
did you make sure to enable CONFIG_E1000E in your kernel config?


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-12  6:18                 ` David Miller
@ 2008-05-12  6:26                   ` Ben Liblit
  0 siblings, 0 replies; 16+ messages in thread
From: Ben Liblit @ 2008-05-12  6:26 UTC (permalink / raw)
  To: David Miller
  Cc: jesse.brandeburg, mchan, akpm, netdev, bugme-daemon, john.ronciak

David Miller wrote:
> You're missing a zero in that string, it's "e1000e" not "e100e", and
> did you make sure to enable CONFIG_E1000E in your kernel config?

Sorry, that was a typo in my comment but not in my actual experiments. 
I used "e1000e", not "e100e".  CONFIG_E1000E is enabled, and "lsmod" 
confirmed that the e1000e module was definitely loaded into the kernel. 
  "The kernel", for the record, is the current Fedora 8 kernel, 
2.6.24.5-85.fc8.

I realize that pristine, self-built kernels are preferred for bug 
reporting.  I am currently building my own 2.6.25.3 so that I can affirm 
or refute Jesse Brandeburg's claim (comment #12) that this bug is fixed 
in 2.6.25-rc1 and later.  I'll report my findings when available, 
assuming I still remember how to install my own kernels.  (Yes, yes, 
I've gotten soft and lazy.)

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently
  2008-05-06 20:49             ` Brandeburg, Jesse
  2008-05-12  5:44               ` Ben Liblit
@ 2008-05-12  6:42               ` Ben Liblit
  1 sibling, 0 replies; 16+ messages in thread
From: Ben Liblit @ 2008-05-12  6:42 UTC (permalink / raw)
  To: Brandeburg, Jesse
  Cc: Michael Chan, David Miller, akpm, netdev, bugme-daemon,
	Ronciak, John

Jesse Brandeburg wrote:
> I found that these commits (to do real time stats update) are in
> 2.6.25-rc1, not 2.6.24, it would be great if you were able to try a
> newer kernel version to verify that these fixes work for you.

I'm now running a self-built 2.6.25.3 kernel.  I confirm that rx_bytes 
updates as frequently as I'm reasonably able to check it.

Furthermore, the e1000e driver included with 2.5.25.3 works on my 
hardware when using this kernel.  Both e1000 and e1000e work, and 
rx_bytes is updated promptly when using either driver.

Problem solved.

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2008-05-12  6:42 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <bug-10600-10286@http.bugzilla.kernel.org/>
2008-05-05 22:55 ` [Bugme-new] [Bug 10600] New: e1000 updates rx_bytes infrequently Andrew Morton
2008-05-05 23:18   ` David Miller
2008-05-05 23:55     ` Ben Liblit
2008-05-06  1:17       ` Michael Chan
2008-05-06  0:43         ` Krzysztof Oledzki
2008-05-06  1:55           ` Michael Chan
2008-05-06  1:24         ` Ben Liblit
2008-05-06 17:22           ` Brandeburg, Jesse
2008-05-06 20:49             ` Brandeburg, Jesse
2008-05-12  5:44               ` Ben Liblit
2008-05-12  6:18                 ` David Miller
2008-05-12  6:26                   ` Ben Liblit
2008-05-12  6:42               ` Ben Liblit
2008-05-06  0:55     ` Michael Chan
2008-05-05 23:53       ` David Miller
2008-05-05 23:38   ` Ben Liblit

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).