* [Bug #15505] No more b43 wireless interface since 2.6.34-rc1
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
@ 2010-05-09 21:13 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15589] 2.6.34-rc1: Badness at fs/proc/generic.c:316 Rafael J. Wysocki
` (26 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:13 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Christian Casteyde,
Jesse Barnes, 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.33. 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=15505
Subject : No more b43 wireless interface since 2.6.34-rc1
Submitter : Christian Casteyde <casteyde.christian-GANU6spQydw@public.gmane.org>
Date : 2010-03-10 06:59 (61 days old)
Handled-By : Yinghai Lu <yinghai-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Patch : https://bugzilla.kernel.org/show_bug.cgi?id=15505#c11
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15589] 2.6.34-rc1: Badness at fs/proc/generic.c:316
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
2010-05-09 21:13 ` [Bug #15505] No more b43 wireless interface since 2.6.34-rc1 Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 22:27 ` Christian Kujau
2010-05-09 21:17 ` [Bug #15590] 2.6.34-rc1: regression: ^Z no longer stops sound Rafael J. Wysocki
` (25 subsequent siblings)
27 siblings, 1 reply; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Christian Kujau
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.33. 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=15589
Subject : 2.6.34-rc1: Badness at fs/proc/generic.c:316
Submitter : Christian Kujau <lists-AanptEQQ3TL9uQeqpI+JUg@public.gmane.org>
Date : 2010-03-13 23:53 (58 days old)
Message-ID : <<alpine.DEB.2.01.1003131544340.5493-uKsf7x9sgtqQ/Pez2Lbyp4QuADTiUCJX@public.gmane.org>>
References : http://marc.info/?l=linux-kernel&m=126852442903680&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* Re: [Bug #15589] 2.6.34-rc1: Badness at fs/proc/generic.c:316
2010-05-09 21:17 ` [Bug #15589] 2.6.34-rc1: Badness at fs/proc/generic.c:316 Rafael J. Wysocki
@ 2010-05-09 22:27 ` Christian Kujau
[not found] ` <alpine.DEB.2.01.1005091519130.3067-uKsf7x9sgtqQ/Pez2Lbyp4QuADTiUCJX@public.gmane.org>
0 siblings, 1 reply; 38+ messages in thread
From: Christian Kujau @ 2010-05-09 22:27 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
adobriyan-Re5JQEeQqe8AvxtiuMwx3w, schwab-Td1EMuHUCqxL1ZNQvxDV9g,
michael-Gsx/Oe8HsFggBc27wqDAHg,
linuxppc-dev-mnsaURCQ41sdnm+yROfE0A
On Sun, 9 May 2010 at 23:17, Rafael J. Wysocki wrote:
> Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=15589
> Subject : 2.6.34-rc1: Badness at fs/proc/generic.c:316
> Submitter : Christian Kujau <lists-AanptEQQ3TL9uQeqpI+JUg@public.gmane.org>
> Date : 2010-03-13 23:53 (58 days old)
> Message-ID : <<alpine.DEB.2.01.1003131544340.5493-uKsf7x9sgtqQ/Pez2Lbyp4QuADTiUCJX@public.gmane.org>>
> References : http://marc.info/?l=linux-kernel&m=126852442903680&w=2
The bug is still present in -rc6, but Michael Ellerman has a patch[0]
which made the warning go away.
@Michael: will you post your patch with a Sign-Off, so that it can be
pushed into mainline?
Thanks,
Christian.
[0] http://patchwork.ozlabs.org/patch/50557/
diff --git a/fs/proc/proc_devtree.c b/fs/proc/proc_devtree.c
index ce94801..019581d 100644
--- a/fs/proc/proc_devtree.c
+++ b/fs/proc/proc_devtree.c
@@ -176,6 +176,24 @@ retry:
return fixed_name;
}
+static const char *unslash_name(const char *name)
+{
+ char *p, *fixed_name;
+
+ fixed_name = kstrdup(name, GFP_KERNEL);
+ if (!fixed_name) {
+ printk(KERN_ERR "device-tree: Out of memory trying to unslash "
+ "name \"%s\"\n", name);
+ return name;
+ }
+
+ p = fixed_name;
+ while ((p = strstr(p, "/")))
+ *p++ = '_';
+
+ return fixed_name;
+}
+
/*
* Process a node, adding entries for its children and its properties.
*/
@@ -212,6 +230,9 @@ void proc_device_tree_add_node(struct device_node *np,
if (duplicate_name(de, p))
p = fixup_name(np, de, p);
+ if (strstr(p, "/"))
+ p = unslash_name(p);
+
ent = __proc_device_tree_add_prop(de, pp, p);
if (ent == NULL)
break;
--
BOFH excuse #188:
..disk or the processor is on fire.
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [Bug #15590] 2.6.34-rc1: regression: ^Z no longer stops sound
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
2010-05-09 21:13 ` [Bug #15505] No more b43 wireless interface since 2.6.34-rc1 Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15589] 2.6.34-rc1: Badness at fs/proc/generic.c:316 Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15601] [BUG] SLOB breaks Crypto Rafael J. Wysocki
` (24 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Pavel Machek
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.33. 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=15590
Subject : 2.6.34-rc1: regression: ^Z no longer stops sound
Submitter : Pavel Machek <pavel@ucw.cz>
Date : 2010-03-14 7:58 (57 days old)
Message-ID : <<20100314075831.GA13457@elf.ucw.cz>>
References : http://marc.info/?l=linux-kernel&m=126855353122623&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15601] [BUG] SLOB breaks Crypto
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (2 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15590] 2.6.34-rc1: regression: ^Z no longer stops sound Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-22 10:22 ` Pekka Enberg
2010-05-09 21:17 ` [Bug #15610] fsck leads to swapper - BUG: unable to handle kernel NULL pointer dereference & panic Rafael J. Wysocki
` (23 subsequent siblings)
27 siblings, 1 reply; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki,
"michael-dev-1SGGS//iJ+Y38rf8aCqVIw
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.33. 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=15601
Subject : [BUG] SLOB breaks Crypto
Submitter : michael-dev-1SGGS//iJ+Y38rf8aCqVIw@public.gmane.org
Date : 2010-03-15 13:39 (56 days old)
Message-ID : <4B9E38AF.70309-1SGGS//iJ+Y38rf8aCqVIw@public.gmane.org>
References : http://marc.info/?l=linux-kernel&m=126866044724539&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* Re: [Bug #15601] [BUG] SLOB breaks Crypto
2010-05-09 21:17 ` [Bug #15601] [BUG] SLOB breaks Crypto Rafael J. Wysocki
@ 2010-05-22 10:22 ` Pekka Enberg
[not found] ` <AANLkTikXPfDVhwsUMr5yDpsvgk06QrMFXpG22k8T0ydi-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 38+ messages in thread
From: Pekka Enberg @ 2010-05-22 10:22 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
"michael-dev-1SGGS//iJ+Y38rf8aCqVIw, David Miller,
Matt Mackall, Herbert Xu
On Mon, May 10, 2010 at 12:17 AM, Rafael J. Wysocki <rjw-KKrjLPT3xs0@public.gmane.org> 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.33. 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=15601
> Subject : [BUG] SLOB breaks Crypto
> Submitter : michael-dev-1SGGS//iJ+Y38rf8aCqVIw@public.gmane.org
> Date : 2010-03-15 13:39 (56 days old)
> Message-ID : <4B9E38AF.70309-1SGGS//iJ+Y38rf8aCqVIw@public.gmane.org>
> References : http://marc.info/?l=linux-kernel&m=126866044724539&w=2
Herbert, David, Matt, this bug should be fixed by the following two
commits, right?
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=18eb8ea6ee4cc9ed39b45f95b734f523bcfb586b
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=273fca0ecad9305247043815e185d1bfd04047d4
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15610] fsck leads to swapper - BUG: unable to handle kernel NULL pointer dereference & panic
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (3 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15601] [BUG] SLOB breaks Crypto Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15669] INFO: suspicious rcu_dereference_check() Rafael J. Wysocki
` (22 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Ozgur Yuksel
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.33. 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=15610
Subject : fsck leads to swapper - BUG: unable to handle kernel NULL pointer dereference & panic
Submitter : Ozgur Yuksel <ozgur.yuksel@oracle.com>
Date : 2010-03-22 15:59 (49 days old)
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15669] INFO: suspicious rcu_dereference_check()
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (4 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15610] fsck leads to swapper - BUG: unable to handle kernel NULL pointer dereference & panic Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15659] [Regresion] [2.6.34-rc1] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung Rafael J. Wysocki
` (21 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Zdenek Kabelac
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.33. 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=15669
Subject : INFO: suspicious rcu_dereference_check()
Submitter : Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date : 2010-03-08 1:26 (63 days old)
Message-ID : <c4e36d111003250348q678eb2e6w4f3e8133e7fd6e58@mail.gmail.com>
References : http://marc.info/?l=linux-kernel&m=126801163107713&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15659] [Regresion] [2.6.34-rc1] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (5 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15669] INFO: suspicious rcu_dereference_check() Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15671] intel graphic card hanging (Hangcheck timer elapsed... GPU hung) Rafael J. Wysocki
` (20 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Maciej Rutecki
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.33. 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=15659
Subject : [Regresion] [2.6.34-rc1] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
Submitter : Maciej Rutecki <maciej.rutecki@gmail.com>
Date : 2010-03-25 20:04 (46 days old)
Message-ID : <<201003252104.24965.maciej.rutecki@gmail.com>>
References : http://marc.info/?l=linux-kernel&m=126954749618319&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15671] intel graphic card hanging (Hangcheck timer elapsed... GPU hung)
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (6 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15659] [Regresion] [2.6.34-rc1] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15664] Graphics hang and kernel backtrace when starting Azureus with Compiz enabled Rafael J. Wysocki
` (19 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Norbert Preining
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.33. 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=15671
Subject : intel graphic card hanging (Hangcheck timer elapsed... GPU hung)
Submitter : Norbert Preining <preining@logic.at>
Date : 2010-03-27 16:11 (44 days old)
Message-ID : <20100327161104.GA12043@gamma.logic.tuwien.ac.at>
References : http://marc.info/?l=linux-kernel&m=126970883105262&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15664] Graphics hang and kernel backtrace when starting Azureus with Compiz enabled
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (7 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15671] intel graphic card hanging (Hangcheck timer elapsed... GPU hung) Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15713] hackbench regression due to commit 9dfc6e68bfe6e Rafael J. Wysocki
` (18 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Alex Villacis Lasso
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.33. 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=15664
Subject : Graphics hang and kernel backtrace when starting Azureus with Compiz enabled
Submitter : Alex Villacis Lasso <avillaci-x0m+Mc+nT7uljOmnV8AmnkElSqmLX1BE@public.gmane.org>
Date : 2010-04-01 01:09 (39 days old)
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15713] hackbench regression due to commit 9dfc6e68bfe6e
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (8 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15664] Graphics hang and kernel backtrace when starting Azureus with Compiz enabled Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15712] [regression] 2.6.34-rc1 to -rc3 on zaurus: no longer boots Rafael J. Wysocki
` (17 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Alex Shi, Christoph Lameter,
Pekka Enberg
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.33. 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=15713
Subject : hackbench regression due to commit 9dfc6e68bfe6e
Submitter : Alex Shi <alex.shi@intel.com>
Date : 2010-03-25 8:40 (46 days old)
First-Bad-Commit: http://git.kernel.org/linus/9dfc6e68bfe6ee452efb1a4e9ca26a9007f2b864
Message-ID : <1269506457.4513.141.camel@alexs-hp.sh.intel.com>
References : http://marc.info/?l=linux-kernel&m=126950632920682&w=4
Handled-By : Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg <penberg@cs.helsinki.fi>
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15712] [regression] 2.6.34-rc1 to -rc3 on zaurus: no longer boots
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (9 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15713] hackbench regression due to commit 9dfc6e68bfe6e Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15704] [r8169] WARNING: at net/sched/sch_generic.c Rafael J. Wysocki
` (16 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Pavel Machek
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.33. 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=15712
Subject : [regression] 2.6.34-rc1 to -rc3 on zaurus: no longer boots
Submitter : Pavel Machek <pavel@ucw.cz>
Date : 2010-04-01 6:06 (39 days old)
Message-ID : <20100401060624.GA1329@ucw.cz>
References : http://marc.info/?l=linux-kernel&m=127010200817402&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15704] [r8169] WARNING: at net/sched/sch_generic.c
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (10 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15712] [regression] 2.6.34-rc1 to -rc3 on zaurus: no longer boots Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-12 13:47 ` Sergey Senozhatsky
2010-05-09 21:17 ` [Bug #15673] 2.6.34-rc2: "ima_dec_counts: open/free imbalance"? Rafael J. Wysocki
` (15 subsequent siblings)
27 siblings, 1 reply; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Sergey Senozhatsky
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.33. 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=15704
Subject : [r8169] WARNING: at net/sched/sch_generic.c
Submitter : Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Date : 2010-03-31 10:21 (40 days old)
Message-ID : <<<20100331102142.GA3294@swordfish.minsk.epam.com>>>
References : http://marc.info/?l=linux-kernel&m=127003090406108&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* Re: [Bug #15704] [r8169] WARNING: at net/sched/sch_generic.c
2010-05-09 21:17 ` [Bug #15704] [r8169] WARNING: at net/sched/sch_generic.c Rafael J. Wysocki
@ 2010-05-12 13:47 ` Sergey Senozhatsky
0 siblings, 0 replies; 38+ messages in thread
From: Sergey Senozhatsky @ 2010-05-12 13:47 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
Sergey Senozhatsky
[-- Attachment #1: Type: text/plain, Size: 3393 bytes --]
On (05/09/10 23:17), Rafael J. Wysocki wrote:
> Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=15704
> Subject : [r8169] WARNING: at net/sched/sch_generic.c
> Submitter : Sergey Senozhatsky <sergey.senozhatsky-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2010-03-31 10:21 (40 days old)
> Message-ID : <<<20100331102142.GA3294-dY8u8AhHFaWtd10JCjopabkcH5ONE+aC@public.gmane.org>>>
> References : http://marc.info/?l=linux-kernel&m=127003090406108&w=2
>
>
kernel: [13898.863507] pktgen 2.72: Packet Generator for packet performance testing.
kernel: [13928.998629] ------------[ cut here ]------------
kernel: [13928.998641] WARNING: at net/sched/sch_generic.c:256 dev_watchdog+0xc1/0x129()
kernel: [13928.998645] Hardware name: F3JC
kernel: [13928.998648] NETDEV WATCHDOG: eth0 (r8169): transmit queue 0 timed out
kernel: [13928.998651] Modules linked in: pktgen ppp_async crc_ccitt ipv6 ppp_generic slhc snd_hda_codec_si3054 snd_hda_codec_realtek snd_hwdep snd_hda_intel asus_laptop sparse_keymap snd_hda_codec sdhci_pci sdhci snd_pcm snd_timer
mmc_core led_class snd_page_alloc psmouse i2c_i801 snd soundcore sg rng_core r8169 evdev serio_raw mii usbhid hid uhci_hcd ehci_hcd sr_mod cdrom usbcore sd_mod ata_piix
kernel: [13928.998709] Pid: 6159, comm: kpktgend_0 Not tainted 2.6.34-rc7-dbg-git2 #116
kernel: [13928.998712] Call Trace:
kernel: [13928.998720] [<c102dd26>] warn_slowpath_common+0x65/0x7c
kernel: [13928.998726] [<c12612bd>] ? dev_watchdog+0xc1/0x129
kernel: [13928.998731] [<c102dd71>] warn_slowpath_fmt+0x24/0x27
kernel: [13928.998736] [<c12612bd>] dev_watchdog+0xc1/0x129
kernel: [13928.998743] [<c1040039>] ? cleanup_timers+0x31/0xcd
kernel: [13928.998749] [<c1036657>] ? run_timer_softirq+0x136/0x203
kernel: [13928.998754] [<c10366b0>] run_timer_softirq+0x18f/0x203
kernel: [13928.998759] [<c1036657>] ? run_timer_softirq+0x136/0x203
kernel: [13928.998765] [<c12611fc>] ? dev_watchdog+0x0/0x129
kernel: [13928.998771] [<c10325e6>] __do_softirq+0x88/0x10c
kernel: [13928.998778] [<f80a3793>] ? pktgen_thread_worker+0xd9/0x5e8 [pktgen]
kernel: [13928.998784] [<c1032699>] do_softirq+0x2f/0x47
kernel: [13928.998789] [<c1032956>] irq_exit+0x38/0x75
kernel: [13928.998795] [<c1014691>] smp_apic_timer_interrupt+0x5f/0x6d
kernel: [13928.998801] [<c12bd52a>] apic_timer_interrupt+0x36/0x3c
kernel: [13928.998807] [<f80a3793>] ? pktgen_thread_worker+0xd9/0x5e8 [pktgen]
kernel: [13928.998813] [<c104007b>] ? cleanup_timers+0x73/0xcd
kernel: [13928.998818] [<c10400d8>] ? process_cpu_nsleep_restart+0x3/0xa
kernel: [13928.998825] [<c10504f2>] ? lock_release+0x19d/0x1a4
kernel: [13928.998832] [<c12bcaa1>] _raw_spin_unlock+0x16/0x3f
kernel: [13928.998838] [<f80a3793>] pktgen_thread_worker+0xd9/0x5e8 [pktgen]
kernel: [13928.998844] [<c103f5be>] ? autoremove_wake_function+0x0/0x2f
kernel: [13928.998849] [<c103f5be>] ? autoremove_wake_function+0x0/0x2f
kernel: [13928.998855] [<f80a36ba>] ? pktgen_thread_worker+0x0/0x5e8 [pktgen]
kernel: [13928.998860] [<c103f2e2>] kthread+0x6a/0x6f
kernel: [13928.998866] [<c103f278>] ? kthread+0x0/0x6f
kernel: [13928.998872] [<c1002dc2>] kernel_thread_helper+0x6/0x10
kernel: [13928.998876] ---[ end trace 7e230fb0e7444e5e ]---
kernel: [13929.012534] r8169 0000:02:00.0: eth0: link up
Sergey
[-- Attachment #2: Type: application/pgp-signature, Size: 316 bytes --]
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15673] 2.6.34-rc2: "ima_dec_counts: open/free imbalance"?
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (11 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15704] [r8169] WARNING: at net/sched/sch_generic.c Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-10 16:18 ` Thomas Meyer
2010-05-09 21:17 ` [Bug #15768] Incorrectly calculated free blocks result in ENOSPC from writepage Rafael J. Wysocki
` (14 subsequent siblings)
27 siblings, 1 reply; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Thomas Meyer
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.33. 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=15673
Subject : 2.6.34-rc2: "ima_dec_counts: open/free imbalance"?
Submitter : Thomas Meyer <thomas@m3y3r.de>
Date : 2010-03-28 11:31 (43 days old)
Message-ID : <1269775909.5301.4.camel@localhost.localdomain>
References : http://marc.info/?l=linux-kernel&m=126977593326800&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* Re: [Bug #15673] 2.6.34-rc2: "ima_dec_counts: open/free imbalance"?
2010-05-09 21:17 ` [Bug #15673] 2.6.34-rc2: "ima_dec_counts: open/free imbalance"? Rafael J. Wysocki
@ 2010-05-10 16:18 ` Thomas Meyer
0 siblings, 0 replies; 38+ messages in thread
From: Thomas Meyer @ 2010-05-10 16:18 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki
Am Sonntag, den 09.05.2010, 23:17 +0200 schrieb Rafael J. Wysocki:
> 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.33. 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=15673
> Subject : 2.6.34-rc2: "ima_dec_counts: open/free imbalance"?
> Submitter : Thomas Meyer <thomas@m3y3r.de>
> Date : 2010-03-28 11:31 (43 days old)
> Message-ID : <1269775909.5301.4.camel@localhost.localdomain>
> References : http://marc.info/?l=linux-kernel&m=126977593326800&w=2
>
>
I still see this message in 2.6.34-rc7:
[ 252.947229] sd 0:0:0:0: [sda] Stopping disk
[ 252.998073] atl1c 0000:01:00.0: PCI INT A disabled
[ 252.998353] uhci_hcd 0000:00:1d.2: PCI INT D disabled
[ 252.998364] uhci_hcd 0000:00:1d.1: PCI INT B disabled
[ 252.998374] uhci_hcd 0000:00:1d.0: PCI INT A disabled
[ 252.998436] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 252.998481] ACPI handle has no context!
[ 252.998505] ehci_hcd 0000:00:1a.7: PCI INT D disabled
[ 252.998521] uhci_hcd 0000:00:1a.0: PCI INT A disabled
[ 252.998582] IMA: unmeasured files on fsmagic: 1021994
[ 252.998585] ima_dec_counts: open/free imbalance (r:0 w:-1 o:-1)
[ 252.998590] Pid: 2509, comm: async/10 Tainted: G W 2.6.34-rc7 #102
[ 252.998592] Call Trace:
[ 252.998601] [<c08860a5>] ? printk+0x1d/0x20
[ 252.998608] [<c05f98af>] ima_file_free+0x16f/0x210
[ 252.998615] [<c04d7722>] __fput+0xf2/0x1f0
[ 252.998619] [<c04d783d>] fput+0x1d/0x30
[ 252.998631] [<c06cad0f>] drm_gem_object_free_common+0x1f/0x40
[ 252.998636] [<c06cadb0>] ? drm_gem_object_free+0x0/0x40
[ 252.998640] [<c06cade1>] drm_gem_object_free+0x31/0x40
[ 252.998645] [<c061d4dc>] kref_put+0x2c/0x60
[ 252.998650] [<c06e7288>] i915_gem_cleanup_ringbuffer+0x48/0x70
[ 252.998654] [<c06e89ec>] i915_gem_idle+0x9c/0x120
[ 252.998658] [<c06dbdad>] i915_drm_freeze+0x3d/0xa0
[ 252.998662] [<c06dbf6e>] i915_pm_suspend+0x2e/0x80
[ 252.998666] [<c08867ea>] ? wait_for_common+0x1a/0xf0
[ 252.998671] [<c0636569>] pci_pm_suspend+0x49/0x110
[ 252.998676] [<c0636520>] ? pci_pm_suspend+0x0/0x110
[ 252.998680] [<c0718ac1>] pm_op+0x181/0x1d0
[ 252.998685] [<c0711c24>] ? device_for_each_child+0x54/0x60
[ 252.998689] [<c071947f>] __device_suspend+0xbf/0x110
[ 252.998693] [<c07198c3>] async_suspend+0x23/0x60
[ 252.998697] [<c0450005>] async_thread+0xc5/0x210
[ 252.998701] [<c0886411>] ? schedule+0x1e1/0x450
[ 252.998706] [<c042bd50>] ? default_wake_function+0x0/0x20
[ 252.998709] [<c044ff40>] ? async_thread+0x0/0x210
[ 252.998714] [<c04493a4>] kthread+0x74/0x80
[ 252.998717] [<c0449330>] ? kthread+0x0/0x80
[ 252.998721] [<c040347e>] kernel_thread_helper+0x6/0x10
[ 253.003324] iint_free: writecount: -1
[ 253.003327] iint_free: opencount: -1
[ 253.003329] iint_free: writecount: -1
[ 253.003331] iint_free: opencount: -1
[ 253.010040] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[ 253.696666] PM: suspend of devices complete after 749.760 msecs
[ 253.723385] PM: late suspend of devices complete after 26.714 msecs
[ 253.723979] ACPI: Preparing to enter system sleep state S3
[ 253.723979] Back to C!
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15768] Incorrectly calculated free blocks result in ENOSPC from writepage
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (12 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15673] 2.6.34-rc2: "ima_dec_counts: open/free imbalance"? Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15717] bluetooth oops Rafael J. Wysocki
` (13 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Dmitry Monakhov
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.33. 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=15768
Subject : Incorrectly calculated free blocks result in ENOSPC from writepage
Submitter : Dmitry Monakhov <dmonakhov-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
Date : 2010-04-12 11:24 (28 days old)
Handled-By : Dmitry Monakhov <dmonakhov-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
Patch : http://patchwork.ozlabs.org/patch/49989/
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15717] bluetooth oops
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (13 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15768] Incorrectly calculated free blocks result in ENOSPC from writepage Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15729] BUG: physmap modprobe & rmmod Rafael J. Wysocki
` (12 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Marcel Holtmann,
Pavel Machek
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.33. 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=15717
Subject : bluetooth oops
Submitter : Pavel Machek <pavel@ucw.cz>
Date : 2010-03-14 20:14 (57 days old)
Message-ID : <20100314201434.GE22059@elf.ucw.cz>
References : http://marc.info/?l=linux-kernel&m=126859771528426&w=4
Handled-By : Marcel Holtmann <marcel@holtmann.org>
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15729] BUG: physmap modprobe & rmmod
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (14 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15717] bluetooth oops Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-10 16:23 ` H Hartley Sweeten
2010-05-09 21:17 ` [Bug #15788] external usb sound card doesn't work after resume Rafael J. Wysocki
` (11 subsequent siblings)
27 siblings, 1 reply; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Hartley Sweeten,
Randy Dunlap
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.33. 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=15729
Subject : BUG: physmap modprobe & rmmod
Submitter : Randy Dunlap <randy.dunlap@oracle.com>
Date : 2010-04-02 20:40 (38 days old)
Message-ID : <20100402134058.c4682716.randy.dunlap@oracle.com>
References : http://marc.info/?l=linux-kernel&m=127024096210230&w=2
Handled-By : Hartley Sweeten <hsweeten@visionengravers.com>
Patch : https://patchwork.kernel.org/patch/90497/
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15788] external usb sound card doesn't work after resume
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (15 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15729] BUG: physmap modprobe & rmmod Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15862] 2.6.34-rc4/5: iwlagn unusable until reload Rafael J. Wysocki
` (10 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, François Valenduc
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.33. 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=15788
Subject : external usb sound card doesn't work after resume
Submitter : François Valenduc <francois.valenduc-bmtTS95sd5BUM80lpFwj4w@public.gmane.org>
Date : 2010-04-15 10:16 (25 days old)
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15862] 2.6.34-rc4/5: iwlagn unusable until reload
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (16 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15788] external usb sound card doesn't work after resume Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15858] [2.6.34-rc5] bad page state copying to/from HFS+ filesystem Rafael J. Wysocki
` (9 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Nico Schottelius
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.33. 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=15862
Subject : 2.6.34-rc4/5: iwlagn unusable until reload
Submitter : Nico Schottelius <nico-linux-20100427@schottelius.org>
Date : 2010-04-27 7:49 (13 days old)
Message-ID : <20100427074934.GB3261@ikn.schottelius.org>
References : http://marc.info/?l=linux-kernel&m=127235784004839&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15858] [2.6.34-rc5] bad page state copying to/from HFS+ filesystem...
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (17 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15862] 2.6.34-rc4/5: iwlagn unusable until reload Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15805] reiserfs locking Rafael J. Wysocki
` (8 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Daniel J Blueman
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.33. 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=15858
Subject : [2.6.34-rc5] bad page state copying to/from HFS+ filesystem...
Submitter : Daniel J Blueman <daniel.blueman-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Date : 2010-04-25 21:14 (15 days old)
Message-ID : <v2k6278d2221004251414kbbcc41baw78b86120d81dce7d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
References : http://marc.info/?l=linux-kernel&m=127223008621881&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15805] reiserfs locking
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (18 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15858] [2.6.34-rc5] bad page state copying to/from HFS+ filesystem Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 22:10 ` Frederic Weisbecker
2010-05-09 21:17 ` [Bug #15909] open("a/",O_NOFOLLOW) fails with ELOOP if "a" is a symbolic link to a directory Rafael J. Wysocki
` (7 subsequent siblings)
27 siblings, 1 reply; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Alexander Beregalov
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.33. 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=15805
Subject : reiserfs locking
Submitter : Alexander Beregalov <a.beregalov@gmail.com>
Date : 2010-04-15 21:02 (25 days old)
Message-ID : <t2ka4423d671004151402n7b2dc425mdc9c6bb9640d63fb@mail.gmail.com>
References : http://marc.info/?l=linux-kernel&m=127136535323933&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* Re: [Bug #15805] reiserfs locking
2010-05-09 21:17 ` [Bug #15805] reiserfs locking Rafael J. Wysocki
@ 2010-05-09 22:10 ` Frederic Weisbecker
0 siblings, 0 replies; 38+ messages in thread
From: Frederic Weisbecker @ 2010-05-09 22:10 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
Alexander Beregalov
On Sun, May 09, 2010 at 11:17:36PM +0200, 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.33. 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=15805
> Subject : reiserfs locking
> Submitter : Alexander Beregalov <a.beregalov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2010-04-15 21:02 (25 days old)
> Message-ID : <t2ka4423d671004151402n7b2dc425mdc9c6bb9640d63fb-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
> References : http://marc.info/?l=linux-kernel&m=127136535323933&w=2
I'll do some tests and see if something caused this recently.
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15909] open("a/",O_NOFOLLOW) fails with ELOOP if "a" is a symbolic link to a directory.
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (19 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15805] reiserfs locking Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15880] Very bad regression from 2.6.33 as of 1600f9def Rafael J. Wysocki
` (6 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Marius Tolzmann,
OGAWA Hirofumi
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.33. 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=15909
Subject : open("a/",O_NOFOLLOW) fails with ELOOP if "a" is a symbolic link to a directory.
Submitter : Marius Tolzmann <tolzmann@molgen.mpg.de>
Date : 2010-05-05 13:01 (5 days old)
Handled-By : OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15880] Very bad regression from 2.6.33 as of 1600f9def
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (20 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15909] open("a/",O_NOFOLLOW) fails with ELOOP if "a" is a symbolic link to a directory Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15863] 2.6.34-rc5-git7 (plus all patches) -- another suspicious rcu_dereference_check() usage Rafael J. Wysocki
` (5 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Alex Elsayed
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.33. 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=15880
Subject : Very bad regression from 2.6.33 as of 1600f9def
Submitter : Alex Elsayed <eternaleye-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Date : 2010-04-29 2:28 (11 days old)
Message-ID : <loom.20100429T041908-663-eS7Uydv5nfjZ+VzJOa5vwg@public.gmane.org>
References : http://marc.info/?l=linux-kernel&m=127250825306178&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15863] 2.6.34-rc5-git7 (plus all patches) -- another suspicious rcu_dereference_check() usage.
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (21 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15880] Very bad regression from 2.6.33 as of 1600f9def Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15936] Suspicious rcu_dereference_check() usage detected during 2.6.34-rc6 boot on PPC64/p5 processor Rafael J. Wysocki
` (4 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: Kernel Testers List, Maciej Rutecki, Miles Lane
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.33. 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=15863
Subject : 2.6.34-rc5-git7 (plus all patches) -- another suspicious rcu_dereference_check() usage.
Submitter : Miles Lane <miles.lane-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Date : 2010-04-27 0:51 (13 days old)
Message-ID : <h2ya44ae5cd1004261751waa5cb65ei3d139cbcfa2cc5cf-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
References : http://marc.info/?l=linux-kernel&m=127232949104878&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15936] Suspicious rcu_dereference_check() usage detected during 2.6.34-rc6 boot on PPC64/p5 processor
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (22 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15863] 2.6.34-rc5-git7 (plus all patches) -- another suspicious rcu_dereference_check() usage Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15924] kacpid consumes ~100% CPU, system freezes randomly Rafael J. Wysocki
` (3 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Subrata Modak
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.33. 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=15936
Subject : Suspicious rcu_dereference_check() usage detected during 2.6.34-rc6 boot on PPC64/p5 processor
Submitter : Subrata Modak <subrata@linux.vnet.ibm.com>
Date : 2010-05-06 7:29 (4 days old)
Message-ID : <1273130279.4898.5.camel@subratamodak.linux.ibm.com>
References : http://marc.info/?l=linux-kernel&m=127313031922395&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15924] kacpid consumes ~100% CPU, system freezes randomly
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (23 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15936] Suspicious rcu_dereference_check() usage detected during 2.6.34-rc6 boot on PPC64/p5 processor Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15935] [BUG] btrfs: report a direct-IO bug Rafael J. Wysocki
` (2 subsequent siblings)
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Jaroslav Kameník
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.33. 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=15924
Subject : kacpid consumes ~100% CPU, system freezes randomly
Submitter : Jaroslav Kameník <jaroslav@kamenik.cz>
Date : 2010-05-06 21:12 (4 days old)
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15935] [BUG] btrfs: report a direct-IO bug
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (24 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15924] kacpid consumes ~100% CPU, system freezes randomly Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-09 21:17 ` [Bug #15951] commit 9630bdd9 changes behavior of the poweroff Rafael J. Wysocki
2010-05-10 16:07 ` 2.6.34-rc6-git6: Reported regressions from 2.6.33 Nick Bowler
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: Kernel Testers List, Maciej Rutecki, liubo
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.33. 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=15935
Subject : [BUG] btrfs: report a direct-IO bug
Submitter : liubo <liubo2009-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
Date : 2010-05-06 1:47 (4 days old)
Message-ID : <4BE21FC1.1010901-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
References : http://marc.info/?l=linux-kernel&m=127311036803487&w=2
^ permalink raw reply [flat|nested] 38+ messages in thread
* [Bug #15951] commit 9630bdd9 changes behavior of the poweroff
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (25 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15935] [BUG] btrfs: report a direct-IO bug Rafael J. Wysocki
@ 2010-05-09 21:17 ` Rafael J. Wysocki
2010-05-10 16:07 ` 2.6.34-rc6-git6: Reported regressions from 2.6.33 Nick Bowler
27 siblings, 0 replies; 38+ messages in thread
From: Rafael J. Wysocki @ 2010-05-09 21:17 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Kernel Testers List, Maciej Rutecki, Michal Hocko,
Rafael J. Wysocki, Tony Vroon
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.33. 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=15951
Subject : commit 9630bdd9 changes behavior of the poweroff
Submitter : Michal Hocko <mhocko@suse.cz>
Date : 2010-04-01 13:39 (39 days old)
Message-ID : <20100401133923.GA4104@tiehlicka.suse.cz>
References : http://marc.info/?l=linux-kernel&m=127012918316305&w=4
Handled-By : Rafael J. Wysocki <rjw@sisk.pl>
^ permalink raw reply [flat|nested] 38+ messages in thread
* Re: 2.6.34-rc6-git6: Reported regressions from 2.6.33
2010-05-09 21:13 2.6.34-rc6-git6: Reported regressions from 2.6.33 Rafael J. Wysocki
` (26 preceding siblings ...)
2010-05-09 21:17 ` [Bug #15951] commit 9630bdd9 changes behavior of the poweroff Rafael J. Wysocki
@ 2010-05-10 16:07 ` Nick Bowler
27 siblings, 0 replies; 38+ messages in thread
From: Nick Bowler @ 2010-05-10 16:07 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: DRI, Linux SCSI List, Network Development, Linux Wireless List,
Linux Kernel Mailing List, Linux ACPI, Andrew Morton,
Kernel Testers List, Linus Torvalds, Linux PM List,
Maciej Rutecki
On 23:13 Sun 09 May , Rafael J. Wysocki wrote:
> This message contains a list of some regressions from 2.6.33,
> 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 regressions from 2.6.33, 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.
Seems that
r600 CS checker rejects narrow FBO renderbuffers
https://bugs.freedesktop.org/show_bug.cgi?id=27609
never got added to the list. It is still an issue as of 2.6.34-rc7.
--
Nick Bowler, Elliptic Technologies (http://www.elliptictech.com/)
^ permalink raw reply [flat|nested] 38+ messages in thread