* [PATCH -next] sysctl: handle bio system when CONFIG_BLOCK=n
From: Randy Dunlap @ 2008-12-05 0:42 UTC (permalink / raw)
To: lkml; +Cc: linux-next, jens.axboe, akpm
From: Randy Dunlap <randy.dunlap@oracle.com>
Handle build config of CONFIG_BLOCK=n:
kernel/sysctl.c:1233: error: 'bio_inline_vecs' undeclared here (not in a function)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
kernel/sysctl.c | 2 ++
1 file changed, 2 insertions(+)
--- linux-next-20081204.orig/kernel/sysctl.c
+++ linux-next-20081204/kernel/sysctl.c
@@ -1227,6 +1227,7 @@ static struct ctl_table vm_table[] = {
.extra2 = &one,
},
#endif
+#ifdef CONFIG_BLOCK
{
.ctl_name = CTL_UNNUMBERED,
.procname = "bio_inline_vecs",
@@ -1237,6 +1238,7 @@ static struct ctl_table vm_table[] = {
.strategy = &sysctl_intvec,
.extra1 = &zero,
},
+#endif
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
^ permalink raw reply
* linux-next: rr tree build warning
From: Stephen Rothwell @ 2008-12-04 23:42 UTC (permalink / raw)
To: Rusty Russell; +Cc: linux-next
[-- Attachment #1: Type: text/plain, Size: 1339 bytes --]
Hi Rusty,
The next-20081204 build (powerpc ppc64_defconfig) produced these warnings:
include/linux/cpumask.h: In function 'set_cpu_possible':
include/linux/cpumask.h:1052: warning: passing argument 2 of 'cpumask_set_cpu' discards qualifiers from pointer target type
include/linux/cpumask.h:1054: warning: passing argument 2 of 'cpumask_clear_cpu' discards qualifiers from pointer target type
include/linux/cpumask.h: In function 'set_cpu_present':
include/linux/cpumask.h:1060: warning: passing argument 2 of 'cpumask_set_cpu' discards qualifiers from pointer target type
include/linux/cpumask.h:1062: warning: passing argument 2 of 'cpumask_clear_cpu' discards qualifiers from pointer target type
include/linux/cpumask.h: In function 'set_cpu_online':
include/linux/cpumask.h:1068: warning: passing argument 2 of 'cpumask_set_cpu' discards qualifiers from pointer target type
include/linux/cpumask.h:1070: warning: passing argument 2 of 'cpumask_clear_cpu' discards qualifiers from pointer target type
Caused by commit 38b04c5f8ddd01137b1524b126ac936d87b58213
("cpumask:cpu_online_mask-etc-as-primary") from the rr tree. Gcc (version
4.2.4) doesn't seem to let you just cast away the "const" from a variable.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply
* Re: linux-next: manual merge of the driver-core tree
From: Greg KH @ 2008-12-04 18:00 UTC (permalink / raw)
To: Paul Mackerras
Cc: Stephen Rothwell, linux-next, Kay Sievers, Kumar Gala,
Benjamin Herrenschmidt, linuxppc-dev
In-Reply-To: <18743.46086.609709.557371@cargo.ozlabs.ibm.com>
On Thu, Dec 04, 2008 at 09:42:14PM +1100, Paul Mackerras wrote:
> Greg KH writes:
>
> > Yes, Paul, please apply the patch, and let me know. It will make things
> > much easier in the end for everyone involved.
>
> Hmmm, I don't have it in my inbox, all I can find is an email from Kay
> saying it had a problem. Care to forward it to me?
I'll resend them now.
thanks,
greg k-h
^ permalink raw reply
* [PATCH] fix for tty-serial-move-port
From: Alexander Beregalov @ 2008-12-04 17:16 UTC (permalink / raw)
To: linux-next, alan, linux-kernel
Hi Alan
next-20081204 crashes with the following message:
BUG: unable to handle kernel paging request at ffff88007d320248
IP: [<ffffffff803de934>] uart_remove_one_port+0xef/0x111
kfree(info);
393: 49 8d 7d 10 lea 0x10(%r13),%rdi
397: e8 00 00 00 00 callq 39c <uart_remove_one_port+0xef>
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
drivers/serial/serial_core.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/drivers/serial/serial_core.c b/drivers/serial/serial_core.c
index e99a269..4fc25e4 100644
--- a/drivers/serial/serial_core.c
+++ b/drivers/serial/serial_core.c
@@ -2530,10 +2530,8 @@ int uart_remove_one_port(struct uart_driver *drv, struct uart_port *port)
/*
* Kill the tasklet, and free resources.
*/
- if (info) {
+ if (info)
tasklet_kill(&info->tlet);
- kfree(info);
- }
state->port = NULL;
mutex_unlock(&port_mutex);
^ permalink raw reply related
* Re: linux-next: backlight tree build failure
From: Richard Purdie @ 2008-12-04 16:18 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: linux-next
In-Reply-To: <20081204163059.98d02c8c.sfr@canb.auug.org.au>
Hi Stephen,
On Thu, 2008-12-04 at 16:30 +1100, Stephen Rothwell wrote:
> Hi Richard,
>
> Today's linux-next build (x86_64 allmodconfig) failed like this:
>
> drivers/video/backlight/tdo24m.c:17:30: error: linux/spi/tdo24m.h: No such file or directory
> drivers/video/backlight/tdo24m.c: In function 'tdo24m_probe':
> drivers/video/backlight/tdo24m.c:337: error: storage size of 'model' isn't known
> drivers/video/backlight/tdo24m.c:342: error: dereferencing pointer to incomplete type
> drivers/video/backlight/tdo24m.c:344: error: 'TDO24M' undeclared (first use in this function)
> drivers/video/backlight/tdo24m.c:344: error: (Each undeclared identifier is reported only once
> drivers/video/backlight/tdo24m.c:344: error: for each function it appears in.)
> drivers/video/backlight/tdo24m.c:379: error: 'TDO35S' undeclared (first use in this function)
> drivers/video/backlight/tdo24m.c:337: warning: unused variable 'model'
>
> I have dropped the backlight tree for today. More care, please.
Sorry about that, there is a missing dependency for that change and I'll
make sure these get merged in the right order.
Cheers,
Richard
^ permalink raw reply
* Re: next-2008-12-04: ca0106 compile fix
From: Takashi Iwai @ 2008-12-04 14:28 UTC (permalink / raw)
To: Alexey Dobriyan; +Cc: Stephen Rothwell, linux-next, linux-kernel
In-Reply-To: <20081204140010.GA13953@x200.localdomain>
At Thu, 4 Dec 2008 17:00:10 +0300,
Alexey Dobriyan wrote:
>
> Please, fold into 2c5dd6425e72a6e97d9fb9fee9910a58f02d77df
> aka "ALSA: ca0106 - Add power-amangement support"
> ^^
>
> CC [M] sound/pci/ca0106/ca0106_main.o
> sound/pci/ca0106/ca0106_main.c:1809: error: 'snd_ca0106_suspend' undeclared here (not in a function)
> sound/pci/ca0106/ca0106_main.c:1810: error: 'snd_ca0106_resume' undeclared here (not in a function)
Oops, fixed both now. Thanks!
Takashi
^ permalink raw reply
* Re: next-2008-12-04: ubifs section fixlet
From: Artem Bityutskiy @ 2008-12-04 14:18 UTC (permalink / raw)
To: Alexey Dobriyan; +Cc: Stephen Rothwell, linux-next, linux-kernel
In-Reply-To: <20081204140418.GB13953@x200.localdomain>
Alexey Dobriyan wrote:
> Please, fold into 552ff3179d1e93a3e982357544c059f3e9a5516e
> aka "UBIFS: add debugfs support":
>
> WARNING: fs/ubifs/ubifs.o(.init.text+0xec): Section mismatch in reference from the function init_module() to the function .exit.text:ubifs_compressors_exit()
Pushed to ubifs-2.6.git, thanks.
--
Best Regards,
Artem Bityutskiy (Артём Битюцкий)
^ permalink raw reply
* next-2008-12-04: ubifs section fixlet
From: Alexey Dobriyan @ 2008-12-04 14:04 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: linux-next, linux-kernel, Artem.Bityutskiy
In-Reply-To: <20081204200745.eff0ac87.sfr@canb.auug.org.au>
Please, fold into 552ff3179d1e93a3e982357544c059f3e9a5516e
aka "UBIFS: add debugfs support":
WARNING: fs/ubifs/ubifs.o(.init.text+0xec): Section mismatch in reference from the function init_module() to the function .exit.text:ubifs_compressors_exit()
--- a/fs/ubifs/compress.c
+++ b/fs/ubifs/compress.c
@@ -244,7 +244,7 @@ out_lzo:
/**
* ubifs_compressors_exit - de-initialize UBIFS compressors.
*/
-void __exit ubifs_compressors_exit(void)
+void ubifs_compressors_exit(void)
{
compr_exit(&lzo_compr);
compr_exit(&zlib_compr);
diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h
index e658b06..055c6b5 100644
--- a/fs/ubifs/ubifs.h
+++ b/fs/ubifs/ubifs.h
@@ -1700,7 +1700,7 @@ long ubifs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
/* compressor.c */
int __init ubifs_compressors_init(void);
-void __exit ubifs_compressors_exit(void);
+void ubifs_compressors_exit(void);
void ubifs_compress(const void *in_buf, int in_len, void *out_buf, int *out_len,
int *compr_type);
int ubifs_decompress(const void *buf, int len, void *out, int *out_len,
^ permalink raw reply related
* next-2008-12-04: ca0106 compile fix
From: Alexey Dobriyan @ 2008-12-04 14:00 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: linux-next, linux-kernel, tiwai
In-Reply-To: <20081204200745.eff0ac87.sfr@canb.auug.org.au>
Please, fold into 2c5dd6425e72a6e97d9fb9fee9910a58f02d77df
aka "ALSA: ca0106 - Add power-amangement support"
^^
CC [M] sound/pci/ca0106/ca0106_main.o
sound/pci/ca0106/ca0106_main.c:1809: error: 'snd_ca0106_suspend' undeclared here (not in a function)
sound/pci/ca0106/ca0106_main.c:1810: error: 'snd_ca0106_resume' undeclared here (not in a function)
--- a/sound/pci/ca0106/ca0106_main.c
+++ b/sound/pci/ca0106/ca0106_main.c
@@ -1806,8 +1806,10 @@ static struct pci_driver driver = {
.id_table = snd_ca0106_ids,
.probe = snd_ca0106_probe,
.remove = __devexit_p(snd_ca0106_remove),
+#ifdef CONFIG_PM
.suspend = snd_ca0106_suspend,
.resume = snd_ca0106_resume,
+#endif
};
// initialization of the module
^ permalink raw reply
* Re: XFS breakage on m68k (was: Re: linux-next: Tree for December 3)
From: Christoph Hellwig @ 2008-12-04 13:23 UTC (permalink / raw)
To: Christoph Hellwig
Cc: Stephen Rothwell, Geert Uytterhoeven, Eric Sandeen,
Christoph Hellwig, Lachlan McIlroy, linux-next, LKML, xfs
In-Reply-To: <20081204125006.GA13411@infradead.org>
On Thu, Dec 04, 2008 at 07:50:06AM -0500, Christoph Hellwig wrote:
> Yeah, but Niv fixed it up and the correct version is not in the xfs git
> tree.
Hah, he noticed the bug but the wrong version got checked in anyway.
Here's the fix (for todays xfs tree):
--
[XFS] Fix compile with CONFIG_COMPAT enabled
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: xfs/fs/xfs/linux-2.6/xfs_ioctl.h
===================================================================
--- xfs.orig/fs/xfs/linux-2.6/xfs_ioctl.h 2008-12-04 14:19:32.000000000 +0100
+++ xfs/fs/xfs/linux-2.6/xfs_ioctl.h 2008-12-04 14:19:38.000000000 +0100
@@ -74,7 +74,7 @@ xfs_file_compat_ioctl(
unsigned long arg);
extern long
-xfs_file_compat_ioctl_invis(
+xfs_file_compat_invis_ioctl(
struct file *file,
unsigned int cmd,
unsigned long arg);
^ permalink raw reply
* Re: XFS breakage on m68k (was: Re: linux-next: Tree for December 3)
From: Christoph Hellwig @ 2008-12-04 12:50 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Christoph Hellwig, Geert Uytterhoeven, Eric Sandeen,
Christoph Hellwig, Lachlan McIlroy, linux-next, LKML, xfs
In-Reply-To: <20081204234603.b5a28cd6.sfr@canb.auug.org.au>
On Thu, Dec 04, 2008 at 11:46:03PM +1100, Stephen Rothwell wrote:
> fs/xfs/linux-2.6/xfs_file.c:365: error: 'xfs_file_compat_invis_ioctl' undeclared here (not in a function)
>
> Eric mentioned that your patch "had a problem of its own", so I assumed
> that was it and left it removed from today's linux-next.
Yeah, but Niv fixed it up and the correct version is not in the xfs git
tree.
^ permalink raw reply
* Re: XFS breakage on m68k (was: Re: linux-next: Tree for December 3)
From: Stephen Rothwell @ 2008-12-04 12:46 UTC (permalink / raw)
To: Christoph Hellwig
Cc: Geert Uytterhoeven, Eric Sandeen, Christoph Hellwig,
Lachlan McIlroy, linux-next, LKML, xfs
In-Reply-To: <20081204121330.GA18815@infradead.org>
[-- Attachment #1: Type: text/plain, Size: 1063 bytes --]
Hi Christoph,
On Thu, 4 Dec 2008 07:13:30 -0500 Christoph Hellwig <hch@infradead.org> wrote:
>
> On Thu, Dec 04, 2008 at 10:02:15AM +0100, Geert Uytterhoeven wrote:
> > On Wed, 3 Dec 2008, Stephen Rothwell wrote:
> > > Status of my local build tests will be at
> > > http://kisskb.ellerman.id.au/linux-next . If maintainers want to give
> > > advice about cross compilers/configs that work, we are always open to add
> > > more builds.
> >
> > On m68k (32-bit only, no compat32), XFS fails to build in linux-next:
>
> Yeah, it's broken on all 32bit platforms. Today's xfs tree has a fix
> for it.
I tried that tree but got this error from a powerpc ppc64_defconfig build
(which is 64 bit):
fs/xfs/linux-2.6/xfs_file.c:365: error: 'xfs_file_compat_invis_ioctl' undeclared here (not in a function)
Eric mentioned that your patch "had a problem of its own", so I assumed
that was it and left it removed from today's linux-next.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply
* Re: XFS breakage on m68k (was: Re: linux-next: Tree for December 3)
From: Christoph Hellwig @ 2008-12-04 12:13 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Eric Sandeen, Christoph Hellwig, Lachlan McIlroy,
Stephen Rothwell, linux-next, LKML, xfs
In-Reply-To: <Pine.LNX.4.64.0812040956370.10635@anakin>
On Thu, Dec 04, 2008 at 10:02:15AM +0100, Geert Uytterhoeven wrote:
> On Wed, 3 Dec 2008, Stephen Rothwell wrote:
> > Status of my local build tests will be at
> > http://kisskb.ellerman.id.au/linux-next . If maintainers want to give
> > advice about cross compilers/configs that work, we are always open to add
> > more builds.
>
> On m68k (32-bit only, no compat32), XFS fails to build in linux-next:
Yeah, it's broken on all 32bit platforms. Today's xfs tree has a fix
for it.
^ permalink raw reply
* Re: linux-next: sparc tree build failure
From: Sam Ravnborg @ 2008-12-04 11:47 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: David S. Miller, linux-next
In-Reply-To: <20081204195424.1cbd42a7.sfr@canb.auug.org.au>
On Thu, Dec 04, 2008 at 07:54:24PM +1100, Stephen Rothwell wrote:
> Hi Dave,
>
> Today's linux-next build (sparc64 defconfig) failed like this:
>
> HOSTCC scripts/basic/fixdep
> HOSTCC scripts/basic/docproc
> HOSTCC scripts/basic/hash
> GEN /scratch/sfr/sparc64_defconfig/Makefile
> HOSTCC scripts/kconfig/conf.o
> HOSTCC scripts/kconfig/kxgettext.o
> SHIPPED scripts/kconfig/zconf.tab.c
> SHIPPED scripts/kconfig/lex.zconf.c
> SHIPPED scripts/kconfig/zconf.hash.c
> HOSTCC scripts/kconfig/zconf.tab.o
> HOSTLD scripts/kconfig/conf
> *** Default configuration is based on 'sparc64_defconfig'
> ***
> *** Can't find default configuration "arch/sparc/configs/sparc64_defconfig"!
> ***
>
> Caused, I suspect by commit 60f2e8ffcf7291fc7df05dd91caf84d75c5181c5
> ("sparc,sparc64: unify Makefile") which I reverted (along with
> commit 9251dc5153ee5dae27e81835a35f3b7c0a73259e "sparc,sparc64: unify
> prom/" which depended on it).
The defconfig files got lost - you will see same issue with sparc(32).
The easy fix is to add them again from an older tree.
The are named sparc32_defconfig and sparc64_defconfig
This has no bisect impact as only "make defconfig" is faulty
so no need to consider renasing the tree.
Sam
^ permalink raw reply
* Re: [ipw3945-devel] next-20081125: call trace for iwlagn (rfkill switch on)
From: Nico -telmich- Schottelius @ 2008-12-04 11:23 UTC (permalink / raw)
To: Luo, Ximin
Cc: ipw3945-devel@lists.sourceforge.net, linux-next@vger.kernel.org
In-Reply-To: <AFAB8585072C7E48BC5C6F9C87F9B7970214D75A@pdsmsx502.ccr.corp.intel.com>
[-- Attachment #1.1: Type: text/plain, Size: 538 bytes --]
Luo, Ximin [Fri, Nov 28, 2008 at 03:03:23PM +0800]:
> Maybe you can the download the latest driver which had fixed this issue.
> You can get the information from http://www.intellinuxwireless.org/bugzilla/show_bug.cgi?id=1800
As reinette stated, it's not fixed (dmesg attached), running
2.6.28-rc6-wl-denkbrett-21906-g24e8b9a.
Sincerly,
Nico
--
Think about Free and Open Source Software (FOSS).
http://nico.schottelius.org/documentations/foss/the-term-foss/
PGP: BFE4 C736 ABE5 406F 8F42 F7CF B8BE F92A 9885 188C
[-- Attachment #1.2: dmesg.2.6.28-rc6-wl-denkbrett-21906-g24e8b9a --]
[-- Type: text/plain, Size: 44993 bytes --]
[ 0.000000] BIOS EBDA/lowmem at: 0009ec00/0009ec00
[ 0.000000] Linux version 2.6.28-rc6-wl-denkbrett-21906-g24e8b9a (compiler@ikn) (gcc version 4.3.2 (Debian 4.3.2-1) ) #1 SMP PREEMPT Tue Dec 2 18:17:25 CET 2008
[ 0.000000] Command line: root=/dev/sda1 ro
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009ec00 (usable)
[ 0.000000] BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007c4a1000 (usable)
[ 0.000000] BIOS-e820: 000000007c4a1000 - 000000007c4a7000 (reserved)
[ 0.000000] BIOS-e820: 000000007c4a7000 - 000000007c5b7000 (usable)
[ 0.000000] BIOS-e820: 000000007c5b7000 - 000000007c60f000 (reserved)
[ 0.000000] BIOS-e820: 000000007c60f000 - 000000007c6c6000 (usable)
[ 0.000000] BIOS-e820: 000000007c6c6000 - 000000007c6d1000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007c6d1000 - 000000007c6d4000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007c6d4000 - 000000007c6d8000 (reserved)
[ 0.000000] BIOS-e820: 000000007c6d8000 - 000000007c6dc000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007c6dc000 - 000000007c6df000 (reserved)
[ 0.000000] BIOS-e820: 000000007c6df000 - 000000007c706000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007c706000 - 000000007c708000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007c708000 - 000000007c90f000 (reserved)
[ 0.000000] BIOS-e820: 000000007c90f000 - 000000007c99f000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007c99f000 - 000000007c9ff000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007c9ff000 - 000000007ca00000 (usable)
[ 0.000000] BIOS-e820: 000000007cc00000 - 000000007f000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
[ 0.000000] DMI present.
[ 0.000000] last_pfn = 0x7ca00 max_arch_pfn = 0x3ffffffff
[ 0.000000] init_memory_mapping: 0000000000000000-000000007ca00000
[ 0.000000] 0000000000 - 007ca00000 page 2M
[ 0.000000] kernel direct mapping tables up to 7ca00000 @ 8000-b000
[ 0.000000] last_map_addr: 7ca00000 end: 7ca00000
[ 0.000000] ACPI: RSDP 000F73A0, 0024 (r2 LENOVO)
[ 0.000000] ACPI: XSDT 7C97BD45, 009C (r1 LENOVO TP-6D 1050 LTP 0)
[ 0.000000] ACPI: FACP 7C97BF00, 00F4 (r3 LENOVO TP-6D 1050 LNVO 1)
[ 0.000000] ACPI: DSDT 7C97C2F4, D910 (r1 LENOVO TP-6D 1050 MSFT 3000000)
[ 0.000000] ACPI: FACS 7C98E000, 0040
[ 0.000000] ACPI: SSDT 7C97C0B4, 0240 (r1 LENOVO TP-6D 1050 MSFT 3000000)
[ 0.000000] ACPI: ECDT 7C989C04, 0052 (r1 LENOVO TP-6D 1050 LNVO 1)
[ 0.000000] ACPI: APIC 7C989C56, 0078 (r1 LENOVO TP-6D 1050 LNVO 1)
[ 0.000000] ACPI: MCFG 7C989CCE, 003C (r1 LENOVO TP-6D 1050 LNVO 1)
[ 0.000000] ACPI: HPET 7C989D0A, 0038 (r1 LENOVO TP-6D 1050 LNVO 1)
[ 0.000000] ACPI: SLIC 7C989DC2, 0176 (r1 LENOVO TP-6D 1050 LTP 0)
[ 0.000000] ACPI: BOOT 7C989F38, 0028 (r1 LENOVO TP-6D 1050 LTP 1)
[ 0.000000] ACPI: ASF! 7C989F60, 00A0 (r16 LENOVO TP-6D 1050 PTL 1)
[ 0.000000] ACPI: SSDT 7C98D203, 055F (r1 LENOVO TP-6D 1050 INTL 20050513)
[ 0.000000] ACPI: TCPA 7C707000, 0032 (r0 0 0)
[ 0.000000] ACPI: DMAR 7C706000, 0120 (r1 \x01 1 0)
[ 0.000000] ACPI: SSDT 7C6D3000, 0655 (r1 PmRef CpuPm 3000 INTL 20050624)
[ 0.000000] ACPI: SSDT 7C6D2000, 0274 (r1 PmRef Cpu0Tst 3000 INTL 20050624)
[ 0.000000] ACPI: SSDT 7C6D1000, 0242 (r1 PmRef ApTst 3000 INTL 20050624)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] (5 early reservations) ==> bootmem [0000000000 - 007ca00000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
[ 0.000000] #2 [0000200000 - 00006c4f08] TEXT DATA BSS ==> [0000200000 - 00006c4f08]
[ 0.000000] #3 [000009ec00 - 0000100000] BIOS reserved ==> [000009ec00 - 0000100000]
[ 0.000000] #4 [0000008000 - 0000009000] PGTABLE ==> [0000008000 - 0000009000]
[ 0.000000] found SMP MP-table at [ffff8800000f73e0] 000f73e0
[ 0.000000] [ffffe20000000000-ffffe20001bfffff] PMD -> [ffff880001200000-ffff880002dfffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[5] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009e
[ 0.000000] 0: 0x00000100 -> 0x0007c4a1
[ 0.000000] 0: 0x0007c4a7 -> 0x0007c5b7
[ 0.000000] 0: 0x0007c60f -> 0x0007c6c6
[ 0.000000] 0: 0x0007c9ff -> 0x0007ca00
[ 0.000000] On node 0 totalpages: 509447
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 1323 pages reserved
[ 0.000000] DMA zone: 2619 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 6923 pages used for memmap
[ 0.000000] DMA32 zone: 498526 pages, LIFO batch:31
[ 0.000000] Normal zone: 0 pages used for memmap
[ 0.000000] Movable zone: 0 pages used for memmap
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7f000000:61000000)
[ 0.000000] PERCPU: Allocating 49152 bytes of per cpu data
[ 0.000000] NR_CPUS: 2, nr_cpu_ids: 2, nr_node_ids 1
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 501145
[ 0.000000] Kernel command line: root=/dev/sda1 ro
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 2261.007 MHz processor.
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty0] enabled
[ 0.004000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.004000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.004000] Memory: 2000056k/2041856k available (2662k kernel code, 4068k absent, 37004k reserved, 1296k data, 336k init)
[ 0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.004000] hpet clockevent registered
[ 0.004000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4522.01 BogoMIPS (lpj=9044028)
[ 0.004000] Security Framework initialized
[ 0.004000] Mount-cache hash table entries: 256
[ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.004000] CPU: L2 cache: 3072K
[ 0.004000] CPU: Physical Processor ID: 0
[ 0.004000] CPU: Processor Core ID: 0
[ 0.004000] CPU0: Thermal monitoring enabled (TM2)
[ 0.004000] using mwait in idle threads.
[ 0.004000] ACPI: Core revision 20080926
[ 0.048079] Setting APIC routing to flat
[ 0.048583] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.091699] CPU0: Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz stepping 06
[ 0.092001] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.004000] Initializing CPU#1
[ 0.004000] Calibrating delay using timer specific routine.. 4522.03 BogoMIPS (lpj=9044078)
[ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.004000] CPU: L2 cache: 3072K
[ 0.004000] CPU: Physical Processor ID: 0
[ 0.004000] CPU: Processor Core ID: 1
[ 0.004000] CPU1: Thermal monitoring enabled (TM2)
[ 0.177256] CPU1: Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz stepping 06
[ 0.178486] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.180024] Brought up 2 CPUs
[ 0.180155] Total of 2 processors activated (9044.05 BogoMIPS).
[ 0.180389] net_namespace: 1312 bytes
[ 0.184030] regulator: core version 0.5
[ 0.184183] NET: Registered protocol family 16
[ 0.184214] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.184224] ACPI: bus type pci registered
[ 0.184375] PCI: Using configuration type 1 for base access
[ 0.194422] ACPI: EC: EC description table is found, configuring boot EC
[ 0.214196] ACPI: BIOS _OSI(Linux) query ignored
[ 0.214328] ACPI: DMI System Vendor: LENOVO
[ 0.214457] ACPI: DMI Product Name: 7458AH8
[ 0.214587] ACPI: DMI Product Version: ThinkPad X200
[ 0.214717] ACPI: DMI Board Name: 7458AH8
[ 0.214845] ACPI: DMI BIOS Vendor: LENOVO
[ 0.214974] ACPI: DMI BIOS Date: 07/30/2008
[ 0.215102] ACPI: Please send DMI info above to linux-acpi@vger.kernel.org
[ 0.215236] ACPI: If "acpi_osi=Linux" works better, please notify linux-acpi@vger.kernel.org
[ 0.216022] ACPI: EC: non-query interrupt received, switching to interrupt mode
[ 0.232763] ACPI: Interpreter enabled
[ 0.232902] ACPI: (supports S0 S3 S5)
[ 0.236181] ACPI: Using IOAPIC for interrupt routing
[ 0.277266] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 0.277266] ACPI: EC: driver started in interrupt mode
[ 0.281251] ACPI: ACPI Dock Station Driver: 3 docks/bays found
[ 0.284006] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.284130] pci 0000:00:02.0: reg 10 64bit mmio: [0xf2000000-0xf23fffff]
[ 0.284145] pci 0000:00:02.0: reg 18 64bit mmio: [0xd0000000-0xdfffffff]
[ 0.284155] pci 0000:00:02.0: reg 20 io port: [0x1800-0x1807]
[ 0.284218] pci 0000:00:02.1: reg 10 64bit mmio: [0xf2400000-0xf24fffff]
[ 0.284315] pci 0000:00:03.0: reg 10 64bit mmio: [0xf2826800-0xf282680f]
[ 0.284358] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 0.284495] pci 0000:00:03.0: PME# disabled
[ 0.284746] pci 0000:00:19.0: reg 10 32bit mmio: [0xf2600000-0xf261ffff]
[ 0.284759] pci 0000:00:19.0: reg 14 32bit mmio: [0xf2625000-0xf2625fff]
[ 0.284771] pci 0000:00:19.0: reg 18 io port: [0x1840-0x185f]
[ 0.284817] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.284953] pci 0000:00:19.0: PME# disabled
[ 0.284953] pci 0000:00:1a.0: reg 20 io port: [0x1860-0x187f]
[ 0.284953] pci 0000:00:1a.1: reg 20 io port: [0x1880-0x189f]
[ 0.284953] pci 0000:00:1a.2: reg 20 io port: [0x18a0-0x18bf]
[ 0.288006] pci 0000:00:1a.7: reg 10 32bit mmio: [0xf2826c00-0xf2826fff]
[ 0.288006] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.288006] pci 0000:00:1a.7: PME# disabled
[ 0.288006] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf2620000-0xf2623fff]
[ 0.288006] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.288006] pci 0000:00:1b.0: PME# disabled
[ 0.288006] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.288006] pci 0000:00:1c.0: PME# disabled
[ 0.288006] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.288006] pci 0000:00:1c.1: PME# disabled
[ 0.288006] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.288006] pci 0000:00:1c.3: PME# disabled
[ 0.288006] pci 0000:00:1d.0: reg 20 io port: [0x18c0-0x18df]
[ 0.288006] pci 0000:00:1d.1: reg 20 io port: [0x18e0-0x18ff]
[ 0.288006] pci 0000:00:1d.2: reg 20 io port: [0x1c00-0x1c1f]
[ 0.288006] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf2827000-0xf28273ff]
[ 0.288006] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.288006] pci 0000:00:1d.7: PME# disabled
[ 0.288193] pci 0000:00:1f.2: reg 10 io port: [0x1c48-0x1c4f]
[ 0.288205] pci 0000:00:1f.2: reg 14 io port: [0x183c-0x183f]
[ 0.288216] pci 0000:00:1f.2: reg 18 io port: [0x1c40-0x1c47]
[ 0.288228] pci 0000:00:1f.2: reg 1c io port: [0x1838-0x183b]
[ 0.288239] pci 0000:00:1f.2: reg 20 io port: [0x1c20-0x1c3f]
[ 0.288251] pci 0000:00:1f.2: reg 24 32bit mmio: [0xf2826000-0xf28267ff]
[ 0.288278] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.288412] pci 0000:00:1f.2: PME# disabled
[ 0.288593] pci 0000:00:1f.3: reg 10 64bit mmio: [0xf2827400-0xf28274ff]
[ 0.288620] pci 0000:00:1f.3: reg 20 io port: [0x1c60-0x1c7f]
[ 0.288839] pci 0000:03:00.0: reg 10 64bit mmio: [0xf2500000-0xf2501fff]
[ 0.288924] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.289063] pci 0000:03:00.0: PME# disabled
[ 0.289280] pci 0000:00:1c.1: bridge 32bit mmio: [0xf2500000-0xf25fffff]
[ 0.292004] pci 0000:00:1c.3: bridge io port: [0x2000-0x2fff]
[ 0.292004] pci 0000:00:1c.3: bridge 32bit mmio: [0xf0000000-0xf1ffffff]
[ 0.292004] pci 0000:00:1c.3: bridge 64bit mmio pref: [0xf2900000-0xf29fffff]
[ 0.292004] pci 0000:00:1e.0: transparent bridge
[ 0.292004] bus 00 -> node 0
[ 0.292004] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.292004] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP0._PRT]
[ 0.292004] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[ 0.292004] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
[ 0.304456] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.304456] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.305404] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.306578] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.307753] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.308902] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.310078] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.311252] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.312199] ACPI: Power Resource [PUBS] (on)
[ 0.316631] SCSI subsystem initialized
[ 0.316773] libata version 3.00 loaded.
[ 0.316773] PCI: Using ACPI for IRQ routing
[ 0.328051] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.328410] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 0.344015] pnp: PnP ACPI init
[ 0.344157] ACPI: bus type pnp registered
[ 0.414065] pnp: PnP ACPI: found 10 devices
[ 0.414197] ACPI: ACPI bus type pnp unregistered
[ 0.414345] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 0.414480] system 00:00: iomem range 0xc0000-0xc3fff has been reserved
[ 0.414615] system 00:00: iomem range 0xc4000-0xc7fff has been reserved
[ 0.414749] system 00:00: iomem range 0xc8000-0xcbfff has been reserved
[ 0.414884] system 00:00: iomem range 0xcc000-0xcffff has been reserved
[ 0.415019] system 00:00: iomem range 0xd0000-0xd3fff has been reserved
[ 0.415154] system 00:00: iomem range 0xdc000-0xdffff could not be reserved
[ 0.415289] system 00:00: iomem range 0xe0000-0xe3fff could not be reserved
[ 0.415425] system 00:00: iomem range 0xe4000-0xe7fff could not be reserved
[ 0.415560] system 00:00: iomem range 0xe8000-0xebfff could not be reserved
[ 0.415695] system 00:00: iomem range 0xec000-0xeffff could not be reserved
[ 0.415830] system 00:00: iomem range 0xf0000-0xfffff could not be reserved
[ 0.415966] system 00:00: iomem range 0x100000-0x7effffff could not be reserved
[ 0.416194] system 00:00: iomem range 0xfec00000-0xfed3ffff could not be reserved
[ 0.416407] system 00:00: iomem range 0xfed4c000-0xffffffff could not be reserved
[ 0.416630] system 00:02: ioport range 0x164e-0x164f has been reserved
[ 0.416765] system 00:02: ioport range 0x1000-0x107f has been reserved
[ 0.416900] system 00:02: ioport range 0x1180-0x11ff has been reserved
[ 0.417034] system 00:02: ioport range 0x800-0x80f has been reserved
[ 0.417169] system 00:02: ioport range 0x15e0-0x15ef has been reserved
[ 0.417303] system 00:02: ioport range 0x1600-0x1641 has been reserved
[ 0.417438] system 00:02: ioport range 0x1600-0x161b has been reserved
[ 0.417574] system 00:02: iomem range 0xe0000000-0xefffffff has been reserved
[ 0.417710] system 00:02: iomem range 0xfed1c000-0xfed1ffff has been reserved
[ 0.417845] system 00:02: iomem range 0xfed10000-0xfed13fff has been reserved
[ 0.417981] system 00:02: iomem range 0xfed18000-0xfed18fff has been reserved
[ 0.418117] system 00:02: iomem range 0xfed19000-0xfed19fff has been reserved
[ 0.418253] system 00:02: iomem range 0xfed45000-0xfed4bfff has been reserved
[ 0.423973] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[ 0.424120] pci 0000:00:1c.0: IO window: disabled
[ 0.424256] pci 0000:00:1c.0: MEM window: disabled
[ 0.424390] pci 0000:00:1c.0: PREFETCH window: disabled
[ 0.424530] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
[ 0.424662] pci 0000:00:1c.1: IO window: disabled
[ 0.424798] pci 0000:00:1c.1: MEM window: 0xf2500000-0xf25fffff
[ 0.424934] pci 0000:00:1c.1: PREFETCH window: disabled
[ 0.425072] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:05
[ 0.425206] pci 0000:00:1c.3: IO window: 0x2000-0x2fff
[ 0.425343] pci 0000:00:1c.3: MEM window: 0xf0000000-0xf1ffffff
[ 0.425479] pci 0000:00:1c.3: PREFETCH window: 0x000000f2900000-0x000000f29fffff
[ 0.425698] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0d
[ 0.425830] pci 0000:00:1e.0: IO window: disabled
[ 0.425965] pci 0000:00:1e.0: MEM window: disabled
[ 0.426098] pci 0000:00:1e.0: PREFETCH window: disabled
[ 0.426252] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.426391] pci 0000:00:1c.0: setting latency timer to 64
[ 0.426406] pci 0000:00:1c.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 0.426544] pci 0000:00:1c.1: setting latency timer to 64
[ 0.426559] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[ 0.426697] pci 0000:00:1c.3: setting latency timer to 64
[ 0.426708] pci 0000:00:1e.0: setting latency timer to 64
[ 0.426715] bus: 00 index 0 io port: [0x00-0xffff]
[ 0.426847] bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff]
[ 0.426980] bus: 02 index 0 mmio: [0x0-0x0]
[ 0.427109] bus: 02 index 1 mmio: [0x0-0x0]
[ 0.427239] bus: 02 index 2 mmio: [0x0-0x0]
[ 0.427368] bus: 02 index 3 mmio: [0x0-0x0]
[ 0.427497] bus: 03 index 0 mmio: [0x0-0x0]
[ 0.427627] bus: 03 index 1 mmio: [0xf2500000-0xf25fffff]
[ 0.427758] bus: 03 index 2 mmio: [0x0-0x0]
[ 0.427887] bus: 03 index 3 mmio: [0x0-0x0]
[ 0.428030] bus: 05 index 0 io port: [0x2000-0x2fff]
[ 0.428161] bus: 05 index 1 mmio: [0xf0000000-0xf1ffffff]
[ 0.428293] bus: 05 index 2 mmio: [0xf2900000-0xf29fffff]
[ 0.428424] bus: 05 index 3 mmio: [0x0-0x0]
[ 0.428553] bus: 0d index 0 mmio: [0x0-0x0]
[ 0.428683] bus: 0d index 1 mmio: [0x0-0x0]
[ 0.428811] bus: 0d index 2 mmio: [0x0-0x0]
[ 0.428941] bus: 0d index 3 io port: [0x00-0xffff]
[ 0.429071] bus: 0d index 4 mmio: [0x000000-0xffffffffffffffff]
[ 0.429218] NET: Registered protocol family 2
[ 0.468103] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.469325] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 0.472239] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.473193] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.473328] TCP reno registered
[ 0.484177] NET: Registered protocol family 1
[ 0.484741] Simple Boot Flag at 0x35 set to 0x1
[ 0.486940] Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.492791] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.498935] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.504114] msgmni has been set to 3907
[ 0.504646] io scheduler noop registered
[ 0.504777] io scheduler anticipatory registered (default)
[ 0.504909] io scheduler deadline registered
[ 0.505181] io scheduler cfq registered
[ 0.505331] pci 0000:00:02.0: Boot video device
[ 0.601528] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[ 0.601586] pcieport-driver 0000:00:1c.0: found MSI capability
[ 0.601763] pcieport-driver 0000:00:1c.0: irq 47 for MSI/MSI-X
[ 0.601786] pci_express 0000:00:1c.0:pcie00: allocate port service
[ 0.601885] pci_express 0000:00:1c.0:pcie02: allocate port service
[ 0.602053] pcieport-driver 0000:00:1c.1: setting latency timer to 64
[ 0.602109] pcieport-driver 0000:00:1c.1: found MSI capability
[ 0.602280] pcieport-driver 0000:00:1c.1: irq 46 for MSI/MSI-X
[ 0.602303] pci_express 0000:00:1c.1:pcie00: allocate port service
[ 0.602388] pci_express 0000:00:1c.1:pcie02: allocate port service
[ 0.602554] pcieport-driver 0000:00:1c.3: setting latency timer to 64
[ 0.602610] pcieport-driver 0000:00:1c.3: found MSI capability
[ 0.602791] pcieport-driver 0000:00:1c.3: irq 45 for MSI/MSI-X
[ 0.602814] pci_express 0000:00:1c.3:pcie00: allocate port service
[ 0.602906] pci_express 0000:00:1c.3:pcie02: allocate port service
[ 0.603876] ACPI: AC Adapter [AC] (off-line)
[ 0.614693] Switched to high resolution mode on CPU 1
[ 0.616004] Switched to high resolution mode on CPU 0
[ 0.634497] ACPI Warning (nspredef-0858): \_SB_.PCI0.LPC_.EC__.BAT0._BIF: Return Package type mismatch at index 9 - found Buffer, expected String [20080926]
[ 0.643759] ACPI: Battery Slot [BAT0] (battery present)
[ 0.644165] input: Power Button (FF) as /class/input/input0
[ 0.644366] ACPI: Power Button (FF) [PWRF]
[ 0.644729] input: Lid Switch as /class/input/input1
[ 0.646040] ACPI: Lid Switch [LID]
[ 0.646343] input: Sleep Button (CM) as /class/input/input2
[ 0.646482] ACPI: Sleep Button (CM) [SLPB]
[ 0.648567] ACPI: SSDT 7C6D6C20, 02C8 (r1 PmRef Cpu0Ist 3000 INTL 20050624)
[ 0.650506] ACPI: SSDT 7C6D4020, 087A (r1 PmRef Cpu0Cst 3001 INTL 20050624)
[ 0.659312] Monitor-Mwait will be used to enter C-1 state
[ 0.659318] Monitor-Mwait will be used to enter C-2 state
[ 0.659324] Monitor-Mwait will be used to enter C-3 state
[ 0.659332] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 0.659835] processor ACPI_CPU:00: registered as cooling_device0
[ 0.659979] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 0.661838] ACPI: SSDT 7C6D5CA0, 01CF (r1 PmRef ApIst 3000 INTL 20050624)
[ 0.663551] ACPI: SSDT 7C6D5F20, 008D (r1 PmRef ApCst 3000 INTL 20050624)
[ 0.668327] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[ 0.668742] processor ACPI_CPU:01: registered as cooling_device1
[ 0.668879] ACPI: Processor [CPU1] (supports 8 throttling states)
[ 0.714404] Marking TSC unstable due to possible TSC halt in C2
[ 0.720482] thermal LNXTHERM:01: registered as thermal_zone0
[ 0.725248] ACPI: Thermal Zone [THM0] (26 C)
[ 0.727937] thermal LNXTHERM:02: registered as thermal_zone1
[ 0.730954] ACPI: Thermal Zone [THM1] (31 C)
[ 0.841581] Linux agpgart interface v0.103
[ 1.000079] Clocksource tsc unstable (delta = -171011533 ns)
[ 3.856119] floppy0: no floppy controllers found
[ 3.860808] brd: module loaded
[ 3.861214] Uniform Multi-Platform E-IDE driver
[ 3.861589] ide-gd driver 1.18
[ 3.862174] Driver 'sd' needs updating - please use bus_type methods
[ 3.862462] ahci 0000:00:1f.2: version 3.0
[ 3.862489] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 3.862707] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
[ 3.862810] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
[ 3.863025] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part
[ 3.863241] ahci 0000:00:1f.2: setting latency timer to 64
[ 3.863624] scsi0 : ahci
[ 3.864047] scsi1 : ahci
[ 3.864453] scsi2 : ahci
[ 3.864801] scsi3 : ahci
[ 3.866521] ata1: SATA max UDMA/133 abar m2048@0xf2826000 port 0xf2826100 irq 44
[ 3.866734] ata2: SATA max UDMA/133 abar m2048@0xf2826000 port 0xf2826180 irq 44
[ 3.866946] ata3: DUMMY
[ 3.867072] ata4: DUMMY
[ 4.184130] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.222850] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded
[ 4.222857] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[ 4.223138] ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded
[ 4.223144] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out
[ 4.224106] ata1.00: ATA-8: ST9250827AS, 3.CMF, max UDMA/100
[ 4.226455] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 4.256115] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded
[ 4.256121] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[ 4.256421] ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded
[ 4.256427] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out
[ 4.257437] ata1.00: configured for UDMA/100
[ 4.273676] ata1.00: configured for UDMA/100
[ 4.273807] ata1: EH complete
[ 4.592087] ata2: SATA link down (SStatus 0 SControl 300)
[ 4.624324] scsi 0:0:0:0: Direct-Access ATA ST9250827AS 3.CM PQ: 0 ANSI: 5
[ 4.625031] sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors: (250 GB/232 GiB)
[ 4.625275] sd 0:0:0:0: [sda] Write Protect is off
[ 4.625407] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.625455] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.625768] sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors: (250 GB/232 GiB)
[ 4.626007] sd 0:0:0:0: [sda] Write Protect is off
[ 4.626138] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.626185] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.626401] sda: sda1 sda2 sda3
[ 4.667337] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.667896] Fusion MPT base driver 3.04.07
[ 4.668043] Copyright (c) 1999-2008 LSI Corporation
[ 4.668187] Fusion MPT SPI Host driver 3.04.07
[ 4.669474] ieee1394: raw1394: /dev/raw1394 device initialized
[ 4.670014] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 4.681156] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.681296] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 4.681855] mice: PS/2 mouse device common for all mice
[ 4.721854] oprofile: using NMI interrupt.
[ 4.722644] TCP cubic registered
[ 4.722778] NET: Registered protocol family 17
[ 4.724905] registered taskstats version 1
[ 4.727339] input: AT Translated Set 2 keyboard as /class/input/input3
[ 4.971058] elantech.c: unexpected magic knock result 0x00, 0x02, 0x64.
[ 5.268283] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[ 5.285997] input: TPPS/2 IBM TrackPoint as /class/input/input4
[ 5.434889] VFS: Mounted root (jfs filesystem) readonly.
[ 5.435048] Freeing unused kernel memory: 336k freed
[ 8.235701] Non-volatile memory driver v1.2
[ 8.435576] thinkpad_acpi: ThinkPad ACPI Extras v0.21
[ 8.435682] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 8.435785] thinkpad_acpi: ThinkPad BIOS 6DET28WW (1.05 ), EC 7XHT21WW-1.03
[ 8.435891] thinkpad_acpi: Lenovo ThinkPad X200, model 7458AH8
[ 8.436713] thinkpad_acpi: radio switch found; radios are disabled
[ 8.436931] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[ 8.437108] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[ 8.444491] Registered led device: tpacpi::thinklight
[ 8.444633] Registered led device: tpacpi::power
[ 8.444751] Registered led device: tpacpi:orange:batt
[ 8.444873] Registered led device: tpacpi:green:batt
[ 8.444993] Registered led device: tpacpi::dock_active
[ 8.445119] Registered led device: tpacpi::bay_active
[ 8.445240] Registered led device: tpacpi::dock_batt
[ 8.445368] Registered led device: tpacpi::unknown_led
[ 8.445488] Registered led device: tpacpi::standby
[ 8.447822] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[ 8.448248] input: ThinkPad Extra Buttons as /class/input/input5
[ 8.698471] agpgart-intel 0000:00:00.0: Intel Mobile Intel? GM45 Express Chipset
[ 8.699516] agpgart-intel 0000:00:00.0: detected 32764K stolen memory
[ 8.702630] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[ 8.822428] ACPI: WMI: Mapper loaded
[ 8.854880] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k6
[ 8.854997] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[ 8.855133] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 8.855243] e1000e 0000:00:19.0: setting latency timer to 64
[ 8.855334] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X
[ 8.925051] usbcore: registered new interface driver usbfs
[ 8.925176] usbcore: registered new interface driver hub
[ 8.942380] 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:1f:16:09:46:11
[ 8.942544] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
[ 8.942669] 0000:00:19.0: eth0: MAC: 6, PHY: 8, PBA No: 1008ff-0ff
[ 8.942889] usbcore: registered new device driver usb
[ 9.125998] acpi device:03: registered as cooling_device2
[ 9.126334] input: Video Bus as /class/input/input6
[ 9.161089] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
[ 9.232910] uhci_hcd: USB Universal Host Controller Interface driver
[ 9.233542] uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[ 9.233657] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 9.233768] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 9.233770] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 9.233909] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 9.234102] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001860
[ 9.234317] usb usb1: configuration #1 chosen from 1 choice
[ 9.234442] hub 1-0:1.0: USB hub found
[ 9.234545] hub 1-0:1.0: 2 ports detected
[ 9.234746] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 9.234854] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[ 9.234857] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 9.234975] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
[ 9.235164] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001880
[ 9.235338] usb usb2: configuration #1 chosen from 1 choice
[ 9.235461] hub 2-0:1.0: USB hub found
[ 9.235564] hub 2-0:1.0: 2 ports detected
[ 9.236374] uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0
[ 9.236488] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
[ 9.236604] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[ 9.236607] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 9.236737] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
[ 9.236935] uhci_hcd 0000:00:1a.2: irq 22, io base 0x000018a0
[ 9.237128] usb usb3: configuration #1 chosen from 1 choice
[ 9.237255] hub 3-0:1.0: USB hub found
[ 9.237361] hub 3-0:1.0: 2 ports detected
[ 9.238040] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 9.238152] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 9.238260] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 9.238262] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 9.238382] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 9.238570] uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018c0
[ 9.238735] usb usb4: configuration #1 chosen from 1 choice
[ 9.238858] hub 4-0:1.0: USB hub found
[ 9.238960] hub 4-0:1.0: 2 ports detected
[ 9.239138] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 9.239245] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 9.239248] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 9.239365] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
[ 9.239553] uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018e0
[ 9.239716] usb usb5: configuration #1 chosen from 1 choice
[ 9.239839] hub 5-0:1.0: USB hub found
[ 9.239941] hub 5-0:1.0: 2 ports detected
[ 9.240133] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 9.240241] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 9.240244] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 9.240362] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
[ 9.240550] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001c00
[ 9.240714] usb usb6: configuration #1 chosen from 1 choice
[ 9.240837] hub 6-0:1.0: USB hub found
[ 9.240939] hub 6-0:1.0: 2 ports detected
[ 9.305706] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 9.305812] Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
[ 9.307064] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
[ 9.307174] ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[ 9.307296] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 9.307299] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 9.307429] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 7
[ 9.311488] ehci_hcd 0000:00:1a.7: debug port 1
[ 9.311592] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[ 9.311606] ehci_hcd 0000:00:1a.7: irq 23, io mem 0xf2826c00
[ 9.325011] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 9.325226] usb usb7: configuration #1 chosen from 1 choice
[ 9.325352] hub 7-0:1.0: USB hub found
[ 9.325455] hub 7-0:1.0: 6 ports detected
[ 9.326103] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
[ 9.326215] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[ 9.326336] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 9.326339] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 9.326463] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 8
[ 9.330531] ehci_hcd 0000:00:1d.7: debug port 1
[ 9.330636] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 9.330650] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xf2827000
[ 9.345011] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 9.345224] usb usb8: configuration #1 chosen from 1 choice
[ 9.345350] hub 8-0:1.0: USB hub found
[ 9.345454] hub 8-0:1.0: 6 ports detected
[ 9.349085] Monitor-Mwait will be used to enter C-3 state
[ 9.376051] cfg80211: Calling CRDA to update world regulatory domain
[ 9.442967] input: PC Speaker as /class/input/input7
[ 9.568059] rtc_cmos 00:07: RTC can wake from S4
[ 9.568248] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
[ 9.568374] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 9.606910] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 9.749034] usb 7-6: new high speed USB device using ehci_hcd and address 3
[ 9.815916] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27ks
[ 9.816112] iwlagn: Copyright(c) 2003-2008 Intel Corporation
[ 9.816307] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 9.816424] iwlagn 0000:03:00.0: setting latency timer to 64
[ 9.816471] iwlagn: Detected Intel Wireless WiFi Link 5300AGN REV=0x24
[ 9.845352] iwlagn: Tunable channels: 13 802.11bg, 24 802.11a channels
[ 9.845661] iwlagn 0000:03:00.0: PCI INT A disabled
[ 9.846057] phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 9.885656] usb 7-6: configuration #1 chosen from 1 choice
[ 9.952849] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 9.953097] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 9.997044] usb 8-2: new high speed USB device using ehci_hcd and address 2
[ 10.149083] usb 8-2: configuration #1 chosen from 1 choice
[ 10.294459] usbcore: registered new interface driver libusual
[ 10.319472] Initializing USB Mass Storage driver...
[ 10.324927] usb-storage: probe of 8-2:1.0 failed with error -5
[ 10.325071] usbcore: registered new interface driver usb-storage
[ 10.325180] USB Mass Storage support registered.
[ 10.389082] usb 2-1: new full speed USB device using uhci_hcd and address 2
[ 10.558552] usb 2-1: configuration #1 chosen from 1 choice
[ 10.561713] usb 8-2: USB disconnect, address 2
[ 10.800077] usb 8-2: new high speed USB device using ehci_hcd and address 3
[ 10.946545] usb 8-2: configuration #1 chosen from 1 choice
[ 11.017508] scsi5 : SCSI emulation for USB Mass Storage devices
[ 11.041435] usb-storage: device found at 3
[ 11.041440] usb-storage: waiting for device to settle before scanning
[ 11.236436] usbcore: registered new interface driver usbserial
[ 11.236607] usbserial: USB Serial Driver core
[ 11.244437] USB Serial support registered for Sierra USB modem
[ 11.244570] sierra 8-2:1.0: Sierra USB modem converter detected
[ 11.245349] usb 8-2: Sierra USB modem converter now attached to ttyUSB0
[ 11.245470] sierra 8-2:1.1: Sierra USB modem converter detected
[ 11.246150] usb 8-2: Sierra USB modem converter now attached to ttyUSB1
[ 11.246271] sierra 8-2:1.2: Sierra USB modem converter detected
[ 11.247146] usb 8-2: Sierra USB modem converter now attached to ttyUSB2
[ 11.247264] sierra 8-2:1.3: Sierra USB modem converter detected
[ 11.248123] usb 8-2: Sierra USB modem converter now attached to ttyUSB3
[ 11.248239] sierra 8-2:1.4: Sierra USB modem converter detected
[ 11.249155] usb 8-2: Sierra USB modem converter now attached to ttyUSB4
[ 11.249271] sierra 8-2:1.5: Sierra USB modem converter detected
[ 11.250156] usb 8-2: Sierra USB modem converter now attached to ttyUSB5
[ 11.250272] sierra 8-2:1.6: Sierra USB modem converter detected
[ 11.251182] usb 8-2: Sierra USB modem converter now attached to ttyUSB6
[ 11.251305] usbcore: registered new interface driver sierra
[ 11.251408] sierra: v.1.3.2:USB Driver for Sierra Wireless USB modems
[ 13.575192] loop: module loaded
[ 14.151343] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
[ 16.041722] isa bounce pool size: 16 pages
[ 16.043541] scsi 5:0:0:0: Direct-Access SWI SD Card 2.31 PQ: 0 ANSI: 2
[ 16.048830] sd 5:0:0:0: [sdb] Attached SCSI removable disk
[ 16.051049] usb-storage: device scan complete
[ 211.758878] alg: No test for stdrng (krng)
[ 211.801167] alg: No test for stdrng (ansi_cprng)
[ 213.628721] Adding 4982032k swap on /dev/mapper/swap. Priority:-1 extents:1 across:4982032k
[ 216.553472] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X
[ 216.609131] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X
[ 220.472528] NET: Registered protocol family 10
[ 220.473700] lo: Disabled Privacy Extensions
[ 220.474826] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 223.334511] thinkpad_acpi: setting the hotkey mask to 0x00ffffff is likely not the best way to go about it
[ 223.334735] thinkpad_acpi: please consider using the driver defaults, and refer to up-to-date thinkpad-acpi documentation
[ 223.398518] input: /usr/sbin/thinkpad-keys as /class/input/input8
[ 229.643535] warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use)
[ 231.689201] Bluetooth: Core ver 2.13
[ 231.691510] NET: Registered protocol family 31
[ 231.691645] Bluetooth: HCI device and connection manager initialized
[ 231.691782] Bluetooth: HCI socket layer initialized
[ 231.714432] Bluetooth: L2CAP ver 2.11
[ 231.714534] Bluetooth: L2CAP socket layer initialized
[ 231.752397] Bluetooth: RFCOMM socket layer initialized
[ 231.752530] Bluetooth: RFCOMM TTY layer initialized
[ 231.752631] Bluetooth: RFCOMM ver 1.10
[ 232.111560] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 232.111785] iwlagn 0000:03:00.0: restoring config space at offset 0x1 (was 0x100102, writing 0x100106)
[ 232.111894] iwlagn 0000:03:00.0: irq 42 for MSI/MSI-X
[ 232.111973] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode
[ 232.323534] iwlagn: Radio disabled by HW RF Kill switch
[ 232.334174] ------------[ cut here ]------------
[ 232.334313] WARNING: at net/mac80211/main.c:227 ieee80211_hw_config+0x71/0x79 [mac80211]()
[ 232.334526] Modules linked in: rfcomm l2cap bluetooth uinput autofs4 ipv6 cpufreq_powersave sha256_generic ansi_cprng krng chainiv rng aes_x86_64 aes_generic cbc dm_crypt dm_mod md_mod loop sierra usbserial usb_storage libusual arc4 ecb cryptomgr aead crypto_blkcipher snd_hda_intel snd_pcm snd_page_alloc snd_hwdep iwlagn iwlcore snd_seq snd_timer snd_seq_device snd mac80211 i2c_i801 rtc_cmos rtc_core rtc_lib pcspkr soundcore i2c_core cfg80211 ehci_hcd uhci_hcd video output usbcore e1000e wmi intel_agp thinkpad_acpi rfkill hwmon backlight led_class nvram
[ 232.338195] Pid: 5463, comm: NetworkManager Not tainted 2.6.28-rc6-wl-denkbrett-21906-g24e8b9a #1
[ 232.338409] Call Trace:
[ 232.338545] [<ffffffff80233025>] warn_on_slowpath+0x51/0x75
[ 232.338683] [<ffffffff804322d8>] qdisc_create_dflt+0x34/0x4a
[ 232.338830] [<ffffffffa0154e48>] iwl_mac_config+0x219/0x236 [iwlagn]
[ 232.338983] [<ffffffffa00dc764>] ieee80211_hw_config+0x71/0x79 [mac80211]
[ 232.339139] [<ffffffffa00e79d8>] ieee80211_open+0x5b5/0x6c5 [mac80211]
[ 232.339277] [<ffffffff8043a421>] __nla_reserve+0x1e/0x46
[ 232.339412] [<ffffffff80423176>] dev_open+0x74/0xb0
[ 232.339544] [<ffffffff80422b76>] dev_change_flags+0xab/0x169
[ 232.339680] [<ffffffff8042a295>] do_setlink+0x2b6/0x383
[ 232.339815] [<ffffffff8042b1d2>] rtnetlink_rcv_msg+0x0/0x1ea
[ 232.339949] [<ffffffff8042a4ec>] rtnl_setlink+0x10b/0x10d
[ 232.340109] [<ffffffff8042b1d2>] rtnetlink_rcv_msg+0x0/0x1ea
[ 232.340243] [<ffffffff8043a27d>] netlink_rcv_skb+0x34/0x7f
[ 232.340378] [<ffffffff8042b1cc>] rtnetlink_rcv+0x1f/0x25
[ 232.340512] [<ffffffff80439d7a>] netlink_unicast+0x203/0x274
[ 232.340647] [<ffffffff8041c951>] __alloc_skb+0x61/0x123
[ 232.340781] [<ffffffff8043a056>] netlink_sendmsg+0x26b/0x27e
[ 232.340921] [<ffffffff8047be19>] unix_stream_recvmsg+0x4ef/0x605
[ 232.341103] [<ffffffff80415fe7>] sock_sendmsg+0xe2/0xff
[ 232.341246] [<ffffffff8024567c>] autoremove_wake_function+0x0/0x2e
[ 232.341410] [<ffffffff8026dd05>] __do_fault+0x37e/0x3c6
[ 232.341570] [<ffffffff8026f906>] handle_mm_fault+0x3a3/0x746
[ 232.341748] [<ffffffff80480a76>] wext_handle_ioctl+0x33/0x67
[ 232.341894] [<ffffffff80415118>] move_addr_to_kernel+0x25/0x36
[ 232.342041] [<ffffffff8041621b>] sys_sendmsg+0x217/0x28a
[ 232.342192] [<ffffffff8043910e>] netlink_insert+0xfe/0x121
[ 232.342343] [<ffffffff80416c11>] move_addr_to_user+0x41/0x58
[ 232.342493] [<ffffffff804170cd>] sys_getsockname+0x7a/0xaa
[ 232.342647] [<ffffffff8020b3fb>] system_call_fastpath+0x16/0x1b
[ 232.342798] ---[ end trace 9e0d1a6acdac0e1e ]---
[ 232.343687] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply
* Re: linux-next: manual merge of the driver-core tree
From: Paul Mackerras @ 2008-12-04 10:42 UTC (permalink / raw)
To: Greg KH
Cc: Stephen Rothwell, linux-next, Kay Sievers, Kumar Gala,
Benjamin Herrenschmidt, linuxppc-dev
In-Reply-To: <20081204042154.GA18027@kroah.com>
Greg KH writes:
> Yes, Paul, please apply the patch, and let me know. It will make things
> much easier in the end for everyone involved.
Hmmm, I don't have it in my inbox, all I can find is an email from Kay
saying it had a problem. Care to forward it to me?
Paul.
^ permalink raw reply
* linux-next: Tree for December 4
From: Stephen Rothwell @ 2008-12-04 9:07 UTC (permalink / raw)
To: linux-next; +Cc: LKML
[-- Attachment #1: Type: text/plain, Size: 7622 bytes --]
Hi all,
Changes since 20081203:
Today's tree fails the powerpc allyesconfig build.
New trees:
rr_cpumask
jc_docs
Undropped tree:
kbuild
lblnet
Dropped trees (temporarily):
sparc (build problem)
v4l-dvb (build problem)
xfs (build problem)
crypto (build problem)
backlight (build problem)
semaphore-removal (due to unfixed conflicts against Linus' tree)
cpu_alloc (build problem)
perfmon3 (concerns from the x86 team)
The 4xx tree lost its conflict.
The s390 tree lost a conflict.
The sparc tree gained a build failure and was dropped.
The driver-core tree gained a conflict against the galak tree.
The net tree lost its 2 conflicts.
The crypto tree gained a build failure and was dropped.
The mmc tree gained a build failure due to an interaction with the
driver-core tree and had a commit reverted.
The backlight tree gained a build failure and was dropped.
----------------------------------------------------------------------------
I have created today's linux-next tree at
git://git.kernel.org/pub/scm/linux/kernel/git/sfr/linux-next.git
(patches at
http://www.kernel.org/pub/linux/kernel/people/sfr/linux-next/). If you
are tracking the linux-next tree using git, you should not use "git pull"
to do so as that will try to merge the new linux-next release with the
old one. You should use "git fetch" as mentioned in the FAQ on the wiki
(see below).
You can see which trees have been included by looking in the Next/Trees
file in the source. There are also quilt-import.log and merge.log files
in the Next directory. Between each merge, the tree was built with
a ppc64_defconfig for powerpc and an allmodconfig for x86_64. After the
final fixups (if any), it is also built with powerpc allnoconfig,
44x_defconfig and allyesconfig and i386, sparc and sparc64 defconfig.
Below is a summary of the state of the merge.
We are up to 127 trees (counting Linus' and 15 trees of patches pending for
Linus' tree), more are welcome (even if they are currently empty).
Thanks to those who have contributed, and to those who haven't, please do.
Status of my local build tests will be at
http://kisskb.ellerman.id.au/linux-next . If maintainers want to give
advice about cross compilers/configs that work, we are always open to add
more builds.
Thanks to Jan Dittmer for adding the linux-next tree to his build tests
at http://l4x.org/k/ , the guys at http://test.kernel.org/ and Randy
Dunlap for doing many randconfig builds.
There is a wiki covering stuff to do with linux-next at
http://linux.f-seidel.de/linux-next/pmwiki/ . Thanks to Frank Seidel.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
$ git checkout master
$ git reset --hard stable
Merging origin/master
Merging arm-current/master
Merging m68k-current/for-linus
Merging powerpc-merge/merge
Merging sparc-current/master
Merging scsi-rc-fixes/master
Merging net-current/master
Merging sound-current/for-linus
Merging pci-current/for-linus
Merging wireless-current/master
Merging kbuild-current/master
Merging quilt/driver-core.current
Merging quilt/usb.current
Merging cpufreq-current/fixes
Merging input-current/for-linus
Merging md-current/for-2.6.26
Merging dwmw2/master
Merging arm/devel
Merging avr32/avr32-arch
Merging blackfin/for-linus
Merging cris/for-next
Merging ia64/test
Merging m68k/for-next
Merging m68knommu/for-next
Merging mips/mips-for-linux-next
Merging parisc/master
Merging powerpc/next
Merging 4xx/next
Merging galak/next
Merging pxa/for-next
Merging s390/features
CONFLICT (content): Merge conflict in drivers/char/Makefile
Merging sh/master
Merging sparc/master
Merging x86/auto-x86-next
Merging xtensa/master
Merging quilt/driver-core
CONFLICT (content): Merge conflict in arch/powerpc/platforms/85xx/mpc85xx_mds.c
Merging quilt/usb
Merging tip-core/auto-core-next
Merging cpus4096/auto-cpus4096-next
Merging ftrace/auto-ftrace-next
CONFLICT (content): Merge conflict in scripts/recordmcount.pl
Merging genirq/auto-genirq-next
Merging safe-poison-pointers/auto-safe-poison-pointers-next
Merging sched/auto-sched-next
Merging stackprotector/auto-stackprotector-next
Merging timers/auto-timers-next
Merging pci/linux-next
Merging quilt/device-mapper
Merging hid/for-next
Merging quilt/i2c
Merging quilt/jdelvare-hwmon
Merging quilt/kernel-doc
Merging jfs/next
Merging kbuild/master
Merging quilt/ide
CONFLICT (content): Merge conflict in drivers/ide/ide-io.c
Merging libata/NEXT
Merging nfs/linux-next
Merging infiniband/for-next
Merging acpi/test
Merging nfsd/nfsd-next
Merging ieee1394/for-next
Merging ubi/linux-next
Merging kvm/master
CONFLICT (content): Merge conflict in arch/x86/kernel/reboot.c
Merging dlm/next
Merging scsi/master
Merging ocfs2/linux-next
Merging ext4/next
Merging async_tx/next
Merging udf/for_next
Merging net/master
Applying net: async_tx merge fix
Merging mtd/master
CONFLICT (content): Merge conflict in drivers/mtd/maps/physmap.c
Merging wireless/master
Merging crypto/master
$ git reset --hard HEAD^
Merging vfs/for-next
Merging sound/for-next
Merging cpufreq/next
Merging v9fs/for-next
Merging rr_cpumask/master
Merging quilt/rr
CONFLICT (content): Merge conflict in arch/x86/kernel/setup.c
CONFLICT (content): Merge conflict in kernel/cpu.c
Merging cifs/master
CONFLICT (content): Merge conflict in fs/cifs/connect.c
Applying cifs: update for new IP4/6 address printing
Merging mmc/next
Created commit ede9f32: Revert "ricoh_mmc: Use suspend/resume_noirq"
Merging gfs2/master
Merging input/next
Merging semaphore/semaphore
Merging bkl-removal/bkl-removal
Merging ubifs/linux-next
Merging lsm/for-next
Merging block/for-next
Merging embedded/master
Merging firmware/master
CONFLICT (content): Merge conflict in drivers/net/tg3.c
CONFLICT (content): Merge conflict in firmware/Makefile
CONFLICT (content): Merge conflict in firmware/WHENCE
Merging pcmcia/master
Merging battery/master
Merging leds/for-mm
Merging backlight/for-mm
$ git reset --hard HEAD^
Merging kgdb/kgdb-next
Merging slab/for-next
Merging uclinux/for-next
Merging md/for-next
Merging kmemcheck/auto-kmemcheck-next
CONFLICT (content): Merge conflict in MAINTAINERS
CONFLICT (content): Merge conflict in arch/x86/mm/Makefile
CONFLICT (content): Merge conflict in mm/slab.c
CONFLICT (content): Merge conflict in mm/slub.c
Merging generic-ipi/auto-generic-ipi-next
Merging mfd/for-next
Merging hdlc/hdlc-next
Merging drm/drm-next
Merging voltage/for-next
Merging security-testing/next
CONFLICT (content): Merge conflict in fs/cifs/cifs_fs_sb.h
CONFLICT (content): Merge conflict in fs/nfsd/nfs4recover.c
CONFLICT (content): Merge conflict in fs/ocfs2/namei.c
Merging lblnet/master
Merging quilt/ttydev
CONFLICT (content): Merge conflict in fs/devpts/inode.c
Merging agp/agp-next
Merging oprofile/auto-oprofile-next
Merging fastboot/auto-fastboot-next
Merging sparseirq/auto-sparseirq-next
Merging iommu/auto-iommu-next
Merging uwb/for-upstream
Merging watchdog/master
Merging proc/proc
CONFLICT (content): Merge conflict in fs/proc/base.c
CONFLICT (content): Merge conflict in kernel/exit.c
Merging bdev/master
Merging dwmw2-iommu/master
Merging cputime/cputime
CONFLICT (content): Merge conflict in kernel/sched.c
Merging osd/linux-next
Merging fatfs/master
Merging fuse/for-next
Merging trivial/for-next
Merging quilt/staging
Merging scsi-post-merge/master
Merging jc_docs/docs-next
Created commit 2d10cdf: Revert "Merge commit 'sparc/master'"
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply
* XFS breakage on m68k (was: Re: linux-next: Tree for December 3)
From: Geert Uytterhoeven @ 2008-12-04 9:02 UTC (permalink / raw)
To: Eric Sandeen, Christoph Hellwig, Lachlan McIlroy
Cc: Stephen Rothwell, xfs, linux-next, LKML
In-Reply-To: <20081203183602.c06f8c39.sfr@canb.auug.org.au>
On Wed, 3 Dec 2008, Stephen Rothwell wrote:
> Status of my local build tests will be at
> http://kisskb.ellerman.id.au/linux-next . If maintainers want to give
> advice about cross compilers/configs that work, we are always open to add
> more builds.
On m68k (32-bit only, no compat32), XFS fails to build in linux-next:
| fs/xfs/linux-2.6/xfs_ioctl32.h:50: error: syntax error before 'compat_time_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:52: error: syntax error before '}' token
| fs/xfs/linux-2.6/xfs_ioctl32.h:63: error: syntax error before 'compat_xfs_bstime_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:65: error: syntax error before 'bs_ctime'
| fs/xfs/linux-2.6/xfs_ioctl32.h:76: error: syntax error before '}' token
| fs/xfs/linux-2.6/xfs_ioctl32.h:79: error: syntax error before 'compat_uptr_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:81: error: syntax error before 'ubuffer'
| fs/xfs/linux-2.6/xfs_ioctl32.h:82: error: syntax error before 'ocount'
| fs/xfs/linux-2.6/xfs_ioctl32.h:94: error: syntax error before 'compat_uptr_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:96: error: syntax error before 'ihandle'
| fs/xfs/linux-2.6/xfs_ioctl32.h:98: error: syntax error before 'ohandle'
| fs/xfs/linux-2.6/xfs_ioctl32.h:99: error: syntax error before 'ohandlen'
| fs/xfs/linux-2.6/xfs_ioctl32.h:121: error: syntax error before 'compat_xfs_bstat_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:127: error: field 'hreq' has incomplete type
| fs/xfs/linux-2.6/xfs_ioctl32.h:131: error: syntax error before 'compat_uptr_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:142: error: syntax error before 'compat_uptr_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:146: error: syntax error before '}' token
| fs/xfs/linux-2.6/xfs_ioctl32.h:149: error: field 'hreq' has incomplete type
| fs/xfs/linux-2.6/xfs_ioctl32.h:152: error: syntax error before 'compat_uptr_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:159: error: field 'hreq' has incomplete type
| fs/xfs/linux-2.6/xfs_ioctl32.h:161: error: syntax error before 'compat_uptr_t'
| distcc[28223] ERROR: compile fs/xfs/linux-2.6/xfs_file.c on localhost failed
(http://kisskb.ellerman.id.au/kisskb/buildresult/58941/)
or (with a different compiler):
| In file included from fs/xfs/linux-2.6/xfs_file.c:39:
| fs/xfs/linux-2.6/xfs_ioctl32.h:50: error: expected specifier-qualifier-list before 'compat_time_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:79: error: expected specifier-qualifier-list before 'compat_uptr_t'
| fs/xfs/linux-2.6/xfs_ioctl32.h:94: error: expected specifier-qualifier-list before 'compat_uptr_t'
| make[2]: *** [fs/xfs/linux-2.6/xfs_file.o] Error 1
git bisect run says:
ffae263a640b736a7206a0d7bd14ab44eb58cd28 is first bad commit
commit ffae263a640b736a7206a0d7bd14ab44eb58cd28
Author: sandeen@sandeen.net <sandeen@sandeen.net>
Date: Tue Nov 25 21:20:07 2008 -0600
[XFS] Move compat ioctl structs & numbers into xfs_ioctl32.h
This makes the c file less cluttered and a bit more
readable. Consistently name the ioctl number
macros with "_32" and the compatibility stuctures
with "_compat." Rename the helpers which simply
copy in the arg with "_copyin" for easy identification.
Finally, for a few of the existing helpers, modify them
so that they directly call the native ioctl helper
after userspace argument fixup.
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply
* linux-next: sparc tree build failure
From: Stephen Rothwell @ 2008-12-04 8:54 UTC (permalink / raw)
To: David S. Miller; +Cc: linux-next, Sam Ravnborg
[-- Attachment #1: Type: text/plain, Size: 1228 bytes --]
Hi Dave,
Today's linux-next build (sparc64 defconfig) failed like this:
HOSTCC scripts/basic/fixdep
HOSTCC scripts/basic/docproc
HOSTCC scripts/basic/hash
GEN /scratch/sfr/sparc64_defconfig/Makefile
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/kxgettext.o
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/lex.zconf.c
SHIPPED scripts/kconfig/zconf.hash.c
HOSTCC scripts/kconfig/zconf.tab.o
HOSTLD scripts/kconfig/conf
*** Default configuration is based on 'sparc64_defconfig'
***
*** Can't find default configuration "arch/sparc/configs/sparc64_defconfig"!
***
Caused, I suspect by commit 60f2e8ffcf7291fc7df05dd91caf84d75c5181c5
("sparc,sparc64: unify Makefile") which I reverted (along with
commit 9251dc5153ee5dae27e81835a35f3b7c0a73259e "sparc,sparc64: unify
prom/" which depended on it). But that just got me to this error:
cc1: fatal error: opening output file arch/sparc64/kernel/../../sparc/kernel/vmlinux.lds: No such file or directory
(I build in a separate object directory.)
So I reverted the whole sparc tree for today.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply
* Re: linux-next: crypto tree build failure
From: Herbert Xu @ 2008-12-04 6:38 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: linux-next, Adrian-Ken Rueegsegger
In-Reply-To: <20081204134331.016d38c4.sfr@canb.auug.org.au>
On Thu, Dec 04, 2008 at 01:43:31PM +1100, Stephen Rothwell wrote:
> Hi Herbert,
>
> Today's linux-next build (x86_64 allmodconfig) failed like this:
>
> crypto/built-in.o: In function `md5_mod_init':
> crypto/md5.c:239: undefined reference to `crypto_register_shash'
> crypto/built-in.o: In function `md5_mod_fini':
> crypto/md5.c:244: undefined reference to `crypto_unregister_shash'
Thanks for the note Stephen. It should be fixed now.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply
* Re: m68k 8390 breakage
From: David Miller @ 2008-12-04 6:18 UTC (permalink / raw)
To: geert; +Cc: shemminger, sfr, netdev, linux-next, linux-kernel
In-Reply-To: <Pine.LNX.4.64.0812032135220.10635@anakin>
From: Geert Uytterhoeven <geert@linux-m68k.org>
Date: Wed, 3 Dec 2008 21:38:41 +0100 (CET)
> Oops, the log above is from allmodconfig and indeed doesn't show it.
>
> mac_defconfig (which has CONFIG_MAC8390=y) shows more info:
>
> | drivers/net/lib8390.c:303: warning: '__ei_start_xmit' defined but not used
> | drivers/net/lib8390.c:881: warning: '__ei_get_stats' defined but not used
> | drivers/net/lib8390.c:990: warning: '__ei_set_multicast_list' defined but not
> | ...
> | drivers/built-in.o: In function `ethdev_setup':
> | mac8390.c:(.text+0x29684): undefined reference to `ei_start_xmit'
> | mac8390.c:(.text+0x2968c): undefined reference to `ei_get_stats'
> | mac8390.c:(.text+0x29694): undefined reference to `ei_set_multicast_list'
>
> defconfig log at http://kisskb.ellerman.id.au/kisskb/buildresult/58646/
This mac8390 driver uses the lib8390.c/8390.[ch] mechanism a little
bit oddly, but of course we should not have broken it :-)
Stephen please take a look, thanks!
^ permalink raw reply
* Re: linux-next: xfs tree build failure
From: Eric Sandeen @ 2008-12-04 5:20 UTC (permalink / raw)
To: Stephen Rothwell
Cc: David Chinner, xfs-masters, linux-next, Christoph Hellwig,
Lachlan McIlroy
In-Reply-To: <20081204101612.ec0d4d7c.sfr@canb.auug.org.au>
Stephen Rothwell wrote:
> Hi David,
>
> The build of next-20081203 (sh titan_defconfig, powerpc ppc6xx_defconfig,
> mips defconfig, m68k defconfig and others) failed like this:
>
> In file included from fs/xfs/linux-2.6/xfs_file.c:40:
> fs/xfs/linux-2.6/xfs_ioctl32.h:50: error: expected specifier-qualifier-list before 'compat_time_t'
> fs/xfs/linux-2.6/xfs_ioctl32.h:79: error: expected specifier-qualifier-list before 'compat_uptr_t'
> fs/xfs/linux-2.6/xfs_ioctl32.h:94: error: expected specifier-qualifier-list before 'compat_uptr_t'
> fs/xfs/linux-2.6/xfs_ioctl32.h:131: error: expected specifier-qualifier-list before 'compat_uptr_t'
> fs/xfs/linux-2.6/xfs_ioctl32.h:142: error: expected specifier-qualifier-list before 'compat_uptr_t'
> fs/xfs/linux-2.6/xfs_ioctl32.h:152: error: expected specifier-qualifier-list before 'compat_uptr_t'
> fs/xfs/linux-2.6/xfs_ioctl32.h:161: error: expected specifier-qualifier-list before 'compat_uptr_t'
>
> a and few other errors depending on which arch and config.
>
> I have dropped the xfs tree for today.
My fault, grr. Christoph sent a patch to fix it which had a problem of
its own, but the sgi guys know about it all and a fix should be in their
tree soon. Sorry about that!
Thanks,
-Eric
^ permalink raw reply
* Re: linux-next: mmc tree build failure
From: Philip Langdale @ 2008-12-04 4:54 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: Pierre Ossman, linux-next, Rafael J. Wysocki, Greg KH
In-Reply-To: <20081204152829.69a795a3.sfr@canb.auug.org.au>
Stephen Rothwell wrote:
> Hi Pierre,
>
> Today's linux-next build (x86_64 allmodconfig) failed like this:
>
> drivers/mmc/host/ricoh_mmc.c:235: error: variable 'ricoh_mmc_pm_ext_opts' has initializer but incomplete type
> drivers/mmc/host/ricoh_mmc.c:236: error: unknown field 'suspend_noirq' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:236: warning: excess elements in struct initializer
> drivers/mmc/host/ricoh_mmc.c:236: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
> drivers/mmc/host/ricoh_mmc.c:237: error: unknown field 'resume_noirq' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:237: warning: excess elements in struct initializer
> drivers/mmc/host/ricoh_mmc.c:237: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
> drivers/mmc/host/ricoh_mmc.c:245: error: unknown field 'pm' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:245: warning: initialization from incompatible pointer type
>
> Due to commit 75766a3cee0a1eb2f373e8112a73e69262e7831a ("ricoh_mmc: Use
> suspend/resume_noirq") clashing with commit
> 6e674b2ed59695a90166d9500aa2696a495696e7 ("PM: Simplify the new
> suspend/hibernation framework for devices") from the driver-core tree.
>
> I am not sure what to do with this, so I have reverted the mmc tree
> commit above for today. Hopefully, Rafael can suggest a fix.
Pierre doesn't have Rafael's change in his tree yet.
I posted an updated version of my change here:
http://lkml.org/lkml/2008/12/3/219
--phil
^ permalink raw reply
* linux-next: backlight tree build failure
From: Stephen Rothwell @ 2008-12-04 5:30 UTC (permalink / raw)
To: Richard Purdie; +Cc: linux-next
[-- Attachment #1: Type: text/plain, Size: 1022 bytes --]
Hi Richard,
Today's linux-next build (x86_64 allmodconfig) failed like this:
drivers/video/backlight/tdo24m.c:17:30: error: linux/spi/tdo24m.h: No such file or directory
drivers/video/backlight/tdo24m.c: In function 'tdo24m_probe':
drivers/video/backlight/tdo24m.c:337: error: storage size of 'model' isn't known
drivers/video/backlight/tdo24m.c:342: error: dereferencing pointer to incomplete type
drivers/video/backlight/tdo24m.c:344: error: 'TDO24M' undeclared (first use in this function)
drivers/video/backlight/tdo24m.c:344: error: (Each undeclared identifier is reported only once
drivers/video/backlight/tdo24m.c:344: error: for each function it appears in.)
drivers/video/backlight/tdo24m.c:379: error: 'TDO35S' undeclared (first use in this function)
drivers/video/backlight/tdo24m.c:337: warning: unused variable 'model'
I have dropped the backlight tree for today. More care, please.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply
* Re: linux-next: Tree for December 2 (staging)
From: Greg KH @ 2008-12-04 4:38 UTC (permalink / raw)
To: Randy Dunlap; +Cc: Stephen Rothwell, linux-next, LKML
In-Reply-To: <4936F7C8.1000400@oracle.com>
On Wed, Dec 03, 2008 at 01:19:04PM -0800, Randy Dunlap wrote:
> Greg KH wrote:
> > On Tue, Dec 02, 2008 at 10:13:36AM -0800, Randy Dunlap wrote:
> >> Stephen Rothwell wrote:
> >>> Hi all,
> >>>
> >>> Changes since 20081201:
> >>>
> >>> Today's tree fails the powerpc allyesconfig build.
> >> Greg,
> >> FYI, the staging drivers still have lots of errors (as reported
> >> over 1 week ago; yes, I know, holiday time), but I've stopped reporting
> >> on them until I see some reason to think that fixes have been made.
> >
> > I've fixed the errors that I can in my tree. The majority of the errors
> > you are seeing are ones that are caused by api changes in other trees
> > that I can't fix up now in -staging until those changes go into Linus's
> > tree.
> >
> > Which is fine, I'll fix them up when I push them to Linus, so you don't
> > have to worry about them.
> >
> > Some of the other warnings are just due to horrible code, like the
> > drivers/staging/otus/ driver that has some looney macros that cause lots
> > of build warnings. Those will take more work and I'm hoping that the
> > community of developers that have been helping out with the staging tree
> > will help there.
>
> So this one is an API change or it's fixed in your tree but not in linux-next
> of 20081203?
>
> drivers/built-in.o: In function `enable_oled':
> asus_oled.c:(.text+0x52c38): undefined reference to `usb_bulk_msg'
I thought this was fixed...
Ah, tricky, the dependancy is on CONFIG_USB_SUPPORT, not CONFIG_USB,
wierd that this snuck through. I'll go fix this up, thanks for letting
me know.
greg k-h
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox