* [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
@ 2011-01-06 16:57 Jan Beulich
2011-01-06 17:20 ` Robert Richter
0 siblings, 1 reply; 7+ messages in thread
From: Jan Beulich @ 2011-01-06 16:57 UTC (permalink / raw)
To: mingo, tglx, hpa
Cc: Andreas Herrmann3, Joerg Roedel, Robert Richter,
Jeremy Fitzhardinge, linux-kernel
While both methods should work equivalently well for the native case,
the Xen Dom0 case can't reliably work with the MSR one, since there's
no guarantee that the virtual CPUs it has available fully cover all
necessary physical ones.
As per the suggestion of Robert Richter the patch only adds the PCI
method, but leaves the MSR one as a fallback to cover new systems the
PCI IDs of which may not have got added to the code base yet.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Joerg Roedel <Joerg.Roedel@amd.com>
Cc: Andreas Herrmann <Andreas.Herrmann3@amd.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
---
arch/x86/include/asm/amd_nb.h | 7 ++++++
arch/x86/kernel/amd_nb.c | 7 ++++++
arch/x86/kernel/aperture_64.c | 44 +++++++++++++++---------------------------
arch/x86/pci/amd_bus.c | 30 ++++++++++++++++++++++++++++
4 files changed, 60 insertions(+), 28 deletions(-)
--- 2.6.37/arch/x86/include/asm/amd_nb.h
+++ 2.6.37-x86-amd-ecs/arch/x86/include/asm/amd_nb.h
@@ -3,7 +3,14 @@
#include <linux/pci.h>
+struct amd_bus_dev_range {
+ u8 bus;
+ u8 dev_base;
+ u8 dev_limit;
+};
+
extern struct pci_device_id k8_nb_ids[];
+extern const struct amd_bus_dev_range amd_bus_dev_ranges[];
struct bootnode;
extern int early_is_k8_nb(u32 value);
--- 2.6.37/arch/x86/kernel/amd_nb.c
+++ 2.6.37-x86-amd-ecs/arch/x86/kernel/amd_nb.c
@@ -20,6 +20,13 @@ struct pci_device_id k8_nb_ids[] = {
};
EXPORT_SYMBOL(k8_nb_ids);
+const struct amd_bus_dev_range amd_bus_dev_ranges[] __initconst = {
+ { 0x00, 0x18, 0x20 },
+ { 0xff, 0x00, 0x20 },
+ { 0xfe, 0x00, 0x20 },
+ { }
+};
+
struct k8_northbridge_info k8_northbridges;
EXPORT_SYMBOL(k8_northbridges);
--- 2.6.37/arch/x86/kernel/aperture_64.c
+++ 2.6.37-x86-amd-ecs/arch/x86/kernel/aperture_64.c
@@ -39,18 +39,6 @@ int fallback_aper_force __initdata;
int fix_aperture __initdata = 1;
-struct bus_dev_range {
- int bus;
- int dev_base;
- int dev_limit;
-};
-
-static struct bus_dev_range bus_dev_ranges[] __initdata = {
- { 0x00, 0x18, 0x20},
- { 0xff, 0x00, 0x20},
- { 0xfe, 0x00, 0x20}
-};
-
static struct resource gart_resource = {
.name = "GART",
.flags = IORESOURCE_MEM,
@@ -294,13 +282,13 @@ void __init early_gart_iommu_check(void)
search_agp_bridge(&agp_aper_order, &valid_agp);
fix = 0;
- for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
+ for (i = 0; amd_bus_dev_ranges[i].dev_limit; i++) {
int bus;
int dev_base, dev_limit;
- bus = bus_dev_ranges[i].bus;
- dev_base = bus_dev_ranges[i].dev_base;
- dev_limit = bus_dev_ranges[i].dev_limit;
+ bus = amd_bus_dev_ranges[i].bus;
+ dev_base = amd_bus_dev_ranges[i].dev_base;
+ dev_limit = amd_bus_dev_ranges[i].dev_limit;
for (slot = dev_base; slot < dev_limit; slot++) {
if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
@@ -349,13 +337,13 @@ void __init early_gart_iommu_check(void)
return;
/* disable them all at first */
- for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
+ for (i = 0; i < amd_bus_dev_ranges[i].dev_limit; i++) {
int bus;
int dev_base, dev_limit;
- bus = bus_dev_ranges[i].bus;
- dev_base = bus_dev_ranges[i].dev_base;
- dev_limit = bus_dev_ranges[i].dev_limit;
+ bus = amd_bus_dev_ranges[i].bus;
+ dev_base = amd_bus_dev_ranges[i].dev_base;
+ dev_limit = amd_bus_dev_ranges[i].dev_limit;
for (slot = dev_base; slot < dev_limit; slot++) {
if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
@@ -390,14 +378,14 @@ int __init gart_iommu_hole_init(void)
fix = 0;
node = 0;
- for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
+ for (i = 0; i < amd_bus_dev_ranges[i].dev_limit; i++) {
int bus;
int dev_base, dev_limit;
u32 ctl;
- bus = bus_dev_ranges[i].bus;
- dev_base = bus_dev_ranges[i].dev_base;
- dev_limit = bus_dev_ranges[i].dev_limit;
+ bus = amd_bus_dev_ranges[i].bus;
+ dev_base = amd_bus_dev_ranges[i].dev_base;
+ dev_limit = amd_bus_dev_ranges[i].dev_limit;
for (slot = dev_base; slot < dev_limit; slot++) {
if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
@@ -505,7 +493,7 @@ out:
}
/* Fix up the north bridges */
- for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
+ for (i = 0; i < amd_bus_dev_ranges[i].dev_limit; i++) {
int bus, dev_base, dev_limit;
/*
@@ -514,9 +502,9 @@ out:
*/
u32 ctl = DISTLBWALKPRB | aper_order << 1;
- bus = bus_dev_ranges[i].bus;
- dev_base = bus_dev_ranges[i].dev_base;
- dev_limit = bus_dev_ranges[i].dev_limit;
+ bus = amd_bus_dev_ranges[i].bus;
+ dev_base = amd_bus_dev_ranges[i].dev_base;
+ dev_limit = amd_bus_dev_ranges[i].dev_limit;
for (slot = dev_base; slot < dev_limit; slot++) {
if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
continue;
--- 2.6.37/arch/x86/pci/amd_bus.c
+++ 2.6.37-x86-amd-ecs/arch/x86/pci/amd_bus.c
@@ -4,6 +4,7 @@
#include <linux/cpu.h>
#include <linux/range.h>
+#include <asm/amd_nb.h>
#include <asm/pci_x86.h>
#include <asm/pci-direct.h>
@@ -386,6 +387,35 @@ static int __init pci_io_ecs_init(void)
if (boot_cpu_data.x86 < 0x10)
return 0;
+#ifdef CONFIG_AMD_NB
+ /* Try the PCI method first. */
+ if (early_pci_allowed()) {
+ unsigned int i, n;
+
+ for (n = i = 0; !n && amd_bus_dev_ranges[i].dev_limit; ++i) {
+ u8 bus = amd_bus_dev_ranges[i].bus;
+ u8 slot = amd_bus_dev_ranges[i].dev_base;
+ u8 limit = amd_bus_dev_ranges[i].dev_limit;
+
+ for (; slot < limit; ++slot) {
+ u32 val = read_pci_config(bus, slot, 3, 0);
+
+ if (!early_is_k8_nb(val))
+ continue;
+
+ val = read_pci_config(bus, slot, 3, 0x8c);
+ if (!(val & (ENABLE_CF8_EXT_CFG >> 32))) {
+ val |= ENABLE_CF8_EXT_CFG >> 32;
+ write_pci_config(bus, slot, 3, 0x8c,
+ val);
+ }
+ ++n;
+ }
+ }
+ pr_info("Extended Config Space enabled on %u nodes\n", n);
+ }
+#endif
+
register_cpu_notifier(&amd_cpu_notifier);
for_each_online_cpu(cpu)
amd_cpu_notify(&amd_cpu_notifier, (unsigned long)CPU_ONLINE,
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
2011-01-06 16:57 [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method Jan Beulich
@ 2011-01-06 17:20 ` Robert Richter
2011-01-06 17:28 ` Robert Richter
2011-01-07 7:40 ` Jan Beulich
0 siblings, 2 replies; 7+ messages in thread
From: Robert Richter @ 2011-01-06 17:20 UTC (permalink / raw)
To: Jan Beulich
Cc: mingo@elte.hu, tglx@linutronix.de, hpa@zytor.com,
Herrmann3, Andreas, Roedel, Joerg, Jeremy Fitzhardinge,
linux-kernel@vger.kernel.org
On 06.01.11 11:57:35, Jan Beulich wrote:
> While both methods should work equivalently well for the native case,
> the Xen Dom0 case can't reliably work with the MSR one, since there's
> no guarantee that the virtual CPUs it has available fully cover all
> necessary physical ones.
>
> As per the suggestion of Robert Richter the patch only adds the PCI
> method, but leaves the MSR one as a fallback to cover new systems the
> PCI IDs of which may not have got added to the code base yet.
>
> Signed-off-by: Jan Beulich <jbeulich@novell.com>
> Cc: Robert Richter <robert.richter@amd.com>
> Cc: Joerg Roedel <Joerg.Roedel@amd.com>
> Cc: Andreas Herrmann <Andreas.Herrmann3@amd.com>
> Cc: Jeremy Fitzhardinge <jeremy@goop.org>
>
> ---
> arch/x86/include/asm/amd_nb.h | 7 ++++++
> arch/x86/kernel/amd_nb.c | 7 ++++++
> arch/x86/kernel/aperture_64.c | 44 +++++++++++++++---------------------------
> arch/x86/pci/amd_bus.c | 30 ++++++++++++++++++++++++++++
> 4 files changed, 60 insertions(+), 28 deletions(-)
> --- 2.6.37/arch/x86/pci/amd_bus.c
> +++ 2.6.37-x86-amd-ecs/arch/x86/pci/amd_bus.c
> @@ -4,6 +4,7 @@
> #include <linux/cpu.h>
> #include <linux/range.h>
>
> +#include <asm/amd_nb.h>
> #include <asm/pci_x86.h>
>
> #include <asm/pci-direct.h>
> @@ -386,6 +387,35 @@ static int __init pci_io_ecs_init(void)
> if (boot_cpu_data.x86 < 0x10)
> return 0;
>
> +#ifdef CONFIG_AMD_NB
> + /* Try the PCI method first. */
> + if (early_pci_allowed()) {
> + unsigned int i, n;
> +
> + for (n = i = 0; !n && amd_bus_dev_ranges[i].dev_limit; ++i) {
> + u8 bus = amd_bus_dev_ranges[i].bus;
> + u8 slot = amd_bus_dev_ranges[i].dev_base;
> + u8 limit = amd_bus_dev_ranges[i].dev_limit;
> +
> + for (; slot < limit; ++slot) {
> + u32 val = read_pci_config(bus, slot, 3, 0);
> +
> + if (!early_is_k8_nb(val))
> + continue;
> +
> + val = read_pci_config(bus, slot, 3, 0x8c);
> + if (!(val & (ENABLE_CF8_EXT_CFG >> 32))) {
> + val |= ENABLE_CF8_EXT_CFG >> 32;
> + write_pci_config(bus, slot, 3, 0x8c,
> + val);
> + }
> + ++n;
> + }
> + }
> + pr_info("Extended Config Space enabled on %u nodes\n", n);
Isn't i the number of nodes?
Otherwise the patch looks good.
-Robert
Acked-by: Robert Richter <robert.richter@amd.com>
> + }
> +#endif
> +
> register_cpu_notifier(&amd_cpu_notifier);
> for_each_online_cpu(cpu)
> amd_cpu_notify(&amd_cpu_notifier, (unsigned long)CPU_ONLINE,
>
>
>
--
Advanced Micro Devices, Inc.
Operating System Research Center
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
2011-01-06 17:20 ` Robert Richter
@ 2011-01-06 17:28 ` Robert Richter
2011-01-07 12:58 ` Ingo Molnar
2011-01-07 7:40 ` Jan Beulich
1 sibling, 1 reply; 7+ messages in thread
From: Robert Richter @ 2011-01-06 17:28 UTC (permalink / raw)
To: Jan Beulich
Cc: mingo@elte.hu, tglx@linutronix.de, hpa@zytor.com,
Herrmann3, Andreas, Roedel, Joerg, Jeremy Fitzhardinge,
linux-kernel@vger.kernel.org
On 06.01.11 18:20:04, Robert Richter wrote:
> On 06.01.11 11:57:35, Jan Beulich wrote:
> > While both methods should work equivalently well for the native case,
> > the Xen Dom0 case can't reliably work with the MSR one, since there's
> > no guarantee that the virtual CPUs it has available fully cover all
> > necessary physical ones.
> >
> > As per the suggestion of Robert Richter the patch only adds the PCI
> > method, but leaves the MSR one as a fallback to cover new systems the
> > PCI IDs of which may not have got added to the code base yet.
> >
> > Signed-off-by: Jan Beulich <jbeulich@novell.com>
> > Cc: Robert Richter <robert.richter@amd.com>
> > Cc: Joerg Roedel <Joerg.Roedel@amd.com>
> > Cc: Andreas Herrmann <Andreas.Herrmann3@amd.com>
> > Cc: Jeremy Fitzhardinge <jeremy@goop.org>
> >
> > ---
> > arch/x86/include/asm/amd_nb.h | 7 ++++++
> > arch/x86/kernel/amd_nb.c | 7 ++++++
> > arch/x86/kernel/aperture_64.c | 44 +++++++++++++++---------------------------
> > arch/x86/pci/amd_bus.c | 30 ++++++++++++++++++++++++++++
> > 4 files changed, 60 insertions(+), 28 deletions(-)
Btw, the patch should be relative to tip/x86/amd-nb as there would be
conflicts otherwise due to other changes.
-Robert
--
Advanced Micro Devices, Inc.
Operating System Research Center
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
2011-01-06 17:20 ` Robert Richter
2011-01-06 17:28 ` Robert Richter
@ 2011-01-07 7:40 ` Jan Beulich
2011-01-07 9:59 ` Robert Richter
1 sibling, 1 reply; 7+ messages in thread
From: Jan Beulich @ 2011-01-07 7:40 UTC (permalink / raw)
To: Robert Richter
Cc: Andreas Herrmann3, Joerg Roedel, mingo@elte.hu,
JeremyFitzhardinge, tglx@linutronix.de,
linux-kernel@vger.kernel.org, hpa@zytor.com
>>> On 06.01.11 at 18:20, Robert Richter <robert.richter@amd.com> wrote:
> On 06.01.11 11:57:35, Jan Beulich wrote:
>> +#ifdef CONFIG_AMD_NB
>> + /* Try the PCI method first. */
>> + if (early_pci_allowed()) {
>> + unsigned int i, n;
>> +
>> + for (n = i = 0; !n && amd_bus_dev_ranges[i].dev_limit; ++i) {
>> + u8 bus = amd_bus_dev_ranges[i].bus;
>> + u8 slot = amd_bus_dev_ranges[i].dev_base;
>> + u8 limit = amd_bus_dev_ranges[i].dev_limit;
>> +
>> + for (; slot < limit; ++slot) {
>> + u32 val = read_pci_config(bus, slot, 3, 0);
>> +
>> + if (!early_is_k8_nb(val))
>> + continue;
>> +
>> + val = read_pci_config(bus, slot, 3, 0x8c);
>> + if (!(val & (ENABLE_CF8_EXT_CFG >> 32))) {
>> + val |= ENABLE_CF8_EXT_CFG >> 32;
>> + write_pci_config(bus, slot, 3, 0x8c,
>> + val);
>> + }
>> + ++n;
>> + }
>> + }
>> + pr_info("Extended Config Space enabled on %u nodes\n", n);
>
> Isn't i the number of nodes?
No, "i" is the number of PCI devices looked at (but only those that
pass early_is_k8_nb() are of interest).
Jan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
2011-01-07 7:40 ` Jan Beulich
@ 2011-01-07 9:59 ` Robert Richter
0 siblings, 0 replies; 7+ messages in thread
From: Robert Richter @ 2011-01-07 9:59 UTC (permalink / raw)
To: Jan Beulich
Cc: Herrmann3, Andreas, Roedel, Joerg, mingo@elte.hu,
JeremyFitzhardinge, tglx@linutronix.de,
linux-kernel@vger.kernel.org, hpa@zytor.com
On 07.01.11 02:40:00, Jan Beulich wrote:
> >>> On 06.01.11 at 18:20, Robert Richter <robert.richter@amd.com> wrote:
> > On 06.01.11 11:57:35, Jan Beulich wrote:
> >> +#ifdef CONFIG_AMD_NB
> >> + /* Try the PCI method first. */
> >> + if (early_pci_allowed()) {
> >> + unsigned int i, n;
> >> +
> >> + for (n = i = 0; !n && amd_bus_dev_ranges[i].dev_limit; ++i) {
> >> + u8 bus = amd_bus_dev_ranges[i].bus;
> >> + u8 slot = amd_bus_dev_ranges[i].dev_base;
> >> + u8 limit = amd_bus_dev_ranges[i].dev_limit;
> >> +
> >> + for (; slot < limit; ++slot) {
> >> + u32 val = read_pci_config(bus, slot, 3, 0);
> >> +
> >> + if (!early_is_k8_nb(val))
> >> + continue;
> >> +
> >> + val = read_pci_config(bus, slot, 3, 0x8c);
> >> + if (!(val & (ENABLE_CF8_EXT_CFG >> 32))) {
> >> + val |= ENABLE_CF8_EXT_CFG >> 32;
> >> + write_pci_config(bus, slot, 3, 0x8c,
> >> + val);
> >> + }
> >> + ++n;
> >> + }
> >> + }
> >> + pr_info("Extended Config Space enabled on %u nodes\n", n);
> >
> > Isn't i the number of nodes?
>
> No, "i" is the number of PCI devices looked at (but only those that
> pass early_is_k8_nb() are of interest).
Right, your code is correct.
Thanks,
-Robert
--
Advanced Micro Devices, Inc.
Operating System Research Center
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
2011-01-06 17:28 ` Robert Richter
@ 2011-01-07 12:58 ` Ingo Molnar
2011-01-07 13:33 ` Jan Beulich
0 siblings, 1 reply; 7+ messages in thread
From: Ingo Molnar @ 2011-01-07 12:58 UTC (permalink / raw)
To: Robert Richter
Cc: Jan Beulich, tglx@linutronix.de, hpa@zytor.com,
Herrmann3, Andreas, Roedel, Joerg, Jeremy Fitzhardinge,
linux-kernel@vger.kernel.org
* Robert Richter <robert.richter@amd.com> wrote:
> On 06.01.11 18:20:04, Robert Richter wrote:
> > On 06.01.11 11:57:35, Jan Beulich wrote:
> > > While both methods should work equivalently well for the native case,
> > > the Xen Dom0 case can't reliably work with the MSR one, since there's
> > > no guarantee that the virtual CPUs it has available fully cover all
> > > necessary physical ones.
> > >
> > > As per the suggestion of Robert Richter the patch only adds the PCI
> > > method, but leaves the MSR one as a fallback to cover new systems the
> > > PCI IDs of which may not have got added to the code base yet.
> > >
> > > Signed-off-by: Jan Beulich <jbeulich@novell.com>
> > > Cc: Robert Richter <robert.richter@amd.com>
> > > Cc: Joerg Roedel <Joerg.Roedel@amd.com>
> > > Cc: Andreas Herrmann <Andreas.Herrmann3@amd.com>
> > > Cc: Jeremy Fitzhardinge <jeremy@goop.org>
> > >
> > > ---
> > > arch/x86/include/asm/amd_nb.h | 7 ++++++
> > > arch/x86/kernel/amd_nb.c | 7 ++++++
> > > arch/x86/kernel/aperture_64.c | 44 +++++++++++++++---------------------------
> > > arch/x86/pci/amd_bus.c | 30 ++++++++++++++++++++++++++++
> > > 4 files changed, 60 insertions(+), 28 deletions(-)
>
> Btw, the patch should be relative to tip/x86/amd-nb as there would be
> conflicts otherwise due to other changes.
that's upstream meanwhile, so a patch against -git or -tip would suffice.
Thanks,
Ingo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method
2011-01-07 12:58 ` Ingo Molnar
@ 2011-01-07 13:33 ` Jan Beulich
0 siblings, 0 replies; 7+ messages in thread
From: Jan Beulich @ 2011-01-07 13:33 UTC (permalink / raw)
To: Robert Richter, Ingo Molnar
Cc: Andreas Herrmann3, Joerg Roedel, Jeremy Fitzhardinge,
tglx@linutronix.de, linux-kernel@vger.kernel.org, hpa@zytor.com
>>> On 07.01.11 at 13:58, Ingo Molnar <mingo@elte.hu> wrote:
> * Robert Richter <robert.richter@amd.com> wrote:
>
>> On 06.01.11 18:20:04, Robert Richter wrote:
>> > On 06.01.11 11:57:35, Jan Beulich wrote:
>> > > While both methods should work equivalently well for the native case,
>> > > the Xen Dom0 case can't reliably work with the MSR one, since there's
>> > > no guarantee that the virtual CPUs it has available fully cover all
>> > > necessary physical ones.
>> > >
>> > > As per the suggestion of Robert Richter the patch only adds the PCI
>> > > method, but leaves the MSR one as a fallback to cover new systems the
>> > > PCI IDs of which may not have got added to the code base yet.
>> > >
>> > > Signed-off-by: Jan Beulich <jbeulich@novell.com>
>> > > Cc: Robert Richter <robert.richter@amd.com>
>> > > Cc: Joerg Roedel <Joerg.Roedel@amd.com>
>> > > Cc: Andreas Herrmann <Andreas.Herrmann3@amd.com>
>> > > Cc: Jeremy Fitzhardinge <jeremy@goop.org>
>> > >
>> > > ---
>> > > arch/x86/include/asm/amd_nb.h | 7 ++++++
>> > > arch/x86/kernel/amd_nb.c | 7 ++++++
>> > > arch/x86/kernel/aperture_64.c | 44 +++++++++++++++---------------------------
>> > > arch/x86/pci/amd_bus.c | 30 ++++++++++++++++++++++++++++
>> > > 4 files changed, 60 insertions(+), 28 deletions(-)
>>
>> Btw, the patch should be relative to tip/x86/amd-nb as there would be
>> conflicts otherwise due to other changes.
>
> that's upstream meanwhile, so a patch against -git or -tip would suffice.
Yes, will do as soon as I can get to it.
Jan
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-01-07 13:33 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-06 16:57 [PATCH] x86: use PCI method for enabling AMD extended config space before MSR method Jan Beulich
2011-01-06 17:20 ` Robert Richter
2011-01-06 17:28 ` Robert Richter
2011-01-07 12:58 ` Ingo Molnar
2011-01-07 13:33 ` Jan Beulich
2011-01-07 7:40 ` Jan Beulich
2011-01-07 9:59 ` Robert Richter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox