All of lore.kernel.org
 help / color / mirror / Atom feed
* devpts mounts too slowly
@ 2009-06-03 14:28 Alexey Vlasov
  2009-06-03 21:28 ` H. Peter Anvin
  0 siblings, 1 reply; 16+ messages in thread
From: Alexey Vlasov @ 2009-06-03 14:28 UTC (permalink / raw)
  To: linux-kernel

Hi.

In comparison with bind/proc mounting it takes a lot more time mounting
devpts. Is it possible to somehow accelerate the process? Now there are
about 5k devpts mounting, it already took 20 minutes, further will take
even more time.

# time mount -n -i -t devpts none /home/staff/.server-1/dev/pts
real    0m0.295s
user    0m0.000s
sys     0m0.288s

# time mount -i -n --bind /var/bin /home/staff/.server-1/bin
real    0m0.004s
user    0m0.000s
sys     0m0.004s

-- 
BRGDS. Alexey Vlasov.

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

* Re: devpts mounts too slowly
  2009-06-03 14:28 devpts mounts too slowly Alexey Vlasov
@ 2009-06-03 21:28 ` H. Peter Anvin
  2009-06-09 23:19   ` Andrew Morton
  0 siblings, 1 reply; 16+ messages in thread
From: H. Peter Anvin @ 2009-06-03 21:28 UTC (permalink / raw)
  To: Alexey Vlasov; +Cc: linux-kernel

Alexey Vlasov wrote:
> Hi.
> 
> In comparison with bind/proc mounting it takes a lot more time mounting
> devpts. Is it possible to somehow accelerate the process? Now there are
> about 5k devpts mounting, it already took 20 minutes, further will take
> even more time.
> 
> # time mount -n -i -t devpts none /home/staff/.server-1/dev/pts
> real    0m0.295s
> user    0m0.000s
> sys     0m0.288s
> 

A profile would be handy here.  There is no sensible reason for this to
that 0.3 seconds.  This might be RCU-epoch related?

	-hpa


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

* Re: devpts mounts too slowly
  2009-06-03 21:28 ` H. Peter Anvin
@ 2009-06-09 23:19   ` Andrew Morton
  2009-06-09 23:30     ` Ray Lee
  0 siblings, 1 reply; 16+ messages in thread
From: Andrew Morton @ 2009-06-09 23:19 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: renton, linux-kernel

On Wed, 03 Jun 2009 14:28:56 -0700
"H. Peter Anvin" <hpa@zytor.com> wrote:

> Alexey Vlasov wrote:
> > Hi.
> > 
> > In comparison with bind/proc mounting it takes a lot more time mounting
> > devpts. Is it possible to somehow accelerate the process? Now there are
> > about 5k devpts mounting, it already took 20 minutes, further will take
> > even more time.
> > 
> > # time mount -n -i -t devpts none /home/staff/.server-1/dev/pts
> > real    0m0.295s
> > user    0m0.000s
> > sys     0m0.288s
> > 
> 
> A profile would be handy here.  There is no sensible reason for this to
> that 0.3 seconds.  This might be RCU-epoch related?
> 

It seems OK here.

akpm2:/home/akpm/xx# time mount -n -i -t devpts none /tmp/pts
mount -n -i -t devpts none /tmp/pts  0.00s user 0.00s system 0% cpu 0.002 total


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

* Re: devpts mounts too slowly
  2009-06-09 23:19   ` Andrew Morton
@ 2009-06-09 23:30     ` Ray Lee
  2009-06-09 23:53       ` Andrew Morton
  2009-06-10  0:02       ` H. Peter Anvin
  0 siblings, 2 replies; 16+ messages in thread
From: Ray Lee @ 2009-06-09 23:30 UTC (permalink / raw)
  To: Andrew Morton; +Cc: H. Peter Anvin, renton, linux-kernel

On Tue, Jun 9, 2009 at 4:19 PM, Andrew Morton<akpm@linux-foundation.org> wrote:
> On Wed, 03 Jun 2009 14:28:56 -0700
> "H. Peter Anvin" <hpa@zytor.com> wrote:
>
>> Alexey Vlasov wrote:
>> > Hi.
>> >
>> > In comparison with bind/proc mounting it takes a lot more time mounting
>> > devpts. Is it possible to somehow accelerate the process? Now there are
>> > about 5k devpts mounting, it already took 20 minutes, further will take
>> > even more time.
>> >
>> > # time mount -n -i -t devpts none /home/staff/.server-1/dev/pts
>> > real    0m0.295s
>> > user    0m0.000s
>> > sys     0m0.288s
>> >
>>
>> A profile would be handy here.  There is no sensible reason for this to
>> that 0.3 seconds.  This might be RCU-epoch related?
>>
>
> It seems OK here.
>
> akpm2:/home/akpm/xx# time mount -n -i -t devpts none /tmp/pts
> mount -n -i -t devpts none /tmp/pts  0.00s user 0.00s system 0% cpu 0.002 total

I read the Original Post as that test being performed with 5k /dev/pts
already mounted.

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

* Re: devpts mounts too slowly
  2009-06-09 23:30     ` Ray Lee
@ 2009-06-09 23:53       ` Andrew Morton
  2009-06-10  0:07         ` H. Peter Anvin
  2009-06-10 20:51         ` H. Peter Anvin
  2009-06-10  0:02       ` H. Peter Anvin
  1 sibling, 2 replies; 16+ messages in thread
From: Andrew Morton @ 2009-06-09 23:53 UTC (permalink / raw)
  To: Ray Lee; +Cc: hpa, renton, linux-kernel

On Tue, 9 Jun 2009 16:30:31 -0700
Ray Lee <ray-lk@madrabbit.org> wrote:

> On Tue, Jun 9, 2009 at 4:19 PM, Andrew Morton<akpm@linux-foundation.org> wrote:
> > On Wed, 03 Jun 2009 14:28:56 -0700
> > "H. Peter Anvin" <hpa@zytor.com> wrote:
> >
> >> Alexey Vlasov wrote:
> >> > Hi.
> >> >
> >> > In comparison with bind/proc mounting it takes a lot more time mounting
> >> > devpts. Is it possible to somehow accelerate the process? Now there are
> >> > about 5k devpts mounting, it already took 20 minutes, further will take
> >> > even more time.
> >> >
> >> > # time mount -n -i -t devpts none /home/staff/.server-1/dev/pts
> >> > real __ __0m0.295s
> >> > user __ __0m0.000s
> >> > sys __ __ 0m0.288s
> >> >
> >>
> >> A profile would be handy here. __There is no sensible reason for this to
> >> that 0.3 seconds. __This might be RCU-epoch related?
> >>
> >
> > It seems OK here.
> >
> > akpm2:/home/akpm/xx# time mount -n -i -t devpts none /tmp/pts
> > mount -n -i -t devpts none /tmp/pts __0.00s user 0.00s system 0% cpu 0.002 total
> 
> I read the Original Post as that test being performed with 5k /dev/pts
> already mounted.

hm, OK.

I've now mounted 15000 devpts's and still no slowdown is evident.

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

* Re: devpts mounts too slowly
  2009-06-09 23:30     ` Ray Lee
  2009-06-09 23:53       ` Andrew Morton
@ 2009-06-10  0:02       ` H. Peter Anvin
  2009-07-06 19:52         ` Alexey Vlasov
  1 sibling, 1 reply; 16+ messages in thread
From: H. Peter Anvin @ 2009-06-10  0:02 UTC (permalink / raw)
  To: Ray Lee; +Cc: Andrew Morton, renton, linux-kernel

Ray Lee wrote:
>>
>> akpm2:/home/akpm/xx# time mount -n -i -t devpts none /tmp/pts
>> mount -n -i -t devpts none /tmp/pts  0.00s user 0.00s system 0% cpu 0.002 total
> 
> I read the Original Post as that test being performed with 5k /dev/pts
> already mounted.

A quick script seems to confirm that the time starts creeping up as the
number of mount points increase; on my Core i7 system the 10000th mount
takes around 50 ms whereas the early instances are submillisecond, and
the increase *seems* to be O(n log n) or thereabouts -- slightly
superlinear but not a good fit for a power law.

The same thing happens with ramfs, so the problem is either in libfs or
in the VFS; I suspect the latter as I don't really think we have had a
huge reason to optimize a very large number of mounts in the past.

	-hpa

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

* Re: devpts mounts too slowly
  2009-06-09 23:53       ` Andrew Morton
@ 2009-06-10  0:07         ` H. Peter Anvin
  2009-06-10 20:51         ` H. Peter Anvin
  1 sibling, 0 replies; 16+ messages in thread
From: H. Peter Anvin @ 2009-06-10  0:07 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Ray Lee, renton, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 185 bytes --]

Andrew Morton wrote:
> hm, OK.
> 
> I've now mounted 15000 devpts's and still no slowdown is evident.

This is the test script I used; graphing the results is quite interesting.

	-hpa

[-- Attachment #2: test.sh --]
[-- Type: application/x-shellscript, Size: 284 bytes --]

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

* Re: devpts mounts too slowly
  2009-06-09 23:53       ` Andrew Morton
  2009-06-10  0:07         ` H. Peter Anvin
@ 2009-06-10 20:51         ` H. Peter Anvin
  2009-06-24 20:01           ` Al Viro
  1 sibling, 1 reply; 16+ messages in thread
From: H. Peter Anvin @ 2009-06-10 20:51 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Ray Lee, renton, linux-kernel, linux-fsdevel

Andrew Morton wrote:
> 
> hm, OK.
> 
> I've now mounted 15000 devpts's and still no slowdown is evident.

I ran my test script, mounting ramfs, with n=100000, and well, gave up
since it hadn't gotten any further than 57000 or so overnight.  At that
time each individual mount was taking several seconds.

Graphing the delays seem to indicate O(n^2) behavior.

umounts do not appear affected; each umount still take negible time.

	-hpa


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

* Re: devpts mounts too slowly
  2009-06-10 20:51         ` H. Peter Anvin
@ 2009-06-24 20:01           ` Al Viro
  2009-06-24 21:58             ` Andrew Morton
  0 siblings, 1 reply; 16+ messages in thread
From: Al Viro @ 2009-06-24 20:01 UTC (permalink / raw)
  To: H. Peter Anvin
  Cc: Andrew Morton, Ray Lee, renton, linux-kernel, linux-fsdevel

On Wed, Jun 10, 2009 at 01:51:25PM -0700, H. Peter Anvin wrote:
> Andrew Morton wrote:
> > 
> > hm, OK.
> > 
> > I've now mounted 15000 devpts's and still no slowdown is evident.
> 
> I ran my test script, mounting ramfs, with n=100000, and well, gave up
> since it hadn't gotten any further than 57000 or so overnight.  At that
> time each individual mount was taking several seconds.
> 
> Graphing the delays seem to indicate O(n^2) behavior.
> 
> umounts do not appear affected; each umount still take negible time.

I think I know what's going on.  /sbin/mount is linked against libselinux
/sbin/umount is not.  And FPOS in question blows if you
	* do not have selinuxfs mounted (e.g. because selinux is not enabled)
	* have a lot of mounts.

What happens is that this piece of crap checks for presence of selinuxfs
on /selinux; then, if the thing isn't there, we go and scan the entire
/proc/mounts in search of selinuxfs mounts.

If akpm has selinux enabled on his testbox and you don't have it on yours,
we have all observations explained.  I'd expect similar slowdown from
ls on an empty directory, BTW - /bin/ls is linked against the same thing,
so it gets hit as well.  Before it even gets to main().

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

* Re: devpts mounts too slowly
  2009-06-24 20:01           ` Al Viro
@ 2009-06-24 21:58             ` Andrew Morton
  2009-06-24 23:02               ` H. Peter Anvin
  0 siblings, 1 reply; 16+ messages in thread
From: Andrew Morton @ 2009-06-24 21:58 UTC (permalink / raw)
  To: Al Viro; +Cc: hpa, ray-lk, renton, linux-kernel, linux-fsdevel

On Wed, 24 Jun 2009 21:01:08 +0100
Al Viro <viro@ZenIV.linux.org.uk> wrote:

> On Wed, Jun 10, 2009 at 01:51:25PM -0700, H. Peter Anvin wrote:
> > Andrew Morton wrote:
> > > 
> > > hm, OK.
> > > 
> > > I've now mounted 15000 devpts's and still no slowdown is evident.
> > 
> > I ran my test script, mounting ramfs, with n=100000, and well, gave up
> > since it hadn't gotten any further than 57000 or so overnight.  At that
> > time each individual mount was taking several seconds.
> > 
> > Graphing the delays seem to indicate O(n^2) behavior.
> > 
> > umounts do not appear affected; each umount still take negible time.
> 
> I think I know what's going on.  /sbin/mount is linked against libselinux
> /sbin/umount is not.  And FPOS in question blows if you
> 	* do not have selinuxfs mounted (e.g. because selinux is not enabled)
> 	* have a lot of mounts.
> 
> What happens is that this piece of crap checks for presence of selinuxfs
> on /selinux; then, if the thing isn't there, we go and scan the entire
> /proc/mounts in search of selinuxfs mounts.
> 
> If akpm has selinux enabled on his testbox and you don't have it on yours,
> we have all observations explained.

CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
# CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT is not set
# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set

>  I'd expect similar slowdown from
> ls on an empty directory, BTW - /bin/ls is linked against the same thing,
> so it gets hit as well.  Before it even gets to main().

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

* Re: devpts mounts too slowly
  2009-06-24 21:58             ` Andrew Morton
@ 2009-06-24 23:02               ` H. Peter Anvin
  0 siblings, 0 replies; 16+ messages in thread
From: H. Peter Anvin @ 2009-06-24 23:02 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Al Viro, ray-lk, renton, linux-kernel, linux-fsdevel

Andrew Morton wrote:
>>>
>>> umounts do not appear affected; each umount still take negible time.
>> I think I know what's going on.  /sbin/mount is linked against libselinux
>> /sbin/umount is not.  And FPOS in question blows if you
>> 	* do not have selinuxfs mounted (e.g. because selinux is not enabled)
>> 	* have a lot of mounts.
>>
>> What happens is that this piece of crap checks for presence of selinuxfs
>> on /selinux; then, if the thing isn't there, we go and scan the entire
>> /proc/mounts in search of selinuxfs mounts.
>>
>> If akpm has selinux enabled on his testbox and you don't have it on yours,
>> we have all observations explained.
> 
> CONFIG_SECURITY_SELINUX=y
> CONFIG_SECURITY_SELINUX_BOOTPARAM=y
> CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
> CONFIG_SECURITY_SELINUX_DISABLE=y
> CONFIG_SECURITY_SELINUX_DEVELOP=y
> CONFIG_SECURITY_SELINUX_AVC_STATS=y
> CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
> # CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT is not set
> # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
> 

Wow.  It doesn't even check for selinux actually being enabled before
embarking on this stupidity.

FAIL.

	-hpa

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

* Re: devpts mounts too slowly
  2009-06-10  0:02       ` H. Peter Anvin
@ 2009-07-06 19:52         ` Alexey Vlasov
  2009-07-06 20:03           ` Alexey Vlasov
  2009-07-06 21:21           ` H. Peter Anvin
  0 siblings, 2 replies; 16+ messages in thread
From: Alexey Vlasov @ 2009-07-06 19:52 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: Ray Lee, Andrew Morton, linux-kernel

On Tue, Jun 09, 2009 at 05:02:59PM -0700, H. Peter Anvin wrote:

> A quick script seems to confirm that the time starts creeping up as the
> number of mount points increase; on my Core i7 system the 10000th mount
> takes around 50 ms whereas the early instances are submillisecond, and
> the increase *seems* to be O(n log n) or thereabouts -- slightly
> superlinear but not a good fit for a power law.

I have prepared a new machine for testing, and I don't see any slowdown
by mounting devpts.
Total mounts on it:
# wc -l /proc/mounts
153481 /proc/mounts
# fgrep -c devpts /proc/mounts
10231

On my other servers there're slowdown already by this number of:
# wc -l /proc/mounts
49889 /proc/mounts
# fgrep -c devpts /proc/mounts
3323

But the first box is totally empty, others are in use, may be this
matters?

-- 
BRGDS. Alexey Vlasov.

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

* Re: devpts mounts too slowly
  2009-07-06 19:52         ` Alexey Vlasov
@ 2009-07-06 20:03           ` Alexey Vlasov
  2009-07-06 21:21           ` H. Peter Anvin
  1 sibling, 0 replies; 16+ messages in thread
From: Alexey Vlasov @ 2009-07-06 20:03 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: Ray Lee, Andrew Morton, linux-kernel

On Mon, Jul 06, 2009 at 11:52:52PM +0400, Alexey Vlasov wrote:
> On Tue, Jun 09, 2009 at 05:02:59PM -0700, H. Peter Anvin wrote:
> 
> > A quick script seems to confirm that the time starts creeping up as the
> > number of mount points increase; on my Core i7 system the 10000th mount
> > takes around 50 ms whereas the early instances are submillisecond, and
> > the increase *seems* to be O(n log n) or thereabouts -- slightly
> > superlinear but not a good fit for a power law.
> 
> I have prepared a new machine for testing, and I don't see any slowdown
> by mounting devpts.
> Total mounts on it:
> # wc -l /proc/mounts
> 153481 /proc/mounts
> # fgrep -c devpts /proc/mounts
> 10231
> 
> On my other servers there're slowdown already by this number of:
> # wc -l /proc/mounts
> 49889 /proc/mounts
> # fgrep -c devpts /proc/mounts
> 3323

One more notice, box with slowdowns:
...
geteuid()                               = 0
getcwd("/home/staff/r_renton"..., 4095) = 21
readlink("/home/staff/r_renton/none", 0x7ffffa32aa00, 4096) = -1 ENOENT
(No such file or directory)
rt_sigprocmask(SIG_BLOCK, ~[TRAP SEGV RTMIN RT_1], NULL, 8) = 0
mount("none", "/home/www/server_7e014b11/dev/pts",
"devpts", MS_MGC_VAL, NULL) = 0
getcwd("/home/staff/r_renton"..., 4095) = 21
...

And this on the new one, about 100k mounting points and no
slowdowns at all.
...
getuid()                                = 0
geteuid()                               = 0
rt_sigprocmask(SIG_BLOCK, ~[TRAP SEGV RTMIN RT_1], NULL, 8) = 0
mount("none", "/home/www/server_56d48c7d/dev/pts", "devpts",
MS_MGC_VAL, NULL) = 0
readlink("/home", 0x7fff79a82e10, 4096) = -1 EINVAL (Invalid argument)
...

-- 
BRGDS. Alexey Vlasov.

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

* Re: devpts mounts too slowly
  2009-07-06 19:52         ` Alexey Vlasov
  2009-07-06 20:03           ` Alexey Vlasov
@ 2009-07-06 21:21           ` H. Peter Anvin
  2009-07-07  8:38             ` Alexey Vlasov
  1 sibling, 1 reply; 16+ messages in thread
From: H. Peter Anvin @ 2009-07-06 21:21 UTC (permalink / raw)
  To: Alexey Vlasov; +Cc: Ray Lee, Andrew Morton, linux-kernel

Alexey Vlasov wrote:
> On Tue, Jun 09, 2009 at 05:02:59PM -0700, H. Peter Anvin wrote:
> 
>> A quick script seems to confirm that the time starts creeping up as the
>> number of mount points increase; on my Core i7 system the 10000th mount
>> takes around 50 ms whereas the early instances are submillisecond, and
>> the increase *seems* to be O(n log n) or thereabouts -- slightly
>> superlinear but not a good fit for a power law.
> 
> I have prepared a new machine for testing, and I don't see any slowdown
> by mounting devpts.
> Total mounts on it:
> # wc -l /proc/mounts
> 153481 /proc/mounts
> # fgrep -c devpts /proc/mounts
> 10231
> 
> On my other servers there're slowdown already by this number of:
> # wc -l /proc/mounts
> 49889 /proc/mounts
> # fgrep -c devpts /proc/mounts
> 3323
> 
> But the first box is totally empty, others are in use, may be this
> matters?
> 

Do you have /selinux mounted on one of them?

	-hpa


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

* Re: devpts mounts too slowly
  2009-07-06 21:21           ` H. Peter Anvin
@ 2009-07-07  8:38             ` Alexey Vlasov
  2009-07-07 15:37               ` H. Peter Anvin
  0 siblings, 1 reply; 16+ messages in thread
From: Alexey Vlasov @ 2009-07-07  8:38 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: Ray Lee, Andrew Morton, linux-kernel

On Mon, Jul 06, 2009 at 02:21:51PM -0700, H. Peter Anvin wrote:
>
> Do you have /selinux mounted on one of them?

I don't use SELinux anywhere.

-- 
BRGDS. Alexey Vlasov.

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

* Re: devpts mounts too slowly
  2009-07-07  8:38             ` Alexey Vlasov
@ 2009-07-07 15:37               ` H. Peter Anvin
  0 siblings, 0 replies; 16+ messages in thread
From: H. Peter Anvin @ 2009-07-07 15:37 UTC (permalink / raw)
  To: Alexey Vlasov; +Cc: Ray Lee, Andrew Morton, linux-kernel

Alexey Vlasov wrote:
> On Mon, Jul 06, 2009 at 02:21:51PM -0700, H. Peter Anvin wrote:
>> Do you have /selinux mounted on one of them?
> 
> I don't use SELinux anywhere.
> 

That's, apparently, the problem: some version of the mount binary will
search all of /proc/mounts for selinux if it isn't mounted on /selinux.
 This is a serious performance bug, obviously.

	-hpa

-- 
H. Peter Anvin, Intel Open Source Technology Center
I work for Intel.  I don't speak on their behalf.


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

end of thread, other threads:[~2009-07-07 15:38 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-03 14:28 devpts mounts too slowly Alexey Vlasov
2009-06-03 21:28 ` H. Peter Anvin
2009-06-09 23:19   ` Andrew Morton
2009-06-09 23:30     ` Ray Lee
2009-06-09 23:53       ` Andrew Morton
2009-06-10  0:07         ` H. Peter Anvin
2009-06-10 20:51         ` H. Peter Anvin
2009-06-24 20:01           ` Al Viro
2009-06-24 21:58             ` Andrew Morton
2009-06-24 23:02               ` H. Peter Anvin
2009-06-10  0:02       ` H. Peter Anvin
2009-07-06 19:52         ` Alexey Vlasov
2009-07-06 20:03           ` Alexey Vlasov
2009-07-06 21:21           ` H. Peter Anvin
2009-07-07  8:38             ` Alexey Vlasov
2009-07-07 15:37               ` H. Peter Anvin

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.