| From | Subject | Date |
|---|---|---|
| David Woodhouse | Re: [PATCH 00/18] firmware: moving drivers to request_firmwa...
That I don't care about. If you can load modules, you can handle
That would be a useful thing; currently the built-in firmwares cannot be
overridden but it wouldn't be hard to implement. Suggest it in 'diff -u'
I don't think we have consensus on that, but as I said: post patches and
And binary isn't the preferred form either. We can cope with binary, but
it's not appropriate in the kernel source tree, imho.
When I make the shadow tree which contains the results of 'make
All these are tr...
| May 31, 6:18 pm 2008 |
| David Woodhouse | Re: [PATCH 00/18] firmware: moving drivers to request_firmwa...
I believe that making that change would cause extra controversy that I
don't need, and make it harder for me to get what I _actually_ care
about merged -- which is the basic conversion to request_firmware().
But as I said, if _you_ want to start converting drivers and posting
patches which add raw binary blobs in the firmware/ directory, please
feel free. If they go in without comment, I'll be happy to admit that I
was wrong and start doing raw binaries in future.
--
dwmw2
--
| May 31, 6:45 pm 2008 |
| David Woodhouse | Re: [PATCH 00/18] firmware: moving drivers to request_firmwa...
We don't have them in that form right now. Of the firmware blobs I've
encountered so far -- even the ones which were in a file on their own --
none of them are in binary form; they're _all_ in some ASCII
representation which can be processed with 'diff'. That includes char
arrays, arrays of larger integers which need endian-awareness, 'hex
record' structures, and probably a bunch of other abominations I have
yet to encounter as I work through them.
None of them have just been binary files in the ...
| May 31, 5:22 pm 2008 |
| David Woodhouse | Re: [PATCH 00/18] firmware: moving drivers to request_firmwa...
There's plenty of excuses. The fact that we don't have any binary blobs
in the tree is a fairly big hint -- they're not easily processed by the
tools we use (like 'diff').
I'm keen to avoid unnecessary controversy while I convert drivers to
request_firmware(). I don't want to convert the existing ASCII
representations into raw binary blobs right now, because it's not my
primary focus and I don't care enough about it to fight that battle.
If you want to follow up with a patch to remove .ihex f...
| May 31, 6:15 pm 2008 |
| David Woodhouse | [PATCH 12/18] ihex: add ihex2fw tool for converting HEX file...
Not the straight conversion to binary which objcopy can do for us, but
actually representing each record with its original {addr, length},
because some drivers need that information preserved.
Fix up 'firmware_install' to be able to build $(hostprogs-y) too.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
---
firmware/Makefile | 14 +++
firmware/ihex2fw.c | 238 +++++++++++++++++++++++++++++++++++++++++++++++
scripts/Makefile.fwinst | 7 +-
3 files changed, 258 inse...
| May 31, 8:07 am 2008 |
| David Woodhouse | [PATCH 11/18] ihex: request_ihex_firmware() function to load...
Provide a helper to load the file and validate it in one call, to
simplify error handling in the drivers which are going to use it.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
---
include/linux/ihex.h | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/include/linux/ihex.h b/include/linux/ihex.h
index 3da4855..2f3d8b4 100644
--- a/include/linux/ihex.h
+++ b/include/linux/ihex.h
@@ -9,6 +9,7 @@
#include <linux/types.h>
#in...
| May 31, 8:20 am 2008 |
| David Woodhouse | Re: [PATCH 10/18] ihex.h: binary representation of ihex reco...
Hm, in that case it might be worth converting this stuff into raw
binaries. I'm not in a position to test, and wanted to keep my own
changes as unintrusive as possible though.
--
dwmw2
--
| May 31, 6:20 pm 2008 |
| Stefan Richter | [PATCH] firewire: fw-ohci: clear LinkControl register when e...
We want the rcvPhyPkt bit in LinkControl off before we start using the
chip. However, the spec says that the reset value of it is undefined.
Hence switch it (and all other bits while we are at it) explicitly off.
https://bugzilla.redhat.com/show_bug.cgi?id=244576#c48 shows that for
example the nForce2 integrated FireWire controller seems to have it on
by default.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
---
drivers/firewire/fw-ohci.c | 1 +
1 file changed, 1 insertio...
| May 31, 7:08 pm 2008 |
| Ben Hutchings | [PATCH 0/2] Expose little-endian bitops
All architectures already have little-endian bitops for use by file-
systems that use little-endian allocation tables. Since these are
more generally useful - Andrew Morton suggested we use them in the
sfc driver - they should be exposed under consistent names. The
following patch series does that, using the names from
<asm-generic/bitops/le.h> but without the "generic_" prefix.
Ben.
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; tha...
| May 31, 6:34 pm 2008 |
| Ben Hutchings | [PATCH 2/2] Use <asm-generic/bitops/le.h> in <asm-p...
The powerpc little-endian bitops have no arch-specific optimisations.
Remove clashing macros from these headers.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
---
include/asm-generic/bitops/le.h | 1 -
include/asm-powerpc/bitops.h | 34 +---------------------------------
2 files changed, 1 insertions(+), 34 deletions(-)
diff --git a/include/asm-generic/bitops/le.h b/include/asm-generic/bitops/le.h
index a51c4ca..08c5df3 100644
--- a/include/asm-generic/bitops/le.h
+...
| May 31, 6:38 pm 2008 |
| Vegard Nossum | Re: [PATCH 2/2] Use <asm-generic/bitops/le.h> in <a...
Hi,
On Sun, Jun 1, 2008 at 12:38 AM, Ben Hutchings
Is it completely impossible to move this #include to the top of the file?
I know that a lot of the current headers don't do this, and I don't
think it's a written rule with the kernel sources, BUT it's a nice
convention IMHO, and makes headers generally more maintainable. What
do you think?
Vegard
--
"The animistic metaphor of the bug that maliciously sneaked in while
the programmer was not looking is intellectually dishonest as it
d...
| May 31, 6:52 pm 2008 |
| Ben Hutchings | Re: [PATCH 2/2] Use <asm-generic/bitops/le.h> in <a...
If you look at the current version of this header you'll see it
includes several other bitops headers at around this point. I tend
to follow the conventions I see.
Ben.
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
--
| May 31, 7:50 pm 2008 |
| Ben Hutchings | [PATCH 1/2] Remove 'generic_' prefix from generic little-end...
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
---
include/asm-generic/bitops/ext2-non-atomic.h | 12 ++++----
include/asm-generic/bitops/le.h | 40 ++++++++++++++-----------
include/asm-generic/bitops/minix-le.h | 10 +++---
include/asm-m68k/bitops.h | 2 +-
include/asm-m68knommu/bitops.h | 2 +-
include/asm-powerpc/bitops.h | 7 ++++-
6 files changed, 41 insertions(+), 32 deletions(-)
diff --git...
| May 31, 6:37 pm 2008 |
| Ben Hutchings | [PATCH] cputopology: Add default CPU topology information [3...
Define the macros topology_{physical_package,core}_id() and
topology_{thread,core}_siblings() in <asm-generic/topology.h> if they are not
already defined.
Move inclusion of <asm-generic/topology.h> after definitions of these
macros in <asm-powerpc/topology.h> and <asm-x86/topology.h>.
Change drivers/base/topology.c to use the topology macros unconditionally and
to cope with definitions that aren't lvalues.
Update documentation accordingly.
Signed-off-by: Ben Hutchings...
| May 31, 5:44 pm 2008 |
| Vegard Nossum | Re: [PATCH] cputopology: Add default CPU topology informatio...
On Sat, May 31, 2008 at 11:44 PM, Ben Hutchings
Hi again :)
As I said in my previous e-mail, having #includes in the middle of
headers is nasty. This kind of dependency is really subtle and makes
later modification much harder. (Actually, it hurts readability as
well.)
The standard way to do this seems to be:
asm/topology.h should define ARCH_HAS_* macros if it wishes to
override the defaults
linux/topology.h should #include asm/topology.h at the top of the file
linux/topology.h should def...
| May 31, 7:11 pm 2008 |
| Ben Hutchings | Re: [PATCH] cputopology: Add default CPU topology informatio...
[Empty message]
| May 31, 7:44 pm 2008 |
| Sam Ravnborg | [GIT PULL] fix kbuild regression
Hi Linus.
Please pull from:
ssh://master.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam
To get the following fix:
Sam Ravnborg (1):
kbuild: fix $(src) assignmnet with external modules
When we introduced support for KBUILD_EXTRA_SYMBOLS
we started to include the externam module's kbuild
file when doing the final modpost step.
As external modules often do:
ccflags-y := -I$(src)
We had problems because $(src) was unassinged and
...
| May 31, 4:37 pm 2008 |
| Adrian Bunk | sh64 build error - sh, kbuild or binutils problem?
cayman_defconfig fails to build with the following error
(using binutils 2.18.50.0.7):
<-- snip -->
...
LD drivers/macintosh/built-in.o
LD drivers/media/common/tuners/built-in.o
CC [M] drivers/media/common/tuners/tuner-xc2028.o
CC [M] drivers/media/common/tuners/tuner-simple.o
CC [M] drivers/media/common/tuners/tuner-types.o
CC [M] drivers/media/common/tuners/mt20xx.o
CC [M] drivers/media/common/tuners/tda8290.o
CC [M] drivers/media/common/tuners/tea576...
| May 31, 4:22 pm 2008 |
| Andras Mantia | Re: libata (pata_via) timeouts causing unusable device: the ...
I don't know too much of the kernel's internals... Anyway, I tried and noapic only fixes the problem. It seems the issue is the same that was reported in another thread as well meantime.
Andras
--
Quanta Plus developer - http://quanta.kdewebdev.org
K Desktop Environment - http://www.kde.org
--
| May 31, 4:16 pm 2008 |
| Rafael J. Wysocki | 2.6.26-rc4-git4: Reported regressions from 2.6.25
This message contains a list of some regressions from 2.6.25, for which there
are no fixes in the mainline I know of. If any of them have been fixed already,
please let me know.
If you know of any other unresolved regressions from 2.6.25, please let me know
either and I'll add them to the list. Also, please let me 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...
| May 31, 1:44 pm 2008 |
| Rafael J. Wysocki | [Bug #10761] hackbench regression with 2.6.26-rc2 on tulsa m...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10761
Subject : hackbench regression with 2.6.26-rc2 on tulsa machine
Submitter : Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date : 2008-05-20 8:09 (12 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;...">http://marc.info/?l=linux-kernel&amp;... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10760] PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10760
Subject : PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3
Submitter : Ryan Hope <rmh3093@gmail.com>
Date : 2008-05-19 17:47 (13 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-pci&amp;m=121121926401755&a...">http://marc.info/?l=linux-pci&amp;m=121121926401755&a... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10764] some serial configurations are now broken
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10764
Subject : some serial configurations are now broken
Submitter : Russell King <rmk+lkml@arm.linux.org.uk>
Date : 2008-05-20 7:35 (12 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m=12112693181070...">http://marc.info/?l=linux-kernel&amp;m=12112693181070... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10762] ocfs2: rename user_stack{,_ops}
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10762
Subject : ocfs2: rename user_stack{,_ops}
Submitter : Adrian Bunk <bunk@kernel.org>
Date : 2008-05-20 16:01 (12 days old)
References : http://lkml.org/lkml/2008/5/20/603
[ message continues ] " title="http://marc.info/?l=linux-kernel&...">http://marc.info/?l=linux-kernel&... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10714] Badness seen on 2.6.26-rc2 with lockdep enabled
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10714
Subject : Badness seen on 2.6.26-rc2 with lockdep enabled
Submitter : Balbir Singh <balbir@linux.vnet.ibm.com>
Date : 2008-05-14 12:57 (18 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m=1210769...">http://marc.info/?l=linux-kernel&amp;m=1210769... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10792] mips/kernel/traps.c build error
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10792
Subject : mips/kernel/traps.c build error
Submitter : Adrian Bunk <bunk@kernel.org>
Date : 2008-05-25 09:48 (7 days old)
References : http://lkml.org/lkml/2008/5/25/158
Patch : in the mips tree
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10786] 2.6.26-rc3 64bit SMP does not boot on J5600
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10786
Subject : 2.6.26-rc3 64bit SMP does not boot on J5600
Submitter : Domenico Andreoli <cavokz@gmail.com>
Date : 2008-05-22 16:14 (10 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m=121147328028081...">http://marc.info/?l=linux-kernel&amp;m=121147328028081... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10730] build issue #503 for v2.6.26-rc2-433-gf26a398 :...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10730
Subject : build issue #503 for v2.6.26-rc2-433-gf26a398 : undefined reference to `request_firmware'
Submitter : Toralf Förster <toralf.foerster@gmx.de>
Date : 2008-05-16 17:06 (16 days old)
References : [ message continues ] " title="http://m...">http://m... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10765] iwl3945/mac80211: association times out since 2...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10765
Subject : iwl3945/mac80211: association times out since 2.6.26-rc1
Submitter : Michael S. Tsirkin <m.s.tsirkin@gmail.com>
Date : 2008-05-20 22:46 (12 days old)
Handled-By : Zhu Yi <yi.zhu@intel.com>
Jo...
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10787] pcie hotplug bootup crash fix
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10787
Subject : pcie hotplug bootup crash fix
Submitter : Ingo Molnar <mingo@elte.hu>
Date : 2008-05-24 16:58 (8 days old)
References : http://marc.info/?l=linux-kernel&amp;m=121164842212038&amp;w=4
Handled-By...
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10799] sky2 general protection fault
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10799
Subject : sky2 general protection fault
Submitter : Nicolas Mailhot <Nicolas.Mailhot@LaPoste.net>
Date : 2008-05-26 11:05 (6 days old)
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10795] MIPS SEAD compile fix
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10795
Subject : MIPS SEAD compile fix
Submitter : Adrian Bunk <adrian.bunk@movial.fi>
Date : 2008-05-25 11:10 (7 days old)
References : http://lkml.org/lkml/2008/5/25/178
Handled-By : Adrian Bunk <adrian.bunk@movia...
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10794] mips: CONF_CM_DEFAULT build error
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10794
Subject : mips: CONF_CM_DEFAULT build error
Submitter : Adrian Bunk <adrian.bunk@movial.fi>
Date : 2008-05-25 10:11 (7 days old)
References : http://lkml.org/lkml/2008/5/25/168
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10816] vt/fbcon: fix background color on line feed
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10816
Subject : vt/fbcon: fix background color on line feed
Submitter : thunder7 <thunder7@xs4all.nl>
Date : 2008-05-27 19:33 (5 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m=121191733218735&amp...">http://marc.info/?l=linux-kernel&amp;m=121191733218735&amp... | May 31, 1:48 pm 2008 |
| thunder7 | Re: [Bug #10816] vt/fbcon: fix background color on line feed
From: Rafael J. Wysocki <rjw@sisk.pl>
No, this regression should be unlisted, as I've tested this patch and it
fixes the regression.
Kind regards,
Jurriaan
--
| May 31, 4:39 pm 2008 |
| Rafael J. Wysocki | Re: [Bug #10816] vt/fbcon: fix background color on line feed
Still, have the fix reached the Linus' tree already?
Rafael
--
| May 31, 6:37 pm 2008 |
| Rafael J. Wysocki | [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3?
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10798
Subject : kbuild variable $(src) broken in 2.6.23-rc3?
Submitter : tvrtko.ursulin <tvrtko.ursulin@sophos.com>
Date : 2008-05-21 14:42 (11 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kbuild&amp;m=12113824...">http://marc.info/?l=linux-kbuild&amp;m=12113824... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10819] Fatal DMA error with b43 driver since 2.6.26
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10819
Subject : Fatal DMA error with b43 driver since 2.6.26
Submitter : Christian Casteyde <casteyde.christian@free.fr>
Date : 2008-05-29 13:16 (3 days old)
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10822] sky2 oops in 2.6.26-rc3
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10822
Subject : sky2 oops in 2.6.26-rc3
Submitter : Mikael Pettersson <mikpe@it.uu.se>
Date : 2008-05-25 17:27 (7 days old)
References : http://marc.info/?l=linux-netdev&amp;m=121173650915153&amp;w=4
Handled-B...
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10823] stuck localhost TCP connections, v2.6.26-rc3+
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10823
Subject : stuck localhost TCP connections, v2.6.26-rc3+
Submitter : Ingo Molnar <mingo@elte.hu>
Date : 2008-05-26 11:56 (6 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m=121180311931349&amp...">http://marc.info/?l=linux-kernel&amp;m=121180311931349&amp... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10828] [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg c...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10828
Subject : [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error
Submitter : Rufus &amp; Azrael <rufus-azrael@numericable.fr>
Date : 2008-05-04 10:24 (28 days old)
References : [ message continues ] " title="http://lk...">http://lk... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #9791] Clock is running too fast^Wslow using acpi_pm cl...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=9791
Subject : Clock is running too fast^Wslow using acpi_pm clocksource
Submitter : tosn00j02@sneakemail.com
Date : 2008-05-03 05:09 (29 days old)
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/se...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10841
Subject : asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt;
Submitter : Adrian Bunk <adrian.bunk@movial.fi>
Date : 2008-05-31 07:29 (1 days old)
References : http://lkml.org/lkml/2008/5/31/87
Handled-...
| May 31, 1:48 pm 2008 |
| Adrian Bunk | May 31, 4:09 pm 2008 | |
| Rafael J. Wysocki | [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10829
Subject : sh/kernel/cpu/irq/intc-sh5.c build fix
Submitter : Adrian Bunk <bunk@kernel.org>
Date : 2008-05-29 15:06 (3 days old)
References : http://lkml.org/lkml/2008/5/29/492
Handled-By : Adrian Bunk <bunk@k...
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10827] 2.6.26rc4 GFS2 oops.
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10827
Subject : 2.6.26rc4 GFS2 oops.
Submitter : Dave Jones <davej@redhat.com>
Date : 2008-05-27 15:44 (5 days old)
References : http://lkml.org/lkml/2008/5/27/297
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10830] two different oopses with 2.6.26-rc4
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10830
Subject : two different oopses with 2.6.26-rc4
Submitter : Alejandro Riveira Fernández <alejandro.riveira@gmail.com>
Date : 2008-05-28 9:50 (4 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m=12...">http://marc.info/?l=linux-kernel&amp;m=12... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10831] Barely understandeable sound with snd_hda_intel...
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10831
Subject : Barely understandeable sound with snd_hda_intel and 2.6.26-rc4
Submitter : Andres Freund <andres@anarazel.de>
Date : 2008-05-29 22:04 (3 days old)
References : [ message continues ] " title="http://marc.info/?l=linux-kernel&amp;m...">http://marc.info/?l=linux-kernel&amp;m... | May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10826] NFS oops in 2.6.26rc4
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10826
Subject : NFS oops in 2.6.26rc4
Submitter : Dave Jones <davej@redhat.com>
Date : 2008-05-27 19:04 (5 days old)
References : http://marc.info/?l=linux-kernel&amp;m=121191548915522&amp;w=4
--
| May 31, 1:48 pm 2008 |
| Rafael J. Wysocki | [Bug #10825] appletouch after wakeup
This message has been generated automatically as a part of a report
of recent regressions.
The following bug entry is on the current list of known regressions
from 2.6.25. Please verify if it still should be listed.
Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10825
Subject : appletouch after wakeup
Submitter : Justin Mattock <justinmattock@gmail.com>
Date : 2008-05-27 3:29 (5 days old)
References : http://marc.info/?l=linux-kernel&amp;m=121185900618047&amp;w=4
Hand...
| May 31, 1:48 pm 2008 |
| previous day | today | next day |
|---|---|---|
| May 30, 2008 | May 31, 2008 | July 1, 2008 |
| Amit K. Arora | [RFC] Heads up on sys_fallocate() |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Greg Kroah-Hartman | [PATCH 001/196] Chinese: Add the known_regression URI to the HOWTO |
git: | |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| David Miller | [GIT]: Networking |
| Matheos Worku | 2.6.24 BUG: soft lockup - CPU#X |
