* [PATCH 1/3] PM: Do not destroy/create devices while suspended in msr.c [not found] <200712240155.14765.rjw@sisk.pl> @ 2007-12-24 0:56 ` Rafael J. Wysocki 2007-12-24 0:57 ` [PATCH 2/3] PM: Do not destroy/create devices while suspended in mce_64.c Rafael J. Wysocki ` (6 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-24 0:56 UTC (permalink / raw) To: pm list Cc: LKML, ACPI Devel Maling List, Pavel Machek, Andrew Morton, Ingo Molnar From: Rafael J. Wysocki <rjw@sisk.pl> The MSR driver should not attempt to destroy/create a suspended device. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- arch/x86/kernel/msr.c | 3 --- 1 file changed, 3 deletions(-) Index: linux-2.6/arch/x86/kernel/msr.c =================================================================== --- linux-2.6.orig/arch/x86/kernel/msr.c +++ linux-2.6/arch/x86/kernel/msr.c @@ -155,13 +155,10 @@ static int __cpuinit msr_class_cpu_callb switch (action) { case CPU_UP_PREPARE: - case CPU_UP_PREPARE_FROZEN: err = msr_device_create(cpu); break; case CPU_UP_CANCELED: - case CPU_UP_CANCELED_FROZEN: case CPU_DEAD: - case CPU_DEAD_FROZEN: msr_device_destroy(cpu); break; } ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 2/3] PM: Do not destroy/create devices while suspended in mce_64.c [not found] <200712240155.14765.rjw@sisk.pl> 2007-12-24 0:56 ` [PATCH 1/3] PM: Do not destroy/create devices while suspended in msr.c Rafael J. Wysocki @ 2007-12-24 0:57 ` Rafael J. Wysocki 2007-12-24 0:57 ` [PATCH 3/3] PM: Do not destroy/create devices while suspended in cpuid.c Rafael J. Wysocki ` (5 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-24 0:57 UTC (permalink / raw) To: pm list Cc: LKML, ACPI Devel Maling List, Pavel Machek, Andrew Morton, Ingo Molnar From: Rafael J. Wysocki <rjw@sisk.pl> The x86-64 MCE driver should not attempt to destroy/create a suspended device. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 2 -- 1 file changed, 2 deletions(-) Index: linux-2.6/arch/x86/kernel/cpu/mcheck/mce_64.c =================================================================== --- linux-2.6.orig/arch/x86/kernel/cpu/mcheck/mce_64.c +++ linux-2.6/arch/x86/kernel/cpu/mcheck/mce_64.c @@ -862,11 +862,9 @@ mce_cpu_callback(struct notifier_block * switch (action) { case CPU_ONLINE: - case CPU_ONLINE_FROZEN: mce_create_device(cpu); break; case CPU_DEAD: - case CPU_DEAD_FROZEN: mce_remove_device(cpu); break; } ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 3/3] PM: Do not destroy/create devices while suspended in cpuid.c [not found] <200712240155.14765.rjw@sisk.pl> 2007-12-24 0:56 ` [PATCH 1/3] PM: Do not destroy/create devices while suspended in msr.c Rafael J. Wysocki 2007-12-24 0:57 ` [PATCH 2/3] PM: Do not destroy/create devices while suspended in mce_64.c Rafael J. Wysocki @ 2007-12-24 0:57 ` Rafael J. Wysocki 2007-12-24 15:51 ` [PATCH 0/3] PM: Do not destroy/create devices while suspended Alan Stern ` (4 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-24 0:57 UTC (permalink / raw) To: pm list Cc: LKML, ACPI Devel Maling List, Pavel Machek, Andrew Morton, Ingo Molnar From: Rafael J. Wysocki <rjw@sisk.pl> The cpuid driver should not attempt to destroy/create a suspended device. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- arch/x86/kernel/cpuid.c | 3 --- 1 file changed, 3 deletions(-) Index: linux-2.6/arch/x86/kernel/cpuid.c =================================================================== --- linux-2.6.orig/arch/x86/kernel/cpuid.c +++ linux-2.6/arch/x86/kernel/cpuid.c @@ -157,13 +157,10 @@ static int __cpuinit cpuid_class_cpu_cal switch (action) { case CPU_UP_PREPARE: - case CPU_UP_PREPARE_FROZEN: err = cpuid_device_create(cpu); break; case CPU_UP_CANCELED: - case CPU_UP_CANCELED_FROZEN: case CPU_DEAD: - case CPU_DEAD_FROZEN: cpuid_device_destroy(cpu); break; } ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/3] PM: Do not destroy/create devices while suspended [not found] <200712240155.14765.rjw@sisk.pl> ` (2 preceding siblings ...) 2007-12-24 0:57 ` [PATCH 3/3] PM: Do not destroy/create devices while suspended in cpuid.c Rafael J. Wysocki @ 2007-12-24 15:51 ` Alan Stern [not found] ` <Pine.LNX.4.44L0.0712241045150.25920-100000@netrider.rowland.org> ` (3 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Alan Stern @ 2007-12-24 15:51 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Ingo Molnar, LKML, ACPI Devel Maling List, Pavel Machek, pm list, Andrew Morton On Mon, 24 Dec 2007, Rafael J. Wysocki wrote: > Hi, > > Some device drivers register CPU hotplug notifiers and use them to destroy > device objects when removing the corresponding CPUs and to create these objects > when adding the CPUs back. > > Unfortunately, this is not the right thing to do during suspend/hibernation, > since in that cases the CPU hotplug notifiers are called after suspending > devices and before resuming them, so the operations in question are carried > out on the objects representing suspended devices which shouldn't be > unregistered behing the PM core's back. Although right now it usually doesn't > lead to any practical complications, it will predictably deadlock if > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is applied. > > The solution is to prevent drivers from removing/adding devices from within > CPU hotplug notifiers during suspend/hibernation using the FROZEN bit > in the notifier's action argument. The following three patches modify the > MSR, x86-64 MCE and cpuid drivers along these lines. Do we need to worry about the possibility that when the system wakes up from hibernation, the set of usable CPUs might be smaller than it was beforehand? Is any special handling needed for this, or is it already accounted for? Alan Stern ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <Pine.LNX.4.44L0.0712241045150.25920-100000@netrider.rowland.org>]
* Re: [PATCH 0/3] PM: Do not destroy/create devices while suspended [not found] ` <Pine.LNX.4.44L0.0712241045150.25920-100000@netrider.rowland.org> @ 2007-12-25 12:33 ` Pavel Machek 2007-12-25 16:21 ` Rafael J. Wysocki [not found] ` <200712251721.42233.rjw@sisk.pl> 2 siblings, 0 replies; 13+ messages in thread From: Pavel Machek @ 2007-12-25 12:33 UTC (permalink / raw) To: Alan Stern Cc: Ingo Molnar, LKML, ACPI Devel Maling List, pm list, Andrew Morton On Mon 2007-12-24 10:51:15, Alan Stern wrote: > On Mon, 24 Dec 2007, Rafael J. Wysocki wrote: > > > Hi, > > > > Some device drivers register CPU hotplug notifiers and use them to destroy > > device objects when removing the corresponding CPUs and to create these objects > > when adding the CPUs back. > > > > Unfortunately, this is not the right thing to do during suspend/hibernation, > > since in that cases the CPU hotplug notifiers are called after suspending > > devices and before resuming them, so the operations in question are carried > > out on the objects representing suspended devices which shouldn't be > > unregistered behing the PM core's back. Although right now it usually doesn't > > lead to any practical complications, it will predictably deadlock if > > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is applied. > > > > The solution is to prevent drivers from removing/adding devices from within > > CPU hotplug notifiers during suspend/hibernation using the FROZEN bit > > in the notifier's action argument. The following three patches modify the > > MSR, x86-64 MCE and cpuid drivers along these lines. > > Do we need to worry about the possibility that when the system wakes up > from hibernation, the set of usable CPUs might be smaller than it was > beforehand? Is any special handling needed for this, or is it already > accounted for? That should not happen... but it does in some error cases.... so handling it would be a bonus. Waking up with one cpu out of 8 is bad, but still way better than not waking up at all ;-). Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/3] PM: Do not destroy/create devices while suspended [not found] ` <Pine.LNX.4.44L0.0712241045150.25920-100000@netrider.rowland.org> 2007-12-25 12:33 ` Pavel Machek @ 2007-12-25 16:21 ` Rafael J. Wysocki [not found] ` <200712251721.42233.rjw@sisk.pl> 2 siblings, 0 replies; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-25 16:21 UTC (permalink / raw) To: Alan Stern Cc: Ingo Molnar, LKML, ACPI Devel Maling List, Pavel Machek, pm list, Andrew Morton On Monday, 24 of December 2007, Alan Stern wrote: > On Mon, 24 Dec 2007, Rafael J. Wysocki wrote: > > > Hi, > > > > Some device drivers register CPU hotplug notifiers and use them to destroy > > device objects when removing the corresponding CPUs and to create these objects > > when adding the CPUs back. > > > > Unfortunately, this is not the right thing to do during suspend/hibernation, > > since in that cases the CPU hotplug notifiers are called after suspending > > devices and before resuming them, so the operations in question are carried > > out on the objects representing suspended devices which shouldn't be > > unregistered behing the PM core's back. Although right now it usually doesn't > > lead to any practical complications, it will predictably deadlock if > > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is applied. > > > > The solution is to prevent drivers from removing/adding devices from within > > CPU hotplug notifiers during suspend/hibernation using the FROZEN bit > > in the notifier's action argument. The following three patches modify the > > MSR, x86-64 MCE and cpuid drivers along these lines. > > Do we need to worry about the possibility that when the system wakes up > from hibernation, the set of usable CPUs might be smaller than it was > beforehand? This is possible in error conditions. > Is any special handling needed for this, or is it already accounted for? Hm, well. The cleanest thing would be to allow the drivers to remove the device objects on CPU_UP_CANCELED_FROZEN, which means that we weren't able to bring the CPU up during a resume, but still that will deadlock with gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch. Greetings, Rafael ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <200712251721.42233.rjw@sisk.pl>]
* Re: [PATCH 0/3] PM: Do not destroy/create devices while suspended [not found] ` <200712251721.42233.rjw@sisk.pl> @ 2007-12-25 19:21 ` Rafael J. Wysocki 2007-12-26 3:33 ` Alan Stern 0 siblings, 1 reply; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-25 19:21 UTC (permalink / raw) To: Alan Stern Cc: Ingo Molnar, LKML, ACPI Devel Maling List, Pavel Machek, pm list, Andrew Morton On Tuesday, 25 of December 2007, Rafael J. Wysocki wrote: > On Monday, 24 of December 2007, Alan Stern wrote: > > On Mon, 24 Dec 2007, Rafael J. Wysocki wrote: > > > > > Hi, > > > > > > Some device drivers register CPU hotplug notifiers and use them to destroy > > > device objects when removing the corresponding CPUs and to create these objects > > > when adding the CPUs back. > > > > > > Unfortunately, this is not the right thing to do during suspend/hibernation, > > > since in that cases the CPU hotplug notifiers are called after suspending > > > devices and before resuming them, so the operations in question are carried > > > out on the objects representing suspended devices which shouldn't be > > > unregistered behing the PM core's back. Although right now it usually doesn't > > > lead to any practical complications, it will predictably deadlock if > > > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is applied. > > > > > > The solution is to prevent drivers from removing/adding devices from within > > > CPU hotplug notifiers during suspend/hibernation using the FROZEN bit > > > in the notifier's action argument. The following three patches modify the > > > MSR, x86-64 MCE and cpuid drivers along these lines. > > > > Do we need to worry about the possibility that when the system wakes up > > from hibernation, the set of usable CPUs might be smaller than it was > > beforehand? > > This is possible in error conditions. > > > Is any special handling needed for this, or is it already accounted for? > > Hm, well. The cleanest thing would be to allow the drivers to remove the > device objects on CPU_UP_CANCELED_FROZEN, which means that we weren't able to > bring the CPU up during a resume, but still that will deadlock with > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch. Hmm. In principle, device objects may be destroyed on CPU_UP_CANCELED_FROZEN without acquiring the device locks, since in fact we know these objects won't be accessed concurrently at that time (the locks are already held by the PM core, but the PM core is not going to actually access the devices before the subsequent resume). Comments? Thanks, Rafael ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/3] PM: Do not destroy/create devices while suspended 2007-12-25 19:21 ` Rafael J. Wysocki @ 2007-12-26 3:33 ` Alan Stern 0 siblings, 0 replies; 13+ messages in thread From: Alan Stern @ 2007-12-26 3:33 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Ingo Molnar, LKML, ACPI Devel Maling List, Pavel Machek, pm list, Andrew Morton On Tue, 25 Dec 2007, Rafael J. Wysocki wrote: > > > Do we need to worry about the possibility that when the system wakes up > > > from hibernation, the set of usable CPUs might be smaller than it was > > > beforehand? > > > > This is possible in error conditions. > > > > > Is any special handling needed for this, or is it already accounted for? > > > > Hm, well. The cleanest thing would be to allow the drivers to remove the > > device objects on CPU_UP_CANCELED_FROZEN, which means that we weren't able to > > bring the CPU up during a resume, but still that will deadlock with > > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch. > > Hmm. In principle, device objects may be destroyed on CPU_UP_CANCELED_FROZEN > without acquiring the device locks, since in fact we know these objects won't > be accessed concurrently at that time (the locks are already held by the PM > core, but the PM core is not going to actually access the devices before the > subsequent resume). How about delaying the CPU_UP_CANCELED_FROZEN announcements until it's really safe to send them out? That is, after all devices have been resumed and the PM core no longer holds any of their locks. (Should this be before or after tasks leave the freezer? -- I'm not sure.) So the idea is send appropriate announcements at the usual time for CPUs that do come back up normally, and don't send anything right away for CPUs that fail to come up. Just keep track of which ones failed, and then later take care of them. Alan Stern ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <200712240156.34961.rjw@sisk.pl>]
* Re: [PATCH 1/3] PM: Do not destroy/create devices while suspended in msr.c [not found] ` <200712240156.34961.rjw@sisk.pl> @ 2007-12-25 12:33 ` Pavel Machek 0 siblings, 0 replies; 13+ messages in thread From: Pavel Machek @ 2007-12-25 12:33 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Ingo Molnar, LKML, ACPI Devel Maling List, pm list, Andrew Morton On Mon 2007-12-24 01:56:34, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki <rjw@sisk.pl> > > The MSR driver should not attempt to destroy/create a suspended > device. > > Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> ACK. -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <200712240157.17939.rjw@sisk.pl>]
* Re: [PATCH 2/3] PM: Do not destroy/create devices while suspended in mce_64.c [not found] ` <200712240157.17939.rjw@sisk.pl> @ 2007-12-25 12:34 ` Pavel Machek 0 siblings, 0 replies; 13+ messages in thread From: Pavel Machek @ 2007-12-25 12:34 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Ingo Molnar, LKML, ACPI Devel Maling List, pm list, Andrew Morton On Mon 2007-12-24 01:57:17, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki <rjw@sisk.pl> > > The x86-64 MCE driver should not attempt to destroy/create a suspended > device. > > Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> ACK. -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <200712240157.58560.rjw@sisk.pl>]
* Re: [PATCH 3/3] PM: Do not destroy/create devices while suspended in cpuid.c [not found] ` <200712240157.58560.rjw@sisk.pl> @ 2007-12-25 12:34 ` Pavel Machek 0 siblings, 0 replies; 13+ messages in thread From: Pavel Machek @ 2007-12-25 12:34 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Ingo Molnar, LKML, ACPI Devel Maling List, pm list, Andrew Morton On Mon 2007-12-24 01:57:57, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki <rjw@sisk.pl> > > The cpuid driver should not attempt to destroy/create a suspended > device. > > Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> ACK. -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <Pine.LNX.4.44L0.0712252229050.25960-100000@netrider.rowland.org>]
* Re: [PATCH 0/3] PM: Do not destroy/create devices while suspended [not found] <Pine.LNX.4.44L0.0712252229050.25960-100000@netrider.rowland.org> @ 2007-12-26 15:12 ` Rafael J. Wysocki 0 siblings, 0 replies; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-26 15:12 UTC (permalink / raw) To: Alan Stern Cc: Ingo Molnar, LKML, ACPI Devel Maling List, Pavel Machek, pm list, Andrew Morton On Wednesday, 26 of December 2007, Alan Stern wrote: > On Tue, 25 Dec 2007, Rafael J. Wysocki wrote: > > > > > Do we need to worry about the possibility that when the system wakes up > > > > from hibernation, the set of usable CPUs might be smaller than it was > > > > beforehand? > > > > > > This is possible in error conditions. > > > > > > > Is any special handling needed for this, or is it already accounted for? > > > > > > Hm, well. The cleanest thing would be to allow the drivers to remove the > > > device objects on CPU_UP_CANCELED_FROZEN, which means that we weren't able to > > > bring the CPU up during a resume, but still that will deadlock with > > > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch. > > > > Hmm. In principle, device objects may be destroyed on CPU_UP_CANCELED_FROZEN > > without acquiring the device locks, since in fact we know these objects won't > > be accessed concurrently at that time (the locks are already held by the PM > > core, but the PM core is not going to actually access the devices before the > > subsequent resume). > > How about delaying the CPU_UP_CANCELED_FROZEN announcements until it's > really safe to send them out? That is, after all devices have been > resumed and the PM core no longer holds any of their locks. (Should > this be before or after tasks leave the freezer? -- I'm not sure.) > > So the idea is send appropriate announcements at the usual time for > CPUs that do come back up normally, and don't send anything right away > for CPUs that fail to come up. Just keep track of which ones failed, > and then later take care of them. However, we don't want to execute .resume() for device objects that correspond to the "dead" CPUs, so to a minimum we should remove them from the dpm_off list on CPU_UP_CANCELED_FROZEN. For this purpose, we can define a callback that will remove the device from dpm_off immediately and schedule its destruction after all devices have been resumed. Rafael ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 0/3] PM: Do not destroy/create devices while suspended @ 2007-12-24 0:55 Rafael J. Wysocki 0 siblings, 0 replies; 13+ messages in thread From: Rafael J. Wysocki @ 2007-12-24 0:55 UTC (permalink / raw) To: pm list Cc: LKML, ACPI Devel Maling List, Pavel Machek, Andrew Morton, Ingo Molnar Hi, Some device drivers register CPU hotplug notifiers and use them to destroy device objects when removing the corresponding CPUs and to create these objects when adding the CPUs back. Unfortunately, this is not the right thing to do during suspend/hibernation, since in that cases the CPU hotplug notifiers are called after suspending devices and before resuming them, so the operations in question are carried out on the objects representing suspended devices which shouldn't be unregistered behing the PM core's back. Although right now it usually doesn't lead to any practical complications, it will predictably deadlock if gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is applied. The solution is to prevent drivers from removing/adding devices from within CPU hotplug notifiers during suspend/hibernation using the FROZEN bit in the notifier's action argument. The following three patches modify the MSR, x86-64 MCE and cpuid drivers along these lines. Thanks, Rafael ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2007-12-26 15:12 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200712240155.14765.rjw@sisk.pl>
2007-12-24 0:56 ` [PATCH 1/3] PM: Do not destroy/create devices while suspended in msr.c Rafael J. Wysocki
2007-12-24 0:57 ` [PATCH 2/3] PM: Do not destroy/create devices while suspended in mce_64.c Rafael J. Wysocki
2007-12-24 0:57 ` [PATCH 3/3] PM: Do not destroy/create devices while suspended in cpuid.c Rafael J. Wysocki
2007-12-24 15:51 ` [PATCH 0/3] PM: Do not destroy/create devices while suspended Alan Stern
[not found] ` <Pine.LNX.4.44L0.0712241045150.25920-100000@netrider.rowland.org>
2007-12-25 12:33 ` Pavel Machek
2007-12-25 16:21 ` Rafael J. Wysocki
[not found] ` <200712251721.42233.rjw@sisk.pl>
2007-12-25 19:21 ` Rafael J. Wysocki
2007-12-26 3:33 ` Alan Stern
[not found] ` <200712240156.34961.rjw@sisk.pl>
2007-12-25 12:33 ` [PATCH 1/3] PM: Do not destroy/create devices while suspended in msr.c Pavel Machek
[not found] ` <200712240157.17939.rjw@sisk.pl>
2007-12-25 12:34 ` [PATCH 2/3] PM: Do not destroy/create devices while suspended in mce_64.c Pavel Machek
[not found] ` <200712240157.58560.rjw@sisk.pl>
2007-12-25 12:34 ` [PATCH 3/3] PM: Do not destroy/create devices while suspended in cpuid.c Pavel Machek
[not found] <Pine.LNX.4.44L0.0712252229050.25960-100000@netrider.rowland.org>
2007-12-26 15:12 ` [PATCH 0/3] PM: Do not destroy/create devices while suspended Rafael J. Wysocki
2007-12-24 0:55 Rafael J. Wysocki
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox