linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Debug 0/2] Fix regressions caused by commit 593669c2ac0f
@ 2015-03-03  4:25 Jiang Liu
  2015-03-03  4:25 ` [Debug 1/2] x86/PCI/ACPI: Ignore resources consumed by host bridge itself Jiang Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Jiang Liu @ 2015-03-03  4:25 UTC (permalink / raw)
  To: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Dave Airlie, Marcel Holtmann
  Cc: Jiang Liu, Bjorn Helgaas, LKML, linux-pci, linux-acpi,
	Thomas Gleixner, Lv Zheng

Commit 593669c2ac0f (x86/PCI/ACPI: Use common ACPI resource interfaces
to simplify implementation) causes regression to several platforms,
which is caused by stricter checks in new ACPI resource parsing code
and BIOSes report incorrect ACPI resource descriptors.  So try to relax
the check to avoid regressions.

Jiang Liu (2):
  x86/PCI/ACPI: Ignore resources consumed by host bridge itself
  x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around
    BIOS bugs

 arch/x86/pci/acpi.c     |   11 ++++++++---
 drivers/acpi/resource.c |    4 +++-
 2 files changed, 11 insertions(+), 4 deletions(-)

-- 
1.7.10.4


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

* [Debug 1/2] x86/PCI/ACPI: Ignore resources consumed by host bridge itself
  2015-03-03  4:25 [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Jiang Liu
@ 2015-03-03  4:25 ` Jiang Liu
  2015-03-03  4:25 ` [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs Jiang Liu
  2015-03-03  4:34 ` [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Dave Airlie
  2 siblings, 0 replies; 12+ messages in thread
From: Jiang Liu @ 2015-03-03  4:25 UTC (permalink / raw)
  To: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Dave Airlie, Marcel Holtmann, Bjorn Helgaas,
	Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86
  Cc: Jiang Liu, LKML, linux-pci, linux-acpi, Lv Zheng

When parsing resources for PCI host bridge, we should ignore resources
consumed by host bridge itself and only report window resources available
to child PCI busses.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/pci/acpi.c |   11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c
index 6ac273832f28..e4695985f9de 100644
--- a/arch/x86/pci/acpi.c
+++ b/arch/x86/pci/acpi.c
@@ -331,7 +331,7 @@ static void probe_pci_root_info(struct pci_root_info *info,
 				struct list_head *list)
 {
 	int ret;
-	struct resource_entry *entry;
+	struct resource_entry *entry, *tmp;
 
 	sprintf(info->name, "PCI Bus %04x:%02x", domain, busnum);
 	info->bridge = device;
@@ -345,8 +345,13 @@ static void probe_pci_root_info(struct pci_root_info *info,
 		dev_dbg(&device->dev,
 			"no IO and memory resources present in _CRS\n");
 	else
-		resource_list_for_each_entry(entry, list)
-			entry->res->name = info->name;
+		resource_list_for_each_entry_safe(entry, tmp, list) {
+			if ((entry->res->flags & IORESOURCE_WINDOW) == 0 ||
+			    (entry->res->flags & IORESOURCE_DISABLED))
+				resource_list_destroy_entry(entry);
+			else
+				entry->res->name = info->name;
+		}
 }
 
 struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
-- 
1.7.10.4


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

* [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-03  4:25 [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Jiang Liu
  2015-03-03  4:25 ` [Debug 1/2] x86/PCI/ACPI: Ignore resources consumed by host bridge itself Jiang Liu
@ 2015-03-03  4:25 ` Jiang Liu
  2015-03-03 15:18   ` Bjorn Helgaas
  2015-03-03  4:34 ` [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Dave Airlie
  2 siblings, 1 reply; 12+ messages in thread
From: Jiang Liu @ 2015-03-03  4:25 UTC (permalink / raw)
  To: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Dave Airlie, Marcel Holtmann, Len Brown
  Cc: Jiang Liu, Bjorn Helgaas, LKML, linux-pci, linux-acpi,
	Thomas Gleixner, Lv Zheng

Some BIOSes report incorrect length for ACPI address space descriptors,
so relax the checks to avoid regressions.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/resource.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index c723668e3e27..5589a6e2a023 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -42,8 +42,10 @@ static bool acpi_dev_resource_len_valid(u64 start, u64 end, u64 len, bool io)
 	 * CHECKME: len might be required to check versus a minimum
 	 * length as well. 1 for io is fine, but for memory it does
 	 * not make any sense at all.
+	 * Note: some BIOSes report incorrect length for ACPI address space
+	 * descriptor, so remove check of 'reslen == len' to avoid regression.
 	 */
-	if (len && reslen && reslen == len && start <= end)
+	if (len && reslen && start <= end)
 		return true;
 
 	pr_debug("ACPI: invalid or unassigned resource %s [%016llx - %016llx] length [%016llx]\n",
-- 
1.7.10.4

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

* Re: [Debug 0/2] Fix regressions caused by commit 593669c2ac0f
  2015-03-03  4:25 [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Jiang Liu
  2015-03-03  4:25 ` [Debug 1/2] x86/PCI/ACPI: Ignore resources consumed by host bridge itself Jiang Liu
  2015-03-03  4:25 ` [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs Jiang Liu
@ 2015-03-03  4:34 ` Dave Airlie
  2015-03-03  5:02   ` Jiang Liu
  2015-03-03 17:19   ` Prakash Punnoor
  2 siblings, 2 replies; 12+ messages in thread
From: Dave Airlie @ 2015-03-03  4:34 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Marcel Holtmann, Bjorn Helgaas, LKML, Linux PCI,
	Linux ACPI, Thomas Gleixner, Lv Zheng

On 3 March 2015 at 14:25, Jiang Liu <jiang.liu@linux.intel.com> wrote:
> Commit 593669c2ac0f (x86/PCI/ACPI: Use common ACPI resource interfaces
> to simplify implementation) causes regression to several platforms,
> which is caused by stricter checks in new ACPI resource parsing code
> and BIOSes report incorrect ACPI resource descriptors.  So try to relax
> the check to avoid regressions.
>
> Jiang Liu (2):
>   x86/PCI/ACPI: Ignore resources consumed by host bridge itself
>   x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around
>     BIOS bugs

I've booted my machine with that lost its r8169 and it appears to be
working now.

So from the regression POV:
Tested-by: Dave Airlie <airlied@redhat.com>

Dave.

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

* Re: [Debug 0/2] Fix regressions caused by commit 593669c2ac0f
  2015-03-03  4:34 ` [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Dave Airlie
@ 2015-03-03  5:02   ` Jiang Liu
  2015-03-03 17:19   ` Prakash Punnoor
  1 sibling, 0 replies; 12+ messages in thread
From: Jiang Liu @ 2015-03-03  5:02 UTC (permalink / raw)
  To: Dave Airlie
  Cc: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Marcel Holtmann, Bjorn Helgaas, LKML, Linux PCI,
	Linux ACPI, Thomas Gleixner, Lv Zheng



On 2015/3/3 12:34, Dave Airlie wrote:
> On 3 March 2015 at 14:25, Jiang Liu <jiang.liu@linux.intel.com> wrote:
>> Commit 593669c2ac0f (x86/PCI/ACPI: Use common ACPI resource interfaces
>> to simplify implementation) causes regression to several platforms,
>> which is caused by stricter checks in new ACPI resource parsing code
>> and BIOSes report incorrect ACPI resource descriptors.  So try to relax
>> the check to avoid regressions.
>>
>> Jiang Liu (2):
>>   x86/PCI/ACPI: Ignore resources consumed by host bridge itself
>>   x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around
>>     BIOS bugs
> 
> I've booted my machine with that lost its r8169 and it appears to be
> working now.
> 
> So from the regression POV:
> Tested-by: Dave Airlie <airlied@redhat.com>
Thanks for testing, Dave:)
> 
> Dave.
> 

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

* Re: [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-03  4:25 ` [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs Jiang Liu
@ 2015-03-03 15:18   ` Bjorn Helgaas
  2015-03-04  2:29     ` Jiang Liu
  0 siblings, 1 reply; 12+ messages in thread
From: Bjorn Helgaas @ 2015-03-03 15:18 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Dave Airlie, Marcel Holtmann, Len Brown, LKML,
	linux-pci, linux-acpi, Thomas Gleixner, Lv Zheng

On Mon, Mar 2, 2015 at 10:25 PM, Jiang Liu <jiang.liu@linux.intel.com> wrote:
> Some BIOSes report incorrect length for ACPI address space descriptors,
> so relax the checks to avoid regressions.
>
> Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>

It'd be nice to have a DSDT archived and referenced in this changelog
for future reference.  This sounds similar to previous issues:

3162b6f0c5e1 ("PNPACPI: truncate _CRS windows with _LEN > _MAX - _MIN + 1")
d558b483d5a7 ("x86/PCI: truncate _CRS windows with _LEN > _MAX - _MIN + 1")
f238b414a74a ("PNPACPI: compute Address Space length rather than using _LEN")
48728e077480 ("x86/PCI: compute Address Space length rather than using _LEN")

I assume your work fixes both these paths and avoids the issues we fixed above.

> ---
>  drivers/acpi/resource.c |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
> index c723668e3e27..5589a6e2a023 100644
> --- a/drivers/acpi/resource.c
> +++ b/drivers/acpi/resource.c
> @@ -42,8 +42,10 @@ static bool acpi_dev_resource_len_valid(u64 start, u64 end, u64 len, bool io)
>          * CHECKME: len might be required to check versus a minimum
>          * length as well. 1 for io is fine, but for memory it does
>          * not make any sense at all.
> +        * Note: some BIOSes report incorrect length for ACPI address space
> +        * descriptor, so remove check of 'reslen == len' to avoid regression.
>          */
> -       if (len && reslen && reslen == len && start <= end)
> +       if (len && reslen && start <= end)
>                 return true;
>
>         pr_debug("ACPI: invalid or unassigned resource %s [%016llx - %016llx] length [%016llx]\n",
> --
> 1.7.10.4
>

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

* Re: [Debug 0/2] Fix regressions caused by commit 593669c2ac0f
  2015-03-03  4:34 ` [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Dave Airlie
  2015-03-03  5:02   ` Jiang Liu
@ 2015-03-03 17:19   ` Prakash Punnoor
  1 sibling, 0 replies; 12+ messages in thread
From: Prakash Punnoor @ 2015-03-03 17:19 UTC (permalink / raw)
  To: Dave Airlie, Jiang Liu
  Cc: Rafael J . Wysocki, Thomas Voegtle, Hudd, Francois Romieu,
	Marcel Holtmann, Bjorn Helgaas, LKML, Linux PCI, Linux ACPI,
	Thomas Gleixner, Lv Zheng

On 03.03.2015 05:34, Dave Airlie wrote:
> On 3 March 2015 at 14:25, Jiang Liu <jiang.liu@linux.intel.com> wrote:
>> Commit 593669c2ac0f (x86/PCI/ACPI: Use common ACPI resource interfaces
>> to simplify implementation) causes regression to several platforms,
>> which is caused by stricter checks in new ACPI resource parsing code
>> and BIOSes report incorrect ACPI resource descriptors.  So try to relax
>> the check to avoid regressions.
>>
>> Jiang Liu (2):
>>   x86/PCI/ACPI: Ignore resources consumed by host bridge itself
>>   x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around
>>     BIOS bugs
> 
> I've booted my machine with that lost its r8169 and it appears to be
> working now.
> 
> So from the regression POV:
> Tested-by: Dave Airlie <airlied@redhat.com>

Works for me, as well. Thanks!

Tested-by: Prakash Punnoor <prakash@punnoor.de>


Regards,

Prakash

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

* Re: [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-03 15:18   ` Bjorn Helgaas
@ 2015-03-04  2:29     ` Jiang Liu
  2015-03-04  2:58       ` Dave Airlie
                         ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Jiang Liu @ 2015-03-04  2:29 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Rafael J . Wysocki, Thomas Voegtle, Hudd, Prakash Punnoor,
	Francois Romieu, Dave Airlie, Marcel Holtmann, Len Brown, LKML,
	linux-pci, linux-acpi, Thomas Gleixner, Lv Zheng

On 2015/3/3 23:18, Bjorn Helgaas wrote:
> On Mon, Mar 2, 2015 at 10:25 PM, Jiang Liu <jiang.liu@linux.intel.com> wrote:
>> Some BIOSes report incorrect length for ACPI address space descriptors,
>> so relax the checks to avoid regressions.
>>
>> Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
> 
> It'd be nice to have a DSDT archived and referenced in this changelog
> for future reference.  This sounds similar to previous issues:
Hi all,
	Could anybody help to dump an ACPI table from those failure
systems so we could archive it?
Thanks!
Gerry

> 
> 3162b6f0c5e1 ("PNPACPI: truncate _CRS windows with _LEN > _MAX - _MIN + 1")
> d558b483d5a7 ("x86/PCI: truncate _CRS windows with _LEN > _MAX - _MIN + 1")
> f238b414a74a ("PNPACPI: compute Address Space length rather than using _LEN")
> 48728e077480 ("x86/PCI: compute Address Space length rather than using _LEN")
> 
> I assume your work fixes both these paths and avoids the issues we fixed above.
> 
>> ---
>>  drivers/acpi/resource.c |    4 +++-
>>  1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
>> index c723668e3e27..5589a6e2a023 100644
>> --- a/drivers/acpi/resource.c
>> +++ b/drivers/acpi/resource.c
>> @@ -42,8 +42,10 @@ static bool acpi_dev_resource_len_valid(u64 start, u64 end, u64 len, bool io)
>>          * CHECKME: len might be required to check versus a minimum
>>          * length as well. 1 for io is fine, but for memory it does
>>          * not make any sense at all.
>> +        * Note: some BIOSes report incorrect length for ACPI address space
>> +        * descriptor, so remove check of 'reslen == len' to avoid regression.
>>          */
>> -       if (len && reslen && reslen == len && start <= end)
>> +       if (len && reslen && start <= end)
>>                 return true;
>>
>>         pr_debug("ACPI: invalid or unassigned resource %s [%016llx - %016llx] length [%016llx]\n",
>> --
>> 1.7.10.4
>>

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

* Re: [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-04  2:29     ` Jiang Liu
@ 2015-03-04  2:58       ` Dave Airlie
  2015-03-04 11:26       ` Thomas Voegtle
                         ` (2 subsequent siblings)
  3 siblings, 0 replies; 12+ messages in thread
From: Dave Airlie @ 2015-03-04  2:58 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Bjorn Helgaas, Rafael J . Wysocki, Thomas Voegtle, Hudd,
	Prakash Punnoor, Francois Romieu, Marcel Holtmann, Len Brown,
	LKML, linux-pci, linux-acpi, Thomas Gleixner, Lv Zheng

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

 reference.  This sounds similar to previous issues:
> Hi all,
>         Could anybody help to dump an ACPI table from those failure
> systems so we could archive it?

Here is the DSDT from my amd rs780 box.

Dave.

[-- Attachment #2: DSDT --]
[-- Type: application/octet-stream, Size: 25936 bytes --]

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

* Re: [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-04  2:29     ` Jiang Liu
  2015-03-04  2:58       ` Dave Airlie
@ 2015-03-04 11:26       ` Thomas Voegtle
  2015-03-04 16:05       ` Prakash Punnoor
  2015-03-04 21:31       ` Hudd
  3 siblings, 0 replies; 12+ messages in thread
From: Thomas Voegtle @ 2015-03-04 11:26 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Bjorn Helgaas, Rafael J . Wysocki, Hudd, Prakash Punnoor,
	Francois Romieu, Dave Airlie, Marcel Holtmann, Len Brown, LKML,
	linux-pci, linux-acpi, Thomas Gleixner, Lv Zheng

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

On Wed, 4 Mar 2015, Jiang Liu wrote:

> Hi all,
> 	Could anybody help to dump an ACPI table from those failure
> systems so we could archive it?


and here is the DSDT from a Asrock-Q1900B-ITX mainboard.

Thanks again,

   Thomas

[-- Attachment #2: Type: application/octet-stream, Size: 45609 bytes --]

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

* Re: [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-04  2:29     ` Jiang Liu
  2015-03-04  2:58       ` Dave Airlie
  2015-03-04 11:26       ` Thomas Voegtle
@ 2015-03-04 16:05       ` Prakash Punnoor
  2015-03-04 21:31       ` Hudd
  3 siblings, 0 replies; 12+ messages in thread
From: Prakash Punnoor @ 2015-03-04 16:05 UTC (permalink / raw)
  To: Jiang Liu, Bjorn Helgaas
  Cc: Rafael J . Wysocki, Thomas Voegtle, Hudd, Francois Romieu,
	Dave Airlie, Marcel Holtmann, Len Brown, LKML, linux-pci,
	linux-acpi, Thomas Gleixner, Lv Zheng

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

On 04.03.2015 03:29, Jiang Liu wrote:
> On 2015/3/3 23:18, Bjorn Helgaas wrote:
>> On Mon, Mar 2, 2015 at 10:25 PM, Jiang Liu <jiang.liu@linux.intel.com> wrote:
>>> Some BIOSes report incorrect length for ACPI address space descriptors,
>>> so relax the checks to avoid regressions.
>>>
>>> Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
>>
>> It'd be nice to have a DSDT archived and referenced in this changelog
>> for future reference.  This sounds similar to previous issues:
> Hi all,
> 	Could anybody help to dump an ACPI table from those failure
> systems so we could archive it?

Attached: DSDT from my Abit A-S78H.

Regards,

Prakash

[-- Attachment #2: DSDT-Abit-A-S78H.xz --]
[-- Type: application/x-xz, Size: 10384 bytes --]

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

* Re: [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs
  2015-03-04  2:29     ` Jiang Liu
                         ` (2 preceding siblings ...)
  2015-03-04 16:05       ` Prakash Punnoor
@ 2015-03-04 21:31       ` Hudd
  3 siblings, 0 replies; 12+ messages in thread
From: Hudd @ 2015-03-04 21:31 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Bjorn Helgaas, Rafael J . Wysocki, Thomas Voegtle,
	Prakash Punnoor, Francois Romieu, Dave Airlie, Marcel Holtmann,
	Len Brown, LKML, linux-pci, linux-acpi, Thomas Gleixner,
	Lv Zheng

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

On Wed, 2015-03-04 at 10:29 +0800, Jiang Liu wrote:
> Hi all,
> 	Could anybody help to dump an ACPI table from those failure
> systems so we could archive it?
> Thanks!
> Gerry

Here is DSDT from Gigabyte GA-MA785G-UD3H.


[-- Attachment #2: DSDT-GA-MA785G-UD3H --]
[-- Type: application/octet-stream, Size: 29337 bytes --]

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

end of thread, other threads:[~2015-03-04 21:31 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-03  4:25 [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Jiang Liu
2015-03-03  4:25 ` [Debug 1/2] x86/PCI/ACPI: Ignore resources consumed by host bridge itself Jiang Liu
2015-03-03  4:25 ` [Debug 2/2] x86/PCI/ACPI: Relax ACPI resource descriptor checks to work around BIOS bugs Jiang Liu
2015-03-03 15:18   ` Bjorn Helgaas
2015-03-04  2:29     ` Jiang Liu
2015-03-04  2:58       ` Dave Airlie
2015-03-04 11:26       ` Thomas Voegtle
2015-03-04 16:05       ` Prakash Punnoor
2015-03-04 21:31       ` Hudd
2015-03-03  4:34 ` [Debug 0/2] Fix regressions caused by commit 593669c2ac0f Dave Airlie
2015-03-03  5:02   ` Jiang Liu
2015-03-03 17:19   ` Prakash Punnoor

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