The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* Re: [Bug 16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
       [not found] ` <201006171637.o5HGbgnO009943@demeter.kernel.org>
@ 2010-06-17 18:40   ` Yinghai Lu
  0 siblings, 0 replies; 41+ messages in thread
From: Yinghai Lu @ 2010-06-17 18:40 UTC (permalink / raw)
  To: bugzilla-daemon, linux-kernel@vger.kernel.org, Jesse Barnes,
	Bjorn Helgaas, Ingo Molnar, H. Peter Anvin, Thomas Gleixner
  Cc: Linus Torvalds

On 06/17/2010 09:37 AM, bugzilla-daemon@bugzilla.kernel.org wrote:
> https://bugzilla.kernel.org/show_bug.cgi?id=16228
> 
> 
> Bjorn Helgaas <bjorn.helgaas@hp.com> changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>                  CC|                            |yinghai@kernel.org
> 
> 
> 
> 
> --- Comment #8 from Bjorn Helgaas <bjorn.helgaas@hp.com>  2010-06-17 16:37:42 ---
> That's perfect, thanks!
> 
> The E820 memory map from BIOS reports a range that overlaps the first
> megabyte (0xbff00000-0xbfffffff) of that host bridge window:
> 
>   BIOS-e820: 0000000000100000 - 00000000bfdf9c00 (usable)
>   BIOS-e820: 00000000bfdf9c00 - 00000000bfe4bc00 (ACPI NVS)
>   BIOS-e820: 00000000bfe4bc00 - 00000000bfe4dc00 (ACPI data)
>   BIOS-e820: 00000000bfe4dc00 - 00000000c0000000 (reserved)
>   pci_root PNP0A03:00: host bridge window [mem 0xbff00000-0xdfffffff]
> 
> The 0x100000-0xbfdf9c00 range is system RAM, and I would expect that
> the ACPI NVS and data area is also RAM, and the last reserved piece is
> probably RAM, too, because RAM tends to end at nicely aligned boundaries.
> 
> Table 14-1 in the ACPI 4.0 spec says "reserved" ranges from the E820
> table are "unsuitable for a standard device to use as a device memory
> space."
> 
> I think maybe Linux should regard those reserved ranges as unavailable
> for allocation to PCI devices, even if they happen to be included in a
> host bridge window.  What do you think, Yinghai?

for above 1M area, 
current kernel will honor setting from HW register and later will use insert_resource_expand_to_fit()
with e820 reserved entries.
so in this case will have one big 0xbfe4dc00 - 0xe000000 reserved entry in /proc/iomem as parent of
0xbff00000 - 0xe0000000

Sane BIOS should not put allocated range to PCI bridge/device into e820 table as reserved entries.

But there IS some BIOS doing that.
So Linus decided to trust setting from PCI bar at first.

later for pci_assign_unsigned, We should avoid those range.

one solution is expanding my one of old version for below 1M handling to:
use reserve_region_with_split instead.
will get /proc/iomem
bfe4dc00 - bfefffff reserved
bff00000 - dfffffff PCI BUS #00
  bff00000 - bfffffff reserved
  ...

so will use bff0000 - bfffffff reserved as holder to prevent those range to be allocated to unassigned devices.
reserve_region_with_split need to need be updated a little bit to make sure it will not put holder on range with children already.

something like this

Subject: [PATCH] x86, resource: Add reserve_region_with_split_check_child()

It will cover the whole region to BUSY, except that some regions that have
children under them.

those children normally is PCI bar but it is falling into E820_RESERVED.
We can not put BUSY on them, otherwise driver can not use pci_request_region()
later

/proc/iomem will have
00010000-00094fff : System RAM
00095000-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
  000a0000-000bffff : reserved
000c0000-000cffff : reserved
000d0000-000dffff : PCI Bus 0000:00
  000d0000-000dffff : reserved
000e0000-000fffff : reserved

-v2: Add function pointer to put string comparing with caller
-v3: expand to use it above 1M resources.

Tested-by: Guenter Roeck <guenter.roeck@ericsson.com>
Tested-by: Andy Isaacson <adi@hexapodia.org>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>

---
 arch/x86/kernel/e820.c |   15 ++++++++++++---
 include/linux/ioport.h |    3 +++
 kernel/resource.c      |   29 ++++++++++++++++++++++++-----
 3 files changed, 39 insertions(+), 8 deletions(-)

Index: linux-2.6/arch/x86/kernel/e820.c
===================================================================
--- linux-2.6.orig/arch/x86/kernel/e820.c
+++ linux-2.6/arch/x86/kernel/e820.c
@@ -1094,7 +1094,7 @@ void __init e820_reserve_resources(void)
 		 * pci device BAR resource and insert them later in
 		 * pcibios_resource_survey()
 		 */
-		if (e820.map[i].type != E820_RESERVED || res->start < (1ULL<<20)) {
+		if (e820.map[i].type != E820_RESERVED) {
 			res->flags |= IORESOURCE_BUSY;
 			insert_resource(&iomem_resource, res);
 		}
@@ -1128,6 +1128,14 @@ static unsigned long ram_alignment(resou
 
 #define MAX_RESOURCE_SIZE ((resource_size_t)-1)
 
+static int __init check_func(struct resource *cf)
+{
+	if (strstr(cf->name, "PCI Bus"))
+		return 1;
+
+        return 0;
+}
+
 void __init e820_reserve_resources_late(void)
 {
 	int i;
@@ -1135,8 +1143,9 @@ void __init e820_reserve_resources_late(
 
 	res = e820_res;
 	for (i = 0; i < e820.nr_map; i++) {
-		if (!res->parent && res->end)
-			insert_resource_expand_to_fit(&iomem_resource, res);
+		if (!res->parent && res->end) {
+			reserve_region_with_split_check_child(&iomem_resource, res->start, res->end, res->name, check_func);
+		}
 		res++;
 	}
 
Index: linux-2.6/include/linux/ioport.h
===================================================================
--- linux-2.6.orig/include/linux/ioport.h
+++ linux-2.6/include/linux/ioport.h
@@ -120,6 +120,9 @@ void release_child_resources(struct reso
 extern void reserve_region_with_split(struct resource *root,
 			     resource_size_t start, resource_size_t end,
 			     const char *name);
+void reserve_region_with_split_check_child(struct resource *root,
+			     resource_size_t start, resource_size_t end,
+			     const char *name, int (*check_func)(struct resource *cf));
 extern struct resource *insert_resource_conflict(struct resource *parent, struct resource *new);
 extern int insert_resource(struct resource *parent, struct resource *new);
 extern void insert_resource_expand_to_fit(struct resource *root, struct resource *new);
Index: linux-2.6/kernel/resource.c
===================================================================
--- linux-2.6.orig/kernel/resource.c
+++ linux-2.6/kernel/resource.c
@@ -607,9 +607,14 @@ int adjust_resource(struct resource *res
 	return result;
 }
 
+static int __init check_func_nop(struct resource *cf)
+{
+	return 1;
+}
+
 static void __init __reserve_region_with_split(struct resource *root,
 		resource_size_t start, resource_size_t end,
-		const char *name)
+		const char *name, bool check_child, int (*check_func)(struct resource *cf))
 {
 	struct resource *parent = root;
 	struct resource *conflict;
@@ -631,13 +636,18 @@ static void __init __reserve_region_with
 	kfree(res);
 
 	/* conflict covered whole area */
-	if (conflict->start <= start && conflict->end >= end)
+	if (conflict->start <= start && conflict->end >= end) {
+		if (check_child && !conflict->child && check_func(conflict))
+			__reserve_region_with_split(conflict, start, end, name, false, check_func_nop);
 		return;
+	}
 
 	if (conflict->start > start)
-		__reserve_region_with_split(root, start, conflict->start-1, name);
+		__reserve_region_with_split(root, start, conflict->start-1, name, check_child, check_func);
 	if (conflict->end < end)
-		__reserve_region_with_split(root, conflict->end+1, end, name);
+		__reserve_region_with_split(root, conflict->end+1, end, name, check_child, check_func);
+	if (check_child && !conflict->child && check_func(conflict))
+		__reserve_region_with_split(conflict, conflict->start, conflict->end, name, false, check_func_nop);
 }
 
 void __init reserve_region_with_split(struct resource *root,
@@ -645,7 +655,16 @@ void __init reserve_region_with_split(st
 		const char *name)
 {
 	write_lock(&resource_lock);
-	__reserve_region_with_split(root, start, end, name);
+	__reserve_region_with_split(root, start, end, name, false, check_func_nop);
+	write_unlock(&resource_lock);
+}
+
+void __init reserve_region_with_split_check_child(struct resource *root,
+		resource_size_t start, resource_size_t end,
+		const char *name, int (*check_func)(struct resource *cf))
+{
+	write_lock(&resource_lock);
+	__reserve_region_with_split(root, start, end, name, true, check_func);
 	write_unlock(&resource_lock);
 }
 

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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-06-20 22:11 2.6.35-rc3: Reported regressions from 2.6.34 Rafael J. Wysocki
@ 2010-06-20 22:17 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-06-20 22:17 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.34.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <phunge0@hotmail.com>
Date		: 2010-06-16 17:57 (5 days old)



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-07-08 23:33 2.6.35-rc4-git3: Reported regressions from 2.6.34 Rafael J. Wysocki
@ 2010-07-08 23:41 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-07-08 23:41 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Bjorn Helgaas,
	Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.34.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <phunge0@hotmail.com>
Date		: 2010-06-16 17:57 (23 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-07-23 11:42 2.6.35-rc6: Reported regressions from 2.6.34 Rafael J. Wysocki
@ 2010-07-23 11:47 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-07-23 11:47 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Bjorn Helgaas,
	Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.34.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <phunge0@hotmail.com>
Date		: 2010-06-16 17:57 (38 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-08-01 13:46 2.6.35-rc6-git6: Reported regressions from 2.6.34 Rafael J. Wysocki
@ 2010-08-01 13:52 ` Rafael J. Wysocki
  2010-08-02  0:27   ` Bjorn Helgaas
  0 siblings, 1 reply; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-08-01 13:52 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Bjorn Helgaas,
	Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.34.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <phunge0@hotmail.com>
Date		: 2010-06-16 17:57 (47 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>



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

* Re: [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-08-01 13:52 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
@ 2010-08-02  0:27   ` Bjorn Helgaas
  0 siblings, 0 replies; 41+ messages in thread
From: Bjorn Helgaas @ 2010-08-02  0:27 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Brian Bloniarz, Yinghai Lu

On Sunday, August 01, 2010 07:52:16 am Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a summary report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.34.  Please verify if it still should be listed and let the tracking team
> know (either way).
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
> Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
> Submitter	: Brian Bloniarz <phunge0@hotmail.com>
> Date		: 2010-06-16 17:57 (47 days old)
> Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>

This bug should still be on the list.  I hope to work on it this week.

Bjorn

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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-08-29 22:57 2.6.36-rc3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
@ 2010-08-29 23:13 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-08-29 23:13 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Bjorn Helgaas,
	Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <phunge0@hotmail.com>
Date		: 2010-06-16 17:57 (75 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-12 19:07 2.6.36-rc3-git5: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
@ 2010-09-12 19:08 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-09-12 19:08 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Bjorn Helgaas,
	Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <phunge0@hotmail.com>
Date		: 2010-06-16 17:57 (89 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-20 19:54 2.6.36-rc4-git5: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
@ 2010-09-20 19:57 ` Rafael J. Wysocki
  2010-09-20 20:44   ` Bjorn Helgaas
  0 siblings, 1 reply; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-09-20 19:57 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Bjorn Helgaas, Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
Date		: 2010-06-16 17:57 (97 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>



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

* Re: [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-20 19:57 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
@ 2010-09-20 20:44   ` Bjorn Helgaas
  2010-09-20 21:07     ` Rafael J. Wysocki
  0 siblings, 1 reply; 41+ messages in thread
From: Bjorn Helgaas @ 2010-09-20 20:44 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Brian Bloniarz, Yinghai Lu, chemobejk

On Monday, September 20, 2010 01:57:17 pm Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of regressions introduced between 2.6.34 and 2.6.35.
> 
> The following bug entry is on the current list of known regressions
> introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> be listed and let the tracking team know (either way).
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
> Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
> Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
> Date		: 2010-06-16 17:57 (97 days old)
> Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>

The four patches here: https://patchwork.kernel.org/patch/189182/
should resolve this problem.  They've been tested by Stefan Becker.

Bjorn

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

* Re: [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-20 20:44   ` Bjorn Helgaas
@ 2010-09-20 21:07     ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-09-20 21:07 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Brian Bloniarz, Yinghai Lu, chemobejk

On Monday, September 20, 2010, Bjorn Helgaas wrote:
> On Monday, September 20, 2010 01:57:17 pm Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a report
> > of regressions introduced between 2.6.34 and 2.6.35.
> > 
> > The following bug entry is on the current list of known regressions
> > introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> > be listed and let the tracking team know (either way).
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
> > Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
> > Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
> > Date		: 2010-06-16 17:57 (97 days old)
> > Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
> 
> The four patches here: https://patchwork.kernel.org/patch/189182/
> should resolve this problem.  They've been tested by Stefan Becker.

Thanks, bug entry updated with the patch information.

Rafael

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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-26 20:29 2.6.36-rc5-git7: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
@ 2010-09-26 20:33 ` Rafael J. Wysocki
  2010-09-27 15:45   ` Bjorn Helgaas
  0 siblings, 1 reply; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-09-26 20:33 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Bjorn Helgaas, Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
Date		: 2010-06-16 17:57 (103 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
Patch		: https://patchwork.kernel.org/patch/189182/
		  https://patchwork.kernel.org/patch/189232/
		  https://patchwork.kernel.org/patch/189242/
		  https://patchwork.kernel.org/patch/189252/



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

* Re: [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-26 20:33 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
@ 2010-09-27 15:45   ` Bjorn Helgaas
  2010-09-27 19:40     ` Rafael J. Wysocki
  0 siblings, 1 reply; 41+ messages in thread
From: Bjorn Helgaas @ 2010-09-27 15:45 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Brian Bloniarz, Yinghai Lu

On Sunday, September 26, 2010 02:33:08 pm Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of regressions introduced between 2.6.34 and 2.6.35.
> 
> The following bug entry is on the current list of known regressions
> introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> be listed and let the tracking team know (either way).
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
> Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
> Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
> Date		: 2010-06-16 17:57 (103 days old)
> Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
> Patch		: https://patchwork.kernel.org/patch/189182/
> 		  https://patchwork.kernel.org/patch/189232/
> 		  https://patchwork.kernel.org/patch/189242/
> 		  https://patchwork.kernel.org/patch/189252/

We plan to merge this patches soon after the 2.6.36 release, so
this regression will still exist in 2.6.36.

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

* Re: [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-09-27 15:45   ` Bjorn Helgaas
@ 2010-09-27 19:40     ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-09-27 19:40 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Brian Bloniarz, Yinghai Lu

On Monday, September 27, 2010, Bjorn Helgaas wrote:
> On Sunday, September 26, 2010 02:33:08 pm Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a report
> > of regressions introduced between 2.6.34 and 2.6.35.
> > 
> > The following bug entry is on the current list of known regressions
> > introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> > be listed and let the tracking team know (either way).
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
> > Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
> > Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
> > Date		: 2010-06-16 17:57 (103 days old)
> > Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
> > Patch		: https://patchwork.kernel.org/patch/189182/
> > 		  https://patchwork.kernel.org/patch/189232/
> > 		  https://patchwork.kernel.org/patch/189242/
> > 		  https://patchwork.kernel.org/patch/189252/
> 
> We plan to merge this patches soon after the 2.6.36 release, so
> this regression will still exist in 2.6.36.

Thanks for the info.

The bug is going to be listed until 2.6.36 is released, then.

Rafael

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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-10-03 21:36 2.6.36-rc6-git2: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
@ 2010-10-03 21:53 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-03 21:53 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Bjorn Helgaas, Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
Date		: 2010-06-16 17:57 (110 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
Patch		: https://patchwork.kernel.org/patch/189182/
		  https://patchwork.kernel.org/patch/189232/
		  https://patchwork.kernel.org/patch/189242/
		  https://patchwork.kernel.org/patch/189252/



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-10-10 19:10 2.6.36-rc7-git2: " Rafael J. Wysocki
@ 2010-10-10 19:18 ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-10 19:18 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Bjorn Helgaas, Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
Date		: 2010-06-16 17:57 (117 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
Patch		: https://patchwork.kernel.org/patch/189182/
		  https://patchwork.kernel.org/patch/189232/
		  https://patchwork.kernel.org/patch/189242/
		  https://patchwork.kernel.org/patch/189252/



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

* 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35
@ 2010-10-17 20:53 Rafael J. Wysocki
  2010-10-17 20:53 ` [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id Rafael J. Wysocki
                   ` (19 more replies)
  0 siblings, 20 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:53 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Maciej Rutecki, Florian Mickler, Andrew Morton, Linus Torvalds,
	Kernel Testers List, Network Development, Linux ACPI,
	Linux PM List, Linux SCSI List, Linux Wireless List, DRI

This message contains a list of some post-2.6.34 regressions introduced before
2.6.35, for which there are no fixes in the mainline known to the tracking team.
If any of them have been fixed already, please let us know.

If you know of any other unresolved post-2.6.34 regressions, please let us know
either and we'll add them to the list.  Also, please let us know if any
of the entries below are invalid.

Each entry from the list will be sent additionally in an automatic reply to
this message with CCs to the people involved in reporting and handling the
issue.


Listed regressions statistics:

  Date          Total  Pending  Unresolved
  ----------------------------------------
  2010-10-17      141       19          15
  2010-10-10      143       23          19
  2010-10-03      141       21          17
  2010-09-26      139       24          21
  2010-09-20      137       27          25
  2010-09-12      135       26          25
  2010-08-30      124       38          34
  2010-08-01      100       27          23
  2010-07-23       94       33          25
  2010-07-09       79       45          37
  2010-06-21       46       37          26
  2010-06-09       15       13          10


Unresolved regressions
----------------------

Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=20002
Subject		: x86_64 2.6.35.* kernels and Intel Xeon X5550
Submitter	: Marc Aurele La France <tsi@ualberta.ca>
Date		: 2010-10-07 17:17 (11 days old)
Message-ID	: <alpine.WNT.2.00.1010071055420.1672@cluij.ucs.ualberta.ca>
References	: http://marc.info/?l=linux-kernel&m=128647187628706&w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=19302
Subject		: PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup.
Submitter	: O01eg <O01eg@yandex.ru>
Date		: 2010-09-26 19:50 (22 days old)
Message-ID	: <op.vjnn1up1yohvy1@localhost>
References	: http://marc.info/?l=linux-kernel&m=128553111709569&w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=18522
Subject		: cdrom drive doesn't detect removal
Submitter	: Maxim Levitsky <maximlevitsky@gmail.com>
Date		: 2010-09-12 9:49 (36 days old)
First-Bad-Commit: http://git.kernel.org/linus/6b4517a7913a09d3259bb1d21c9cb300f12294bd
Message-ID	: <1284284969.2928.18.camel@maxim-laptop>
References	: http://marc.info/?l=linux-kernel&m=128428499013930&w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=17812
Subject		: Kernel completely frozen when memory is full
Submitter	: Mickey86 <mikael.cordon@gmail.com>
Date		: 2010-09-05 13:09 (43 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=17261
Subject		: Freezes on bootup
Submitter	: Dan Dart <dandart@googlemail.com>
Date		: 2010-08-29 09:00 (50 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16691
Subject		: IPW5100: iwlagn broken with 2.6.34.x to 2.6.35.2 update
Submitter	: Can Celasun <dcelasun@gmail.com>
Date		: 2010-08-21 08:28 (58 days old)
References	: http://www.spinics.net/lists/linux-wireless/msg57237.html


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16562
Subject		: 2.6.35: cpu_idle bug report / on i7 870 cpu (x86_64)
Submitter	: Justin Piszcz <jpiszcz@lucidpixels.com>
Date		: 2010-08-06 22:09 (73 days old)
Message-ID	: <alpine.DEB.2.00.1008061800530.5241@p34.internal.lan>
References	: http://marc.info/?l=linux-kernel&m=128113260904048&w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16549
Subject		: 2.6.35: suspicious rcu_dereference_check() usage
Submitter	: Vladislav Bolkhovitin <vst@vlnb.net>
Date		: 2010-08-04 10:56 (75 days old)
Message-ID	: <4C594740.1090608@vlnb.net>
References	: http://marc.info/?l=linux-kernel&m=128091938215177&w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16525
Subject		: unexpected high load since 2.6.35
Submitter	: MadLoisae@gmx.net <MadLoisae@gmx.net>
Date		: 2010-08-02 20:53 (77 days old)
Message-ID	: <4C573041.1070103@gmx.net>
References	: http://marc.info/?l=linux-kernel&m=128078243726655&w=2
		  http://lkml.org/lkml/2010/9/14/105
		  http://lkml.org/lkml/2010/9/27/328


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16515
Subject		: [bisected] Radeon rv280 can't boot on kernel 2.6.35.
Submitter	: Albert Gall <ss3vdr@gmail.com>
Date		: 2010-08-04 16:10 (75 days old)
First-Bad-Commit: http://git.kernel.org/linus/https://bugzilla.kernel.org/attachment.cgi?id=27350
Handled-By	: Alex Deucher <alexdeucher@gmail.com>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16488
Subject		: [i915] Framebuffer ID error after suspend/hibernate leading to X crash
Submitter	: Milan Bouchet-Valat <nalimilan@club.fr>
Date		: 2010-08-01 08:55 (78 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16458
Subject		: Bluetooth disabled after resume
Submitter	: AttilaN <attila123456@gmail.com>
Date		: 2010-07-25 09:33 (85 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16380
Subject		: Loop devices act strangely in 2.6.35
Submitter	: Artem S. Tashkinov <t.artem@mailcity.com>
Date		: 2010-07-13 23:21 (97 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16265
Subject		: Why is kslowd accumulating so much CPU time?
Submitter	: Theodore Ts'o <tytso@mit.edu>
Date		: 2010-06-09 18:36 (131 days old)
First-Bad-Commit: http://git.kernel.org/linus/fbf81762e385d3d45acad057b654d56972acf58c
Message-ID	: <E1OMQ88-0002a1-Gb@closure.thunk.org>
References	: http://marc.info/?l=linux-kernel&m=127610857819033&w=4
		  http://bugs.freedesktop.org/show_bug.cgi?id=29536
Handled-By	: Chris Wilson <chris@chris-wilson.co.uk>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16221
Subject		: 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
Submitter	: Miles Lane <miles.lane@gmail.com>
Date		: 2010-06-11 20:31 (129 days old)
Message-ID	: <AANLkTim0jVRyqkwlGOcrg_XTvUQwcBYfWJX-aRzkkrLG@mail.gmail.com>
References	: http://marc.info/?l=linux-kernel&m=127628828119623&w=2


Regressions with patches
------------------------

Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=17772
Subject		: Unable to locate IOAPIC for GSI *
Submitter	: zersaa <zersaa@gmail.com>
Date		: 2010-09-04 21:28 (44 days old)
Handled-By	: Eric W. Biederman <ebiederm@xmission.com>
Patch		: https://patchwork.kernel.org/patch/104501/


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16891
Subject		: Kernel panic while loading intel module during boot
Submitter	: Anisse Astier <anisse@astier.eu>
Date		: 2010-08-24 13:19 (55 days old)
Handled-By	: Anisse Astier <anisse@astier.eu>
Patch		: https://bugzilla.kernel.org/attachment.cgi?id=32602


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16312
Subject		: WARNING: at fs/fs-writeback.c:1127 __mark_inode_dirty
Submitter	: Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date		: 2010-06-28 9:40 (112 days old)
Message-ID	: <AANLkTin24fr5O4_q5Xbo9Y_NKkEmtcp6Hgmr9_4qXaFz@mail.gmail.com>
References	: http://marc.info/?l=linux-kernel&m=127771804806465&w=2
		  http://lkml.indiana.edu/hypermail/linux/kernel/1007.3/00884.html
Handled-By	: Jan Kara <jack@suse.cz>
		  Jan Kara <jack@suse.cz>
Patch		: https://bugzilla.kernel.org/attachment.cgi?id=30282


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
Date		: 2010-06-16 17:57 (124 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
Patch		: https://patchwork.kernel.org/patch/189182/
		  https://patchwork.kernel.org/patch/189232/
		  https://patchwork.kernel.org/patch/189242/
		  https://patchwork.kernel.org/patch/189252/


For details, please visit the bug entries and follow the links given in
references.

As you can see, there is a Bugzilla entry for each of the listed regressions.
There also is a Bugzilla entry used for tracking the regressions introduced
between 2.6.34 and 2.6.35, unresolved as well as resolved, at:

http://bugzilla.kernel.org/show_bug.cgi?id=16055

Please let the tracking team know if there are any Bugzilla entries that
should be added to the list in there.

Thanks!


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

* [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
@ 2010-10-17 20:53 ` Rafael J. Wysocki
  2011-03-31  2:33   ` Fixed " David Fries
  2010-10-17 20:55 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
                   ` (18 subsequent siblings)
  19 siblings, 1 reply; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:53 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, David Fries,
	Miles Lane

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16221
Subject		: 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
Submitter	: Miles Lane <miles.lane@gmail.com>
Date		: 2010-06-11 20:31 (129 days old)
Message-ID	: <AANLkTim0jVRyqkwlGOcrg_XTvUQwcBYfWJX-aRzkkrLG@mail.gmail.com>
References	: http://marc.info/?l=linux-kernel&m=127628828119623&w=2



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

* [Bug #16265] Why is kslowd accumulating so much CPU time?
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
  2010-10-17 20:53 ` [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16380] Loop devices act strangely in 2.6.35 Rafael J. Wysocki
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Chris Wilson, Dave Airlie, Theodore Ts'o

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16265
Subject		: Why is kslowd accumulating so much CPU time?
Submitter	: Theodore Ts'o <tytso@mit.edu>
Date		: 2010-06-09 18:36 (131 days old)
First-Bad-Commit: http://git.kernel.org/linus/fbf81762e385d3d45acad057b654d56972acf58c
Message-ID	: <E1OMQ88-0002a1-Gb@closure.thunk.org>
References	: http://marc.info/?l=linux-kernel&m=127610857819033&w=4
		  http://bugs.freedesktop.org/show_bug.cgi?id=29536
Handled-By	: Chris Wilson <chris@chris-wilson.co.uk>



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

* [Bug #16312] WARNING: at fs/fs-writeback.c:1127 __mark_inode_dirty
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (3 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16380] Loop devices act strangely in 2.6.35 Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16515] [bisected] Radeon rv280 can't boot on kernel 2.6.35 Rafael J. Wysocki
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Jan Kara,
	Zdenek Kabelac

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16312
Subject		: WARNING: at fs/fs-writeback.c:1127 __mark_inode_dirty
Submitter	: Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date		: 2010-06-28 9:40 (112 days old)
Message-ID	: <AANLkTin24fr5O4_q5Xbo9Y_NKkEmtcp6Hgmr9_4qXaFz@mail.gmail.com>
References	: http://marc.info/?l=linux-kernel&m=127771804806465&w=2
		  http://lkml.indiana.edu/hypermail/linux/kernel/1007.3/00884.html
Handled-By	: Jan Kara <jack@suse.cz>
		  Jan Kara <jack@suse.cz>
Patch		: https://bugzilla.kernel.org/attachment.cgi?id=30282



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

* [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
  2010-10-17 20:53 ` [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16265] Why is kslowd accumulating so much CPU time? Rafael J. Wysocki
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Bjorn Helgaas, Brian Bloniarz, Yinghai Lu

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16228
Subject		: BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine)
Submitter	: Brian Bloniarz <brian.bloniarz@gmail.com>
Date		: 2010-06-16 17:57 (124 days old)
Handled-By	: Bjorn Helgaas <bjorn.helgaas@hp.com>
Patch		: https://patchwork.kernel.org/patch/189182/
		  https://patchwork.kernel.org/patch/189232/
		  https://patchwork.kernel.org/patch/189242/
		  https://patchwork.kernel.org/patch/189252/



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

* [Bug #16380] Loop devices act strangely in 2.6.35
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (2 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16265] Why is kslowd accumulating so much CPU time? Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16312] WARNING: at fs/fs-writeback.c:1127 __mark_inode_dirty Rafael J. Wysocki
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Artem S. Tashkinov

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16380
Subject		: Loop devices act strangely in 2.6.35
Submitter	: Artem S. Tashkinov <t.artem@mailcity.com>
Date		: 2010-07-13 23:21 (97 days old)



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

* [Bug #16458] Bluetooth disabled after resume
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (7 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16488] [i915] Framebuffer ID error after suspend/hibernate leading to X crash Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16691] IPW5100: iwlagn broken with 2.6.34.x to 2.6.35.2 update Rafael J. Wysocki
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, AttilaN

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16458
Subject		: Bluetooth disabled after resume
Submitter	: AttilaN <attila123456@gmail.com>
Date		: 2010-07-25 09:33 (85 days old)



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

* [Bug #16515] [bisected] Radeon rv280 can't boot on kernel 2.6.35.
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (4 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16312] WARNING: at fs/fs-writeback.c:1127 __mark_inode_dirty Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16525] unexpected high load since 2.6.35 Rafael J. Wysocki
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Albert Gall,
	Alex Deucher, Dave Airlie, Jerome Glisse

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16515
Subject		: [bisected] Radeon rv280 can't boot on kernel 2.6.35.
Submitter	: Albert Gall <ss3vdr@gmail.com>
Date		: 2010-08-04 16:10 (75 days old)
First-Bad-Commit: http://git.kernel.org/linus/https://bugzilla.kernel.org/attachment.cgi?id=27350
Handled-By	: Alex Deucher <alexdeucher@gmail.com>



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

* [Bug #16525] unexpected high load since 2.6.35
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (5 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16515] [bisected] Radeon rv280 can't boot on kernel 2.6.35 Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16488] [i915] Framebuffer ID error after suspend/hibernate leading to X crash Rafael J. Wysocki
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	MadLoisae@gmx.net, Peter Zijlstra, 2010-04-22, "21:50:19"

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16525
Subject		: unexpected high load since 2.6.35
Submitter	: MadLoisae@gmx.net <MadLoisae@gmx.net>
Date		: 2010-08-02 20:53 (77 days old)
Message-ID	: <4C573041.1070103@gmx.net>
References	: http://marc.info/?l=linux-kernel&m=128078243726655&w=2
		  http://lkml.org/lkml/2010/9/14/105
		  http://lkml.org/lkml/2010/9/27/328



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

* [Bug #16488] [i915] Framebuffer ID error after suspend/hibernate leading to X crash
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (6 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16525] unexpected high load since 2.6.35 Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16458] Bluetooth disabled after resume Rafael J. Wysocki
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Linus Torvalds, Milan Bouchet-Valat

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16488
Subject		: [i915] Framebuffer ID error after suspend/hibernate leading to X crash
Submitter	: Milan Bouchet-Valat <nalimilan@club.fr>
Date		: 2010-08-01 08:55 (78 days old)



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

* [Bug #16562] 2.6.35: cpu_idle bug report / on i7 870 cpu (x86_64)
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (9 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16691] IPW5100: iwlagn broken with 2.6.34.x to 2.6.35.2 update Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16891] Kernel panic while loading intel module during boot Rafael J. Wysocki
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Justin Piszcz

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16562
Subject		: 2.6.35: cpu_idle bug report / on i7 870 cpu (x86_64)
Submitter	: Justin Piszcz <jpiszcz@lucidpixels.com>
Date		: 2010-08-06 22:09 (73 days old)
Message-ID	: <alpine.DEB.2.00.1008061800530.5241@p34.internal.lan>
References	: http://marc.info/?l=linux-kernel&m=128113260904048&w=2



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

* [Bug #16691] IPW5100: iwlagn broken with 2.6.34.x to 2.6.35.2 update
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (8 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16458] Bluetooth disabled after resume Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16562] 2.6.35: cpu_idle bug report / on i7 870 cpu (x86_64) Rafael J. Wysocki
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Can Celasun

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16691
Subject		: IPW5100: iwlagn broken with 2.6.34.x to 2.6.35.2 update
Submitter	: Can Celasun <dcelasun@gmail.com>
Date		: 2010-08-21 08:28 (58 days old)
References	: http://www.spinics.net/lists/linux-wireless/msg57237.html



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

* [Bug #16549] 2.6.35: suspicious rcu_dereference_check() usage
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (11 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16891] Kernel panic while loading intel module during boot Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #17261] Freezes on bootup Rafael J. Wysocki
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Vladislav Bolkhovitin

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16549
Subject		: 2.6.35: suspicious rcu_dereference_check() usage
Submitter	: Vladislav Bolkhovitin <vst@vlnb.net>
Date		: 2010-08-04 10:56 (75 days old)
Message-ID	: <4C594740.1090608@vlnb.net>
References	: http://marc.info/?l=linux-kernel&m=128091938215177&w=2



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

* [Bug #16891] Kernel panic while loading intel module during boot
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (10 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16562] 2.6.35: cpu_idle bug report / on i7 870 cpu (x86_64) Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #16549] 2.6.35: suspicious rcu_dereference_check() usage Rafael J. Wysocki
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Anisse Astier, Eric Anholt, Tim Gardner

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16891
Subject		: Kernel panic while loading intel module during boot
Submitter	: Anisse Astier <anisse@astier.eu>
Date		: 2010-08-24 13:19 (55 days old)
Handled-By	: Anisse Astier <anisse@astier.eu>
Patch		: https://bugzilla.kernel.org/attachment.cgi?id=32602



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

* [Bug #17261] Freezes on bootup
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (12 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #16549] 2.6.35: suspicious rcu_dereference_check() usage Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #17772] Unable to locate IOAPIC for GSI * Rafael J. Wysocki
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Dan Dart

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=17261
Subject		: Freezes on bootup
Submitter	: Dan Dart <dandart@googlemail.com>
Date		: 2010-08-29 09:00 (50 days old)



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

* [Bug #17772] Unable to locate IOAPIC for GSI *
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (13 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #17261] Freezes on bootup Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #18522] cdrom drive doesn't detect removal Rafael J. Wysocki
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Eric W. Biederman, zersaa

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=17772
Subject		: Unable to locate IOAPIC for GSI *
Submitter	: zersaa <zersaa@gmail.com>
Date		: 2010-09-04 21:28 (44 days old)
Handled-By	: Eric W. Biederman <ebiederm@xmission.com>
Patch		: https://patchwork.kernel.org/patch/104501/



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

* [Bug #17812] Kernel completely frozen when memory is full
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (15 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #18522] cdrom drive doesn't detect removal Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550 Rafael J. Wysocki
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Mickey86

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=17812
Subject		: Kernel completely frozen when memory is full
Submitter	: Mickey86 <mikael.cordon@gmail.com>
Date		: 2010-09-05 13:09 (43 days old)



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

* [Bug #18522] cdrom drive doesn't detect removal
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (14 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #17772] Unable to locate IOAPIC for GSI * Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-17 20:55 ` [Bug #17812] Kernel completely frozen when memory is full Rafael J. Wysocki
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Jens Axboe,
	Maxim Levitsky, Tejun Heo

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=18522
Subject		: cdrom drive doesn't detect removal
Submitter	: Maxim Levitsky <maximlevitsky@gmail.com>
Date		: 2010-09-12 9:49 (36 days old)
First-Bad-Commit: http://git.kernel.org/linus/6b4517a7913a09d3259bb1d21c9cb300f12294bd
Message-ID	: <1284284969.2928.18.camel@maxim-laptop>
References	: http://marc.info/?l=linux-kernel&m=128428499013930&w=2



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

* [Bug #19302] PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup.
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (17 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550 Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-19 15:59 ` [linux-pm] 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Alan Stern
  19 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, O01eg

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=19302
Subject		: PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup.
Submitter	: O01eg <O01eg@yandex.ru>
Date		: 2010-09-26 19:50 (22 days old)
Message-ID	: <op.vjnn1up1yohvy1@localhost>
References	: http://marc.info/?l=linux-kernel&m=128553111709569&w=2



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

* [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (16 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #17812] Kernel completely frozen when memory is full Rafael J. Wysocki
@ 2010-10-17 20:55 ` Rafael J. Wysocki
  2010-10-18 21:00   ` Marc Aurele La France
  2010-10-17 20:55 ` [Bug #19302] PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup Rafael J. Wysocki
  2010-10-19 15:59 ` [linux-pm] 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Alan Stern
  19 siblings, 1 reply; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-17 20:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Marc Aurele La France

This message has been generated automatically as a part of a report
of regressions introduced between 2.6.34 and 2.6.35.

The following bug entry is on the current list of known regressions
introduced between 2.6.34 and 2.6.35.  Please verify if it still should
be listed and let the tracking team know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=20002
Subject		: x86_64 2.6.35.* kernels and Intel Xeon X5550
Submitter	: Marc Aurele La France <tsi@ualberta.ca>
Date		: 2010-10-07 17:17 (11 days old)
Message-ID	: <alpine.WNT.2.00.1010071055420.1672@cluij.ucs.ualberta.ca>
References	: http://marc.info/?l=linux-kernel&m=128647187628706&w=2



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

* Re: [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550
  2010-10-17 20:55 ` [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550 Rafael J. Wysocki
@ 2010-10-18 21:00   ` Marc Aurele La France
  2010-10-18 21:33     ` Rafael J. Wysocki
  0 siblings, 1 reply; 41+ messages in thread
From: Marc Aurele La France @ 2010-10-18 21:00 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, len.brown

On Sun, 17 Oct 2010, Rafael J. Wysocki wrote:

> This message has been generated automatically as a part of a report
> of regressions introduced between 2.6.34 and 2.6.35.

> The following bug entry is on the current list of known regressions
> introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> be listed and let the tracking team know (either way).

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=20002
> Subject		: x86_64 2.6.35.* kernels and Intel Xeon X5550
> Submitter	: Marc Aurele La France <tsi@ualberta.ca>
> Date		: 2010-10-07 17:17 (11 days old)
> Message-ID	: <alpine.WNT.2.00.1010071055420.1672@cluij.ucs.ualberta.ca>
> References	: http://marc.info/?l=linux-kernel&m=128647187628706&w=2

Please delete this report, as it has been cloned as 20722, in an attempt 
to remove the regression tag, as I cannot do so myself.  Obviously, a lot 
of damage/lobotomies have been done to this BZ implementation compared to 
the one I know.

Marc.

+----------------------------------+----------------------------------+
|  Marc Aurele La France           |  work:   1-780-492-9310          |
|  Academic Information and        |  fax:    1-780-492-1729          |
|    Communications Technologies   |  email:  tsi@ualberta.ca         |
|  352 General Services Building   +----------------------------------+
|  University of Alberta           |                                  |
|  Edmonton, Alberta               |    Standard disclaimers apply    |
|  T6G 2H1                         |                                  |
|  CANADA                          |                                  |
+----------------------------------+----------------------------------+

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

* Re: [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550
  2010-10-18 21:00   ` Marc Aurele La France
@ 2010-10-18 21:33     ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-18 21:33 UTC (permalink / raw)
  To: Marc Aurele La France
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, len.brown

On Monday, October 18, 2010, Marc Aurele La France wrote:
> On Sun, 17 Oct 2010, Rafael J. Wysocki wrote:
> 
> > This message has been generated automatically as a part of a report
> > of regressions introduced between 2.6.34 and 2.6.35.
> 
> > The following bug entry is on the current list of known regressions
> > introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> > be listed and let the tracking team know (either way).
> 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=20002
> > Subject		: x86_64 2.6.35.* kernels and Intel Xeon X5550
> > Submitter	: Marc Aurele La France <tsi@ualberta.ca>
> > Date		: 2010-10-07 17:17 (11 days old)
> > Message-ID	: <alpine.WNT.2.00.1010071055420.1672@cluij.ucs.ualberta.ca>
> > References	: http://marc.info/?l=linux-kernel&m=128647187628706&w=2
> 
> Please delete this report, as it has been cloned as 20722, in an attempt 
> to remove the regression tag, as I cannot do so myself.  Obviously, a lot 
> of damage/lobotomies have been done to this BZ implementation compared to 
> the one I know.

Thanks, dropped.

Rafael

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

* Re: [linux-pm] 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35
  2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
                   ` (18 preceding siblings ...)
  2010-10-17 20:55 ` [Bug #19302] PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup Rafael J. Wysocki
@ 2010-10-19 15:59 ` Alan Stern
  2010-10-19 20:28   ` Rafael J. Wysocki
  19 siblings, 1 reply; 41+ messages in thread
From: Alan Stern @ 2010-10-19 15:59 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Florian Mickler, Kernel Testers List,
	Maciej Rutecki, O01eg

On Sun, 17 Oct 2010, Rafael J. Wysocki wrote:

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=19302
> Subject		: PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup.
> Submitter	: O01eg <O01eg@yandex.ru>
> Date		: 2010-09-26 19:50 (22 days old)
> Message-ID	: <op.vjnn1up1yohvy1@localhost>
> References	: http://marc.info/?l=linux-kernel&m=128553111709569&w=2

This does not appear to be a regression.  The bug report states that
the problem occurs in 2.6.34 and 2.6.36-rc5 and that no other kernels
were tested.

Alan Stern


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

* Re: [linux-pm] 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35
  2010-10-19 15:59 ` [linux-pm] 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Alan Stern
@ 2010-10-19 20:28   ` Rafael J. Wysocki
  0 siblings, 0 replies; 41+ messages in thread
From: Rafael J. Wysocki @ 2010-10-19 20:28 UTC (permalink / raw)
  To: Alan Stern
  Cc: Linux Kernel Mailing List, Florian Mickler, Kernel Testers List,
	Maciej Rutecki, O01eg

On Tuesday, October 19, 2010, Alan Stern wrote:
> On Sun, 17 Oct 2010, Rafael J. Wysocki wrote:
> 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=19302
> > Subject		: PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup.
> > Submitter	: O01eg <O01eg@yandex.ru>
> > Date		: 2010-09-26 19:50 (22 days old)
> > Message-ID	: <op.vjnn1up1yohvy1@localhost>
> > References	: http://marc.info/?l=linux-kernel&m=128553111709569&w=2
> 
> This does not appear to be a regression.  The bug report states that
> the problem occurs in 2.6.34 and 2.6.36-rc5 and that no other kernels
> were tested.

OK, dropped.

Thanks,
Rafael

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

* Re: Fixed [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
  2010-10-17 20:53 ` [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id Rafael J. Wysocki
@ 2011-03-31  2:33   ` David Fries
  0 siblings, 0 replies; 41+ messages in thread
From: David Fries @ 2011-03-31  2:33 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: linux-kernel

On Sun, Oct 17, 2010 at 10:53:34PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of regressions introduced between 2.6.34 and 2.6.35.
> 
> The following bug entry is on the current list of known regressions
> introduced between 2.6.34 and 2.6.35.  Please verify if it still should
> be listed and let the tracking team know (either way).
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=16221
> Subject		: 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
> Submitter	: Miles Lane <miles.lane@gmail.com>
> Date		: 2010-06-11 20:31 (129 days old)
> Message-ID	: <AANLkTim0jVRyqkwlGOcrg_XTvUQwcBYfWJX-aRzkkrLG@mail.gmail.com>
> References	: http://marc.info/?l=linux-kernel&m=127628828119623&w=2

The patch to address this bug has been released in 2.6.38.  Can
you flag this report as closed and fixed?

commit 3ce05168907c9b1358492a73badb0ff1603fb81d
Author: David Fries <david@fries.net>  2010-12-12 12:39:22
Committer: Dave Airlie <airlied@redhat.com>  2010-12-20 21:00:04
Precedes: v2.6.38-rc1

-- 
David Fries <david@fries.net>    PGP pub CB1EE8F0
http://fries.net/~david/

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

end of thread, other threads:[~2011-03-31  2:34 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-17 20:53 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
2010-10-17 20:53 ` [Bug #16221] 2.6.35-rc2-git5 -- [drm:drm_mode_getfb] *ERROR* invalid framebuffer id Rafael J. Wysocki
2011-03-31  2:33   ` Fixed " David Fries
2010-10-17 20:55 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16265] Why is kslowd accumulating so much CPU time? Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16380] Loop devices act strangely in 2.6.35 Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16312] WARNING: at fs/fs-writeback.c:1127 __mark_inode_dirty Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16515] [bisected] Radeon rv280 can't boot on kernel 2.6.35 Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16525] unexpected high load since 2.6.35 Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16488] [i915] Framebuffer ID error after suspend/hibernate leading to X crash Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16458] Bluetooth disabled after resume Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16691] IPW5100: iwlagn broken with 2.6.34.x to 2.6.35.2 update Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16562] 2.6.35: cpu_idle bug report / on i7 870 cpu (x86_64) Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16891] Kernel panic while loading intel module during boot Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #16549] 2.6.35: suspicious rcu_dereference_check() usage Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #17261] Freezes on bootup Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #17772] Unable to locate IOAPIC for GSI * Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #18522] cdrom drive doesn't detect removal Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #17812] Kernel completely frozen when memory is full Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #20002] x86_64 2.6.35.* kernels and Intel Xeon X5550 Rafael J. Wysocki
2010-10-18 21:00   ` Marc Aurele La France
2010-10-18 21:33     ` Rafael J. Wysocki
2010-10-17 20:55 ` [Bug #19302] PROBLEM: kernel crash on USB-modem (Huawei E1750) hangup Rafael J. Wysocki
2010-10-19 15:59 ` [linux-pm] 2.6.36-rc8-git3: Reported regressions 2.6.34 -> 2.6.35 Alan Stern
2010-10-19 20:28   ` Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2010-10-10 19:10 2.6.36-rc7-git2: " Rafael J. Wysocki
2010-10-10 19:18 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-10-03 21:36 2.6.36-rc6-git2: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
2010-10-03 21:53 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-09-26 20:29 2.6.36-rc5-git7: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
2010-09-26 20:33 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-09-27 15:45   ` Bjorn Helgaas
2010-09-27 19:40     ` Rafael J. Wysocki
2010-09-20 19:54 2.6.36-rc4-git5: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
2010-09-20 19:57 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-09-20 20:44   ` Bjorn Helgaas
2010-09-20 21:07     ` Rafael J. Wysocki
2010-09-12 19:07 2.6.36-rc3-git5: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
2010-09-12 19:08 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-08-29 22:57 2.6.36-rc3: Reported regressions 2.6.34 -> 2.6.35 Rafael J. Wysocki
2010-08-29 23:13 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-08-01 13:46 2.6.35-rc6-git6: Reported regressions from 2.6.34 Rafael J. Wysocki
2010-08-01 13:52 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-08-02  0:27   ` Bjorn Helgaas
2010-07-23 11:42 2.6.35-rc6: Reported regressions from 2.6.34 Rafael J. Wysocki
2010-07-23 11:47 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-07-08 23:33 2.6.35-rc4-git3: Reported regressions from 2.6.34 Rafael J. Wysocki
2010-07-08 23:41 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
2010-06-20 22:11 2.6.35-rc3: Reported regressions from 2.6.34 Rafael J. Wysocki
2010-06-20 22:17 ` [Bug #16228] BUG/boot failure on Dell Precision T3500 (pci/ahci_stop_engine) Rafael J. Wysocki
     [not found] <bug-16228-13546@https.bugzilla.kernel.org/>
     [not found] ` <201006171637.o5HGbgnO009943@demeter.kernel.org>
2010-06-17 18:40   ` [Bug 16228] " Yinghai Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox