netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: 2.6.23-rc4-mm1
       [not found] ` <20070901155353.8a09db69.kamezawa.hiroyu@jp.fujitsu.com>
@ 2007-09-01  6:58   ` Andrew Morton
  2007-09-01  8:54     ` 2.6.23-rc4-mm1 Herbert Xu
  2007-09-01 11:55     ` 2.6.23-rc4-mm1 Kamalesh Babulal
  0 siblings, 2 replies; 43+ messages in thread
From: Andrew Morton @ 2007-09-01  6:58 UTC (permalink / raw)
  To: KAMEZAWA Hiroyuki; +Cc: linux-kernel, Herbert Xu, netdev

> On Sat, 1 Sep 2007 15:53:53 +0900 KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
> I met 2 troubles while I compiled rc4-mm1 on x86/UP system,
> 
> One on pcnet32.c (patch is attaced below).
> One on crypto CONFIG.
> 
> == compile log ==
> drivers/net/pcnet32.c: In function 'pcnet32_netif_stop':
> drivers/net/pcnet32.c:445: warning: unused variable 'lp'
> drivers/net/pcnet32.c: In function 'pcnet32_netif_start':
> drivers/net/pcnet32.c:455: warning: unused variable 'lp'
> drivers/net/pcnet32.c: In function 'pcnet32_interrupt':
> drivers/net/pcnet32.c:2622: error: 'struct net_device' has no member named 'napi'

Only git-net touches pcnet32.c

> crypto/built-in.o: In function `update2':
> digest.c:(.text+0x94a): undefined reference to `crypto_km_types'
> digest.c:(.text+0x9bf): undefined reference to `crypto_km_types'
> 
> digest.c (CONFIG_CRYPTO) uses crypto/scatterwalk.c's object (CONFIG_CRYPTO_ALGAPI)
> I meet this when CONFIG_CRYPTO_ALGAPI=m. I need to make CONFIG_CRYPTO_ALGAPI=y.

cc herbert..

> Regards,
> -Kame.
> == cut from here ==
> 
>  tiny bug fix for pcnet32.c (maybe works well. please confirm.)
> 
>  Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> 
>  drivers/net/pcnet32.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Index: devel-2.6.23-rc4-mm1/drivers/net/pcnet32.c
> ===================================================================
> --- devel-2.6.23-rc4-mm1.orig/drivers/net/pcnet32.c
> +++ devel-2.6.23-rc4-mm1/drivers/net/pcnet32.c
> @@ -2619,7 +2619,7 @@ pcnet32_interrupt(int irq, void *dev_id)
>  			break;
>  		}
>  #else
> -		pcnet32_rx(dev, dev->napi.weight);
> +		pcnet32_rx(dev, lp->napi.weight);
>  		if (pcnet32_tx(dev)) {
>  			/* reset the chip to clear the error condition, then restart */
>  			lp->a.reset(ioaddr);

cc netdev, thanks.

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

* Re: 2.6.23-rc4-mm1
  2007-09-01  6:58   ` 2.6.23-rc4-mm1 Andrew Morton
@ 2007-09-01  8:54     ` Herbert Xu
  2007-09-01 11:55     ` 2.6.23-rc4-mm1 Kamalesh Babulal
  1 sibling, 0 replies; 43+ messages in thread
From: Herbert Xu @ 2007-09-01  8:54 UTC (permalink / raw)
  To: Andrew Morton
  Cc: KAMEZAWA Hiroyuki, linux-kernel, netdev,
	Linux Crypto Mailing List

On Fri, Aug 31, 2007 at 11:58:15PM -0700, Andrew Morton wrote:
> 
> > crypto/built-in.o: In function `update2':
> > digest.c:(.text+0x94a): undefined reference to `crypto_km_types'
> > digest.c:(.text+0x9bf): undefined reference to `crypto_km_types'
> > 
> > digest.c (CONFIG_CRYPTO) uses crypto/scatterwalk.c's object (CONFIG_CRYPTO_ALGAPI)
> > I meet this when CONFIG_CRYPTO_ALGAPI=m. I need to make CONFIG_CRYPTO_ALGAPI=y.
> 
> cc herbert..

Sorry, only tested on x86-64 which doesn't have HIGHMEM.

I've just pushed the following fix into cryptodev-2.6.

commit 25531e010a2a1d0099b62d473244d09e72402ce5
Author: Herbert Xu <herbert@gondor.apana.org.au>
Date:   Sat Sep 1 16:52:13 2007 +0800

    [CRYPTO] api: Kill crypto_km_types

    When scatterwalk is built as a module digest.c was broken because it
    requires the crypto_km_types structure which is in scatterwalk.  This
    patch removes the crypto_km_types structure by encoding the logic into
    crypto_kmap_type directly.

    In fact, this even saves a few bytes of code (not to mention the data
    structure itself) on i386 which is about the only place where it's
    needed.

    Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

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
--
diff --git a/crypto/internal.h b/crypto/internal.h
index 60acad9..abb01f7 100644
--- a/crypto/internal.h
+++ b/crypto/internal.h
@@ -50,11 +50,16 @@ extern struct list_head crypto_alg_list;
 extern struct rw_semaphore crypto_alg_sem;
 extern struct blocking_notifier_head crypto_chain;
 
-extern enum km_type crypto_km_types[];
-
 static inline enum km_type crypto_kmap_type(int out)
 {
-	return crypto_km_types[(in_softirq() ? 2 : 0) + out];
+	enum km_type type;
+
+	if (in_softirq())
+		type = out * (KM_SOFTIRQ1 - KM_SOFTIRQ0) + KM_SOFTIRQ0;
+	else
+		type = out * (KM_USER1 - KM_USER0) + KM_USER0;
+
+	return type;
 }
 
 static inline void *crypto_kmap(struct page *page, int out)

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

* Re: 2.6.23-rc4-mm1
  2007-09-01  6:58   ` 2.6.23-rc4-mm1 Andrew Morton
  2007-09-01  8:54     ` 2.6.23-rc4-mm1 Herbert Xu
@ 2007-09-01 11:55     ` Kamalesh Babulal
  1 sibling, 0 replies; 43+ messages in thread
From: Kamalesh Babulal @ 2007-09-01 11:55 UTC (permalink / raw)
  To: KAMEZAWA Hiroyuki; +Cc: Andrew Morton, linux-kernel, Herbert Xu, netdev

Andrew Morton wrote:
>> On Sat, 1 Sep 2007 15:53:53 +0900 KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
>> I met 2 troubles while I compiled rc4-mm1 on x86/UP system,
>>
>> One on pcnet32.c (patch is attaced below).
>> One on crypto CONFIG.
>>
>> == compile log ==
>> drivers/net/pcnet32.c: In function 'pcnet32_netif_stop':
>> drivers/net/pcnet32.c:445: warning: unused variable 'lp'
>> drivers/net/pcnet32.c: In function 'pcnet32_netif_start':
>> drivers/net/pcnet32.c:455: warning: unused variable 'lp'
>> drivers/net/pcnet32.c: In function 'pcnet32_interrupt':
>> drivers/net/pcnet32.c:2622: error: 'struct net_device' has no member named 'napi'
>>     
>
> Only git-net touches pcnet32.c
>
>   
<snip>
Hi Kamezawa,

I got the pcnet32.c compile failure and after applying the patch compile 
does not fails.

Thanks & Regards,
Kamalesh Babulal.

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
       [not found] ` <20070901181352.GA4156@amd64.of.nowhere>
@ 2007-09-01 19:05   ` Jeff Garzik
  2007-09-02  0:54     ` Satyam Sharma
  0 siblings, 1 reply; 43+ messages in thread
From: Jeff Garzik @ 2007-09-01 19:05 UTC (permalink / raw)
  To: thunder7; +Cc: Andrew Morton, linux-kernel, netdev

thunder7@xs4all.nl wrote:
> From: Andrew Morton <akpm@linux-foundation.org>
> Date: Fri, Aug 31, 2007 at 09:58:22PM -0700
>> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
>>
> On this machine (Athlon 64 X2 4600, 4 GiB memory, lots of disks),
> 2.6.23-rc1-mm2 runs fine. 2.6.23-rc4-mm1 reproducably dies within seconds of starting
> a rsync session on another PC against this machine.
> 
> NULL pointer dereference
> code:	nv_napi_poll+0x108
> trace:	net_rx_action+0xab
> 	__do_softirq+0x74
> 	call_softirq+0x1c
> 	do_softirq+0x3d
> 	irq_exit+0x85
> 	do_IRQ+0x85
> 	ret_from_intr+0x0

(added netdev to CC)

I'm guessing that this is net-2.6.24.git's NAPI update.

	Jeff

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

* Re: 2.6.23-rc4-mm1 "no CRC" MODPOST warnings
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
       [not found] ` <20070901155353.8a09db69.kamezawa.hiroyu@jp.fujitsu.com>
       [not found] ` <20070901181352.GA4156@amd64.of.nowhere>
@ 2007-09-01 22:06 ` Satyam Sharma
  2007-09-01 22:40   ` Adrian Bunk
  2007-09-01 23:15   ` Sam Ravnborg
  2007-09-02  1:30 ` [PATCH -mm] net/sched/sch_cbq.c: Shut up uninitialized variable warning Satyam Sharma
                   ` (8 subsequent siblings)
  11 siblings, 2 replies; 43+ messages in thread
From: Satyam Sharma @ 2007-09-01 22:06 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linux Kernel Mailing List, netdev, Sam Ravnborg



On Fri, 31 Aug 2007, Andrew Morton wrote:
> 
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/

Got these on an i386 build with CONFIG_MODVERSIONS=y ...

WARNING: "div64_64" [net/netfilter/xt_connbytes.ko] has no CRC!
WARNING: "div64_64" [net/ipv4/tcp_cubic.ko] has no CRC!

Full .config at: http://www.cse.iitk.ac.in/users/ssatyam/config-mm

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

* Re: 2.6.23-rc4-mm1 "no CRC" MODPOST warnings
  2007-09-01 22:06 ` 2.6.23-rc4-mm1 "no CRC" MODPOST warnings Satyam Sharma
@ 2007-09-01 22:40   ` Adrian Bunk
  2007-09-01 23:15   ` Sam Ravnborg
  1 sibling, 0 replies; 43+ messages in thread
From: Adrian Bunk @ 2007-09-01 22:40 UTC (permalink / raw)
  To: Satyam Sharma
  Cc: Andrew Morton, Linux Kernel Mailing List, netdev, Sam Ravnborg

On Sun, Sep 02, 2007 at 03:36:08AM +0530, Satyam Sharma wrote:
> 
> 
> On Fri, 31 Aug 2007, Andrew Morton wrote:
> > 
> > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
> 
> Got these on an i386 build with CONFIG_MODVERSIONS=y ...
> 
> WARNING: "div64_64" [net/netfilter/xt_connbytes.ko] has no CRC!
> WARNING: "div64_64" [net/ipv4/tcp_cubic.ko] has no CRC!
>...

That's expected since the fix is in git-kbuild.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* Re: 2.6.23-rc4-mm1 "no CRC" MODPOST warnings
  2007-09-01 22:06 ` 2.6.23-rc4-mm1 "no CRC" MODPOST warnings Satyam Sharma
  2007-09-01 22:40   ` Adrian Bunk
@ 2007-09-01 23:15   ` Sam Ravnborg
  1 sibling, 0 replies; 43+ messages in thread
From: Sam Ravnborg @ 2007-09-01 23:15 UTC (permalink / raw)
  To: Satyam Sharma; +Cc: Andrew Morton, Linux Kernel Mailing List, netdev

On Sun, Sep 02, 2007 at 03:36:08AM +0530, Satyam Sharma wrote:
> 
> 
> On Fri, 31 Aug 2007, Andrew Morton wrote:
> > 
> > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
> 
> Got these on an i386 build with CONFIG_MODVERSIONS=y ...
> 
> WARNING: "div64_64" [net/netfilter/xt_connbytes.ko] has no CRC!
> WARNING: "div64_64" [net/ipv4/tcp_cubic.ko] has no CRC!

As Adrian already commented it is fixed in kbuild.git.
It happes bacause genksyms did not know __extension__ and error recovery
in the parser were bad. I only managed to add support for __extension__ but
the error receovery are not fixed :-(

kbuild.git is not part of this -mm due to me fucking up the above fix.
That is corrected now so it will be in next -mm.

	Sam

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-01 19:05   ` 2.6.23-rc4-mm1 OOPS in forcedeth? Jeff Garzik
@ 2007-09-02  0:54     ` Satyam Sharma
  2007-09-02  5:36       ` thunder7
  2007-09-02  6:19       ` thunder7
  0 siblings, 2 replies; 43+ messages in thread
From: Satyam Sharma @ 2007-09-02  0:54 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: thunder7, Andrew Morton, Linux Kernel Mailing List, netdev

Hi Jurriaan,


> thunder7@xs4all.nl wrote:
> > From: Andrew Morton <akpm@linux-foundation.org>
> > Date: Fri, Aug 31, 2007 at 09:58:22PM -0700
> > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
> > > 
> > On this machine (Athlon 64 X2 4600, 4 GiB memory, lots of disks),
> > 2.6.23-rc1-mm2 runs fine. 2.6.23-rc4-mm1 reproducably dies within seconds of
> > starting
> > a rsync session on another PC against this machine.
> > 
> > NULL pointer dereference
> > code:	nv_napi_poll+0x108
> > trace:	net_rx_action+0xab
> > 	__do_softirq+0x74
> > 	call_softirq+0x1c
> > 	do_softirq+0x3d
> > 	irq_exit+0x85
> > 	do_IRQ+0x85
> > 	ret_from_intr+0x0

The dmesg you posted below doesn't cover the messages from this oops
itself. As you mentioned you can reproduce this oops easily, please do so,
and post the *full* oops log (if it doesn't get logged to disk, you can
try taking digicam photo, or write down *all* the messages and post here).
I built an x86_64 kernel as per your .config, but don't see any memory
dereference at nv_napi_poll+0x108 -- could be toolchain differences.

Else, can you run:
$ gdb ./vmlinux

and then:
(gdb) l *nv_napi_poll+0x108

and send us the output?


Satyam

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

* [PATCH -mm] net/sched/sch_cbq.c: Shut up uninitialized variable warning
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (2 preceding siblings ...)
  2007-09-01 22:06 ` 2.6.23-rc4-mm1 "no CRC" MODPOST warnings Satyam Sharma
@ 2007-09-02  1:30 ` Satyam Sharma
  2007-09-02 11:36   ` Patrick McHardy
  2007-09-02  2:36 ` 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min() Alexey Dobriyan
                   ` (7 subsequent siblings)
  11 siblings, 1 reply; 43+ messages in thread
From: Satyam Sharma @ 2007-09-02  1:30 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Linux Kernel Mailing List, Patrick McHardy, David Miller, netdev


net/sched/sch_cbq.c: In function 'cbq_enqueue':
net/sched/sch_cbq.c:383: warning: 'ret' may be used uninitialized in this function

has been verified to be a bogus case. So let's shut it up.

Signed-off-by: Satyam Sharma <satyam@infradead.org>

---

 net/sched/sch_cbq.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.23-rc4-mm1/net/sched/sch_cbq.c~fix	2007-09-02 06:45:08.000000000 +0530
+++ linux-2.6.23-rc4-mm1/net/sched/sch_cbq.c	2007-09-02 06:44:37.000000000 +0530
@@ -380,7 +380,7 @@ cbq_enqueue(struct sk_buff *skb, struct 
 {
 	struct cbq_sched_data *q = qdisc_priv(sch);
 	int len = skb->len;
-	int ret;
+	int uninitialized_var(ret);
 	struct cbq_class *cl = cbq_classify(skb, sch, &ret);
 
 #ifdef CONFIG_NET_CLS_ACT

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

* 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min()
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (3 preceding siblings ...)
  2007-09-02  1:30 ` [PATCH -mm] net/sched/sch_cbq.c: Shut up uninitialized variable warning Satyam Sharma
@ 2007-09-02  2:36 ` Alexey Dobriyan
  2007-09-02  5:02   ` Satyam Sharma
  2007-09-02 20:52   ` Andrew Morton
  2007-09-02  9:14 ` 2.6.23-rc4-mm1 net bitops compile error Adrian Bunk
                   ` (6 subsequent siblings)
  11 siblings, 2 replies; 43+ messages in thread
From: Alexey Dobriyan @ 2007-09-02  2:36 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, netdev, davem

On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
> - dynticks-for-x86_64 has returned

Good news is that, contary to popular belief, -mm is not horrible piece
of crap and NO_HZ on x86_64 worked here straight away.


The bad news is something knocked off box from the net, then panicked it:

Box: Core 2 Duo (E6400), 2G RAM
Setup: x86_64 kernel, no preemption, SLUB with debugging on and almost
       all other debugging on
       atl1 NIC driver, connected to master box, netconsoling to it as well
Load: sequential kernel build with -j9 on many configs I do here (easy)
      LTP in infinite loop
      gdb testsuite in infinite loop with "ulimit -c unlimited"
      ssh session feeding all the above to master box

Box was left alone for several hours, strange things happened while I
was away:
	* unpingable box, frozen ssh sessions
	* still can login via VT console
	* SysRq+t works (see dmesg)
	* SysRq+t left "atl1 0000:03:00.0: tx busy" after output

At this state box was left alone for a couple of more hours, and
eventually panicked with (see full dmesg at the end)

Unable to handle kernel NULL pointer dereference at 0000000000000039 RIP: 
 [<ffffffff803b6f7c>] tcp_rto_min+0xc/0x20

which corresponds to:

	<tcp_rto_min>:
		mov	0x100(%rdi),%rdx
		mov	$0x14,%eax
		testb	$0x20,0x39(%rdx)	<===


See below for full dmesg with SysRq+t output, oops and .config and
tcp_rto_min disassembly:

P.S.: uh-oh, it's "[TCP] Allow minnimum RTO ..." aka 05bb1fad1cde

Linux version 2.6.23-rc4-mm1 (ad@core2) (gcc version 4.1.1 (Gentoo 4.1.1-r3)) #1 SMP Sat Sep 1 10:53:14 MSD 2007
Command line: root=/dev/sda2 netconsole=@10.10.0.42/eth0,9353@10.10.0.1/00:80:48:45:EC:73 ignore_loglevel
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000007ff90000 (usable)
 BIOS-e820: 000000007ff90000 - 000000007ff9e000 (ACPI data)
 BIOS-e820: 000000007ff9e000 - 000000007ffe0000 (ACPI NVS)
 BIOS-e820: 000000007ffe0000 - 0000000080000000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
Entering add_active_range(0, 0, 159) 0 entries of 256 used
Entering add_active_range(0, 256, 524176) 1 entries of 256 used
end_pfn_map = 1048576
DMI 2.4 present.
ACPI: RSDP 000FA980, 0024 (r2 ACPIAM)
ACPI: XSDT 7FF90100, 0054 (r1 KOZIRO FRONTIER  2000707 MSFT       97)
ACPI: FACP 7FF90290, 00F4 (r3 MSTEST OEMFACP   2000707 MSFT       97)
ACPI: DSDT 7FF905C0, 8FA9 (r1  A0637 A0637000        0 INTL 20060113)
ACPI: FACS 7FF9E000, 0040
ACPI: APIC 7FF90390, 006C (r1 MSTEST OEMAPIC   2000707 MSFT       97)
ACPI: MCFG 7FF90400, 003C (r1 MSTEST OEMMCFG   2000707 MSFT       97)
ACPI: SLIC 7FF90440, 0176 (r1 KOZIRO FRONTIER  2000707 MSFT       97)
ACPI: OEMB 7FF9E040, 007B (r1 MSTEST AMI_OEM   2000707 MSFT       97)
ACPI: HPET 7FF99570, 0038 (r1 MSTEST OEMHPET   2000707 MSFT       97)
ACPI: Local APIC address 0xfee00000
Entering add_active_range(0, 0, 159) 0 entries of 256 used
Entering add_active_range(0, 256, 524176) 1 entries of 256 used
sizeof(struct page) = 56
Zone PFN ranges:
  DMA             0 ->     4096
  DMA32        4096 ->  1048576
  Normal    1048576 ->  1048576
Movable zone start PFN for each node
early_node_map[2] active PFN ranges
    0:        0 ->      159
    0:      256 ->   524176
On node 0 totalpages: 524079
Node 0 memmap at 0xffff810001000000 size 29360128 first pfn 0xffff810001000000
  DMA zone: 56 pages used for memmap
  DMA zone: 1945 pages reserved
  DMA zone: 1998 pages, LIFO batch:0
  DMA32 zone: 7110 pages used for memmap
  DMA32 zone: 512970 pages, LIFO batch:31
  Normal zone: 0 pages used for memmap
  Movable zone: 0 pages used for memmap
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Processor #0 (Bootup-CPU)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Processor #1
ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Setting APIC routing to flat
ACPI: HPET id: 0x8086a202 base: 0xfed00000
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 88000000 (gap: 80000000:7ee00000)
PERCPU: Allocating 416480 bytes of per cpu data
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 514968
Kernel command line: root=/dev/sda2 netconsole=@10.10.0.42/eth0,9353@10.10.0.1/00:80:48:45:EC:73 ignore_loglevel
debug: ignoring loglevel setting.
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 32768 bytes)
Extended CMOS year: 2000
hpet clockevent registered
TSC calibrated against HPET
time.c: Detected 2135.038 MHz processor.
Console: colour VGA+ 80x25
console [tty0] enabled
Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
... MAX_LOCKDEP_SUBCLASSES:    8
... MAX_LOCK_DEPTH:          30
... MAX_LOCKDEP_KEYS:        2048
... CLASSHASH_SIZE:           1024
... MAX_LOCKDEP_ENTRIES:     8192
... MAX_LOCKDEP_CHAINS:      16384
... CHAINHASH_SIZE:          8192
 memory used by lock dependency info: 1712 kB
 per task-struct memory footprint: 2160 bytes
Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Memory: 2055448k/2096704k available (1934k kernel code, 40676k reserved, 1153k data, 572k init)
SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=16, CPUs=2, Nodes=1
Calibrating delay using timer specific routine.. 4273.51 BogoMIPS (lpj=21367553)
kswapd reclaim order set to 3
Mount-cache hash table entries: 256
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
using mwait in idle threads.
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
CPU0: Thermal monitoring enabled (TM2)
Freeing SMP alternatives: 16k freed
ACPI: Core revision 20070126
Using local APIC timer interrupts.
APIC timer calibration result 16679980
Detected 16.679 MHz APIC timer.
lockdep: not fixing up alternatives.
Booting processor 1/2 APIC 0x1
Initializing CPU#1
Calibrating delay using timer specific routine.. 4270.10 BogoMIPS (lpj=21350532)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
CPU1: Thermal monitoring enabled (TM2)
Intel(R) Core(TM)2 CPU          6400  @ 2.13GHz stepping 02
checking TSC synchronization [CPU#0 -> CPU#1]: passed.
Brought up 2 CPUs
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using configuration type 1
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
PCI quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
PCI quirk: region 0480-04bf claimed by ICH6 GPIO
PCI: Transparent bridge - 0000:00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P7._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P8._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 12 14 *15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 *14 15)
ACPI Warning (tbutils-0217): Incorrect checksum in table [OEMB] -  F8, should be EB [20070126]
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 17 devices
ACPI: ACPI bus type pnp unregistered
SCSI subsystem initialized
libata version 2.21 loaded.
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
Time: tsc clocksource has been installed.
Switched to high resolution mode on CPU 0
Switched to high resolution mode on CPU 1
pnp: 00:01: iomem range 0xfed14000-0xfed19fff has been reserved
pnp: 00:08: ioport range 0x290-0x297 has been reserved
pnp: 00:09: iomem range 0xffafe000-0xffb0cbff could not be reserved
pnp: 00:09: iomem range 0xffb00000-0xffbfffff could not be reserved
pnp: 00:09: iomem range 0xfed1c000-0xfed1ffff has been reserved
pnp: 00:09: iomem range 0xfed20000-0xfed8ffff has been reserved
pnp: 00:0c: iomem range 0xfec00000-0xfec00fff has been reserved
pnp: 00:0c: iomem range 0xfee00000-0xfee00fff could not be reserved
pnp: 00:0f: iomem range 0xe0000000-0xefffffff has been reserved
pnp: 00:10: iomem range 0x0-0x9ffff could not be reserved
pnp: 00:10: iomem range 0xc0000-0xcffff has been reserved
pnp: 00:10: iomem range 0xe0000-0xfffff could not be reserved
pnp: 00:10: iomem range 0x100000-0x7fffffff could not be reserved
PCI: Bridge: 0000:00:01.0
  IO window: a000-afff
  MEM window: f8800000-fe8fffff
  PREFETCH window: bfe00000-dfdfffff
PCI: Bridge: 0000:00:1c.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: dfe00000-dfefffff
PCI: Bridge: 0000:00:1c.3
  IO window: disabled.
  MEM window: fea00000-feafffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:1c.4
  IO window: b000-bfff
  MEM window: fe900000-fe9fffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:1e.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:00:01.0 to 64
ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 16 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:00:1c.0 to 64
ACPI: PCI Interrupt 0000:00:1c.3[D] -> GSI 19 (level, low) -> IRQ 19
PCI: Setting latency timer of device 0000:00:1c.3 to 64
ACPI: PCI Interrupt 0000:00:1c.4[A] -> GSI 16 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:00:1c.4 to 64
PCI: Setting latency timer of device 0000:00:1e.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
TCP established hash table entries: 32768 (order: 9, 2359296 bytes)
TCP bind hash table entries: 32768 (order: 9, 2097152 bytes)
TCP: Hash tables configured (established 32768 bind 32768)
TCP reno registered
io scheduler noop registered
io scheduler cfq registered (default)
Boot video device is 0000:01:00.0
Real Time Clock Driver v1.12ac
ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 19 (level, low) -> IRQ 19
PCI: Setting latency timer of device 0000:03:00.0 to 64
atl1 0000:03:00.0: version 2.0.7
netconsole: local port 6665
netconsole: local IP 10.10.0.42
netconsole: interface eth0
netconsole: remote port 9353
netconsole: remote IP 10.10.0.1
netconsole: remote ethernet address 00:80:48:45:ec:73
netconsole: device eth0 not up yet, forcing it
atl1 0000:03:00.0: eth0 link is up 100 Mbps full duplex
console [netcon0] enabled
netconsole: network logging started
ahci 0000:02:00.0: version 2.3
ACPI: PCI Interrupt 0000:02:00.0[A] -> GSI 16 (level, low) -> IRQ 16
ahci 0000:02:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
ahci 0000:02:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
PCI: Setting latency timer of device 0000:02:00.0 to 64
scsi0 : ahci
scsi1 : ahci
ata1: SATA max UDMA/133 abar m8192@0xfe9fe000 port 0xfe9fe100 irq 16
ata2: SATA max UDMA/133 abar m8192@0xfe9fe000 port 0xfe9fe180 irq 16
ata1: SATA link down (SStatus 0 SControl 300)
ata2: SATA link down (SStatus 0 SControl 300)
ata_piix 0000:00:1f.2: version 2.12
ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
ACPI: PCI Interrupt 0000:00:1f.2[B] -> GSI 19 (level, low) -> IRQ 19
PCI: Setting latency timer of device 0000:00:1f.2 to 64
scsi2 : ata_piix
scsi3 : ata_piix
ata3: SATA max UDMA/133 cmd 0xec00 ctl 0xe880 bmdma 0xe400 irq 19
ata4: SATA max UDMA/133 cmd 0xe800 ctl 0xe480 bmdma 0xe408 irq 19
ata3.00: ATA-7: ST3250620AS, 3.AAE, max UDMA/133
ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
ata3.00: configured for UDMA/133
ata4.00: ATA-7: ST3320620AS, 3.AAK, max UDMA/133
ata4.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 0/32)
ata4.00: configured for UDMA/133
scsi 2:0:0:0: Direct-Access     ATA      ST3250620AS      3.AA PQ: 0 ANSI: 5
sd 2:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
sd 2:0:0:0: [sda] Write Protect is off
sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 2:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
sd 2:0:0:0: [sda] Write Protect is off
sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda: sda1 sda2 sda3
sd 2:0:0:0: [sda] Attached SCSI disk
scsi 3:0:0:0: Direct-Access     ATA      ST3320620AS      3.AA PQ: 0 ANSI: 5
sd 3:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 3:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdb: sdb1
sd 3:0:0:0: [sdb] Attached SCSI disk
ata_piix 0000:00:1f.5: MAP [ P0 P2 P1 P3 ]
ACPI: PCI Interrupt 0000:00:1f.5[B] -> GSI 19 (level, low) -> IRQ 19
PCI: Setting latency timer of device 0000:00:1f.5 to 64
scsi4 : ata_piix
scsi5 : ata_piix
ata5: SATA max UDMA/133 cmd 0xd400 ctl 0xd080 bmdma 0xc880 irq 19
ata6: SATA max UDMA/133 cmd 0xd000 ctl 0xcc00 bmdma 0xc888 irq 19
ACPI: PCI Interrupt 0000:02:00.1[B] -> GSI 17 (level, low) -> IRQ 17
PCI: Setting latency timer of device 0000:02:00.1 to 64
scsi6 : pata_jmicron
scsi7 : pata_jmicron
ata7: PATA max UDMA/100 cmd 0xbc00 ctl 0xb880 bmdma 0xb400 irq 17
ata8: PATA max UDMA/100 cmd 0xb800 ctl 0xb480 bmdma 0xb408 irq 17
ata7.01: ATAPI: Optiarc DVD RW AD-7173A, 1-01, max UDMA/66
ata7.01: configured for UDMA/66
scsi 6:0:1:0: CD-ROM            Optiarc  DVD RW AD-7173A  1-01 PQ: 0 ANSI: 5
sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 6:0:1:0: Attached scsi CD-ROM sr0
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
TCP cubic registered
NET: Registered protocol family 1
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 572k freed
Write protecting the kernel read-only data: 2844k
EXT3 FS on sda2, internal journal
Adding 987956k swap on /dev/sda1.  Priority:-1 extents:1 across:987956k
Adding 65528k swap on ./swapfile01.  Priority:-2 extents:441 across:214212k
Adding 65528k swap on ./swapfile01.  Priority:-3 extents:295 across:307176k
Adding 65528k swap on ./swapfile01.  Priority:-4 extents:519 across:291404k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-5 extents:1 across:32k
Adding 32k swap on swapfile03.  Priority:-6 extents:1 across:32k
Adding 32k swap on swapfile04.  Priority:-7 extents:2 across:32k
Adding 32k swap on swapfile05.  Priority:-8 extents:1 across:32k
Adding 32k swap on swapfile06.  Priority:-9 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-10 extents:2 across:44k
Adding 32k swap on swapfile08.  Priority:-11 extents:2 across:32k
Adding 32k swap on swapfile09.  Priority:-12 extents:1 across:32k
Adding 32k swap on swapfile10.  Priority:-13 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-14 extents:4 across:84k
Adding 32k swap on swapfile12.  Priority:-15 extents:2 across:32k
Adding 32k swap on swapfile13.  Priority:-16 extents:1 across:32k
Adding 32k swap on swapfile14.  Priority:-17 extents:1 across:32k
Adding 32k swap on swapfile15.  Priority:-18 extents:2 across:36k
Adding 32k swap on swapfile16.  Priority:-19 extents:2 across:32k
Adding 32k swap on swapfile17.  Priority:-20 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-21 extents:1 across:32k
Adding 32k swap on swapfile19.  Priority:-22 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-23 extents:2 across:32k
Adding 32k swap on swapfile21.  Priority:-24 extents:1 across:32k
Adding 32k swap on swapfile22.  Priority:-25 extents:1 across:32k
Adding 32k swap on swapfile23.  Priority:-26 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-27 extents:2 across:32k
Adding 32k swap on swapfile25.  Priority:-28 extents:1 across:32k
Adding 32k swap on swapfile26.  Priority:-29 extents:1 across:32k
Adding 32k swap on swapfile27.  Priority:-30 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-31 extents:2 across:32k
Adding 32k swap on swapfile29.  Priority:-32 extents:1 across:32k
Adding 32k swap on swapfile30.  Priority:-33 extents:1 across:32k
Adding 32k swap on swapfile31.  Priority:-34 extents:1 across:32k
Adding 32k swap on swapfile32.  Priority:-35 extents:2 across:32k
warning: process `sysctl01' used the deprecated sysctl system call with 1.1.
warning: process `sysctl01' used the deprecated sysctl system call with 1.2.
warning: process `sysctl03' used the deprecated sysctl system call with 1.1.
warning: process `sysctl03' used the deprecated sysctl system call with 1.1.
warning: process `sysctl04' used the deprecated sysctl system call with 
Adding 65528k swap on ./swapfile01.  Priority:-36 extents:437 across:208464k
Adding 65528k swap on ./swapfile01.  Priority:-37 extents:299 across:307156k
Adding 65528k swap on ./swapfile01.  Priority:-38 extents:436 across:208460k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-39 extents:2 across:44k
Adding 32k swap on swapfile03.  Priority:-40 extents:2 across:32k
Adding 32k swap on swapfile04.  Priority:-41 extents:2 across:32k
Adding 32k swap on swapfile05.  Priority:-42 extents:2 across:88k
Adding 32k swap on swapfile06.  Priority:-43 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-44 extents:1 across:32k
Adding 32k swap on swapfile08.  Priority:-45 extents:1 across:32k
Adding 32k swap on swapfile09.  Priority:-46 extents:1 across:32k
Adding 32k swap on swapfile10.  Priority:-47 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-48 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-49 extents:3 across:44k
Adding 32k swap on swapfile13.  Priority:-50 extents:2 across:32k
Adding 32k swap on swapfile14.  Priority:-51 extents:1 across:32k
Adding 32k swap on swapfile15.  Priority:-52 extents:1 across:32k
Adding 32k swap on swapfile16.  Priority:-53 extents:2 across:32k
Adding 32k swap on swapfile17.  Priority:-54 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-55 extents:3 across:52k
Adding 32k swap on swapfile19.  Priority:-56 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-57 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-58 extents:1 across:32k
Adding 32k swap on swapfile22.  Priority:-59 extents:2 across:32k
Adding 32k swap on swapfile23.  Priority:-60 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-61 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-62 extents:1 across:32k
Adding 32k swap on swapfile26.  Priority:-63 extents:1 across:32k
Adding 32k swap on swapfile27.  Priority:-64 extents:2 across:36k
Adding 32k swap on swapfile28.  Priority:-65 extents:2 across:32k
Adding 32k swap on swapfile29.  Priority:-66 extents:1 across:32k
Adding 32k swap on swapfile30.  Priority:-67 extents:2 across:32k
Adding 32k swap on swapfile31.  Priority:-68 extents:2 across:32k
Adding 32k swap on swapfile32.  Priority:-69 extents:1 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-70 extents:437 across:208512k
Adding 65528k swap on ./swapfile01.  Priority:-71 extents:303 across:307096k
Adding 65528k swap on ./swapfile01.  Priority:-72 extents:545 across:306152k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-73 extents:2 across:36k
Adding 32k swap on swapfile03.  Priority:-74 extents:1 across:32k
Adding 32k swap on swapfile04.  Priority:-75 extents:2 across:32k
Adding 32k swap on swapfile05.  Priority:-76 extents:1 across:32k
Adding 32k swap on swapfile06.  Priority:-77 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-78 extents:2 across:44k
Adding 32k swap on swapfile08.  Priority:-79 extents:2 across:32k
Adding 32k swap on swapfile09.  Priority:-80 extents:1 across:32k
Adding 32k swap on swapfile10.  Priority:-81 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-82 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-83 extents:1 across:32k
Adding 32k swap on swapfile13.  Priority:-84 extents:1 across:32k
Adding 32k swap on swapfile14.  Priority:-85 extents:2 across:668k
Adding 32k swap on swapfile15.  Priority:-86 extents:1 across:32k
Adding 32k swap on swapfile16.  Priority:-87 extents:1 across:32k
Adding 32k swap on swapfile17.  Priority:-88 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-89 extents:1 across:32k
Adding 32k swap on swapfile19.  Priority:-90 extents:5 across:56k
Adding 32k swap on swapfile20.  Priority:-91 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-92 extents:1 across:32k
Adding 32k swap on swapfile22.  Priority:-93 extents:1 across:32k
Adding 32k swap on swapfile23.  Priority:-94 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-95 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-96 extents:1 across:32k
Adding 32k swap on swapfile26.  Priority:-97 extents:3 across:44k
Adding 32k swap on swapfile27.  Priority:-98 extents:2 across:32k
Adding 32k swap on swapfile28.  Priority:-99 extents:1 across:32k
Adding 32k swap on swapfile29.  Priority:-100 extents:1 across:32k
Adding 32k swap on swapfile30.  Priority:-101 extents:2 across:32k
Adding 32k swap on swapfile31.  Priority:-102 extents:3 across:48k
Adding 32k swap on swapfile32.  Priority:-103 extents:1 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-104 extents:2819 across:1023220k
Adding 65528k swap on ./swapfile01.  Priority:-105 extents:2126 across:1336040k
Adding 65528k swap on ./swapfile01.  Priority:-106 extents:2783 across:1040412k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-107 extents:2 across:36k
Adding 32k swap on swapfile03.  Priority:-108 extents:1 across:32k
Adding 32k swap on swapfile04.  Priority:-109 extents:2 across:32k
Adding 32k swap on swapfile05.  Priority:-110 extents:2 across:48k
Adding 32k swap on swapfile06.  Priority:-111 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-112 extents:4 across:13712k
Adding 32k swap on swapfile08.  Priority:-113 extents:1 across:32k
Adding 32k swap on swapfile09.  Priority:-114 extents:3 across:8060k
Adding 32k swap on swapfile10.  Priority:-115 extents:3 across:80k
Adding 32k swap on swapfile11.  Priority:-116 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-117 extents:3 across:95376k
Adding 32k swap on swapfile13.  Priority:-118 extents:1 across:32k
Adding 32k swap on swapfile14.  Priority:-119 extents:1 across:32k
Adding 32k swap on swapfile15.  Priority:-120 extents:2 across:32k
Adding 32k swap on swapfile16.  Priority:-121 extents:4 across:71636k
Adding 32k swap on swapfile17.  Priority:-122 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-123 extents:2 across:60k
Adding 32k swap on swapfile19.  Priority:-124 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-125 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-126 extents:2 across:7272k
Adding 32k swap on swapfile22.  Priority:-127 extents:1 across:32k
Adding 32k swap on swapfile23.  Priority:-128 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-129 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-130 extents:1 across:32k
Adding 32k swap on swapfile26.  Priority:-131 extents:1 across:32k
Adding 32k swap on swapfile27.  Priority:-132 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-133 extents:1 across:32k
Adding 32k swap on swapfile29.  Priority:-134 extents:2 across:668k
Adding 32k swap on swapfile30.  Priority:-135 extents:2 across:32k
Adding 32k swap on swapfile31.  Priority:-136 extents:3 across:80k
Adding 32k swap on swapfile32.  Priority:-137 extents:1 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-138 extents:244 across:4982272k
Adding 65528k swap on ./swapfile01.  Priority:-139 extents:153 across:4967584k
Adding 65528k swap on ./swapfile01.  Priority:-140 extents:235 across:4962056k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-141 extents:5 across:15384k
Adding 32k swap on swapfile03.  Priority:-142 extents:3 across:12216k
Adding 32k swap on swapfile04.  Priority:-143 extents:5 across:512k
Adding 32k swap on swapfile05.  Priority:-144 extents:7 across:121184k
Adding 32k swap on swapfile06.  Priority:-145 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-146 extents:1 across:32k
Adding 32k swap on swapfile08.  Priority:-147 extents:1 across:32k
Adding 32k swap on swapfile09.  Priority:-148 extents:1 across:32k
Adding 32k swap on swapfile10.  Priority:-149 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-150 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-151 extents:2 across:32k
Adding 32k swap on swapfile13.  Priority:-152 extents:2 across:9964k
Adding 32k swap on swapfile14.  Priority:-153 extents:2 across:1432k
Adding 32k swap on swapfile15.  Priority:-154 extents:4 across:130088k
Adding 32k swap on swapfile16.  Priority:-155 extents:2 across:40k
Adding 32k swap on swapfile17.  Priority:-156 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-157 extents:1 across:32k
Adding 32k swap on swapfile19.  Priority:-158 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-159 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-160 extents:4 across:520k
Adding 32k swap on swapfile22.  Priority:-161 extents:2 across:120k
Adding 32k swap on swapfile23.  Priority:-162 extents:3 across:84740k
Adding 32k swap on swapfile24.  Priority:-163 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-164 extents:4 across:53808k
Adding 32k swap on swapfile26.  Priority:-165 extents:7 across:88k
Adding 32k swap on swapfile27.  Priority:-166 extents:6 across:76k
Adding 32k swap on swapfile28.  Priority:-167 extents:3 across:226336k
Adding 32k swap on swapfile29.  Priority:-168 extents:3 across:80k
Adding 32k swap on swapfile30.  Priority:-169 extents:1 across:32k
Adding 32k swap on swapfile31.  Priority:-170 extents:4 across:1108k
Adding 32k swap on swapfile32.  Priority:-171 extents:3 across:352k
Adding 65528k swap on ./swapfile01.  Priority:-172 extents:233 across:5005176k
Adding 65528k swap on ./swapfile01.  Priority:-173 extents:305 across:5136576k
Adding 65528k swap on ./swapfile01.  Priority:-174 extents:233 across:5005172k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-175 extents:7 across:15616k
Adding 32k swap on swapfile03.  Priority:-176 extents:4 across:2100k
Adding 32k swap on swapfile04.  Priority:-177 extents:3 across:2460k
Adding 32k swap on swapfile05.  Priority:-178 extents:1 across:32k
Adding 32k swap on swapfile06.  Priority:-179 extents:3 across:114224k
Adding 32k swap on swapfile07.  Priority:-180 extents:2 across:40k
Adding 32k swap on swapfile08.  Priority:-181 extents:1 across:32k
Adding 32k swap on swapfile09.  Priority:-182 extents:2 across:40k
Adding 32k swap on swapfile10.  Priority:-183 extents:2 across:32k
Adding 32k swap on swapfile11.  Priority:-184 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-185 extents:1 across:32k
Adding 32k swap on swapfile13.  Priority:-186 extents:2 across:264k
Adding 32k swap on swapfile14.  Priority:-187 extents:2 across:32k
Adding 32k swap on swapfile15.  Priority:-188 extents:1 across:32k
Adding 32k swap on swapfile16.  Priority:-189 extents:1 across:32k
Adding 32k swap on swapfile17.  Priority:-190 extents:2 across:32k
Adding 32k swap on swapfile18.  Priority:-191 extents:2 across:232k
Adding 32k swap on swapfile19.  Priority:-192 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-193 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-194 extents:2 across:32k
Adding 32k swap on swapfile22.  Priority:-195 extents:2 across:32k
Adding 32k swap on swapfile23.  Priority:-196 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-197 extents:2 across:264k
Adding 32k swap on swapfile25.  Priority:-198 extents:2 across:32k
Adding 32k swap on swapfile26.  Priority:-199 extents:1 across:32k
Adding 32k swap on swapfile27.  Priority:-200 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-201 extents:2 across:32k
Adding 32k swap on swapfile29.  Priority:-202 extents:1 across:32k
Adding 32k swap on swapfile30.  Priority:-203 extents:1 across:32k
Adding 32k swap on swapfile31.  Priority:-204 extents:2 across:232k
Adding 32k swap on swapfile32.  Priority:-205 extents:1 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-206 extents:262 across:3334788k
Adding 65528k swap on ./swapfile01.  Priority:-207 extents:513 across:3293028k
Adding 65528k swap on ./swapfile01.  Priority:-208 extents:234 across:3214248k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-209 extents:2 across:396k
Adding 32k swap on swapfile03.  Priority:-210 extents:2 across:312k
Adding 32k swap on swapfile04.  Priority:-211 extents:2 across:576k
Adding 32k swap on swapfile05.  Priority:-212 extents:3 across:272k
Adding 32k swap on swapfile06.  Priority:-213 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-214 extents:3 across:2108k
Adding 32k swap on swapfile08.  Priority:-215 extents:5 across:83148k
Adding 32k swap on swapfile09.  Priority:-216 extents:5 across:812k
Adding 32k swap on swapfile10.  Priority:-217 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-218 extents:2 across:32k
Adding 32k swap on swapfile12.  Priority:-219 extents:1 across:32k
Adding 32k swap on swapfile13.  Priority:-220 extents:1 across:32k
Adding 32k swap on swapfile14.  Priority:-221 extents:4 across:2120k
Adding 32k swap on swapfile15.  Priority:-222 extents:1 across:32k
Adding 32k swap on swapfile16.  Priority:-223 extents:1 across:32k
Adding 32k swap on swapfile17.  Priority:-224 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-225 extents:3 across:1224k
Adding 32k swap on swapfile19.  Priority:-226 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-227 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-228 extents:3 across:36k
Adding 32k swap on swapfile22.  Priority:-229 extents:2 across:32k
Adding 32k swap on swapfile23.  Priority:-230 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-231 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-232 extents:2 across:32k
Adding 32k swap on swapfile26.  Priority:-233 extents:1 across:32k
Adding 32k swap on swapfile27.  Priority:-234 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-235 extents:1 across:32k
Adding 32k swap on swapfile29.  Priority:-236 extents:2 across:32k
Adding 32k swap on swapfile30.  Priority:-237 extents:1 across:32k
Adding 32k swap on swapfile31.  Priority:-238 extents:1 across:32k
Adding 32k swap on swapfile32.  Priority:-239 extents:2 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-240 extents:349 across:291004k
Adding 65528k swap on ./swapfile01.  Priority:-241 extents:446 across:431984k
Adding 65528k swap on ./swapfile01.  Priority:-242 extents:370 across:422936k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-243 extents:3 across:16272k
Adding 32k swap on swapfile03.  Priority:-244 extents:3 across:56k
Adding 32k swap on swapfile04.  Priority:-245 extents:5 across:17720k
Adding 32k swap on swapfile05.  Priority:-246 extents:1 across:32k
Adding 32k swap on swapfile06.  Priority:-247 extents:3 across:114368k
Adding 32k swap on swapfile07.  Priority:-248 extents:3 across:232k
Adding 32k swap on swapfile08.  Priority:-249 extents:1 across:32k
Adding 32k swap on swapfile09.  Priority:-250 extents:5 across:1660k
Adding 32k swap on swapfile10.  Priority:-251 extents:2 across:32k
Adding 32k swap on swapfile11.  Priority:-252 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-253 extents:2 across:216k
Adding 32k swap on swapfile13.  Priority:-254 extents:1 across:32k
Adding 32k swap on swapfile14.  Priority:-255 extents:1 across:32k
Adding 32k swap on swapfile15.  Priority:-256 extents:1 across:32k
Adding 32k swap on swapfile16.  Priority:-257 extents:2 across:32k
Adding 32k swap on swapfile17.  Priority:-258 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-259 extents:1 across:32k
Adding 32k swap on swapfile19.  Priority:-260 extents:5 across:500k
Adding 32k swap on swapfile20.  Priority:-261 extents:3 across:272k
Adding 32k swap on swapfile21.  Priority:-262 extents:1 across:32k
Adding 32k swap on swapfile22.  Priority:-263 extents:1 across:32k
Adding 32k swap on swapfile23.  Priority:-264 extents:2 across:232k
Adding 32k swap on swapfile24.  Priority:-265 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-266 extents:1 across:32k
Adding 32k swap on swapfile26.  Priority:-267 extents:2 across:32k
Adding 32k swap on swapfile27.  Priority:-268 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-269 extents:3 across:40k
Adding 32k swap on swapfile29.  Priority:-270 extents:5 across:18668k
Adding 32k swap on swapfile30.  Priority:-271 extents:3 across:488k
Adding 32k swap on swapfile31.  Priority:-272 extents:1 across:32k
Adding 32k swap on swapfile32.  Priority:-273 extents:1 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-274 extents:444 across:483772k
Adding 65528k swap on ./swapfile01.  Priority:-275 extents:255 across:769156k
Adding 65528k swap on ./swapfile01.  Priority:-276 extents:384 across:589124k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-277 extents:2 across:32k
Adding 32k swap on swapfile03.  Priority:-278 extents:1 across:32k
Adding 32k swap on swapfile04.  Priority:-279 extents:1 across:32k
Adding 32k swap on swapfile05.  Priority:-280 extents:2 across:3220k
Adding 32k swap on swapfile06.  Priority:-281 extents:1 across:32k
Adding 32k swap on swapfile07.  Priority:-282 extents:1 across:32k
Adding 32k swap on swapfile08.  Priority:-283 extents:3 across:44k
Adding 32k swap on swapfile09.  Priority:-284 extents:2 across:44k
Adding 32k swap on swapfile10.  Priority:-285 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-286 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-287 extents:1 across:32k
Adding 32k swap on swapfile13.  Priority:-288 extents:3 across:200k
Adding 32k swap on swapfile14.  Priority:-289 extents:2 across:668k
Adding 32k swap on swapfile15.  Priority:-290 extents:3 across:116k
Adding 32k swap on swapfile16.  Priority:-291 extents:1 across:32k
Adding 32k swap on swapfile17.  Priority:-292 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-293 extents:3 across:44k
Adding 32k swap on swapfile19.  Priority:-294 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-295 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-296 extents:2 across:32k
Adding 32k swap on swapfile22.  Priority:-297 extents:1 across:32k
Adding 32k swap on swapfile23.  Priority:-298 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-299 extents:2 across:36k
Adding 32k swap on swapfile25.  Priority:-300 extents:1 across:32k
Adding 32k swap on swapfile26.  Priority:-301 extents:4 across:84k
Adding 32k swap on swapfile27.  Priority:-302 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-303 extents:1 across:32k
Adding 32k swap on swapfile29.  Priority:-304 extents:2 across:32k
Adding 32k swap on swapfile30.  Priority:-305 extents:4 across:448k
Adding 32k swap on swapfile31.  Priority:-306 extents:1 across:32k
Adding 32k swap on swapfile32.  Priority:-307 extents:1 across:32k
Adding 65528k swap on ./swapfile01.  Priority:-308 extents:404 across:251672k
Adding 65528k swap on ./swapfile01.  Priority:-309 extents:818 across:3493240k
Adding 65528k swap on ./swapfile01.  Priority:-310 extents:420 across:416548k
Unable to find swap-space signature
Adding 32k swap on swapfile02.  Priority:-311 extents:3 across:60k
Adding 32k swap on swapfile03.  Priority:-312 extents:3 across:80k
Adding 32k swap on swapfile04.  Priority:-313 extents:1 across:32k
Adding 32k swap on swapfile05.  Priority:-314 extents:1 across:32k
Adding 32k swap on swapfile06.  Priority:-315 extents:3 across:7436k
Adding 32k swap on swapfile07.  Priority:-316 extents:3 across:60k
Adding 32k swap on swapfile08.  Priority:-317 extents:1 across:32k
Adding 32k swap on swapfile09.  Priority:-318 extents:2 across:56k
Adding 32k swap on swapfile10.  Priority:-319 extents:1 across:32k
Adding 32k swap on swapfile11.  Priority:-320 extents:1 across:32k
Adding 32k swap on swapfile12.  Priority:-321 extents:4 across:1672k
Adding 32k swap on swapfile13.  Priority:-322 extents:1 across:32k
Adding 32k swap on swapfile14.  Priority:-323 extents:2 across:56k
Adding 32k swap on swapfile15.  Priority:-324 extents:1 across:32k
Adding 32k swap on swapfile16.  Priority:-325 extents:2 across:32k
Adding 32k swap on swapfile17.  Priority:-326 extents:1 across:32k
Adding 32k swap on swapfile18.  Priority:-327 extents:1 across:32k
Adding 32k swap on swapfile19.  Priority:-328 extents:1 across:32k
Adding 32k swap on swapfile20.  Priority:-329 extents:1 across:32k
Adding 32k swap on swapfile21.  Priority:-330 extents:2 across:32k
Adding 32k swap on swapfile22.  Priority:-331 extents:1 across:32k
Adding 32k swap on swapfile23.  Priority:-332 extents:1 across:32k
Adding 32k swap on swapfile24.  Priority:-333 extents:1 across:32k
Adding 32k swap on swapfile25.  Priority:-334 extents:5 across:500k
Adding 32k swap on swapfile26.  Priority:-335 extents:7 across:18760k
Adding 32k swap on swapfile27.  Priority:-336 extents:1 across:32k
Adding 32k swap on swapfile28.  Priority:-337 extents:3 across:56k
Adding 32k swap on swapfile29.  Priority:-338 extents:2 across:32k
Adding 32k swap on swapfile30.  Priority:-339 extents:1 across:32k
Adding 32k swap on swapfile31.  Priority:-340 extents:1 across:32k
Adding 32k swap on swapfile32.  Priority:-341 extents:1 across:32k


		[at this point box is knocked off the net,
		 from VT console]


SysRq : Show State
  task                        PC stack   pid father
init          S ffff810003f70540     0     1      0
 ffff8100034899f8 0000000000000096 ffffffff803e28d5 ffffffff805cbfc0
 000000010030f95c ffff810003480000 ffff81001125d320 ffff810003480218
 0000000000000296 0000000000000296 0000000000000400 ffff810003489a08
Call Trace:
 [<ffffffff803dfe5f>] schedule_timeout+0x5f/0xd0
 [<ffffffff8028995d>] do_select+0x44d/0x540
 [<ffffffff80289c55>] core_sys_select+0x205/0x300
 [<ffffffff8028a1f1>] sys_select+0xd1/0x1c0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007fc61d9a82d3>]

kthreadd      S ffff810004810000     0     2      0
 ffff81000348bf20 0000000000000086 0000000200000000 0000000000000000
 ffff810014d4bdc8 ffff8100034810a0 ffff81000da90000 ffff8100034812b8
 ffffffff804dced8 ffffffff80245ea5 0000000000000000 ffff8100034810a0
Call Trace:
 [<ffffffff8023bb76>] kthreadd+0x146/0x150
es+0xaa/0x100
<4> [<ffffffff8029bb55>] sync_inodes+0x35/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f71500     0 16718  16712
 ffff81000d87fd08 0000000000000092 ffff81006b396b18 ffff81006b3963c0
 0000000000000000 ffff81006b3963c0 ffff8100036763c0 ffff81006b3965d8
 0000000000000002 ffff81006b3963c0 ffffffff803e28d5 ffff81000d87fd18
Call Trace:
 [<ffffffff802d1155>] log_wait_commit+0xc5/0x140
 [<ffffffff802cbc8e>] journal_stop+0x12e/0x210
 [<ffffffff8029b279>] __writeback_single_inode+0x2a9/0x350
 [<ffffffff8029b7a7>] generic_sync_sb_inodes+0x227/0x3d0
 [<ffffffff8029ba0b>] sync_inodes_sb+0x9b/0xb0
 [<ffffffff8029baca>] __sync_inodes+0xaa/0x100
 [<ffffffff8029bb55>] sync_inodes+0x35/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

pdflush       S ffff810004e224c0     0 16988      2
 ffff8100716e9ee0 0000000000000086 0000000200000001 0000000000000000
 0000000000000000 ffff810003622140 ffff81000b4190a0 ffff810003622358
 ffffffff804e6440 ffffffff80245ea5 0000000000000000 ffff810003622140
Call Trace:
 [<fff [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f3c1b46e810>]

make          S ffff810004e20fc0     0 27369  26324
 ffff81003167bce8 0000000000000096 ffff81006b390758 ffff81006b390000
 0000000000000000 ffff81006b390000 ffff8100648d2140 ffff81006b390218
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b89fff49810>]

make          S ffff810003f6e900     0 28427  26324
 ffff81000d96fce8 0000000000000096 ffff81000b508758 ffff81000b508000
 0000000000000000 ffff81000b508000 ffff81006b390000 ffff81000b508218
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002af937289810>]

make          S ffff810003f6b480     0  7879   2541
 ffff810058835e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100036896c8 ffff81001125a140 ffff8100648d10a0 ffff81001125a358
 ffffffff80505298 ffffffff80245ea5 0000000000000001 ffff81001125a140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f92918f1ce4>]

sh            S ffff810004e25940     0  7887   7879
 ffff810042ec5e98 0000000000000096 0000000200000000 0000000000000002
 ffff810071586d88 ffff8100648d10a0 ffff81006b3931e0 ffff8100648d12b8
 ffffffff80505298 ffffffff80245ea5 0000000000001e00 ffff8100648d10a0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aafe8c7ed85>]

expect        S ffff810004817380     0  7891   7887
 ffff81007ba119f8 0000000000000096 ffffffff803e28d5 ffffffff805cbfc0
 000000010031c27b ffff8100315b90a0 ffff8100055bd320 ffff8100315b92b8
 0000000000000296 0000000000000296 0000000000000040 ffff81007ba11a08
Call Trace:
 [<ffffffff803dfe5f>] schedule_timeout+0x5f/0xd0
 [<ffffffff8028995d>] do_select+0x44d/0x540
 [<ffffffff80289c55>] core_sys_select+0x205/0x300
 [<ffffffff8028a1f1>] sys_select+0xd1/0x1c0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b430d3852d3>]

gdb           S ffff810003f6d940     0 10505   7891
 ffff810022ac3f28 0000000000000096 0000000200000001 0000000000000000
 0000000003e60000 ffff8100648d4280 ffff810003e60000 ffff8100648d4498
 ffff81000b5c0808 ffffffff80245ea5 00000000ffffffff ffff8100648d4280
Call Trace:
 [<ffffffff80233b11>] sys_rt_sigsuspend+0xc1/0xf0
 [<ffffffff8020be97>] ptregscall_common+0x67/0xb0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1998eb7b4a>]

bigcore       R  running task        0 10516  10505
pdflush       S ffff810003f72a00     0   848      2
 ffff810014d4bee0 0000000000000086 0000000200000001 0000000000000000
 0000000000000000 ffff81000da90000 ffff8100055b63c0 ffff81000da90218
 ffffffff804e6440 ffffffff80245ea5 0000000000000000 ffff81000da90000
Call Trace:
 [<ffffffff8025cc1f>] pdflush+0xbf/0x1d0
 [<ffffffff8023b9fb>] kthread+0x4b/0x80
 [<ffffffff8020c9d8>] child_rip+0xa/0x12

make          S ffff810003f6c440     0  6636  28427
 ffff81000b45fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e9d48 ffff8100081ab1e0 ffff81006b395320 ffff8100081ab3f8
 ffffffff80505298 ffffffff80245ea5 0000000000000001 ffff8100081ab1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b187a333ce4>]

make          S ffff810003f71f80     0  9992   6636
 ffff81005ae4fce8 0000000000000096 ffff8100648d2898 ffff8100648d2140
 0000000000000000 ffff8100648d2140 ffff81000b41e3c0 ffff8100648d2358
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002adfca7d7810>]

make          S ffff810003f68000     0 13188  28427
 ffff81000da81ce8 0000000000000096 ffff81006b395a78 ffff81006b395320
 0000000000000000 ffff81006b395320 ffff8100315bc280 ffff81006b395538
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b01fee9f810>]

make          S ffff810004814440     0 13606  27369
 ffff81002284fce8 0000000000000096 ffff81000da93938 ffff81000da931e0
 0000000000000000 ffff81000da931e0 ffff81000b508000 ffff81000da933f8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae6660e2810>]

ftest01       S ffff810004814ec0     0 16712   2004
 ffff8100054dfe98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494ba88 ffff810003540000 ffff81000d012140 ffff810003540218
 ffffffff80505298 ffffffff80245ea5 00007fff22ee27a0 ffff810003540000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac1cce4>]

ftest01       D ffff810003f73f00     0 16714  16712
 ffff81000b6e3698 0000000000000096 ffff8100315ba140 ffffffff80249945
 0000000200000001 ffff8100315ba140 ffff81006b3963c0 ffff8100315ba358
 ffff8100315ba8e0 ffff8100315ba140 0000000000000001 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff802a0f6e>] sync_buffer+0x3e/0x50
 [<ffffffff803dff5a>] __wait_on_bit_lock+0x4a/0x80
 [<ffffffff803e000a>] out_of_line_wait_on_bit_lock+0x7a/0xa0
 [<ffffffff802cbf95>] do_get_write_access+0x225/0x490
 [<ffffffff802cc229>] journal_get_write_access+0x29/0x50
 [<ffffffff802cb63c>] __ext3_journal_get_write_access+0x2c/0x70
 [<ffffffff802bf768>] ext3_get_blocks_handle+0x778/0xb00
 [<ffffffff802bfd4e>] ext3_get_block+0x8e/0x120
 [<ffffffff802a1400>] __block_prepare_write+0x1c0/0x410
 [<ffffffff802a16d4>] block_write_begin+0x54/0xe0
 [<ffffffff802c1511>] ext3_write_begin+0xd1/0x1c0
 [<ffffffff80256981>] generic_file_buffered_write+0x151/0x6c0
 [<ffffffff80257181>] __generic_file_aio_write_nolock+0x291/0x450
 [<ffffffff802573a1>] generic_file_aio_write+0x61/0xd0
 [<ffffffff802bcf23>] ext3_file_write+0x23/0xc0
 [<ffffffff8027b989>] do_sync_write+0xd9/0x120
 [<ffffffff8027c18d>] vfs_write+0xad/0xe0
 [<ffffffff8027c773>] sys_write+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac3d890>]

ftest01       D ffff810003f72a00     0 16715  16712
 ffff810014e29c98 0000000000000096 ffff81000b50a140 ffffffff80249945
 0000000200000001 ffff81000b50a140 ffff8100055b63c0 ffff81000b50a358
 ffff81000b50a898 ffff81000b50a140 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803dff5a>] __wait_on_bit_lock+0x4a/0x80
 [<ffffffff802554bf>] __lock_page+0x5f/0x70
 [<ffffffff8025bf4e>] write_cache_pages+0x1be/0x370
 [<ffffffff8025c153>] do_writepages+0x23/0x40
 [<ffffffff8025628e>] __filemap_fdatawrite_range+0x6e/0x90
 [<ffffffff80256555>] filemap_write_and_wait+0x35/0x50
 [<ffffffff8029badd>] __sync_inodes+0xbd/0x100
 [<ffffffff8029bb55>] sync_inodes+0x35/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f70a80     0 16716  16712
 ffff8100317f7be8 0000000000000096 ffff81000b50b1e0 ffffffff80249945
 0000000200000001 ffff81000b50b1e0 ffff81000da90000 ffff81000b50b3f8
 ffff81000b50b938 ffff81000b50b1e0 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803e007f>] __wait_on_bit+0x4f/0x80
 [<ffffffff8025581c>] wait_on_page_bit+0x6c/0x80
 [<ffffffff8025c04d>] write_cache_pages+0x2bd/0x370
 [<ffffffff8025c153>] do_writepages+0x23/0x40
 [<ffffffff8029b251>] __writeback_single_inode+0x281/0x350
 [<ffffffff8029b7a7>] generic_sync_sb_inodes+0x227/0x3d0
 [<ffffffff8029ba0b>] sync_inodes_sb+0x9b/0xb0
 [<ffffffff8029baca>] __sync_inodes+0xaa/0x100
 [<ffffffff8029bb3e>] sync_inodes+0x1e/0x50
 [<ffffffff8029f022>] do_sync+0x12/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f739c0     0 16717  16712
 ffff8100050f5b58 0000000000000096 ffff81000b50e3c0 ffffffff80249945
 0000000200000001 ffff81000b50e3c0 ffff81000b50a140 ffff81000b50e5d8
 ffff81000b50eb18 ffff81000b50e3c0 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff802a0f6e>] sync_buffer+0x3e/0x50
 [<ffffffff803dff5a>] __wait_on_bit_lock+0x4a/0x80
 [<ffffffff803e000a>] out_of_line_wait_on_bit_lock+0x7a/0xa0
 [<ffffffff802a19ce>] __block_write_full_page+0x14e/0x300
 [<ffffffff8025b94d>] __writepage+0xd/0x30
 [<ffffffff8025bfd6>] write_cache_pages+0x246/0x370
 [<ffffffff8025c153>] do_writepages+0x23/0x40
 [<ffffffff8029b079>] __writeback_single_inode+0xa9/0x350
 [<ffffffff8029b7a7>] generic_sync_sb_inodes+0x227/0x3d0
 [<ffffffff8029ba0b>] sync_inodes_sb+0x9b/0xb0
 [<ffffffff8029baca>] __sync_inodes+0xaa/0x100
 [<ffffffff8029bb55>] sync_inodes+0x35/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f71500     0 16718  16712
 ffff81000d87fd08 0000000000000092 ffff81006b396b18 ffff81006b3963c0
 0000000000000000 ffff81006b3963c0 ffff8100036763c0 ffff81006b3965d8
 0000000000000002 ffff81006b3963c0 ffffffff803e28d5 ffff81000d87fd18
Call Trace:
 [<ffffffff802d1155>] log_wait_commit+0xc5/0x140
 [<ffffffff802cbc8e>] journal_stop+0x12e/0x210
 [<ffffffff8029b279>] __writeback_single_inode+0x2a9/0x350
 [<ffffffff8029b7a7>] generic_sync_sb_inodes+0x227/0x3d0
 [<ffffffff8029ba0b>] sync_inodes_sb+0x9b/0xb0
 [<ffffffff8029baca>] __sync_inodes+0xaa/0x100
 [<ffffffff8029bb55>] sync_inodes+0x35/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

pdflush       S ffff810004e224c0     0 16988      2
 ffff8100716e9ee0 0000000000000086 0000000200000001 0000000000000000
 0000000000000000 ffff810003622140 ffff81000b4190a0 ffff810003622358
 ffffffff804e6440 ffffffff80245ea5 0000000000000000 ffff810003622140
Call Trace:
 [<ffffffff8025cc1f>] pdflush+0xbf/0x1d0
 [<ffffffff8023b9fb>] kthread+0x4b/0x80
 [<ffffffff8020c9d8>] child_rip+0xa/0x12

make          S ffff810004e21500     0 19225  13188
 ffff81000d2d3ce8 0000000000000096 ffff81000b41eb18 ffff81000b41e3c0
 0000000000000000 ffff81000b41e3c0 ffff810011258000 ffff81000b41e5d8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002afa2bd31810>]

make          S ffff810004e22f40     0 19531  28427
 ffff810042ff9ce8 0000000000000096 ffff8100315a97f8 ffff8100315a90a0
 0000000000000000 ffff8100315a90a0 ffff8100648e10a0 ffff8100315a92b8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b57c610a810>]

make          S ffff810003f6e3c0     0 19595   9992
 ffff810064b91ce8 0000000000000096 ffff8100315ac9d8 ffff8100315ac280
 0000000000000000 ffff8100315ac280 ffff8100315bc280 ffff8100315ac498
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1820a99810>]

bash          R  running task        0 19596   3130
make          S ffff810003f76900     0 19599   9992
 ffff81005af05e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100052ea088 ffff8100315ae3c0 ffff8100648d0000 ffff8100315ae5d8
 ffffffff80505298 ffffffff80245ea5 0000000000000001 ffff8100315ae3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002abae8943ce4>]

sh            S ffff810003f6b9c0     0 19622  19595
 ffff810022823e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100052ead88 ffff8100036263c0 ffff8100315ac280 ffff8100036265d8
 ffffffff80505298 ffffffff80245ea5 0000000000004c00 ffff8100036263c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002abe94d8ed85>]

ccache        S ffff810003f77380     0 19623  19622
 ffff81000da03e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100052eaa48 ffff8100034b63c0 ffff810003624280 ffff8100034b65d8
 ffffffff80505298 ffffffff80245ea5 000000000050e6c0 ffff8100034b63c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab0801e9d85>]

hppa-unknown- S ffff810004e224c0     0 19690  19623
 ffff81000d9f3e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8f408 ffff8100055eb1e0 ffff81001125d320 ffff8100055eb3f8
 ffffffff80505298 ffffffff80245ea5 00007fff2ad431a0 ffff8100055eb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba07ff0fd85>]

cc1           R  running task        0 19691  19690
as            S ffff810004e26900     0 19692  19690
 ffff8100588ffce8 0000000000000096 ffff8100081ada78 ffff8100081ad320
 0000000000000000 ffff8100081ad320 ffff8100055e8000 ffff8100081ad538
 ffffffff803e06e7 0000000000000246 ffff81000c19aa90 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab732334810>]

sh            S ffff8100048139c0     0 19762  13606
 ffff810042f8be98 0000000000000096 0000000200000000 0000000000000002
 ffff8100052ea708 ffff8100648e4280 ffff8100036231e0 ffff8100648e4498
 ffffffff80505298 ffffffff80245ea5 0000000000004d00 ffff8100648e4280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b50d81b8d85>]

ccache        S ffff810004812f40     0 19765  19762
 ffff810042dbfe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8f748 ffff8100648d5320 ffff8100064ba140 ffff8100648d5538
 ffffffff80505298 ffffffff80245ea5 000000000050e6f0 ffff8100648d5320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b8cd03c3d85>]

hppa-unknown- S ffff810004815e80     0 19789  19765
 ffff810042fade98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eb0c8 ffff8100064ba140 ffff8100064bb1e0 ffff8100064ba358
 ffffffff80505298 ffffffff80245ea5 00007fff4974dc10 ffff8100064ba140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002af661506d85>]

cc1           R  running task        0 19790  19789
as            S ffff810003f71a40     0 19791  19789
 ffff810071513ce8 0000000000000096 ffff8100064b8758 ffff8100064b8000
 0000000000000000 ffff8100064b8000 ffff8100064bb1e0 ffff8100064b8218
 ffffffff803e06e7 0000000000000246 ffff81000c199f38 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b50db413810>]

make          S ffff810004811f80     0 19824  28427
 ffff810005115ce8 0000000000000096 ffff8100648e3938 ffff8100648e31e0
 0000000000000000 ffff8100648e31e0 ffff8100315ac280 ffff8100648e33f8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002afcad0bb810>]

make          S ffff810003f70000     0 19877  19824
 ffff810014fb9ce8 0000000000000096 ffff8100648e6b18 ffff8100648e63c0
 0000000000000000 ffff8100648e63c0 ffff81006b3963c0 ffff8100648e65d8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae10c887810>]

make          S ffff810004810000     0 19901  28427
 ffff810008f6fce8 0000000000000096 ffff8100315aa898 ffff8100315aa140
 0000000000000000 ffff8100315aa140 ffff81000da931e0 ffff8100315aa358
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba35f3e7810>]

sh            S ffff810004e20540     0 19916  19901
 ffff810022bb5e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e9a08 ffff8100055ba140 ffff810003e65320 ffff8100055ba358
 ffffffff80505298 ffffffff80245ea5 0000000000004d00 ffff8100055ba140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b36b65a7d85>]

ccache        S ffff810004e25400     0 19917  19916
 ffff810004dafe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100052e8008 ffff8100315bb1e0 ffff810003e65320 ffff8100315bb3f8
 ffffffff80505298 ffffffff80245ea5 000000000050e550 ffff8100315bb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002afcbae3fd85>]

hppa-unknown- S ffff810004e21a40     0 19923  19917
 ffff810014cefe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064948008 ffff8100315ab1e0 ffff8100055e8000 ffff8100315ab3f8
 ffffffff80505298 ffffffff80245ea5 00007fff780bd5f0 ffff8100315ab1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba232b94d85>]

cc1           R  running task        0 19924  19923
as            S ffff810003f763c0     0 19925  19923
 ffff810064b33ce8 0000000000000096 ffff8100648e5a78 ffff8100648e5320
 0000000000000000 ffff8100648e5320 ffff8100648e2140 ffff8100648e5538
 ffffffff803e06e7 0000000000000246 ffff8100039f9018 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae42ad93810>]

sh            S ffff8100048163c0     0 19958  19599
 ffff81007165fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8c688 ffff8100648d0000 ffff81000369b1e0 ffff8100648d0218
 ffffffff80505298 ffffffff80245ea5 0000000000004d00 ffff8100648d0000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002af5f0854d85>]

ccache        S ffff810004811500     0 19959  19958
 ffff81005acc7e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8c008 ffff810003e65320 ffff81001125c280 ffff810003e65538
 ffffffff80505298 ffffffff80245ea5 000000000050e5a0 ffff810003e65320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ad743036d85>]

make          S ffff810004813480     0 19971  13188
 ffff8100052e7ce8 0000000000000096 ffff81001125c9d8 ffff81001125c280
 0000000000000000 ffff81001125c280 ffff8100315bc280 ffff81001125c498
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b3cf2147810>]

hppa-unknown- S ffff810004816900     0 19972  19959
 ffff81007bbd9e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100052e9d48 ffff8100055be3c0 ffff81001125c280 ffff8100055be5d8
 ffffffff80505298 ffffffff80245ea5 00007fff00fc24c0 ffff8100055be3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab9a9c90d85>]

cc1           R  running task        0 19973  19972
as            S ffff810004816e40     0 19975  19972
 ffff8100648dbce8 0000000000000096 ffff8100055b97f8 ffff8100055b90a0
 0000000000000000 ffff8100055b90a0 ffff8100055b63c0 ffff8100055b92b8
 ffffffff803e06e7 0000000000000246 ffff81000c19b5e8 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae023439810>]

sh            S ffff810004815400     0 19986  19971
 ffff81000512de98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8e088 ffff81000b41b1e0 ffff8100055e90a0 ffff81000b41b3f8
 ffffffff80505298 ffffffff80245ea5 0000000000004e00 ffff81000b41b1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1ad8825d85>]

ccache        S ffff8100048178c0     0 19987  19986
 ffff81007bba5e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8e708 ffff810003e663c0 ffff8100081a8000 ffff810003e665d8
 ffffffff80505298 ffffffff80245ea5 000000000050e560 ffff810003e663c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b309db45d85>]

make          S ffff810003f778c0     0 19997  13188
 ffff810022bc3ce8 0000000000000096 ffff8100315bc9d8 ffff8100315bc280
 0000000000000000 ffff8100315bc280 ffff8100315be3c0 ffff8100315bc498
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b938a642810>]

sh            S ffff810004e24440     0 20007  19997
 ffff810042f9fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810071586088 ffff8100081ae3c0 ffff810011258000 ffff8100081ae5d8
 ffffffff80505298 ffffffff80245ea5 0000000000004e00 ffff8100081ae3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b90beb05d85>]

ccache        S ffff810004e21f80     0 20008  20007
 ffff810031683e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eba88 ffff81001125d320 ffff8100064bc280 ffff81001125d538
 ffffffff80505298 ffffffff80245ea5 000000000050e570 ffff81001125d320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b18a090bd85>]

sh            S ffff810004e23f00     0 20022  19531
 ffff81000d181e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eaa48 ffff8100648e10a0 ffff8100064bc280 ffff8100648e12b8
 ffffffff80505298 ffffffff80245ea5 0000000000004e00 ffff8100648e10a0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b5f30c3ad85>]

ccache        S ffff810003f70fc0     0 20023  20022
 ffff81000b755e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e9048 ffff8100648d31e0 ffff8100055b63c0 ffff8100648d33f8
 ffffffff80505298 ffffffff80245ea5 000000000050e550 ffff8100648d31e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ad212107d85>]

hppa-unknown- S ffff810004810540     0 20026  20008
 ffff810014cf5e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e8688 ffff8100081ac280 ffff8100064bb1e0 ffff8100081ac498
 ffffffff80505298 ffffffff80245ea5 00007fff0f26b790 ffff8100081ac280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ac49b9e8d85>]

cc1           R  running task        0 20027  20026
as            S ffff810004e24ec0     0 20028  20026
 ffff81003174fce8 0000000000000096 ffff8100112597f8 ffff8100112590a0
 0000000000000000 ffff8100112590a0 ffff8100648e2140 ffff8100112592b8
 ffffffff803e06e7 0000000000000246 ffff81000c198888 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b46f9211810>]

sh            S ffff810004e278c0     0 20030  19225
 ffff81007142de98 0000000000000096 0000000200000000 0000000000000002
 ffff810071585388 ffff81001125b1e0 ffff810003e663c0 ffff81001125b3f8
 ffffffff80505298 ffffffff80245ea5 0000000000004e00 ffff81001125b1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002af696e43d85>]

ccache        S ffff810004e20000     0 20031  20030
 ffff810071663e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ead88 ffff8100081aa140 ffff81001125b1e0 ffff8100081aa358
 ffffffff80505298 ffffffff80245ea5 000000000050e300 ffff8100081aa140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b2b634b6d85>]

hppa-unknown- S ffff810003f75400     0 20032  20031
 ffff810014f13e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ea3c8 ffff8100081a8000 ffff8100315a8000 ffff8100081a8218
 ffffffff80505298 ffffffff80245ea5 00007fff577fad70 ffff8100081a8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba853459d85>]

hppa-unknown- S ffff810003f74ec0     0 20033  19987
 ffff81006488fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e8d08 ffff8100315a8000 ffff8100315ad320 ffff8100315a8218
 ffffffff80505298 ffffffff80245ea5 00007fff577fad10 ffff8100315a8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba853459d85>]

cc1           R  running task        0 20034  20033
cc1           R  running task        0 20035  20032
as            S ffff810004e263c0     0 20036  20033
 ffff810042d8fce8 0000000000000096 ffff810003e649d8 ffff810003e64280
 0000000000000000 ffff810003e64280 ffff8100315a8000 ffff810003e64498
 ffffffff803e06e7 0000000000000246 ffff8100039f80f8 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ace4ae24810>]

sh            S ffff8100048124c0     0 20043  19877
 ffff8100056a9e98 0000000000000096 0000000200000000 0000000000000002
 ffff810071584348 ffff81001125e3c0 ffff8100064bb1e0 ffff81001125e5d8
 ffffffff80505298 ffffffff80245ea5 0000000000004e00 ffff81001125e3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b9a4197ad85>]

ccache        S ffff810004e23480     0 20044  20043
 ffff810004cb7e98 0000000000000096 0000000200000000 0000000000000002
 ffff810071585048 ffff8100315b8000 ffff81000b418000 ffff8100315b8218
 ffffffff80505298 ffffffff80245ea5 000000000050e1e0 ffff8100315b8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b9a24354d85>]

hppa-unknown- S ffff810004e239c0     0 20045  20044
 ffff810058a7de98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e96c8 ffff81000b418000 ffff8100055e8000 ffff81000b418218
 ffffffff80505298 ffffffff80245ea5 00007fffa138d8a0 ffff81000b418000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aac098c6d85>]

cc1           R  running task        0 20046  20045
hppa-unknown- S ffff810003f73480     0 20047  20023
 ffff810022995e98 0000000000000096 0000000200000000 0000000000000002
 ffff810071587408 ffff8100315bd320 ffff81000b41c280 ffff8100315bd538
 ffffffff80505298 ffffffff80245ea5 00007fff4290ee50 ffff8100315bd320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1868343d85>]

cc1           R  running task        0 20048  20047
as            S ffff810004812a00     0 20049  20047
 ffff81005af81ce8 0000000000000096 ffff81000b41a898 ffff81000b41a140
 0000000000000000 ffff81000b41a140 ffff810011258000 ffff81000b41a358
 ffffffff803e06e7 0000000000000246 ffff8100039f97a8 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ad0a0892810>]

atl1 0000:03:00.0: tx busy
atl1 0000:03:00.0: tx busy
atl1 0000:03:00.0: tx busy
SysRq : Show State
  task                        PC stack   pid father
init          S ffff810003f70540     0     1      0
 ffff8100034899f8 0000000000000096 ffffffff803e28d5 ffffffff805cbfc0
 0000000100312171 ffff810003480000 ffff81000da94280 ffff810003480218
 0000000000000296 0000000000000296 0000000000000400 ffff810003489a08
Call Trace:
 [<ffffffff803dfe5f>] schedule_timeout+0x5f/0xd0
 [<ffffffff8028995d>] do_select+0x44d/0x540
 [<ffffffff80289c55>] core_sys_select+0x205/0x300
 [<ffffffff8028a1f1>] sys_select+0xd1/0x1c0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007fc61d9a82d3>]

kthreadd      S ffff810004810000     0     2      0
 ffff81000348bf20 0000000000000086 0000000200000000 0000000000000000
 ffff810014d4bdc8 ffff8100034810a0 ffff81000da90000 ffff8100034812b8
 ffffffff804dced8 ffffffff80245ea5 0000000000000000 ffff8100034810a0
Call Trace:
0 ffff8100057ba140 ffff81000369b3f8
<4> ffffffff80505298 ffffffff80245ea5 0000000000006300 ffff81000369b1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd2 ffff8100315b8218
<4> ffffffff803e06e7 0000000000000246 ffff81000c19b9b0 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b62f7d83810>]

hppa-unknown- S ffff810003f6d400     0 25633  25620
 ffff81005af0de98 0000000000000096 0000000200000000 0000000000000002
 ffff81000368a3c8 ffff8100315bd320 ffff8100055ba140 ffff8100315bd538
 ffffffff80505298 ffffffff80245ea5 00007fffcf8aedb0 ffff8100315bd320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b60db3a5d85>]

cc1           R  running task        0 25634  25633
as            S ffff810004e20540     0 25635  25633
 ffff810031775ce8 0000000000000096 ffff8100315bc9d8 ffff8100315bc280
 0000000000000000 ffff8100315bc280 ffff8100315bb1e0 ffff8100315bc498
 ffffffff803e06e7 0000000000000246 ffff81000c198888 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b3ab8180810>]

make          S ffff810003f724c0     0 25655  19824
 ffff810014da5ce8 0000000000000096 ffff8100055b8758 ffff8100055b8000
 0000000000000000 ffff8100055b8000 ffff81006b395320 ffff8100055b8218
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab35c73f810>]

sh            S ffff810003f74440     0 25706  23111
 ffff81000d88fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8f408 ffff8100055eb1e0 ffff81001125b1e0 ffff8100055eb3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100055eb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1181704d85>]

ccache        S ffff810004810a80     0 25707  25706
 ffff810071699e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8e708 ffff8100055e8000 ffff8100648e2140 ffff8100055e8218
 ffffffff80505298 ffffffff80245ea5 000000000050e560 ffff8100055e8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aec7ed68d85>]

hppa-unknown- S ffff810003f76900     0 25737  25707
 ffff810014c0fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ea3c8 ffff810003e64280 ffff81006b3931e0 ffff810003e64498
 ffffffff80505298 ffffffff80245ea5 00007fff3db4f080 ffff810003e64280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b5c6d105d85>]

cc1           R  running task        0 25738  25737
as            S ffff8100048124c0     0 25739  25737
 ffff810008e45ce8 0000000000000096 ffff81001125da78 ffff81001125d320
 0000000000000000 ffff81001125d320 ffff81000da94280 ffff81001125d538
 ffffffff803e06e7 0000000000000246 ffff8100038a39b0 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b35dbe47810>]

sh            S ffff810003f70000     0 25746  24624
 ffff81000b46fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064948d08 ffff81001125b1e0 ffff8100055b63c0 ffff81001125b3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff81001125b1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab752ecdd85>]

ccache        S ffff8100048178c0     0 25747  25746
 ffff810071493e98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494a708 ffff8100081aa140 ffff8100057bb1e0 ffff8100081aa358
 ffffffff80505298 ffffffff80245ea5 000000000050e5c0 ffff8100081aa140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae4dd7c1d85>]

hppa-unknown- S ffff8100048139c0     0 25756  25747
 ffff8100317b3e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e8d08 ffff8100648431e0 ffff810064840000 ffff8100648433f8
 ffffffff80505298 ffffffff80245ea5 00007fffbf635b50 ffff8100648431e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b69eb61ed85>]

cc1           R  running task        0 25757  25756
as            S ffff810004816900     0 25758  25756
 ffff81000b4f1ce8 0000000000000096 ffff810064846b18 ffff8100648463c0
 0000000000000000 ffff8100648463c0 ffff810064840000 ffff8100648465d8
 ffffffff803e06e7 0000000000000246 ffff81000c19a300 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aae54d8e810>]

sh            S ffff810004815400     0 25766  24631
 ffff810014e85e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ea708 ffff8100064bc280 ffff8100315bb1e0 ffff8100064bc498
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100064bc280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b0e8b83ad85>]

ccache        S ffff810004812a00     0 25767  25766
 ffff810042eb5e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ead88 ffff8100064b8000 ffff8100648d63c0 ffff8100064b8218
 ffffffff80505298 ffffffff80245ea5 000000000050e5c0 ffff8100064b8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b601d5aed85>]

sh            S ffff810004e21f80     0 25782  25560
 ffff810064887e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064948348 ffff8100036231e0 ffff81000b5090a0 ffff8100036233f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100036231e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b653b219d85>]

ccache        S ffff810004e24440     0 25783  25782
 ffff81000d043e98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494a088 ffff81000b50c280 ffff810003e60000 ffff81000b50c498
 ffffffff80505298 ffffffff80245ea5 000000000050e5c0 ffff81000b50c280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b60f9a4ed85>]

sh            S ffff810004e20000     0 25793  25655
 ffff8100055f5e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100649496c8 ffff8100064be3c0 ffff81001125e3c0 ffff8100064be5d8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100064be3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b35192ded85>]

ccache        S ffff810004e27380     0 25796  25793
 ffff810064bf3e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100649489c8 ffff8100648410a0 ffff81000b50d320 ffff8100648412b8
 ffffffff80505298 ffffffff80245ea5 000000000050e5a0 ffff8100648410a0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aef7f4b1d85>]

sh            S ffff810003f70fc0     0 25802  25292
 ffff81005aeb7e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eaa48 ffff8100057bb1e0 ffff8100055ba140 ffff8100057bb3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100057bb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b732f2cad85>]

ccache        S ffff810004e23480     0 25803  25802
 ffff81000504fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eb0c8 ffff81000da95320 ffff81000da92140 ffff81000da95538
 ffffffff80505298 ffffffff80245ea5 000000000050e5a0 ffff81000da95320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b4d31bf1d85>]

hppa-unknown- S ffff8100048163c0     0 25806  25783
 ffff81000d5d1e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8c008 ffff8100648d5320 ffff810003e65320 ffff8100648d5538
 ffffffff80505298 ffffffff80245ea5 00007fff82da92c0 ffff8100648d5320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b7e27ea9d85>]

cc1           R  running task        0 25807  25806
as            S ffff810004814980     0 25808  25806
 ffff810008f85ce8 0000000000000096 ffff8100648d3938 ffff8100648d31e0
 0000000000000000 ffff8100648d31e0 ffff8100648d5320 ffff8100648d33f8
 ffffffff803e06e7 0000000000000246 ffff8100038a04c0 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b8cefe70810>]

hppa-unknown- S ffff810004e263c0     0 25809  25767
 ffff810005239e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8c9c8 ffff8100064ba140 ffff810003e60000 ffff8100064ba358
 ffffffff80505298 ffffffff80245ea5 00007fffa2797cb0 ffff8100064ba140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab5084bad85>]

cc1           R  running task        0 25810  25809
as            S ffff810004e278c0     0 25811  25809
 ffff810022a7dce8 0000000000000096 ffff81000b5097f8 ffff81000b5090a0
 0000000000000000 ffff81000b5090a0 ffff8100064ba140 ffff81000b5092b8
 ffffffff803e06e7 0000000000000246 ffff8100038a17a8 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b9da77c8810>]

hppa-unknown- S ffff810003f75e80     0 25812  25803
 ffff81000d723e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e9a08 ffff81000da92140 ffff81000da94280 ffff81000da92358
 ffffffff80505298 ffffffff80245ea5 00007fffbcce21d0 ffff81000da92140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b2eedf70d85>]

cc1           R  running task        0 25813  25812
as            S ffff810004e20fc0     0 25814  25812
 ffff81000d481ce8 0000000000000096 ffff81000da917f8 ffff81000da910a0
 0000000000000000 ffff81000da910a0 ffff810003e60000 ffff81000da912b8
 ffffffff803e06e7 0000000000000246 ffff81000c198c50 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b8ffb68a810>]

hppa-unknown- S ffff810004e21500     0 25815  25796
 ffff810008dcfe98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494b408 ffff81000b50d320 ffff810003e60000 ffff81000b50d538
 ffffffff80505298 ffffffff80245ea5 00007fffaa0c45d0 ffff81000b50d320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba800b8dd85>]

cc1           R  running task        0 25816  25815
as            S ffff810003f73480     0 25817  25815
 ffff810004f67ce8 0000000000000096 ffff810003e66b18 ffff810003e663c0
 0000000000000000 ffff810003e663c0 ffff810064840000 ffff810003e665d8
 ffffffff803e06e7 0000000000000246 ffff8100038a2a90 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b304ff0a810>]

sh            S ffff810003f71a40     0 25824  25292
 ffff810022a57e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eba88 ffff8100057be3c0 ffff8100057bc280 ffff8100057be5d8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100057be3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b3937c64d85>]

ccache        S ffff810003f75940     0 25825  25824
 ffff810031769e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eb748 ffff8100057bc280 ffff81000da94280 ffff8100057bc498
 ffffffff80505298 ffffffff80245ea5 000000000050e280 ffff8100057bc280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b118a7f6d85>]

hppa-unknown- S ffff810004810540     0 25826  25825
 ffff81000d849e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8d388 ffff8100081ae3c0 ffff8100055b63c0 ffff8100081ae5d8
 ffffffff80505298 ffffffff80245ea5 00007fff162d17e0 ffff8100081ae3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b2594980d85>]

cc1           D ffff810004812f40     0 25827  25826
 ffff81000d6d9c18 0000000000000092 ffff810003e65320 ffffffff80249945
 0000000200000001 ffff810003e65320 ffff8100081ae3c0 ffff810003e65538
 ffff810002c1b6e8 0000000000000046 ffff810003e801f0 ffff81000d6d9ca8
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803dff5a>] __wait_on_bit_lock+0x4a/0x80
 [<ffffffff802554bf>] __lock_page+0x5f/0x70
 [<ffffffff80255dec>] do_generic_mapping_read+0x21c/0x410
 [<ffffffff8025787c>] generic_file_aio_read+0xdc/0x190
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ac7bfd58810>]

atl1 0000:03:00.0: tx busy
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002af937289810>]

make          S ffff810003f6b480     0  7879   2541
 ffff810058835e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100036896c8 ffff81001125a140 ffff8100648d10a0 ffff81001125a358
 ffffffff80505298 ffffffff80245ea5 0000000000000001 ffff81001125a140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f92918f1ce4>]

sh            S ffff810004e25940     0  7887   7879
 ffff810042ec5e98 0000000000000096 0000000200000000 0000000000000002
 ffff810071586d88 ffff8100648d10a0 ffff81006b3931e0 ffff8100648d12b8
 ffffffff80505298 ffffffff80245ea5 0000000000001e00 ffff8100648d10a0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aafe8c7ed85>]

expect        S ffff810004817380     0  7891   7887
 ffff81007ba119f8 0000000000000096 ffffffff803e28d5 ffffffff805cbfc0
 000000010031c27b ffff8100315b90a0 ffff8100055bd320 ffff8100315b92b8
 0000000000000296 0000000000000296 0000000000000040 ffff81007ba11a08
Call Trace:
 [<ffffffff803dfe5f>] schedule_timeout+0x5f/0xd0
 [<ffffffff8028995d>] do_select+0x44d/0x540
 [<ffffffff80289c55>] core_sys_select+0x205/0x300
 [<ffffffff8028a1f1>] sys_select+0xd1/0x1c0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b430d3852d3>]

gdb           S ffff810003f6d940     0 10505   7891
 ffff810022ac3f28 0000000000000096 0000000200000001 0000000000000000
 0000000003e60000 ffff8100648d4280 ffff810003e60000 ffff8100648d4498
 ffff81000b5c0808 ffffffff80245ea5 00000000ffffffff ffff8100648d4280
Call Trace:
 [<ffffffff80233b11>] sys_rt_sigsuspend+0xc1/0xf0
 [<ffffffff8020be97>] ptregscall_common+0x67/0xb0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1998eb7b4a>]

bigcore       R  running task        0 10516  10505
pdflush       S ffff810003f77380     0   848      2
 ffff810014d4bee0 0000000000000086 0000000200000001 0000000000000000
 0000000000000000 ffff81000da90000 ffff81000da94280 ffff81000da90218
 ffffffff804e6440 ffffffff80245ea5 0000000000000000 ffff81000da90000
Call Trace:
 [<ffffffff8025cc1f>] pdflush+0xbf/0x1d0
 [<ffffffff8023b9fb>] kthread+0x4b/0x80
 [<ffffffff8020c9d8>] child_rip+0xa/0x12

make          S ffff810003f6c440     0  6636  28427
 ffff81000b45fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e9d48 ffff8100081ab1e0 ffff81006b395320 ffff8100081ab3f8
 ffffffff80505298 ffffffff80245ea5 0000000000000001 ffff8100081ab1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b187a333ce4>]

make          S ffff810003f71f80     0  9992   6636
 ffff81005ae4fce8 0000000000000096 ffff8100648d2898 ffff8100648d2140
 0000000000000000 ffff8100648d2140 ffff8100034b63c0 ffff8100648d2358
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002adfca7d7810>]

make          S ffff810003f68000     0 13188  28427
 ffff81000da81ce8 0000000000000096 ffff81006b395a78 ffff81006b395320
 0000000000000000 ffff81006b395320 ffff8100315be3c0 ffff81006b395538
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b01fee9f810>]

ftest01       S ffff810004814ec0     0 16712   2004
 ffff8100054dfe98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494ba88 ffff810003540000 ffff81000d012140 ffff810003540218
 ffffffff80505298 ffffffff80245ea5 00007fff22ee27a0 ffff810003540000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac1cce4>]

ftest01       D ffff810003f73f00     0 16714  16712
 ffff81000b6e3d48 0000000000000092 ffff8100315ba140 ffffffff80249945
 0000000200000001 ffff8100315ba140 ffff81000b50a140 ffff8100315ba358
 ffff8100315ba898 ffff8100315ba140 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803e007f>] __wait_on_bit+0x4f/0x80
 [<ffffffff8025581c>] wait_on_page_bit+0x6c/0x80
 [<ffffffff8025617e>] wait_on_page_writeback_range+0xbe/0x140
 [<ffffffff80256564>] filemap_write_and_wait+0x44/0x50
 [<ffffffff8029badd>] __sync_inodes+0xbd/0x100
 [<ffffffff8029bb3e>] sync_inodes+0x1e/0x50
 [<ffffffff8029f022>] do_sync+0x12/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f72a00     0 16715  16712
 ffff810014e29bb8 0000000000000092 ffff81000b50a140 ffffffff80249945
 0000000200000001 ffff81000b50a140 ffff81000da94280 ffff81000b50a358
 ffff81000b50a898 ffff81000b50a140 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803e007f>] __wait_on_bit+0x4f/0x80
 [<ffffffff8025581c>] wait_on_page_bit+0x6c/0x80
 [<ffffffff8025c04d>] write_cache_pages+0x2bd/0x370
 [<ffffffff802a7f87>] mpage_writepages+0x37/0x70
 [<ffffffff8025c153>] do_writepages+0x23/0x40
 [<ffffffff8029b079>] __writeback_single_inode+0xa9/0x350
 [<ffffffff8029b7a7>] generic_sync_sb_inodes+0x227/0x3d0
 [<ffffffff8029ba0b>] sync_inodes_sb+0x9b/0xb0
 [<ffffffff8029baca>] __sync_inodes+0xaa/0x100
 [<ffffffff8029bb3e>] sync_inodes+0x1e/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f70a80     0 16716  16712
 ffff8100317f7d48 0000000000000092 ffff81000b50b1e0 ffffffff80249945
 0000000200000001 ffff81000b50b1e0 ffff8100036763c0 ffff81000b50b3f8
 ffff81000b50b938 ffff81000b50b1e0 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803e007f>] __wait_on_bit+0x4f/0x80
 [<ffffffff8025581c>] wait_on_page_bit+0x6c/0x80
 [<ffffffff8025617e>] wait_on_page_writeback_range+0xbe/0x140
 [<ffffffff80256564>] filemap_write_and_wait+0x44/0x50
 [<ffffffff8029badd>] __sync_inodes+0xbd/0x100
 [<ffffffff8029bb3e>] sync_inodes+0x1e/0x50
 [<ffffffff8029f022>] do_sync+0x12/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

ftest01       D ffff810003f739c0     0 16717  16712
 ffff8100050f5d58 0000000000000096 ffff81000b50eb18 ffff81000b50e3c0
 0000000000000000 ffff81000b50e3c0 ffff81006b3963c0 ffff81000b50e5d8
 0000000000000002 ffff81000b50e3c0 ffffffff803e28d5 ffff8100050f5d68
Call Trace:
 [<ffffffff802d1155>] log_wait_commit+0xc5/0x140
 [<ffffffff802cbc8e>] journal_stop+0x12e/0x210
 [<ffffffff8029b279>] __writeback_single_inode+0x2a9/0x350
 [<ffffffff8029b34b>] sync_inode+0x2b/0x50
 [<ffffffff802bd0f3>] ext3_sync_file+0xa3/0xb0
 [<ffffffff8029eeb9>] do_fsync+0x69/0xe0
 [<ffffffff8029ef5e>] __do_fsync+0x2e/0x50
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac445d0>]

ftest01       D ffff810003f71500     0 16718  16712
 ffff81000d87fc18 0000000000000092 ffff81006b3963c0 ffffffff80249945
 0000000200000001 ffff81006b3963c0 ffff8100036763c0 ffff81006b3965d8
 ffff81006b396b18 ffff81006b3963c0 0000000000000000 0000000000000000
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803e007f>] __wait_on_bit+0x4f/0x80
 [<ffffffff8025581c>] wait_on_page_bit+0x6c/0x80
 [<ffffffff8025617e>] wait_on_page_writeback_range+0xbe/0x140
 [<ffffffff8029b163>] __writeback_single_inode+0x193/0x350
 [<ffffffff8029b7a7>] generic_sync_sb_inodes+0x227/0x3d0
 [<ffffffff8029ba0b>] sync_inodes_sb+0x9b/0xb0
 [<ffffffff8029baca>] __sync_inodes+0xaa/0x100
 [<ffffffff8029bb55>] sync_inodes+0x35/0x50
 [<ffffffff8029f03c>] do_sync+0x2c/0x60
 [<ffffffff8029f07e>] sys_sync+0xe/0x20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f331ac44637>]

pdflush       S ffff810003f6f380     0 16988      2
 ffff8100716e9ee0 0000000000000086 0000000200000001 0000000000000000
 0000000000000000 ffff810003622140 ffff8100315bb1e0 ffff810003622358
 ffffffff804e6440 ffffffff80245ea5 0000000000000000 ffff810003622140
Call Trace:
 [<ffffffff8025cc1f>] pdflush+0xbf/0x1d0
 [<ffffffff8023b9fb>] kthread+0x4b/0x80
 [<ffffffff8020c9d8>] child_rip+0xa/0x12

make          S ffff810004811f80     0 19824  28427
 ffff810005115ce8 0000000000000096 ffff8100648e3938 ffff8100648e31e0
 0000000000000000 ffff8100648e31e0 ffff81000b508000 ffff8100648e33f8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002afcad0bb810>]

bash          S ffff810003f69a40     0 20321      1
 ffff81000b727e98 0000000000000096 0000000200000000 0000000000000002
 ffff810071585a08 ffff81000369b1e0 ffff8100057ba140 ffff81000369b3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006300 ffff81000369b1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00007f0f60f89d85>]

make          S ffff810003f778c0     0 23111  13188
 ffff810014e01ce8 0000000000000096 ffff8100315beb18 ffff8100315be3c0
 0000000000000000 ffff8100315be3c0 ffff8100055bb1e0 ffff8100315be5d8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b536ef9b810>]

make          S ffff810004e22a00     0 23826  28427
 ffff81007b849ce8 0000000000000096 ffff8100055bb938 ffff8100055bb1e0
 0000000000000000 ffff8100055bb1e0 ffff8100648e31e0 ffff8100055bb3f8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b9442ce9810>]

make          S ffff810004e21a40     0 24624  23826
 ffff81006494de98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eb408 ffff8100055b0000 ffff8100055b8000 ffff8100055b0218
 ffffffff80505298 ffffffff80245ea5 0000000000000001 ffff8100055b0000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002afabdc44ce4>]

make          S ffff810004e25400     0 24631  23826
 ffff81007b95dce8 0000000000000096 ffff8100034b6b18 ffff8100034b63c0
 0000000000000000 ffff8100034b63c0 ffff8100648e0000 ffff8100034b65d8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae5de0d3810>]

make          S ffff810004810000     0 25292   9992
 ffff810042e9dce8 0000000000000096 ffff81000369eb18 ffff81000369e3c0
 0000000000000000 ffff81000369e3c0 ffff8100057be3c0 ffff81000369e5d8
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002abe74671810>]

bash          R  running task        0 25400  20321
make          S ffff810004e224c0     0 25496   9992
 ffff810058aa3ce8 0000000000000096 ffff8100648e0758 ffff8100648e0000
 0000000000000000 ffff8100648e0000 ffff810064842140 ffff8100648e0218
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002add48b7a810>]

make          S ffff810004811500     0 25560  23826
 ffff810058bb9ce8 0000000000000096 ffff8100057b8758 ffff8100057b8000
 0000000000000000 ffff8100057b8000 ffff8100055b63c0 ffff8100057b8218
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002abceecc3810>]

sh            S ffff810004e22f40     0 25561  25496
 ffff81005aeabe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ea088 ffff8100055be3c0 ffff8100055b90a0 ffff8100055be5d8
 ffffffff80505298 ffffffff80245ea5 0000000000006300 ffff8100055be3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b7ed7312d85>]

ccache        S ffff810004e23f00     0 25564  25561
 ffff81000d0cfe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e8008 ffff8100055bd320 ffff81000da94280 ffff8100055bd538
 ffffffff80505298 ffffffff80245ea5 000000000050e5d0 ffff8100055bd320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b2198a4ed85>]

make          S ffff810004814440     0 25583  28427
 ffff8100052cbce8 0000000000000096 ffff810064842898 ffff810064842140
 0000000000000000 ffff810064842140 ffff81000369e3c0 ffff810064842358
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b35978a4810>]

sh            S ffff810003f68a80     0 25614  25583
 ffff81000512de98 0000000000000096 0000000200000000 0000000000000002
 ffff8100715870c8 ffff8100081ad320 ffff8100064bc280 ffff8100081ad538
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100081ad320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ad22d562d85>]

ccache        S ffff810003f6bf00     0 25620  25614
 ffff81000d27fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810071587a88 ffff8100112590a0 ffff8100315bb1e0 ffff8100112592b8
 ffffffff80505298 ffffffff80245ea5 000000000050e5a0 ffff8100112590a0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b9dc0a17d85>]

hppa-unknown- S ffff810003f6c980     0 25624  25564
 ffff81000d38de98 0000000000000096 0000000200000000 0000000000000002
 ffff810003688688 ffff8100064bb1e0 ffff8100055ba140 ffff8100064bb3f8
 ffffffff80505298 ffffffff80245ea5 00007fff1cc599c0 ffff8100064bb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b3c8dff8d85>]

cc1           R  running task        0 25625  25624
as            S ffff810003f6e3c0     0 25629  25624
 ffff810004d9bce8 0000000000000096 ffff8100315b8758 ffff8100315b8000
 0000000000000000 ffff8100315b8000 ffff8100055ba140 ffff8100315b8218
 ffffffff803e06e7 0000000000000246 ffff81000c19b9b0 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b62f7d83810>]

hppa-unknown- S ffff810003f6d400     0 25633  25620
 ffff81005af0de98 0000000000000096 0000000200000000 0000000000000002
 ffff81000368a3c8 ffff8100315bd320 ffff8100055ba140 ffff8100315bd538
 ffffffff80505298 ffffffff80245ea5 00007fffcf8aedb0 ffff8100315bd320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b60db3a5d85>]

cc1           R  running task        0 25634  25633
as            S ffff810004e20540     0 25635  25633
 ffff810031775ce8 0000000000000096 ffff8100315bc9d8 ffff8100315bc280
 0000000000000000 ffff8100315bc280 ffff8100315bb1e0 ffff8100315bc498
 ffffffff803e06e7 0000000000000246 ffff81000c198888 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b3ab8180810>]

make          S ffff810003f724c0     0 25655  19824
 ffff810014da5ce8 0000000000000096 ffff8100055b8758 ffff8100055b8000
 0000000000000000 ffff8100055b8000 ffff81006b395320 ffff8100055b8218
 ffffffff803e06e7 0000000000000246 ffff8100038a3220 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab35c73f810>]

sh            S ffff810003f74440     0 25706  23111
 ffff81000d88fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8f408 ffff8100055eb1e0 ffff81001125b1e0 ffff8100055eb3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100055eb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b1181704d85>]

ccache        S ffff810004810a80     0 25707  25706
 ffff810071699e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8e708 ffff8100055e8000 ffff8100648e2140 ffff8100055e8218
 ffffffff80505298 ffffffff80245ea5 000000000050e560 ffff8100055e8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aec7ed68d85>]

hppa-unknown- S ffff810003f76900     0 25737  25707
 ffff810014c0fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ea3c8 ffff810003e64280 ffff81006b3931e0 ffff810003e64498
 ffffffff80505298 ffffffff80245ea5 00007fff3db4f080 ffff810003e64280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b5c6d105d85>]

cc1           R  running task        0 25738  25737
as            S ffff8100048124c0     0 25739  25737
 ffff810008e45ce8 0000000000000096 ffff81001125da78 ffff81001125d320
 0000000000000000 ffff81001125d320 ffff81000da94280 ffff81001125d538
 ffffffff803e06e7 0000000000000246 ffff8100038a39b0 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b35dbe47810>]

sh            S ffff810003f70000     0 25746  24624
 ffff81000b46fe98 0000000000000096 0000000200000000 0000000000000002
 ffff810064948d08 ffff81001125b1e0 ffff8100055b63c0 ffff81001125b3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff81001125b1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab752ecdd85>]

ccache        S ffff8100048178c0     0 25747  25746
 ffff810071493e98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494a708 ffff8100081aa140 ffff8100057bb1e0 ffff8100081aa358
 ffffffff80505298 ffffffff80245ea5 000000000050e5c0 ffff8100081aa140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ae4dd7c1d85>]

hppa-unknown- S ffff8100048139c0     0 25756  25747
 ffff8100317b3e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e8d08 ffff8100648431e0 ffff810064840000 ffff8100648433f8
 ffffffff80505298 ffffffff80245ea5 00007fffbf635b50 ffff8100648431e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b69eb61ed85>]

cc1           R  running task        0 25757  25756
as            S ffff810004816900     0 25758  25756
 ffff81000b4f1ce8 0000000000000096 ffff810064846b18 ffff8100648463c0
 0000000000000000 ffff8100648463c0 ffff810064840000 ffff8100648465d8
 ffffffff803e06e7 0000000000000246 ffff81000c19a300 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aae54d8e810>]

sh            S ffff810004815400     0 25766  24631
 ffff810014e85e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ea708 ffff8100064bc280 ffff8100315bb1e0 ffff8100064bc498
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100064bc280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b0e8b83ad85>]

ccache        S ffff810004812a00     0 25767  25766
 ffff810042eb5e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043ead88 ffff8100064b8000 ffff8100648d63c0 ffff8100064b8218
 ffffffff80505298 ffffffff80245ea5 000000000050e5c0 ffff8100064b8000
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b601d5aed85>]

sh            S ffff810004e21f80     0 25782  25560
 ffff810064887e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064948348 ffff8100036231e0 ffff81000b5090a0 ffff8100036233f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100036231e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b653b219d85>]

ccache        S ffff810004e24440     0 25783  25782
 ffff81000d043e98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494a088 ffff81000b50c280 ffff810003e60000 ffff81000b50c498
 ffffffff80505298 ffffffff80245ea5 000000000050e5c0 ffff81000b50c280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b60f9a4ed85>]

sh            S ffff810004e20000     0 25793  25655
 ffff8100055f5e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100649496c8 ffff8100064be3c0 ffff81001125e3c0 ffff8100064be5d8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100064be3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b35192ded85>]

ccache        S ffff810004e27380     0 25796  25793
 ffff810064bf3e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100649489c8 ffff8100648410a0 ffff81000b50d320 ffff8100648412b8
 ffffffff80505298 ffffffff80245ea5 000000000050e5a0 ffff8100648410a0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002aef7f4b1d85>]

sh            S ffff810003f70fc0     0 25802  25292
 ffff81005aeb7e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eaa48 ffff8100057bb1e0 ffff8100055ba140 ffff8100057bb3f8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100057bb1e0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b732f2cad85>]

ccache        S ffff810004e23480     0 25803  25802
 ffff81000504fe98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eb0c8 ffff81000da95320 ffff81000da92140 ffff81000da95538
 ffffffff80505298 ffffffff80245ea5 000000000050e5a0 ffff81000da95320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b4d31bf1d85>]

hppa-unknown- S ffff8100048163c0     0 25806  25783
 ffff81000d5d1e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8c008 ffff8100648d5320 ffff810003e65320 ffff8100648d5538
 ffffffff80505298 ffffffff80245ea5 00007fff82da92c0 ffff8100648d5320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b7e27ea9d85>]

cc1           R  running task        0 25807  25806
as            S ffff810004814980     0 25808  25806
 ffff810008f85ce8 0000000000000096 ffff8100648d3938 ffff8100648d31e0
 0000000000000000 ffff8100648d31e0 ffff8100648d5320 ffff8100648d33f8
 ffffffff803e06e7 0000000000000246 ffff8100038a04c0 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b8cefe70810>]

hppa-unknown- S ffff810004e263c0     0 25809  25767
 ffff810005239e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8c9c8 ffff8100064ba140 ffff810003e60000 ffff8100064ba358
 ffffffff80505298 ffffffff80245ea5 00007fffa2797cb0 ffff8100064ba140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ab5084bad85>]

cc1           R  running task        0 25810  25809
as            S ffff810004e278c0     0 25811  25809
 ffff810022a7dce8 0000000000000096 ffff81000b5097f8 ffff81000b5090a0
 0000000000000000 ffff81000b5090a0 ffff8100064ba140 ffff81000b5092b8
 ffffffff803e06e7 0000000000000246 ffff8100038a17a8 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b9da77c8810>]

hppa-unknown- S ffff810003f75e80     0 25812  25803
 ffff81000d723e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043e9a08 ffff81000da92140 ffff81000da94280 ffff81000da92358
 ffffffff80505298 ffffffff80245ea5 00007fffbcce21d0 ffff81000da92140
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b2eedf70d85>]

cc1           R  running task        0 25813  25812
as            S ffff810004e20fc0     0 25814  25812
 ffff81000d481ce8 0000000000000096 ffff81000da917f8 ffff81000da910a0
 0000000000000000 ffff81000da910a0 ffff810003e60000 ffff81000da912b8
 ffffffff803e06e7 0000000000000246 ffff81000c198c50 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b8ffb68a810>]

hppa-unknown- S ffff810004e21500     0 25815  25796
 ffff810008dcfe98 0000000000000096 0000000200000000 0000000000000002
 ffff81006494b408 ffff81000b50d320 ffff810003e60000 ffff81000b50d538
 ffffffff80505298 ffffffff80245ea5 00007fffaa0c45d0 ffff81000b50d320
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ba800b8dd85>]

cc1           R  running task        0 25816  25815
as            S ffff810003f73480     0 25817  25815
 ffff810004f67ce8 0000000000000096 ffff810003e66b18 ffff810003e663c0
 0000000000000000 ffff810003e663c0 ffff810064840000 ffff810003e665d8
 ffffffff803e06e7 0000000000000246 ffff8100038a2a90 ffffffff80248ad1
Call Trace:
 [<ffffffff80282655>] pipe_wait+0x85/0xb0
 [<ffffffff80282cb9>] pipe_read+0xe9/0x430
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b304ff0a810>]

sh            S ffff810003f71a40     0 25824  25292
 ffff810022a57e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eba88 ffff8100057be3c0 ffff8100057bc280 ffff8100057be5d8
 ffffffff80505298 ffffffff80245ea5 0000000000006400 ffff8100057be3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b3937c64d85>]

ccache        S ffff810003f75940     0 25825  25824
 ffff810031769e98 0000000000000096 0000000200000000 0000000000000002
 ffff8100043eb748 ffff8100057bc280 ffff81000da94280 ffff8100057bc498
 ffffffff80505298 ffffffff80245ea5 000000000050e280 ffff8100057bc280
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b118a7f6d85>]

hppa-unknown- S ffff810004810540     0 25826  25825
 ffff81000d849e98 0000000000000096 0000000200000000 0000000000000002
 ffff810064a8d388 ffff8100081ae3c0 ffff8100055b63c0 ffff8100081ae5d8
 ffffffff80505298 ffffffff80245ea5 00007fff162d17e0 ffff8100081ae3c0
Call Trace:
 [<ffffffff802299f5>] do_wait+0x505/0xd20
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002b2594980d85>]

cc1           D ffff810004812f40     0 25827  25826
 ffff81000d6d9c18 0000000000000092 ffff810003e65320 ffffffff80249945
 0000000200000001 ffff810003e65320 ffff8100081ae3c0 ffff810003e65538
 ffff810002c1b6e8 0000000000000046 ffff810003e801f0 ffff81000d6d9ca8
Call Trace:
 [<ffffffff803df858>] io_schedule+0x28/0x40
 [<ffffffff80255525>] sync_page+0x45/0x60
 [<ffffffff803dff5a>] __wait_on_bit_lock+0x4a/0x80
 [<ffffffff802554bf>] __lock_page+0x5f/0x70
 [<ffffffff80255dec>] do_generic_mapping_read+0x21c/0x410
 [<ffffffff8025787c>] generic_file_aio_read+0xdc/0x190
 [<ffffffff8027baa9>] do_sync_read+0xd9/0x120
 [<ffffffff8027c26a>] vfs_read+0xaa/0xe0
 [<ffffffff8027c6e3>] sys_read+0x53/0x90
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002ac7bfd58810>]

atl1 0000:03:00.0: tx busy
atl1 0000:03:00.0: tx busy
atl1 0000:03:00.0: tx busy
atl1 0000:03:00.0: tx busy
atl1 0000:03:00.0: tx busy


		[unknown amount of time passes]


Unable to handle kernel NULL pointer dereference at 0000000000000039 RIP: 
 [<ffffffff803b6f7c>] tcp_rto_min+0xc/0x20
PGD d0b5067 PUD 14f68067 PMD 0 
Oops: 0000 [1] SMP 
last sysfs file: /kernel/uevent_seqnum
CPU 1 
Pid: 12133, comm: gdbserver Not tainted 2.6.23-rc4-mm1 #1
RIP: 0010:[<ffffffff803b6f7c>]  [<ffffffff803b6f7c>] tcp_rto_min+0xc/0x20
RSP: 0000:ffff8100034bbc98  EFLAGS: 00010246
RAX: 0000000000000014 RBX: ffff8100054faa80 RCX: 0000000000000000
RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8100054faa80
RBP: ffff8100054faa80 R08: 0000000000000001 R09: 0000000000000000
R10: 0000000000000001 R11: 00000000003246d4 R12: ffffffff80503b20
R13: ffff810005427238 R14: 0000000000000086 R15: 000000000000000c
FS:  00002af8ce942cc0(0000) GS:ffff810003418258(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 0000000000000039 CR3: 000000000d2a3000 CR4: 00000000000006e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff4ff1 DR7: 00000000000d0500
Process gdbserver (pid: 12133, threadinfo ffff81000d1bc000, task ffff8100648d5320)
Stack:  ffffffff803b702f ffff8100054faa80 ffff8100054faa80 ffffffff803b7aa6
 0000000000000001 ffffffff803b96a5 ffff8100054fac30 0000000000000000
 000000018024890d ffff810021084599 0000000100000000 ffffffff00000001
Call Trace:
 [<ffffffff803b702f>] tcp_rtt_estimator+0x9f/0x140
 [<ffffffff803b7aa6>] tcp_ack_saw_tstamp+0x16/0x50
 [<ffffffff803b96a5>] tcp_ack+0x6f5/0x1dd0
 [<ffffffff803be105>] tcp_rcv_established+0x485/0x7b0
 [<ffffffff803c4725>] tcp_v4_do_rcv+0xf5/0x3c0
 [<ffffffff803c6e80>] tcp_v4_rcv+0x860/0x870
 [<ffffffff803a897a>] ip_local_deliver+0x8a/0x170
 [<ffffffff803a8d68>] ip_rcv+0x308/0x570
 [<ffffffff8039257c>] process_backlog+0x7c/0xe0
 [<ffffffff803921cf>] net_rx_action+0xdf/0x1a0
 [<ffffffff8022c873>] __do_softirq+0x73/0xf0
 [<ffffffff8020cd4c>] call_softirq+0x1c/0x30
 [<ffffffff8020f175>] do_softirq+0x55/0xb0
 [<ffffffff8022c5b5>] local_bh_enable+0xc5/0x160
 [<ffffffff803b34f3>] tcp_prequeue_process+0x73/0x90
 [<ffffffff803b5b87>] tcp_recvmsg+0x487/0x910
 [<ffffffff80385570>] sock_common_recvmsg+0x30/0x50
 [<ffffffff80383ba5>] sock_recvmsg+0xd5/0x100
 [<ffffffff80384ade>] sys_recvfrom+0xfe/0x1a0
 [<ffffffff8020bb4e>] system_call+0x7e/0x83
 [<00002af8ce7c5d05>]

INFO: lockdep is turned off.

Code: f6 42 39 20 74 03 8b 42 68 f3 c3 66 66 90 66 66 90 66 66 90 
RIP  [<ffffffff803b6f7c>] tcp_rto_min+0xc/0x20
 RSP <ffff8100034bbc98>
CR2: 0000000000000039
Kernel panic - not syncing: Fatal exception



-------------------------------------------------------------------
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.23-rc4-mm1
# Sat Sep  1 10:50:59 2007
#
CONFIG_X86_64=y
CONFIG_64BIT=y
CONFIG_X86=y
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_NONIRQ_WAKEUP=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_ZONE_DMA32=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_QUICKLIST=y
CONFIG_NR_QUICK=2
CONFIG_RWSEM_GENERIC_SPINLOCK=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_CMPXCHG=y
CONFIG_EARLY_PRINTK=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_ARCH_POPULATES_NODE_MAP=y
CONFIG_DMI=y
CONFIG_AUDIT_ARCH=y
CONFIG_GENERIC_BUG=y
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_TASKSTATS is not set
# CONFIG_USER_NS is not set
# CONFIG_AUDIT is not set
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_LOG_BUF_SHIFT=15
# CONFIG_CONTAINERS is not set
# CONFIG_SYSFS_DEPRECATED is not set
# CONFIG_RELAY is not set
# CONFIG_BLK_DEV_INITRD is not set
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_EMBEDDED=y
# CONFIG_SYSCTL_SYSCALL is not set
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
# CONFIG_EPOLL is not set
# CONFIG_SIGNALFD is not set
# CONFIG_TIMERFD is not set
# CONFIG_EVENTFD is not set
CONFIG_SHMEM=y
# CONFIG_VM_EVENT_COUNTERS is not set
CONFIG_SLUB_DEBUG=y
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
# CONFIG_PROC_PAGE_MONITOR is not set
# CONFIG_PROC_KPAGEMAP is not set
CONFIG_RT_MUTEXES=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
# CONFIG_MODULES is not set
CONFIG_BLOCK=y
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_BLK_DEV_BSG is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_AS is not set
# CONFIG_IOSCHED_DEADLINE is not set
CONFIG_IOSCHED_CFQ=y
# CONFIG_DEFAULT_AS is not set
# CONFIG_DEFAULT_DEADLINE is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"

#
# Processor type and features
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_X86_PC=y
# CONFIG_X86_VSMP is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_L1_CACHE_BYTES=64
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_INTERNODE_CACHE_BYTES=64
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_X86_HT=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_MTRR=y
CONFIG_SMP=y
# CONFIG_SCHED_SMT is not set
# CONFIG_SCHED_MC is not set
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set
# CONFIG_PREEMPT_BKL is not set
# CONFIG_NUMA is not set
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_RESOURCES_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_NR_CPUS=2
CONFIG_PHYSICAL_ALIGN=0x200000
# CONFIG_HOTPLUG_CPU is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_HPET_TIMER=y
# CONFIG_HPET_EMULATE_RTC is not set
# CONFIG_IOMMU is not set
# CONFIG_CALGARY_IOMMU is not set
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
# CONFIG_X86_MCE_AMD is not set
# CONFIG_KEXEC is not set
# CONFIG_CRASH_DUMP is not set
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_START=0x200000
# CONFIG_SECCOMP is not set
# CONFIG_CC_STACKPROTECTOR is not set
CONFIG_HZ_100=y
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=100
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_ISA_DMA_API=y
CONFIG_GENERIC_PENDING_IRQ=y

#
# Power management options
#
CONFIG_PM=y
# CONFIG_PM_LEGACY is not set
# CONFIG_PM_DEBUG is not set
CONFIG_SUSPEND_SMP_POSSIBLE=y
# CONFIG_SUSPEND is not set
CONFIG_HIBERNATION_SMP_POSSIBLE=y
# CONFIG_HIBERNATION is not set
CONFIG_ACPI=y
# CONFIG_ACPI_PROCFS is not set
# CONFIG_ACPI_PROC_EVENT is not set
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
# CONFIG_ACPI_BUTTON is not set
# CONFIG_ACPI_FAN is not set
# CONFIG_ACPI_DOCK is not set
# CONFIG_ACPI_PROCESSOR is not set
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
# CONFIG_X86_PM_TIMER is not set
# CONFIG_ACPI_CONTAINER is not set
# CONFIG_ACPI_SBS is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set

#
# CPU idle PM support
#
# CONFIG_CPU_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
# CONFIG_PCI_MMCONFIG is not set
# CONFIG_DMAR is not set
# CONFIG_PCIEPORTBUS is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_HT_IRQ is not set
# CONFIG_PCCARD is not set
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
# CONFIG_IA32_EMULATION is not set
# CONFIG_COMPAT_FOR_U64_ALIGNMENT is not set

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
# CONFIG_PACKET is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
# CONFIG_INET_LRO is not set
# CONFIG_INET_DIAG is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
# CONFIG_IPV6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set

#
# Wireless
#
# CONFIG_CFG80211 is not set
# CONFIG_WIRELESS_EXT is not set
# CONFIG_MAC80211 is not set
# CONFIG_IEEE80211 is not set
# CONFIG_RFKILL is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
# CONFIG_FW_LOADER is not set
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_CONNECTOR is not set
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y
# CONFIG_BLK_DEV is not set
# CONFIG_MISC_DEVICES is not set
# CONFIG_IDE is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_PROC_FS is not set

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
# CONFIG_CHR_DEV_SG is not set
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set

#
# SCSI Transports
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_ACPI=y
CONFIG_SATA_AHCI=y
# CONFIG_SATA_SVW is not set
CONFIG_ATA_PIIX=y
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SX4 is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIL24 is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_IT8213 is not set
CONFIG_PATA_JMICRON=y
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RZ1000 is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_MD is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_IEEE1394 is not set
# CONFIG_I2O is not set
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
# CONFIG_NETDEVICES_MULTIQUEUE is not set
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_MACVLAN is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_VETH is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_ARCNET is not set
# CONFIG_NET_ETHERNET is not set
CONFIG_MII=y
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2 is not set
# CONFIG_QLA3XXX is not set
CONFIG_ATL1=y
# CONFIG_NETDEV_10000 is not set
# CONFIG_TR is not set

#
# Wireless LAN
#
# CONFIG_WLAN_PRE80211 is not set
# CONFIG_WLAN_80211 is not set
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
# CONFIG_ISDN is not set
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set

#
# Userland interfaces
#
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_NOZOMI is not set

#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set
CONFIG_FIX_EARLYCON_MEM=y

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
CONFIG_RTC=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_AGP is not set
# CONFIG_DRM is not set
# CONFIG_MWAVE is not set
# CONFIG_PC8736x_GPIO is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_I2C is not set

#
# SPI support
#
# CONFIG_SPI is not set
# CONFIG_SPI_MASTER is not set
# CONFIG_W1 is not set
# CONFIG_POWER_SUPPLY is not set
# CONFIG_HWMON is not set
# CONFIG_WATCHDOG is not set

#
# Sonics Silicon Backplane
#
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set

#
# Multifunction device drivers
#
# CONFIG_MFD_SM501 is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
# CONFIG_DVB_CORE is not set
# CONFIG_DAB is not set

#
# Graphics support
#
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set

#
# Display device support
#
# CONFIG_DISPLAY_SUPPORT is not set
# CONFIG_VGASTATE is not set
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
# CONFIG_FB is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
# CONFIG_VIDEO_SELECT is not set
CONFIG_DUMMY_CONSOLE=y

#
# Sound
#
# CONFIG_SOUND is not set
# CONFIG_HID_SUPPORT is not set
# CONFIG_USB_SUPPORT is not set
# CONFIG_MMC is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_INFINIBAND is not set
# CONFIG_EDAC is not set
# CONFIG_RTC_CLASS is not set
# CONFIG_DMADEVICES is not set
# CONFIG_VIRTUALIZATION is not set

#
# Userspace I/O
#
# CONFIG_UIO is not set

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
# CONFIG_DMIID is not set

#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
# CONFIG_EXT3_FS_XATTR is not set
# CONFIG_EXT4DEV_FS is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
# CONFIG_REISER4_FS is not set
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_FS_POSIX_ACL is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_INOTIFY is not set
# CONFIG_QUOTA is not set
# CONFIG_DNOTIFY is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
# CONFIG_MSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
# CONFIG_PROC_KCORE is not set
CONFIG_PROC_SYSCTL=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_TMPFS_POSIX_ACL is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
# CONFIG_CONFIGFS_FS is not set

#
# Layered filesystems
#
# CONFIG_UNION_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_SMB_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
# CONFIG_NLS_CODEPAGE_437 is not set
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set

#
# Distributed Lock Manager
#
# CONFIG_DLM is not set

#
# Instrumentation Support
#
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
# CONFIG_PRINTK_TIME is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_MAGIC_SYSRQ=y
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_PAGE_OWNER is not set
# CONFIG_DEBUG_FS is not set
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_SHIRQ=y
CONFIG_DETECT_SOFTLOCKUP=y
# CONFIG_SCHED_DEBUG is not set
# CONFIG_SCHEDSTATS is not set
# CONFIG_TIMER_STATS is not set
CONFIG_SLUB_DEBUG_ON=y
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_PI_LIST=y
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
CONFIG_LOCK_STAT=y
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_TRACE_IRQFLAGS=y
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
CONFIG_DEBUG_VM=y
CONFIG_DEBUG_LIST=y
# CONFIG_FRAME_POINTER is not set
CONFIG_UNWIND_INFO=y
CONFIG_STACK_UNWIND=y
# CONFIG_PROFILE_LIKELY is not set
# CONFIG_FORCED_INLINING is not set
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DEBUG_SYNCHRO_TEST is not set
# CONFIG_FAULT_INJECTION is not set
# CONFIG_WANT_EXTRA_DEBUG_INFORMATION is not set
# CONFIG_KGDB is not set
# CONFIG_KGDB_ATTACH_WAIT is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_DEBUG_STACK_USAGE is not set

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
# CONFIG_CRYPTO is not set

#
# Library routines
#
CONFIG_BITREVERSE=y
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC16 is not set
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
# CONFIG_CRC7 is not set
# CONFIG_LIBCRC32C is not set
CONFIG_PLIST=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y


--------------------------------------------------------------------
ffffffff803b6f70 <tcp_rto_min>:
ffffffff803b6f70:	48 8b 97 00 01 00 00 	mov    0x100(%rdi),%rdx
ffffffff803b6f77:	b8 14 00 00 00       	mov    $0x14,%eax
ffffffff803b6f7c:	f6 42 39 20          	testb  $0x20,0x39(%rdx)
ffffffff803b6f80:	74 03                	je     ffffffff803b6f85 <tcp_rto_min+0x15>
ffffffff803b6f82:	8b 42 68             	mov    0x68(%rdx),%eax
ffffffff803b6f85:	f3 c3                	repz retq 
ffffffff803b6f87:	66                   	data16
ffffffff803b6f88:	66                   	data16
ffffffff803b6f89:	90                   	nop    
ffffffff803b6f8a:	66                   	data16
ffffffff803b6f8b:	66                   	data16
ffffffff803b6f8c:	90                   	nop    
ffffffff803b6f8d:	66                   	data16
ffffffff803b6f8e:	66                   	data16
ffffffff803b6f8f:	90                   	nop    

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

* Re: 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min()
  2007-09-02  2:36 ` 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min() Alexey Dobriyan
@ 2007-09-02  5:02   ` Satyam Sharma
  2007-09-02 20:52   ` Andrew Morton
  1 sibling, 0 replies; 43+ messages in thread
From: Satyam Sharma @ 2007-09-02  5:02 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: Andrew Morton, Linux Kernel Mailing List, netdev, davem



On Sun, 2 Sep 2007, Alexey Dobriyan wrote:
> 
> Unable to handle kernel NULL pointer dereference at 0000000000000039 RIP: 
>  [<ffffffff803b6f7c>] tcp_rto_min+0xc/0x20

tcp_rto_min() lacks a check-for-NULL. You want 5c127c58ae9bf196 from
the net-2.6.git tree -- so this will be gone in -rc6.

> P.S.: uh-oh, it's "[TCP] Allow minnimum RTO ..." aka 05bb1fad1cde

Yup, it came from this last commit in net-2.6 before -rc5.

[ Considering it's pretty core code (and thus the oops fairly easily
  reproducible), I initially thought this must've come from net-2.6.24.
  I suspect lot of testers might hit this, so would be wise to put that
  patch up as a hot-fix ? ]


Satyam

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-02  0:54     ` Satyam Sharma
@ 2007-09-02  5:36       ` thunder7
  2007-09-02  6:19       ` thunder7
  1 sibling, 0 replies; 43+ messages in thread
From: thunder7 @ 2007-09-02  5:36 UTC (permalink / raw)
  To: Satyam Sharma
  Cc: Jeff Garzik, thunder7, Andrew Morton, Linux Kernel Mailing List,
	netdev

From: Satyam Sharma <satyam@infradead.org>
Date: Sun, Sep 02, 2007 at 06:24:29AM +0530
> 
> The dmesg you posted below doesn't cover the messages from this oops
> itself. As you mentioned you can reproduce this oops easily, please do so,
> and post the *full* oops log (if it doesn't get logged to disk, you can
> try taking digicam photo, or write down *all* the messages and post here).
> I built an x86_64 kernel as per your .config, but don't see any memory
> dereference at nv_napi_poll+0x108 -- could be toolchain differences.
> 
> Else, can you run:
> $ gdb ./vmlinux
> 
> and then:
> (gdb) l *nv_napi_poll+0x108
> 
> and send us the output?
> 
That seems to be the easier option:

AMD64 :gdb /usr/src/linux-2.6.23-rc4-mm1/vmlinux
GNU gdb 6.6-debian
(gdb) l *nv_napi_poll+0x108
0xffffffff80418f28 is in nv_napi_poll (drivers/net/forcedeth.c:2470).
2465				if ((flags & NV_RX2_CHECKSUMMASK) == NV_RX2_CHECKSUMOK2)/*ip and tcp */ {
2466					skb->ip_summed = CHECKSUM_UNNECESSARY;
2467				} else {
2468					if ((flags & NV_RX2_CHECKSUMMASK) == NV_RX2_CHECKSUMOK1 ||
2469					    (flags & NV_RX2_CHECKSUMMASK) == NV_RX2_CHECKSUMOK3) {
2470						skb->ip_summed = CHECKSUM_UNNECESSARY;
2471					}
2472				}
2473	
2474				/* got a valid packet - forward it to the network core */
(gdb) q

as for toolchain differences: this is Debian Unstable, up-to-date as of
yesterday morning.

If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
 
Linux middle 2.6.23-rc1-mm2 #1 SMP Wed Aug 1 14:58:22 CEST 2007 x86_64 GNU/Linux
 
Gnu C                  4.1.3
Gnu make               3.81
binutils               Binutils
util-linux             2.13
mount                  2.13
module-init-tools      3.3-pre11
e2fsprogs              1.40.2
reiserfsprogs          3.6.19
Linux C Library        6.1
Dynamic linker (ldd)   2.6.1
Procps                 3.2.7
Net-tools              1.60
Console-tools          0.2.3
Sh-utils               5.97
Modules Loaded         nf_nat_ftp nf_nat_irc nf_conntrack_irc nf_conntrack_ftp ipt_MASQUERADE iptable_nat nf_nat ipt_REJECT ipt_LOG xt_limit nf_conntrack_ipv4 xt_state xt_tcpudp iptable_filter ip_tables x_tables snd_emu10k1_synth snd_emux_synth snd_seq_virmidi snd_seq_midi_emul snd_emu10k1 snd_seq_dummy snd_seq_oss snd_seq_midi snd_seq_midi_event snd_seq snd_rawmidi snd_ac97_codec ac97_bus snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_device snd_timer snd_page_alloc snd_util_mem snd_hwdep snd soundcore k8temp it87 hwmon_vid hwmon i2c_nforce2

Good luck,
Jurriaan
-- 
His pride could withstand anything. He simply wouldn't care.
	Melanie Rawn - Skybowl
Debian (Unstable) GNU/Linux 2.6.23-rc1-mm2 2x2010 bogomips load 0.43
the Jack Vance Integral Edition: http://www.integralarchive.org

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-02  0:54     ` Satyam Sharma
  2007-09-02  5:36       ` thunder7
@ 2007-09-02  6:19       ` thunder7
  2007-09-02  9:55         ` Satyam Sharma
  1 sibling, 1 reply; 43+ messages in thread
From: thunder7 @ 2007-09-02  6:19 UTC (permalink / raw)
  To: Satyam Sharma
  Cc: Jeff Garzik, thunder7, Andrew Morton, Linux Kernel Mailing List,
	netdev

From: Satyam Sharma <satyam@infradead.org>
Date: Sun, Sep 02, 2007 at 06:24:29AM +0530
> Hi Jurriaan,
> 
> 
> > thunder7@xs4all.nl wrote:
> > > From: Andrew Morton <akpm@linux-foundation.org>
> > > Date: Fri, Aug 31, 2007 at 09:58:22PM -0700
> > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
> > > > 
> > > On this machine (Athlon 64 X2 4600, 4 GiB memory, lots of disks),
> > > 2.6.23-rc1-mm2 runs fine. 2.6.23-rc4-mm1 reproducably dies within seconds of
> > > starting
> > > a rsync session on another PC against this machine.
> > > 
> > > NULL pointer dereference
> > > code:	nv_napi_poll+0x108
> > > trace:	net_rx_action+0xab
> > > 	__do_softirq+0x74
> > > 	call_softirq+0x1c
> > > 	do_softirq+0x3d
> > > 	irq_exit+0x85
> > > 	do_IRQ+0x85
> > > 	ret_from_intr+0x0
> 
> The dmesg you posted below doesn't cover the messages from this oops
> itself. As you mentioned you can reproduce this oops easily, please do so,
> and post the *full* oops log (if it doesn't get logged to disk, you can
> try taking digicam photo, or write down *all* the messages and post here).
> I built an x86_64 kernel as per your .config, but don't see any memory
> dereference at nv_napi_poll+0x108 -- could be toolchain differences.
> 
There are 4 pictures of oopses here:

http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_1.jpg
http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_2.jpg
http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_3.jpg
http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_4.jpg

image quality, well, they're readable.

Good luck,
Jurriaan
-- 
management n.
1. Corporate power elites distinguished primarily by their distance from
actual productive work and their chronic failure to manage (see also suit).
Spoken derisively, as in "Management decided that ...". 2. Mythically, a
vast bureaucracy responsible for all the world's minor irritations.
Hackers' satirical public notices are often signed `The Mgt'; this derives
from the "Illuminatus" novels (see the Bibliography in Appendix C).
Debian (Unstable) GNU/Linux 2.6.23-rc1-mm2 2x2010 bogomips load 0.43
the Jack Vance Integral Edition: http://www.integralarchive.org

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

* 2.6.23-rc4-mm1 net bitops compile error
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (4 preceding siblings ...)
  2007-09-02  2:36 ` 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min() Alexey Dobriyan
@ 2007-09-02  9:14 ` Adrian Bunk
  2007-09-04 17:53   ` Jiri Slaby
  2007-09-02 11:25 ` [-mm patch] IPV6 must select XFRM Adrian Bunk
                   ` (5 subsequent siblings)
  11 siblings, 1 reply; 43+ messages in thread
From: Adrian Bunk @ 2007-09-02  9:14 UTC (permalink / raw)
  To: Andrew Morton, Jiri Slaby; +Cc: linux-kernel, netdev

defconfig fails with the following error on parisc:

<--  snip  -->

...
  CC      net/core/gen_estimator.o
In file included from include2/asm/bitops.h:111,
                 from /home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/net/core/gen_estimator.c:18:
/home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/include/asm-generic/bitops/non-atomic.h: 
In function '__set_bit':
/home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/include/asm-generic/bitops/non-atomic.h:17: 
error: implicit declaration of function 'BIT_MASK'
/home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/include/asm-generic/bitops/non-atomic.h:18: 
error: implicit declaration of function 'BIT_WORD'
make[3]: *** [net/core/gen_estimator.o] Error 1

<--  snip  -->

Either #include <asm/bitops.h> must become forbidden and #error or the 
move of the #define's to include/linux/bitops.h reverted.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-02  6:19       ` thunder7
@ 2007-09-02  9:55         ` Satyam Sharma
  2007-09-14  3:51           ` Andrew James Wade
  0 siblings, 1 reply; 43+ messages in thread
From: Satyam Sharma @ 2007-09-02  9:55 UTC (permalink / raw)
  To: thunder7; +Cc: Jeff Garzik, Andrew Morton, Linux Kernel Mailing List, netdev



On Sun, 2 Sep 2007, thunder7@xs4all.nl wrote:
> 
> > > thunder7@xs4all.nl wrote:
> > > > 
> > > > On this machine (Athlon 64 X2 4600, 4 GiB memory, lots of disks),
> > > > 2.6.23-rc1-mm2 runs fine. 2.6.23-rc4-mm1 reproducably dies within seconds of
> > > > starting
> > > > a rsync session on another PC against this machine.
> > > > 
> > > > NULL pointer dereference
> > > > code:	nv_napi_poll+0x108
> > > > trace:	net_rx_action+0xab
> > > > 	__do_softirq+0x74
> > > > 	call_softirq+0x1c
> > > > 	do_softirq+0x3d
> > > > 	irq_exit+0x85
> > > > 	do_IRQ+0x85
> > > > 	ret_from_intr+0x0
> 
> There are 4 pictures of oopses here:
> 
> http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_1.jpg
> http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_2.jpg
> http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_3.jpg
> http://www.xs4all.nl/~thunder7/oops_2623rc4mm1_4.jpg

OK, I've been pouring over forcedeth.c and the newly introduce NAPI code,
but didn't debug this yet, so I'll at least lay out the situation so that
somebody else who's more experienced @netdev can pick up from here with
minimal time wastage.

Here's what's happening (repeatedly, reproducibly) on Jurriaan's x64 box:

(1) The following NULL dereference oops:

    nv_rx_process_optimized(), inlined from nv_napi_poll(), found that
    "skb" i.e. np->get_rx_ctx->skb == NULL when trying to update
    skb->ip_summed.

(2) The following BUG in napi_complete():

    BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));

    from the nv_napi_poll()->__netif_rx_complete()->napi_complete()
    callchain is triggering. IOW napi_complete() found that a NAPI
    poll wasn't/shouldn't have been scheduled at all (!)

The above two problems appear to be occurring independently, AFAICT.


Satyam

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

* [-mm patch] IPV6 must select XFRM
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (5 preceding siblings ...)
  2007-09-02  9:14 ` 2.6.23-rc4-mm1 net bitops compile error Adrian Bunk
@ 2007-09-02 11:25 ` Adrian Bunk
  2007-09-03 10:43   ` Masahide NAKAMURA
  2007-09-04 17:54 ` 2.6.23-rc4-mm1 Zach Carter
                   ` (4 subsequent siblings)
  11 siblings, 1 reply; 43+ messages in thread
From: Adrian Bunk @ 2007-09-02 11:25 UTC (permalink / raw)
  To: Andrew Morton, davem; +Cc: linux-kernel, netdev

On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.23-rc3-mm1:
>...
>  git-net.patch
>...
>  git trees
>...

This patch fixes the following compile error:

<--  snip  -->

...
  LD      .tmp_vmlinux1
net/built-in.o: In function `inet6_csk_xmit':
(.text+0x72b0f): undefined reference to `flow_cache_genid'
net/built-in.o: In function `inet6_csk_xmit':
(.text+0x72be5): undefined reference to `flow_cache_genid'
make[1]: *** [.tmp_vmlinux1] Error 1

<--  snip  -->

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---
--- a/net/ipv6/Kconfig
+++ b/net/ipv6/Kconfig
@@ -5,6 +5,7 @@
 #   IPv6 as module will cause a CRASH if you try to unload it
 config IPV6
 	tristate "The IPv6 protocol"
+	select XFRM
 	default m
 	---help---
 	  This is complemental support for the IP version 6.

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

* Re: [PATCH -mm] net/sched/sch_cbq.c: Shut up uninitialized variable warning
  2007-09-02  1:30 ` [PATCH -mm] net/sched/sch_cbq.c: Shut up uninitialized variable warning Satyam Sharma
@ 2007-09-02 11:36   ` Patrick McHardy
  0 siblings, 0 replies; 43+ messages in thread
From: Patrick McHardy @ 2007-09-02 11:36 UTC (permalink / raw)
  To: Satyam Sharma
  Cc: Andrew Morton, Linux Kernel Mailing List, David Miller, netdev

Satyam Sharma wrote:
> net/sched/sch_cbq.c: In function 'cbq_enqueue':
> net/sched/sch_cbq.c:383: warning: 'ret' may be used uninitialized in this function
>
> has been verified to be a bogus case. So let's shut it up.
>
> Signed-off-by: Satyam Sharma <satyam@infradead.org>

Acked-by: Patrick McHardy <kaber@trash.net>

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

* Re: 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min()
  2007-09-02  2:36 ` 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min() Alexey Dobriyan
  2007-09-02  5:02   ` Satyam Sharma
@ 2007-09-02 20:52   ` Andrew Morton
  2007-09-02 21:19     ` Alexey Dobriyan
  1 sibling, 1 reply; 43+ messages in thread
From: Andrew Morton @ 2007-09-02 20:52 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: linux-kernel, netdev, davem

> On Sun, 2 Sep 2007 06:36:19 +0400 Alexey Dobriyan <adobriyan@gmail.com> wrote:
> On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc4/2.6.23-rc4-mm1/
> > - dynticks-for-x86_64 has returned
> 
> Good news is that, contary to popular belief, -mm is not horrible piece
> of crap and NO_HZ on x86_64 worked here straight away.

variable.  It at least Works For Me before it goes out.

> 
> The bad news is something knocked off box from the net, then panicked it:

Yeah, the net tree has been quite bad lately.  Unusually bad - it's usually
one of the good ones.

It also breaks a lot of the net driver work in several other trees (I dropped
git-ixgbe.patch wholesale because of this).  But there isn't a lot we can
do about that.  

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

* Re: 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min()
  2007-09-02 20:52   ` Andrew Morton
@ 2007-09-02 21:19     ` Alexey Dobriyan
  0 siblings, 0 replies; 43+ messages in thread
From: Alexey Dobriyan @ 2007-09-02 21:19 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, netdev, davem

On Sun, Sep 02, 2007 at 01:52:45PM -0700, Andrew Morton wrote:
> > On Sun, 2 Sep 2007 06:36:19 +0400 Alexey Dobriyan <adobriyan@gmail.com> wrote:
> > The bad news is something knocked off box from the net, then panicked it:
> 
> Yeah, the net tree has been quite bad lately.  Unusually bad - it's usually
> one of the good ones.
> 
> It also breaks a lot of the net driver work in several other trees (I dropped
> git-ixgbe.patch wholesale because of this).  But there isn't a lot we can
> do about that.  

OK, I'm currently running with "dst entry can be NULL" fix from net
tree, so far it's fine.

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

* Re: [-mm patch] IPV6 must select XFRM
  2007-09-02 11:25 ` [-mm patch] IPV6 must select XFRM Adrian Bunk
@ 2007-09-03 10:43   ` Masahide NAKAMURA
  2007-09-06 10:01     ` net-26.24 broken with XFRM off Noriaki TAKAMIYA
  0 siblings, 1 reply; 43+ messages in thread
From: Masahide NAKAMURA @ 2007-09-03 10:43 UTC (permalink / raw)
  To: Adrian Bunk, David Miller; +Cc: Andrew Morton, linux-kernel, netdev, nakam

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

Hello,

On Sun, 2 Sep 2007 13:25:57 +0200
Adrian Bunk <bunk@kernel.org> wrote:

> On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> >...
> > Changes since 2.6.23-rc3-mm1:
> >...
> >  git-net.patch
> >...
> >  git trees
> >...
> 
> This patch fixes the following compile error:
> 
> <--  snip  -->
> 
> ...
>   LD      .tmp_vmlinux1
> net/built-in.o: In function `inet6_csk_xmit':
> (.text+0x72b0f): undefined reference to `flow_cache_genid'
> net/built-in.o: In function `inet6_csk_xmit':
> (.text+0x72be5): undefined reference to `flow_cache_genid'
> make[1]: *** [.tmp_vmlinux1] Error 1
> 
> <--  snip  -->
> 
> Signed-off-by: Adrian Bunk <bunk@kernel.org>
> 
> ---
> --- a/net/ipv6/Kconfig
> +++ b/net/ipv6/Kconfig
> @@ -5,6 +5,7 @@
>  #   IPv6 as module will cause a CRASH if you try to unload it
>  config IPV6
>  	tristate "The IPv6 protocol"
> +	select XFRM
>  	default m
>  	---help---
>  	  This is complemental support for the IP version 6.
> 
> -


Thank you for catching this. the issue is caused with patch
"[IPV6] XFRM: Fix connected socket to use transformation."
which I sent to netdev.
(a85d5450ddeb959bdf9e4603f9c06e9d79217cfa on net-2.6.24).

I'd prefer to modify the original patch to use "ifdef CONFIG_XFRM"
than changing kernel config depends. Does it make sense?

Please review the attached patch.

-- 
Masahide NAKAMURA

[-- Attachment #2: 0001-PATCH-IPV6-XFRM-Fix-dependency-issue-at-inet6_csk_xmit.txt --]
[-- Type: application/octet-stream, Size: 2113 bytes --]

From c9b0d15f8222de7854a6ad504c4562004b99e487 Mon Sep 17 00:00:00 2001
From: Masahide NAKAMURA <nakam@linux-ipv6.org>
Date: Mon, 3 Sep 2007 19:31:32 +0900
Subject: [PATCH] [IPV6] XFRM: Fix dependency issue at inet6_csk_xmit.

Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org>
---
 include/net/ip6_fib.h            |    2 ++
 net/ipv6/inet6_connection_sock.c |   31 ++++++++++++++++++-------------
 2 files changed, 20 insertions(+), 13 deletions(-)

diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h
index 85d6d9f..8578213 100644
--- a/include/net/ip6_fib.h
+++ b/include/net/ip6_fib.h
@@ -106,7 +106,9 @@ struct rt6_info
 
 	u8				rt6i_protocol;
 
+#ifdef CONFIG_XFRM
 	u32				rt6i_flow_cache_genid;
+#endif
 };
 
 static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst)
diff --git a/net/ipv6/inet6_connection_sock.c b/net/ipv6/inet6_connection_sock.c
index f389322..25b9317 100644
--- a/net/ipv6/inet6_connection_sock.c
+++ b/net/ipv6/inet6_connection_sock.c
@@ -143,29 +143,34 @@ static inline
 void __inet6_csk_dst_store(struct sock *sk, struct dst_entry *dst,
 			   struct in6_addr *daddr, struct in6_addr *saddr)
 {
-	struct rt6_info *rt = (struct rt6_info *)dst;
-
 	__ip6_dst_store(sk, dst, daddr, saddr);
-	rt->rt6i_flow_cache_genid = atomic_read(&flow_cache_genid);
+
+#ifdef CONFIG_XFRM
+	if (dst) {
+		struct rt6_info *rt = (struct rt6_info  *)dst;
+		rt->rt6i_flow_cache_genid = atomic_read(&flow_cache_genid);
+	}
+#endif
 }
 
 static inline
 struct dst_entry *__inet6_csk_dst_check(struct sock *sk, u32 cookie)
 {
 	struct dst_entry *dst;
-	struct rt6_info *rt;
 
 	dst = __sk_dst_check(sk, cookie);
-	if (!dst)
-		goto end;
-
-	rt = (struct rt6_info *)dst;
-	if (rt->rt6i_flow_cache_genid != atomic_read(&flow_cache_genid)) {
-		sk->sk_dst_cache = NULL;
-		dst_release(dst);
-		dst = NULL;
+
+#ifdef CONFIG_XFRM
+	if (dst) {
+		struct rt6_info *rt = (struct rt6_info *)dst;
+		if (rt->rt6i_flow_cache_genid != atomic_read(&flow_cache_genid)) {
+			sk->sk_dst_cache = NULL;
+			dst_release(dst);
+			dst = NULL;
+		}
 	}
- end:
+#endif
+
 	return dst;
 }
 
-- 
1.4.4.2


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

* Re: 2.6.23-rc4-mm1 net bitops compile error
  2007-09-02  9:14 ` 2.6.23-rc4-mm1 net bitops compile error Adrian Bunk
@ 2007-09-04 17:53   ` Jiri Slaby
  0 siblings, 0 replies; 43+ messages in thread
From: Jiri Slaby @ 2007-09-04 17:53 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Andrew Morton, linux-kernel, netdev

Adrian Bunk napsal(a):
> defconfig fails with the following error on parisc:
> 
> <--  snip  -->
> 
> ...
>   CC      net/core/gen_estimator.o
> In file included from include2/asm/bitops.h:111,
>                  from /home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/net/core/gen_estimator.c:18:
> /home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/include/asm-generic/bitops/non-atomic.h: 
> In function '__set_bit':
> /home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/include/asm-generic/bitops/non-atomic.h:17: 
> error: implicit declaration of function 'BIT_MASK'
> /home/bunk/linux/kernel-2.6/linux-2.6.23-rc4-mm1/include/asm-generic/bitops/non-atomic.h:18: 
> error: implicit declaration of function 'BIT_WORD'
> make[3]: *** [net/core/gen_estimator.o] Error 1
> 
> <--  snip  -->
> 
> Either #include <asm/bitops.h> must become forbidden and #error or the 
> move of the #define's to include/linux/bitops.h reverted.

Just to let you know, that I'm working on the former.

thanks,
-- 
http://www.fi.muni.cz/~xslaby/            Jiri Slaby
faculty of informatics, masaryk university, brno, cz

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

* Re: 2.6.23-rc4-mm1
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (6 preceding siblings ...)
  2007-09-02 11:25 ` [-mm patch] IPV6 must select XFRM Adrian Bunk
@ 2007-09-04 17:54 ` Zach Carter
  2007-09-04 21:36   ` 2.6.23-rc4-mm1 Stephen Hemminger
  2007-09-09 20:25 ` [-mm patch] really unexport do_softirq Adrian Bunk
                   ` (3 subsequent siblings)
  11 siblings, 1 reply; 43+ messages in thread
From: Zach Carter @ 2007-09-04 17:54 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, netdev, shemminger


> +ioc3-program-uart-predividers.patch
> +sky2-fe-chip-support.patch
> +sky2-use-debugfs-rename.patch
> +sky2-document-gphy_ctrl-bits.patch
> +sky2-dont-restrict-config-space-access.patch
> +sky2-advanced-error-reporting.patch
> +sky2-use-pci_config-access-functions.patch
> +sky2-use-net_device-internal-stats.patch
> +ktime_sub_ns-analog-of-ktime_add_ns.patch
> +export-reciprocal_value-for-modules.patch
> +sky2-hardware-receive-timestamp-counter.patch
> +sky2-avoid-divide-in-receive-path.patch
> +sky2-118.patch

Folks,

I've got these messages since installing 2.6.23-rc4-mm1:

sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 5 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 5 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000
printk: 4 messages suppressed.
sky2 0000:07:00.0: error interrupt status=0x80000000

The laptop is a Sony VAIO SZ430N/B

Despite the errors, the interface appears to be working well enough.

I'd be happy to supply additional information, try out patches, or 
submit a bugzilla if needed.

thanks!

-Zach

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

* Re: 2.6.23-rc4-mm1
  2007-09-04 17:54 ` 2.6.23-rc4-mm1 Zach Carter
@ 2007-09-04 21:36   ` Stephen Hemminger
  0 siblings, 0 replies; 43+ messages in thread
From: Stephen Hemminger @ 2007-09-04 21:36 UTC (permalink / raw)
  To: Zach Carter; +Cc: Andrew Morton, linux-kernel, netdev

On Tue, 4 Sep 2007 10:54:32 -0700
Zach Carter <linux@zachcarter.com> wrote:

> 
> > +ioc3-program-uart-predividers.patch
> > +sky2-fe-chip-support.patch
> > +sky2-use-debugfs-rename.patch
> > +sky2-document-gphy_ctrl-bits.patch
> > +sky2-dont-restrict-config-space-access.patch
> > +sky2-advanced-error-reporting.patch
> > +sky2-use-pci_config-access-functions.patch
> > +sky2-use-net_device-internal-stats.patch
> > +ktime_sub_ns-analog-of-ktime_add_ns.patch
> > +export-reciprocal_value-for-modules.patch
> > +sky2-hardware-receive-timestamp-counter.patch

I already told Andrew to please drop this last patch, because
it causes interrupt messages. It seems masking off the IRQ
in hardware doesn't prevent that interrupt!

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

* net-26.24 broken with XFRM off
@ 2007-09-06  7:25 Divy Le Ray
  2007-09-06  8:13 ` Eric Dumazet
  0 siblings, 1 reply; 43+ messages in thread
From: Divy Le Ray @ 2007-09-06  7:25 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, linux-kernel, takamiya

Hi Dave,

I get this error compiling net-2.6.24 with XFRM off:

[root@aries net-2.6.24]# make O=/opt/build/net-2.6.24
fatal: corrupted pack file 
.git/objects/pack/pack-39c494e9d4c6488e5911ee5c06926450679e6b78.pack
fatal: corrupted pack file 
.git/objects/pack/pack-39c494e9d4c6488e5911ee5c06926450679e6b78.pack
  Using /mnt/net-2.6.24 as source for kernel
  GEN     /opt/build/net-2.6.24/Makefile
  CHK     include/linux/version.h
  CHK     include/linux/utsrelease.h
  CALL    /mnt/net-2.6.24/scripts/checksyscalls.sh
  CHK     include/linux/compile.h
  GEN     .version
  CHK     include/linux/compile.h
  UPD     include/linux/compile.h
  CC      init/version.o
  LD      init/built-in.o
  LD      .tmp_vmlinux1
net/built-in.o(.text+0x73ac2): In function `inet6_csk_xmit':
: undefined reference to `flow_cache_genid'
net/built-in.o(.text+0x73b9e): In function `inet6_csk_xmit':
: undefined reference to `flow_cache_genid'
make[1]: *** [.tmp_vmlinux1] Error 1
make: *** [_all] Error 2

I believe this commit introduced it:
commit a85d5450ddeb959bdf9e4603f9c06e9d79217cfa
Author: Noriaki TAKAMIYA <takamiya@po.ntts.co.jp>
Date:   Fri Aug 24 23:31:39 2007 -0700

    [IPV6] XFRM: Fix connected socket to use transformation.

Cheers,
Divy
   

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

* Re: net-26.24 broken with XFRM off
  2007-09-06  7:25 net-26.24 broken with XFRM off Divy Le Ray
@ 2007-09-06  8:13 ` Eric Dumazet
  2007-09-06  9:50   ` David Miller
  0 siblings, 1 reply; 43+ messages in thread
From: Eric Dumazet @ 2007-09-06  8:13 UTC (permalink / raw)
  To: Divy Le Ray; +Cc: David Miller, netdev, linux-kernel, takamiya

On Thu, 06 Sep 2007 00:25:51 -0700
Divy Le Ray <divy@chelsio.com> wrote:

> Hi Dave,
> 
> I get this error compiling net-2.6.24 with XFRM off:
> 
> [root@aries net-2.6.24]# make O=/opt/build/net-2.6.24
> fatal: corrupted pack file 
> .git/objects/pack/pack-39c494e9d4c6488e5911ee5c06926450679e6b78.pack
> fatal: corrupted pack file 
> .git/objects/pack/pack-39c494e9d4c6488e5911ee5c06926450679e6b78.pack
>   Using /mnt/net-2.6.24 as source for kernel
>   GEN     /opt/build/net-2.6.24/Makefile
>   CHK     include/linux/version.h
>   CHK     include/linux/utsrelease.h
>   CALL    /mnt/net-2.6.24/scripts/checksyscalls.sh
>   CHK     include/linux/compile.h
>   GEN     .version
>   CHK     include/linux/compile.h
>   UPD     include/linux/compile.h
>   CC      init/version.o
>   LD      init/built-in.o
>   LD      .tmp_vmlinux1
> net/built-in.o(.text+0x73ac2): In function `inet6_csk_xmit':
> : undefined reference to `flow_cache_genid'
> net/built-in.o(.text+0x73b9e): In function `inet6_csk_xmit':
> : undefined reference to `flow_cache_genid'
> make[1]: *** [.tmp_vmlinux1] Error 1
> make: *** [_all] Error 2
> 
> I believe this commit introduced it:
> commit a85d5450ddeb959bdf9e4603f9c06e9d79217cfa
> Author: Noriaki TAKAMIYA <takamiya@po.ntts.co.jp>
> Date:   Fri Aug 24 23:31:39 2007 -0700
> 
>     [IPV6] XFRM: Fix connected socket to use transformation.
> 

Hi Divy

I believe this problem is known.

Please check http://marc.info/?l=linux-netdev&m=118881627028135&w=2 

Eric

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

* Re: net-26.24 broken with XFRM off
  2007-09-06  8:13 ` Eric Dumazet
@ 2007-09-06  9:50   ` David Miller
  0 siblings, 0 replies; 43+ messages in thread
From: David Miller @ 2007-09-06  9:50 UTC (permalink / raw)
  To: dada1; +Cc: divy, netdev, linux-kernel, takamiya

From: Eric Dumazet <dada1@cosmosbay.com>
Date: Thu, 6 Sep 2007 10:13:26 +0200

> I believe this problem is known.
> 
> Please check http://marc.info/?l=linux-netdev&m=118881627028135&w=2 

I'll toss that fix into the tree, thanks.

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

* Re: net-26.24 broken with XFRM off
  2007-09-03 10:43   ` Masahide NAKAMURA
@ 2007-09-06 10:01     ` Noriaki TAKAMIYA
  0 siblings, 0 replies; 43+ messages in thread
From: Noriaki TAKAMIYA @ 2007-09-06 10:01 UTC (permalink / raw)
  To: dada1; +Cc: divy, davem, netdev, linux-kernel, usagi-core

Hi,

>> Thu, 6 Sep 2007 10:13:26 +0200
>> [Subject: Re: net-26.24 broken with XFRM off]
>> Eric Dumazet <dada1@cosmosbay.com> wrote...

> Hi Divy
> 
> I believe this problem is known.
> 
> Please check http://marc.info/?l=linux-netdev&m=118881627028135&w=2 

  I'm sorry not to check more precisely.

  As Eric said, this issue should be fixed by the patch attached in
  the following mail.

  Regards,

>> Mon, 03 Sep 2007 19:43:51 +0900
>> [Subject: Re: [-mm patch] IPV6 must select XFRM]
>> Masahide NAKAMURA <nakam@linux-ipv6.org> wrote...

> Thank you for catching this. the issue is caused with patch
> "[IPV6] XFRM: Fix connected socket to use transformation."
> which I sent to netdev.
> (a85d5450ddeb959bdf9e4603f9c06e9d79217cfa on net-2.6.24).
> 
> I'd prefer to modify the original patch to use "ifdef CONFIG_XFRM"
> than changing kernel config depends. Does it make sense?
> 
> Please review the attached patch.
> 
> -- 
> Masahide NAKAMURA
--
Noriaki TAKAMIYA

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

* [-mm patch] really unexport do_softirq
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (7 preceding siblings ...)
  2007-09-04 17:54 ` 2.6.23-rc4-mm1 Zach Carter
@ 2007-09-09 20:25 ` Adrian Bunk
  2007-09-12 13:14   ` David Miller
  2007-09-09 20:25 ` [-mm patch] unexport raise_softirq_irqoff Adrian Bunk
                   ` (2 subsequent siblings)
  11 siblings, 1 reply; 43+ messages in thread
From: Adrian Bunk @ 2007-09-09 20:25 UTC (permalink / raw)
  To: Andrew Morton, Robert Olsson, David S. Miller; +Cc: linux-kernel, netdev

On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.23-rc3-mm1:
>...
>  git-net.patch
>...
>  git trees
>...

This hydra had more than one head...

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---

 arch/i386/kernel/irq.c    |    2 --
 arch/powerpc/kernel/irq.c |    1 -
 arch/s390/kernel/irq.c    |    1 -
 arch/sh/kernel/irq.c      |    1 -
 arch/x86_64/kernel/irq.c  |    1 -
 5 files changed, 6 deletions(-)

68791fe88172ac3c2dbb0fbbffb8befc7b59e3f7 
diff --git a/arch/i386/kernel/irq.c b/arch/i386/kernel/irq.c
index a6b2c7e..de1601f 100644
--- a/arch/i386/kernel/irq.c
+++ b/arch/i386/kernel/irq.c
@@ -231,8 +231,6 @@ asmlinkage void do_softirq(void)
 
 	local_irq_restore(flags);
 }
-
-EXPORT_SYMBOL(do_softirq);
 #endif
 
 /*
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
index dfad0e4..65c2409 100644
--- a/arch/powerpc/kernel/irq.c
+++ b/arch/powerpc/kernel/irq.c
@@ -395,7 +395,6 @@ void do_softirq(void)
 
 	local_irq_restore(flags);
 }
-EXPORT_SYMBOL(do_softirq);
 
 
 /*
diff --git a/arch/s390/kernel/irq.c b/arch/s390/kernel/irq.c
index 8f0cbca..c36d812 100644
--- a/arch/s390/kernel/irq.c
+++ b/arch/s390/kernel/irq.c
@@ -95,7 +95,6 @@ asmlinkage void do_softirq(void)
 
 	local_irq_restore(flags);
 }
-EXPORT_SYMBOL(do_softirq);
 
 void init_irq_proc(void)
 {
diff --git a/arch/sh/kernel/irq.c b/arch/sh/kernel/irq.c
index 0340498..4b49d03 100644
--- a/arch/sh/kernel/irq.c
+++ b/arch/sh/kernel/irq.c
@@ -245,7 +245,6 @@ asmlinkage void do_softirq(void)
 
 	local_irq_restore(flags);
 }
-EXPORT_SYMBOL(do_softirq);
 #endif
 
 void __init init_IRQ(void)
diff --git a/arch/x86_64/kernel/irq.c b/arch/x86_64/kernel/irq.c
index 87423b7..3542f0c 100644
--- a/arch/x86_64/kernel/irq.c
+++ b/arch/x86_64/kernel/irq.c
@@ -236,4 +236,3 @@ asmlinkage void do_softirq(void)
 	}
  	local_irq_restore(flags);
 }
-EXPORT_SYMBOL(do_softirq);

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

* [-mm patch] unexport raise_softirq_irqoff
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (8 preceding siblings ...)
  2007-09-09 20:25 ` [-mm patch] really unexport do_softirq Adrian Bunk
@ 2007-09-09 20:25 ` Adrian Bunk
  2007-09-09 20:41   ` Christoph Hellwig
  2007-09-09 20:25 ` [-mm patch] net/sctp/socket.c: make 3 variables static Adrian Bunk
  2007-09-09 20:25 ` [-mm patch] make tcp_splice_data_recv() static Adrian Bunk
  11 siblings, 1 reply; 43+ messages in thread
From: Adrian Bunk @ 2007-09-09 20:25 UTC (permalink / raw)
  To: Andrew Morton, davem; +Cc: linux-kernel, netdev

On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.23-rc3-mm1:
>...
>  git-net.patch
>...
>  git trees
>...

raise_softirq_irqoff no longer has any modular user.

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---
eff0407b63757cdd4164a0bdde0313e8f154b6dc 
diff --git a/kernel/softirq.c b/kernel/softirq.c
index abae56c..ce38b56 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -335,8 +335,6 @@ inline fastcall void raise_softirq_irqoff(unsigned int nr)
 		wakeup_softirqd();
 }
 
-EXPORT_SYMBOL(raise_softirq_irqoff);
-
 void fastcall raise_softirq(unsigned int nr)
 {
 	unsigned long flags;

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

* [-mm patch] net/sctp/socket.c: make 3 variables static
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (9 preceding siblings ...)
  2007-09-09 20:25 ` [-mm patch] unexport raise_softirq_irqoff Adrian Bunk
@ 2007-09-09 20:25 ` Adrian Bunk
  2007-09-10 14:05   ` [Lksctp-developers] " Neil Horman
  2007-09-12 13:18   ` David Miller
  2007-09-09 20:25 ` [-mm patch] make tcp_splice_data_recv() static Adrian Bunk
  11 siblings, 2 replies; 43+ messages in thread
From: Adrian Bunk @ 2007-09-09 20:25 UTC (permalink / raw)
  To: Andrew Morton, vladislav.yasevich, sri, davem
  Cc: linux-kernel, lksctp-developers, netdev

On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.23-rc3-mm1:
>...
>  git-net.patch
>...
>  git trees
>...

This patch makes the following needlessly globalvariables static:
- sctp_memory_pressure
- sctp_memory_allocated
- sctp_sockets_allocated

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---
3c211ad074038414ebc156b1abbc3df78dc60cb2 
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index 37e7306..f53545a 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -112,9 +112,9 @@ extern int sysctl_sctp_mem[3];
 extern int sysctl_sctp_rmem[3];
 extern int sysctl_sctp_wmem[3];
 
-int sctp_memory_pressure;
-atomic_t sctp_memory_allocated;
-atomic_t sctp_sockets_allocated;
+static int sctp_memory_pressure;
+static atomic_t sctp_memory_allocated;
+static atomic_t sctp_sockets_allocated;
 
 static void sctp_enter_memory_pressure(void)
 {

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

* [-mm patch] make tcp_splice_data_recv() static
       [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
                   ` (10 preceding siblings ...)
  2007-09-09 20:25 ` [-mm patch] net/sctp/socket.c: make 3 variables static Adrian Bunk
@ 2007-09-09 20:25 ` Adrian Bunk
  2007-09-12 13:21   ` David Miller
  11 siblings, 1 reply; 43+ messages in thread
From: Adrian Bunk @ 2007-09-09 20:25 UTC (permalink / raw)
  To: Andrew Morton, Jens Axboe; +Cc: linux-kernel, netdev

On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.23-rc3-mm1:
>...
>  git-block.patch
>...
>  git trees
>...

tcp_splice_data_recv() can become static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---
233aefd2a215430c16bd02eca06fb8a4b6079f7a 
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index 22576e4..6623796 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -515,8 +515,9 @@ static inline void tcp_push(struct sock *sk, int flags, int mss_now,
 	}
 }
 
-int tcp_splice_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
-			 unsigned int offset, size_t len)
+static int tcp_splice_data_recv(read_descriptor_t *rd_desc,
+				struct sk_buff *skb,
+				unsigned int offset, size_t len)
 {
 	struct tcp_splice_state *tss = rd_desc->arg.data;
 


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

* Re: [-mm patch] unexport raise_softirq_irqoff
  2007-09-09 20:25 ` [-mm patch] unexport raise_softirq_irqoff Adrian Bunk
@ 2007-09-09 20:41   ` Christoph Hellwig
  2007-09-12 13:15     ` David Miller
  0 siblings, 1 reply; 43+ messages in thread
From: Christoph Hellwig @ 2007-09-09 20:41 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Andrew Morton, davem, linux-kernel, netdev

On Sun, Sep 09, 2007 at 10:25:44PM +0200, Adrian Bunk wrote:
> On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> >...
> > Changes since 2.6.23-rc3-mm1:
> >...
> >  git-net.patch
> >...
> >  git trees
> >...
> 
> raise_softirq_irqoff no longer has any modular user.
> 
> Signed-off-by: Adrian Bunk <bunk@kernel.org>

This should probably go in through Dave's tree as it's removing this
rather annoying user.


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

* Re: [Lksctp-developers] [-mm patch] net/sctp/socket.c: make 3 variables static
  2007-09-09 20:25 ` [-mm patch] net/sctp/socket.c: make 3 variables static Adrian Bunk
@ 2007-09-10 14:05   ` Neil Horman
  2007-09-12 13:18   ` David Miller
  1 sibling, 0 replies; 43+ messages in thread
From: Neil Horman @ 2007-09-10 14:05 UTC (permalink / raw)
  To: Adrian Bunk
  Cc: Andrew Morton, vladislav.yasevich, sri, davem, netdev,
	linux-kernel, lksctp-developers

On Sun, Sep 09, 2007 at 10:25:54PM +0200, Adrian Bunk wrote:
> On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> >...
> > Changes since 2.6.23-rc3-mm1:
> >...
> >  git-net.patch
> >...
> >  git trees
> >...
> 
> This patch makes the following needlessly globalvariables static:
> - sctp_memory_pressure
> - sctp_memory_allocated
> - sctp_sockets_allocated
> 
> Signed-off-by: Adrian Bunk <bunk@kernel.org>
> 
Looks fine to me
Acked-by: Neil Horman <nhorman@tuxdriver.com>

Neil

-- 
/***************************************************
 *Neil Horman
 *nhorman@tuxdriver.com
 *gpg keyid: 1024D / 0x92A74FA1
 *http://pgp.mit.edu
 ***************************************************/

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

* Re: [-mm patch] really unexport do_softirq
  2007-09-09 20:25 ` [-mm patch] really unexport do_softirq Adrian Bunk
@ 2007-09-12 13:14   ` David Miller
  0 siblings, 0 replies; 43+ messages in thread
From: David Miller @ 2007-09-12 13:14 UTC (permalink / raw)
  To: bunk; +Cc: akpm, robert.olsson, linux-kernel, netdev

From: Adrian Bunk <bunk@kernel.org>
Date: Sun, 9 Sep 2007 22:25:40 +0200

> On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> >...
> > Changes since 2.6.23-rc3-mm1:
> >...
> >  git-net.patch
> >...
> >  git trees
> >...
> 
> This hydra had more than one head...
> 
> Signed-off-by: Adrian Bunk <bunk@kernel.org>

Applied, thanks.

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

* Re: [-mm patch] unexport raise_softirq_irqoff
  2007-09-09 20:41   ` Christoph Hellwig
@ 2007-09-12 13:15     ` David Miller
  0 siblings, 0 replies; 43+ messages in thread
From: David Miller @ 2007-09-12 13:15 UTC (permalink / raw)
  To: hch; +Cc: bunk, akpm, linux-kernel, netdev

From: Christoph Hellwig <hch@infradead.org>
Date: Sun, 9 Sep 2007 21:41:53 +0100

> On Sun, Sep 09, 2007 at 10:25:44PM +0200, Adrian Bunk wrote:
> > On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> > >...
> > > Changes since 2.6.23-rc3-mm1:
> > >...
> > >  git-net.patch
> > >...
> > >  git trees
> > >...
> > 
> > raise_softirq_irqoff no longer has any modular user.
> > 
> > Signed-off-by: Adrian Bunk <bunk@kernel.org>
> 
> This should probably go in through Dave's tree as it's removing this
> rather annoying user.

Yep, I've just tossed it into my tree.

Thanks.

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

* Re: [-mm patch] net/sctp/socket.c: make 3 variables static
  2007-09-09 20:25 ` [-mm patch] net/sctp/socket.c: make 3 variables static Adrian Bunk
  2007-09-10 14:05   ` [Lksctp-developers] " Neil Horman
@ 2007-09-12 13:18   ` David Miller
  1 sibling, 0 replies; 43+ messages in thread
From: David Miller @ 2007-09-12 13:18 UTC (permalink / raw)
  To: bunk; +Cc: akpm, vladislav.yasevich, sri, linux-kernel, lksctp-developers,
	netdev

From: Adrian Bunk <bunk@kernel.org>
Date: Sun, 9 Sep 2007 22:25:54 +0200

> This patch makes the following needlessly globalvariables static:
> - sctp_memory_pressure
> - sctp_memory_allocated
> - sctp_sockets_allocated
> 
> Signed-off-by: Adrian Bunk <bunk@kernel.org>

Applied, thanks.

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

* Re: [-mm patch] make tcp_splice_data_recv() static
  2007-09-09 20:25 ` [-mm patch] make tcp_splice_data_recv() static Adrian Bunk
@ 2007-09-12 13:21   ` David Miller
  2007-09-12 17:44     ` Jens Axboe
  0 siblings, 1 reply; 43+ messages in thread
From: David Miller @ 2007-09-12 13:21 UTC (permalink / raw)
  To: bunk; +Cc: akpm, jens.axboe, linux-kernel, netdev

From: Adrian Bunk <bunk@kernel.org>
Date: Sun, 9 Sep 2007 22:25:58 +0200

> On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> >...
> > Changes since 2.6.23-rc3-mm1:
> >...
> >  git-block.patch
> >...
> >  git trees
> >...
> 
> tcp_splice_data_recv() can become static.
> 
> Signed-off-by: Adrian Bunk <bunk@kernel.org>

I'll let Jens or similar pick this one up since it
obviously won't apply to my tree.


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

* Re: [-mm patch] make tcp_splice_data_recv() static
  2007-09-12 13:21   ` David Miller
@ 2007-09-12 17:44     ` Jens Axboe
  0 siblings, 0 replies; 43+ messages in thread
From: Jens Axboe @ 2007-09-12 17:44 UTC (permalink / raw)
  To: David Miller; +Cc: bunk, akpm, linux-kernel, netdev

On Wed, Sep 12 2007, David Miller wrote:
> From: Adrian Bunk <bunk@kernel.org>
> Date: Sun, 9 Sep 2007 22:25:58 +0200
> 
> > On Fri, Aug 31, 2007 at 09:58:22PM -0700, Andrew Morton wrote:
> > >...
> > > Changes since 2.6.23-rc3-mm1:
> > >...
> > >  git-block.patch
> > >...
> > >  git trees
> > >...
> > 
> > tcp_splice_data_recv() can become static.
> > 
> > Signed-off-by: Adrian Bunk <bunk@kernel.org>
> 
> I'll let Jens or similar pick this one up since it
> obviously won't apply to my tree.

I'll shove it in my #splice-net branch, where it originates from.

-- 
Jens Axboe


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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-02  9:55         ` Satyam Sharma
@ 2007-09-14  3:51           ` Andrew James Wade
  2007-09-17 13:57             ` Dhaval Giani
  0 siblings, 1 reply; 43+ messages in thread
From: Andrew James Wade @ 2007-09-14  3:51 UTC (permalink / raw)
  To: Satyam Sharma
  Cc: thunder7, Jeff Garzik, Andrew Morton, Linux Kernel Mailing List,
	netdev

I have an Oops that may be related:

BUG: unable to handle kernel NULL pointer dereference at virtual address 00000025
printing eip: c037d81b *pde = 00000000
Oops: 0000 [#1]
last sysfs file: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/class

Pid: 0, comm: swapper Not tainted (2.6.23-rc4-mm1-config2 #2)
EIP: 0060:[<c037d81b>] EFLAGS: 00010246 CPU: 0
EIP is at tcp_rto_min+0xb/0x15
EAX: 00000032 EBX: c4c98b68 ECX: fffffffe EDX: 00000000
ESI: c4c98b68 EDI: c055f600 EBP: c4432e40 ESP: c0596dec
 DS: 007b ES: 007b FS: 0000 GS: 0000 SS: 0068
Process swapper (pid: 0, ti=c0596000 task=c052a340 task.ti=c0568000)
Stack: c037d8de c4c98b68 c4c98b68 c037e0ec 00000001 c037f879 c052a8b4 c052a340
       00000000 00000001 c25e1e60 00000000 00000000 00000001 8c176265 8c17678a
       00000000 00000001 00000001 00000000 8c17678a 86000000 ffffffff 007d8b21
Call Trace:
 [<c037d8de>] tcp_rtt_estimator+0xb9/0xfe
 [<c037e0ec>] tcp_ack_saw_tstamp+0x14/0x43
 [<c037f879>] tcp_ack+0x6b8/0x17b8
 [<c03833cc>] tcp_rcv_established+0x519/0x5f1
 [<c038838d>] tcp_v4_do_rcv+0x28/0x2f8
 [<c038a4ce>] tcp_v4_rcv+0x7df/0x83d
 [<c0372542>] ip_local_deliver+0xcc/0x148
 [<c0372975>] ip_rcv+0x3b7/0x3de
 [<c035fa0e>] netif_receive_skb+0x17a/0x1c2
 [<c02cc121>] rtl8139_poll+0x2d9/0x425
 [<c03616d7>] net_rx_action+0xa8/0xc8
 [<c011e8e0>] __do_softirq+0x40/0x90
 [<c010635d>] do_softirq+0x4d/0xb6
 =======================
INFO: lockdep is turned off.
Code: 24 8b 82 88 03 00 00 89 82 40 05 00 00 a1 a0 23 53 c0 89 82 44 05 00 00 83 c4 0c 5b 5e 5f 5d c3 8b 90 88 00 00 00 b8 32 00 00 00 <f6> 42 25 20 74 03 8b 42 54 c3 56
 85 d2 b9 01 00 00 00 0f 45 ca
EIP: [<c037d81b>] tcp_rto_min+0xb/0x15 SS:ESP 0068:c0596dec
Kernel panic - not syncing: Fatal exception in interrupt

config:
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.23-rc4-mm1
# Wed Sep 12 19:53:26 2007
#
CONFIG_X86_32=y
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_QUICKLIST=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_DMI=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION="-config2"
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_TASKSTATS is not set
# CONFIG_USER_NS is not set
# CONFIG_AUDIT is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=18
# CONFIG_CONTAINERS is not set
CONFIG_SYSFS_DEPRECATED=y
# CONFIG_RELAY is not set
# CONFIG_BLK_DEV_INITRD is not set
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
# CONFIG_EMBEDDED is not set
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_ANON_INODES=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_KPAGEMAP=y
CONFIG_RT_MUTEXES=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
# CONFIG_MODULES is not set
CONFIG_BLOCK=y
CONFIG_LBD=y
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_LSF is not set
# CONFIG_BLK_DEV_BSG is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_AS=y
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="anticipatory"

#
# Processor type and features
#
# CONFIG_TICK_ONESHOT is not set
# CONFIG_NO_HZ is not set
# CONFIG_HIGH_RES_TIMERS is not set
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
# CONFIG_SMP is not set
CONFIG_X86_PC=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
# CONFIG_X86_GENERICARCH is not set
# CONFIG_X86_ES7000 is not set
# CONFIG_PARAVIRT is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MCORE2 is not set
# CONFIG_MK6 is not set
CONFIG_MK7=y
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_XADD=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_USE_3DNOW=y
CONFIG_X86_TSC=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=4
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_X86_UP_APIC=y
CONFIG_X86_UP_IOAPIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
# CONFIG_X86_MCE_P4THERMAL is not set
CONFIG_VM86=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_X86_REBOOTFIXUPS is not set
# CONFIG_MICROCODE is not set
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
CONFIG_PAGE_OFFSET=0xC0000000
# CONFIG_X86_PAE is not set
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_POPULATES_NODE_MAP=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
CONFIG_SPARSEMEM_STATIC=y
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_RESOURCES_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_NR_QUICK=1
CONFIG_VIRT_TO_BUS=y
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
# CONFIG_KEXEC is not set
CONFIG_PHYSICAL_START=0x100000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x100000
# CONFIG_COMPAT_VDSO is not set

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
# CONFIG_PM_LEGACY is not set
# CONFIG_PM_DEBUG is not set
CONFIG_PM_SLEEP=y
CONFIG_SUSPEND_UP_POSSIBLE=y
CONFIG_SUSPEND=y
CONFIG_HIBERNATION_UP_POSSIBLE=y
# CONFIG_HIBERNATION is not set
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS is not set
CONFIG_ACPI_PROC_EVENT=y
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
# CONFIG_ACPI_VIDEO is not set
# CONFIG_ACPI_FAN is not set
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_BLACKLIST_YEAR=2001
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
# CONFIG_ACPI_CONTAINER is not set
# CONFIG_ACPI_SBS is not set
# CONFIG_APM is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set

#
# CPU idle PM support
#
# CONFIG_CPU_IDLE is not set

#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_HT_IRQ is not set
CONFIG_ISA_DMA_API=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
# CONFIG_PCCARD is not set
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_AOUT is not set
CONFIG_BINFMT_MISC=y

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
CONFIG_INET_TUNNEL=y
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
# CONFIG_INET_XFRM_MODE_BEET is not set
# CONFIG_INET_LRO is not set
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=y
# CONFIG_IPV6_PRIVACY is not set
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
CONFIG_INET6_XFRM_MODE_TRANSPORT=y
CONFIG_INET6_XFRM_MODE_TUNNEL=y
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set

#
# Wireless
#
# CONFIG_CFG80211 is not set
# CONFIG_WIRELESS_EXT is not set
# CONFIG_MAC80211 is not set
# CONFIG_IEEE80211 is not set
# CONFIG_RFKILL is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_CONNECTOR is not set
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_MISC_DEVICES=y
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
CONFIG_BLK_DEV_IDEACPI=y
# CONFIG_IDE_TASK_IOCTL is not set
CONFIG_IDE_PROC_FS=y

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
# CONFIG_BLK_DEV_PLATFORM is not set
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_IDEPNP is not set

#
# PCI IDE chipsets support
#
CONFIG_BLK_DEV_IDEPCI=y
# CONFIG_IDEPCI_SHARE_IRQ is not set
CONFIG_IDEPCI_PCIBUS_ORDER=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_GENERIC is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_CS5535 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_JMICRON is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_IT8213 is not set
# CONFIG_BLK_DEV_IT821X is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIIMAGE is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
CONFIG_BLK_DEV_VIA82CXXX=y
# CONFIG_BLK_DEV_TC86C001 is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_PROC_FS is not set

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
# CONFIG_BLK_DEV_SR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_SRP is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_ACPI=y
# CONFIG_SATA_AHCI is not set
# CONFIG_SATA_SVW is not set
# CONFIG_ATA_PIIX is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SX4 is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIL24 is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CS5535 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RZ1000 is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
CONFIG_PATA_VIA=y
# CONFIG_PATA_WINBOND is not set
# CONFIG_MD is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_IEEE1394 is not set
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
# CONFIG_MAC_EMUMOUSEBTN is not set
CONFIG_NETDEVICES=y
# CONFIG_NETDEVICES_MULTIQUEUE is not set
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_MACVLAN is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_VETH is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_ARCNET is not set
# CONFIG_PHYLIB is not set
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NET_VENDOR_3COM is not set
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
CONFIG_TULIP=y
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
# CONFIG_TULIP_NAPI is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
# CONFIG_HP100 is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_B44 is not set
# CONFIG_FORCEDETH is not set
# CONFIG_DGRS is not set
# CONFIG_EEPRO100 is not set
# CONFIG_E100 is not set
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
CONFIG_8139TOO=y
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_SC92031 is not set
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2 is not set
# CONFIG_QLA3XXX is not set
# CONFIG_ATL1 is not set
CONFIG_NETDEV_10000=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set
# CONFIG_MYRI10GE is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_TR is not set

#
# Wireless LAN
#
# CONFIG_WLAN_PRE80211 is not set
# CONFIG_WLAN_80211 is not set

#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET_MII is not set
# CONFIG_USB_USBNET is not set
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_ISDN is not set
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_NOZOMI is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_GEODE is not set
CONFIG_HW_RANDOM_VIA=y
# CONFIG_NVRAM is not set
CONFIG_RTC=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_ATI is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
# CONFIG_AGP_INTEL is not set
# CONFIG_AGP_NVIDIA is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
CONFIG_AGP_VIA=y
# CONFIG_AGP_EFFICEON is not set
# CONFIG_DRM is not set
# CONFIG_MWAVE is not set
# CONFIG_PC8736x_GPIO is not set
# CONFIG_NSC_GPIO is not set
# CONFIG_CS5535_GPIO is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
# CONFIG_HPET_RTC_IRQ is not set
CONFIG_HPET_MMAP=y
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_CHARDEV is not set

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=y
# CONFIG_I2C_ALGOPCF is not set
# CONFIG_I2C_ALGOPCA is not set

#
# I2C Hardware Bus support
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_I810 is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_SCx200_ACB is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set
CONFIG_I2C_VIA=y
CONFIG_I2C_VIAPRO=y
# CONFIG_I2C_VOODOO3 is not set

#
# Miscellaneous I2C Chip support
#
# CONFIG_SENSORS_DS1337 is not set
# CONFIG_SENSORS_DS1374 is not set
# CONFIG_DS1682 is not set
# CONFIG_SENSORS_EEPROM is not set
# CONFIG_SENSORS_PCF8574 is not set
# CONFIG_SENSORS_PCA9539 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_SENSORS_MAX6875 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set

#
# SPI support
#
# CONFIG_SPI is not set
# CONFIG_SPI_MASTER is not set
# CONFIG_W1 is not set
# CONFIG_POWER_SUPPLY is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_K8TEMP is not set
CONFIG_SENSORS_ASB100=y
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
# CONFIG_WATCHDOG is not set

#
# Sonics Silicon Backplane
#
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set

#
# Multifunction device drivers
#
# CONFIG_MFD_SM501 is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
# CONFIG_DVB_CORE is not set
CONFIG_DAB=y
# CONFIG_USB_DABUSB is not set

#
# Graphics support
#
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=y
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_PROGEAR is not set

#
# Display device support
#
# CONFIG_DISPLAY_SUPPORT is not set
# CONFIG_VGASTATE is not set
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_DDC=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_SYS_FILLRECT is not set
# CONFIG_FB_SYS_COPYAREA is not set
# CONFIG_FB_SYS_IMAGEBLIT is not set
# CONFIG_FB_SYS_FOPS is not set
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_VESA is not set
# CONFIG_FB_EFI is not set
# CONFIG_FB_HECUBA is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I810 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
CONFIG_FB_RADEON=y
CONFIG_FB_RADEON_I2C=y
CONFIG_FB_RADEON_BACKLIGHT=y
# CONFIG_FB_RADEON_DEBUG is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_CYBLA is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
# CONFIG_VIDEO_SELECT is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
CONFIG_FONTS=y
# CONFIG_FONT_8x8 is not set
CONFIG_FONT_8x16=y
# CONFIG_FONT_6x11 is not set
# CONFIG_FONT_7x14 is not set
# CONFIG_FONT_PEARL_8x8 is not set
# CONFIG_FONT_ACORN_8x8 is not set
# CONFIG_FONT_MINI_4x6 is not set
# CONFIG_FONT_SUN8x16 is not set
# CONFIG_FONT_SUN12x22 is not set
# CONFIG_FONT_10x18 is not set
# CONFIG_LOGO is not set

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_RAWMIDI=y
CONFIG_SND_SEQUENCER=y
# CONFIG_SND_SEQ_DUMMY is not set
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is not set
# CONFIG_SND_SEQUENCER_OSS is not set
CONFIG_SND_RTCTIMER=y
CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
# CONFIG_SND_DYNAMIC_MINORS is not set
CONFIG_SND_SUPPORT_OLD_API=y
# CONFIG_SND_VERBOSE_PROCFS is not set
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
CONFIG_SND_MPU401_UART=y
CONFIG_SND_OPL3_LIB=y
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set

#
# PCI devices
#
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
CONFIG_SND_CMIPCI=y
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5530 is not set
# CONFIG_SND_CS5535AUDIO is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDA_INTEL is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set

#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set

#
# System on Chip audio support
#
# CONFIG_SND_SOC is not set

#
# SoC Audio support for SuperH
#

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set
CONFIG_HID_SUPPORT=y
CONFIG_HID=y
# CONFIG_HID_DEBUG is not set
# CONFIG_HIDRAW is not set

#
# USB Input Devices
#
CONFIG_USB_HID=y
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
# CONFIG_HID_FF is not set
# CONFIG_USB_HIDDEV is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_DEVICE_CLASS is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_PERSIST is not set
# CONFIG_USB_OTG is not set

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_EHCI_TT_NEWSCHED is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#

#
# may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_LIBUSUAL is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_MON is not set

#
# USB port drivers
#

#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_AUERSWALD is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_BERRY_CHARGE is not set
# CONFIG_USB_IPHONE is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGET is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_GOTEMP is not set

#
# USB DSL modem support
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set
# CONFIG_MMC is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_INFINIBAND is not set
# CONFIG_EDAC is not set
# CONFIG_RTC_CLASS is not set
# CONFIG_DMADEVICES is not set
CONFIG_VIRTUALIZATION=y
# CONFIG_KVM is not set

#
# Userspace I/O
#
# CONFIG_UIO is not set

#
# File systems
#
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
# CONFIG_EXT4DEV_FS is not set
CONFIG_REISER4_FS=y
# CONFIG_REISER4_DEBUG is not set
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
# CONFIG_REISERFS_FS_XATTR is not set
# CONFIG_JFS_FS is not set
# CONFIG_FS_POSIX_ACL is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_TMPFS_POSIX_ACL is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
# CONFIG_CONFIGFS_FS is not set

#
# Layered filesystems
#
# CONFIG_UNION_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_SMB_FS is not set
CONFIG_CIFS=y
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_WEAK_PW_HASH is not set
# CONFIG_CIFS_XATTR is not set
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_EXPERIMENTAL is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
CONFIG_NLS_ISO8859_15=y
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=y

#
# Distributed Lock Manager
#
# CONFIG_DLM is not set
CONFIG_INSTRUMENTATION=y
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
# CONFIG_PRINTK_TIME is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_UNUSED_SYMBOLS=y
# CONFIG_PAGE_OWNER is not set
# CONFIG_DEBUG_FS is not set
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
CONFIG_DETECT_SOFTLOCKUP=y
CONFIG_SCHED_DEBUG=y
# CONFIG_SCHEDSTATS is not set
# CONFIG_TIMER_STATS is not set
CONFIG_DEBUG_SLAB=y
# CONFIG_DEBUG_SLAB_LEAK is not set
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_PI_LIST=y
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_DEBUG_SPINLOCK_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
CONFIG_DEBUG_VM=y
CONFIG_DEBUG_LIST=y
# CONFIG_FRAME_POINTER is not set
CONFIG_UNWIND_INFO=y
CONFIG_STACK_UNWIND=y
# CONFIG_PROFILE_LIKELY is not set
# CONFIG_FORCED_INLINING is not set
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DEBUG_SYNCHRO_TEST is not set
# CONFIG_FAULT_INJECTION is not set
# CONFIG_WANT_EXTRA_DEBUG_INFORMATION is not set
# CONFIG_KGDB is not set
# CONFIG_KGDB_ATTACH_WAIT is not set
CONFIG_EARLY_PRINTK=y
CONFIG_DEBUG_STACKOVERFLOW=y
# CONFIG_DEBUG_STACK_USAGE is not set
CONFIG_DEBUG_RODATA=y
CONFIG_4KSTACKS=y
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y
CONFIG_DOUBLEFAULT=y

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
CONFIG_CRYPTO=y
# CONFIG_CRYPTO_MANAGER is not set
# CONFIG_CRYPTO_HMAC is not set
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
# CONFIG_CRYPTO_MD5 is not set
# CONFIG_CRYPTO_SHA1 is not set
# CONFIG_CRYPTO_SHA256 is not set
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_GF128MUL is not set
# CONFIG_CRYPTO_ECB is not set
# CONFIG_CRYPTO_CBC is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_CRYPTD is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_586 is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_AES is not set
# CONFIG_CRYPTO_AES_586 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_ARC4 is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_ANUBIS is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_AUTHENC is not set
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_PADLOCK is not set
# CONFIG_CRYPTO_DEV_GEODE is not set

#
# Library routines
#
CONFIG_BITREVERSE=y
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC16 is not set
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
# CONFIG_CRC7 is not set
# CONFIG_LIBCRC32C is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_PLIST=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_KTIME_SCALAR=y

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-14  3:51           ` Andrew James Wade
@ 2007-09-17 13:57             ` Dhaval Giani
  2007-09-17 14:07               ` Denis V. Lunev
  0 siblings, 1 reply; 43+ messages in thread
From: Dhaval Giani @ 2007-09-17 13:57 UTC (permalink / raw)
  To: ajwade+00
  Cc: Satyam Sharma, thunder7, Jeff Garzik, Andrew Morton,
	Linux Kernel Mailing List, netdev

On Thu, Sep 13, 2007 at 11:51:33PM -0400, Andrew James Wade wrote:
> I have an Oops that may be related:
> 
> BUG: unable to handle kernel NULL pointer dereference at virtual address 00000025
> printing eip: c037d81b *pde = 00000000
> Oops: 0000 [#1]
> last sysfs file: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/class
> 
> Pid: 0, comm: swapper Not tainted (2.6.23-rc4-mm1-config2 #2)
> EIP: 0060:[<c037d81b>] EFLAGS: 00010246 CPU: 0
> EIP is at tcp_rto_min+0xb/0x15
> EAX: 00000032 EBX: c4c98b68 ECX: fffffffe EDX: 00000000
> ESI: c4c98b68 EDI: c055f600 EBP: c4432e40 ESP: c0596dec
>  DS: 007b ES: 007b FS: 0000 GS: 0000 SS: 0068
> Process swapper (pid: 0, ti=c0596000 task=c052a340 task.ti=c0568000)
> Stack: c037d8de c4c98b68 c4c98b68 c037e0ec 00000001 c037f879 c052a8b4 c052a340
>        00000000 00000001 c25e1e60 00000000 00000000 00000001 8c176265 8c17678a
>        00000000 00000001 00000001 00000000 8c17678a 86000000 ffffffff 007d8b21
> Call Trace:
>  [<c037d8de>] tcp_rtt_estimator+0xb9/0xfe
>  [<c037e0ec>] tcp_ack_saw_tstamp+0x14/0x43
>  [<c037f879>] tcp_ack+0x6b8/0x17b8
>  [<c03833cc>] tcp_rcv_established+0x519/0x5f1
>  [<c038838d>] tcp_v4_do_rcv+0x28/0x2f8
>  [<c038a4ce>] tcp_v4_rcv+0x7df/0x83d
>  [<c0372542>] ip_local_deliver+0xcc/0x148
>  [<c0372975>] ip_rcv+0x3b7/0x3de
>  [<c035fa0e>] netif_receive_skb+0x17a/0x1c2
>  [<c02cc121>] rtl8139_poll+0x2d9/0x425
>  [<c03616d7>] net_rx_action+0xa8/0xc8
>  [<c011e8e0>] __do_softirq+0x40/0x90
>  [<c010635d>] do_softirq+0x4d/0xb6
>  =======================
> INFO: lockdep is turned off.
> Code: 24 8b 82 88 03 00 00 89 82 40 05 00 00 a1 a0 23 53 c0 89 82 44 05 00 00 83 c4 0c 5b 5e 5f 5d c3 8b 90 88 00 00 00 b8 32 00 00 00 <f6> 42 25 20 74 03 8b 42 54 c3 56
>  85 d2 b9 01 00 00 00 0f 45 ca
> EIP: [<c037d81b>] tcp_rto_min+0xb/0x15 SS:ESP 0068:c0596dec
> Kernel panic - not syncing: Fatal exception in interrupt
> 
 
Hi,

Any solutions for this one? I too have been hitting it on my system.


=======================
BUG: unable to handle kernel NULL pointer dereference at virtual address 00000025
printing eip: c03e790d *pdpt = 00000000097c2001 <1>*pde = 0000000000000000 
Oops: 0000 [#1] SMP 
last sysfs file: /class/vc/vcs1/dev
Modules linked in:

Pid: 0, comm: swapper Not tainted (2.6.23-rc4-mm1-cpuctl #12)
EIP: 0060:[<c03e790d>] EFLAGS: 00010246 CPU: 0
EIP is at tcp_rto_min+0xe/0x19
EAX: 00000032 EBX: cc4a8180 ECX: 00000095 EDX: 00000000
ESI: cc4a8180 EDI: c05b28e0 EBP: c05c7cfc ESP: c05c7cfc
 DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
Process swapper (pid: 0, ti=c05c6000 task=c0559cc0 task.ti=c05c6000)
Stack: c05c7d0c c03e79d2 cc4a8180 cc4a8180 c05c7d18 c03e9eb2 cc48a200 c05c7d68 
       c03ea37b 00000001 ffffff8f 00000000 ca52e8c0 005c7d48 006f7c09 00000001 
       86cff480 00000000 00000000 00000001 0000000c 000333ff c05c7d94 ffffffff 
Call Trace:
 [<c0105c64>] show_trace_log_lvl+0x19/0x2e
 [<c0105d26>] show_stack_log_lvl+0x99/0xa8
 [<c0105e2e>] show_registers+0xb6/0x185
 [<c010604a>] die+0x108/0x1ed
 [<c0419b3e>] do_page_fault+0x64e/0x735
 [<c04180b2>] error_code+0x72/0x78
 [<c03e79d2>] tcp_rtt_estimator+0xba/0x100
 [<c03e9eb2>] tcp_ack_saw_tstamp+0x17/0x47
 [<c03ea37b>] tcp_clean_rtx_queue+0x298/0x45d
 [<c03eaac2>] tcp_ack+0x183/0x2d4
 [<c03ec6a0>] tcp_rcv_established+0xd3/0x5ba
 [<c03f35ae>] tcp_v4_do_rcv+0x25/0xc2
 [<c03f3ac0>] tcp_v4_rcv+0x475/0x7c0
 [<c03db831>] ip_local_deliver+0xd9/0x17a
 [<c03dbcf2>] ip_rcv+0x420/0x45a
 [<c03c65be>] netif_receive_skb+0x22b/0x249
 [<c02e215f>] tg3_rx+0x24c/0x359
 [<c02e2349>] tg3_poll+0xdd/0x17c
 [<c03c6814>] net_rx_action+0x114/0x14a
 [<c0129163>] __do_softirq+0x73/0xe6
 [<c012920f>] do_softirq+0x39/0x51
 [<c012928d>] irq_exit+0x47/0x49
 [<c0106a95>] do_IRQ+0x5d/0x71
 [<c01058a2>] common_interrupt+0x2e/0x34
 [<c0103123>] cpu_idle+0x9e/0xb7
 [<c041557e>] rest_init+0x52/0x54
 [<c05cc73d>] start_kernel+0x21f/0x221
 [<00000000>] 0x0
 =======================
INFO: lockdep is turned off.
Code: 75 07 89 d8 e8 32 fa ff ff 83 7e 50 7f 76 09 89 f2 89 d8 e8 fc fa ff ff 5b 5e 5f 5d c3 55 8b 90 88 00 00 00 89 e5 b8 32 00 00 00 <f6> 42 25 20 74 03 8b 42 54 5d c3 5 
EIP: [<c03e790d>] tcp_rto_min+0xe/0x19 SS:ESP 0068:c05c7cfc
Kernel panic - not syncing: Fatal exception in interrupt

.config follows.

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.23-rc4-mm1-cpuctl
# Mon Sep 17 15:54:33 2007
#
CONFIG_X86_32=y
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_QUICKLIST=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_DMI=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_TASKSTATS is not set
# CONFIG_USER_NS is not set
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_TREE=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_LOG_BUF_SHIFT=15
CONFIG_CONTAINERS=y
# CONFIG_CONTAINER_DEBUG is not set
# CONFIG_CONTAINER_NS is not set
# CONFIG_CONTAINER_CPUACCT is not set
CONFIG_CPUSETS=y
# CONFIG_RESOURCE_COUNTERS is not set
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_FAIR_USER_SCHED=y
CONFIG_SYSFS_DEPRECATED=y
CONFIG_PROC_PID_CPUSET=y
# CONFIG_RELAY is not set
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
# CONFIG_EMBEDDED is not set
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_ANON_INODES=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_KPAGEMAP=y
CONFIG_RT_MUTEXES=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_KMOD is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_LBD=y
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_LSF is not set
# CONFIG_BLK_DEV_BSG is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_AS=y
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="anticipatory"

#
# Processor type and features
#
# CONFIG_TICK_ONESHOT is not set
# CONFIG_NO_HZ is not set
# CONFIG_HIGH_RES_TIMERS is not set
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_SMP=y
# CONFIG_X86_PC is not set
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
CONFIG_X86_GENERICARCH=y
# CONFIG_X86_ES7000 is not set
# CONFIG_PARAVIRT is not set
CONFIG_X86_CYCLONE_TIMER=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
CONFIG_MPENTIUM4=y
# CONFIG_MCORE2 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
CONFIG_X86_GENERIC=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_X86_XADD=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_TSC=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=4
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=32
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_BKL=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_X86_MCE_P4THERMAL=y
CONFIG_VM86=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_X86_REBOOTFIXUPS is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_NOHIGHMEM is not set
# CONFIG_HIGHMEM4G is not set
CONFIG_HIGHMEM64G=y
CONFIG_PAGE_OFFSET=0xC0000000
CONFIG_HIGHMEM=y
CONFIG_X86_PAE=y
# CONFIG_NUMA is not set
CONFIG_ARCH_POPULATES_NODE_MAP=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_RESOURCES_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_NR_QUICK=1
CONFIG_VIRT_TO_BUS=y
# CONFIG_HIGHPTE is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
# CONFIG_IRQBALANCE is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_KEXEC=y
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x100000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x100000
CONFIG_HOTPLUG_CPU=y
CONFIG_COMPAT_VDSO=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
CONFIG_PM_LEGACY=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_VERBOSE is not set
CONFIG_SUSPEND_SMP_POSSIBLE=y
# CONFIG_SUSPEND is not set
CONFIG_HIBERNATION_SMP_POSSIBLE=y
# CONFIG_HIBERNATION is not set
CONFIG_ACPI=y
# CONFIG_ACPI_PROCFS is not set
# CONFIG_ACPI_PROC_EVENT is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_BLACKLIST_YEAR=2001
CONFIG_ACPI_DEBUG=y
# CONFIG_ACPI_DEBUG_FUNC_TRACE is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_SBS is not set

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
CONFIG_CPU_FREQ_DEBUG=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y

#
# CPUFreq processor drivers
#
# CONFIG_X86_ACPI_CPUFREQ is not set
# CONFIG_X86_POWERNOW_K6 is not set
# CONFIG_X86_POWERNOW_K7 is not set
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_GX_SUSPMOD is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_SPEEDSTEP_ICH is not set
# CONFIG_X86_SPEEDSTEP_SMI is not set
CONFIG_X86_P4_CLOCKMOD=y
# CONFIG_X86_CPUFREQ_NFORCE2 is not set
# CONFIG_X86_LONGRUN is not set
# CONFIG_X86_LONGHAUL is not set
# CONFIG_X86_E_POWERSAVER is not set

#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=y

#
# CPU idle PM support
#
# CONFIG_CPU_IDLE is not set

#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
CONFIG_HT_IRQ=y
CONFIG_ISA_DMA_API=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
CONFIG_K8_NB=y
# CONFIG_PCCARD is not set
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_AOUT is not set
# CONFIG_BINFMT_MISC is not set

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
CONFIG_INET_XFRM_MODE_BEET=y
# CONFIG_INET_LRO is not set
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=m
# CONFIG_IPV6_PRIVACY is not set
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set

#
# Wireless
#
# CONFIG_CFG80211 is not set
# CONFIG_WIRELESS_EXT is not set
# CONFIG_MAC80211 is not set
# CONFIG_IEEE80211 is not set
# CONFIG_RFKILL is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_SYS_HYPERVISOR is not set
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_FD=y
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_MISC_DEVICES=y
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_BLK_DEV_IDEACPI is not set
# CONFIG_IDE_TASK_IOCTL is not set
# CONFIG_IDE_PROC_FS is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
# CONFIG_BLK_DEV_PLATFORM is not set
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_IDEPNP is not set

#
# PCI IDE chipsets support
#
CONFIG_BLK_DEV_IDEPCI=y
# CONFIG_IDEPCI_SHARE_IRQ is not set
CONFIG_IDEPCI_PCIBUS_ORDER=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_GENERIC is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=y
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_CS5535 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_JMICRON is not set
# CONFIG_BLK_DEV_SC1200 is not set
CONFIG_BLK_DEV_PIIX=y
# CONFIG_BLK_DEV_IT8213 is not set
# CONFIG_BLK_DEV_IT821X is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIIMAGE is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_BLK_DEV_TC86C001 is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
CONFIG_SCSI_NETLINK=y
# CONFIG_SCSI_PROC_FS is not set

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_ST=y
CONFIG_CHR_DEV_OSST=y
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set
CONFIG_SCSI_WAIT_SCAN=m

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
CONFIG_SCSI_FC_ATTRS=y
# CONFIG_SCSI_ISCSI_ATTRS is not set
CONFIG_SCSI_SAS_ATTRS=y
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
CONFIG_SCSI_AIC7XXX=y
CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
CONFIG_AIC7XXX_RESET_DELAY_MS=5000
CONFIG_AIC7XXX_DEBUG_ENABLE=y
CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
CONFIG_SCSI_AIC7XXX_OLD=y
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=y
CONFIG_MEGARAID_MAILBOX=y
CONFIG_MEGARAID_LEGACY=y
CONFIG_MEGARAID_SAS=y
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_SRP is not set
# CONFIG_ATA is not set
CONFIG_MD=y
# CONFIG_BLK_DEV_MD is not set
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
CONFIG_FUSION=y
CONFIG_FUSION_SPI=y
CONFIG_FUSION_FC=y
CONFIG_FUSION_SAS=y
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_CTL=y
# CONFIG_FUSION_LOGGING is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
CONFIG_IEEE1394=y

#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set

#
# Controllers
#

#
# Texas Instruments PCILynx requires I2C
#
CONFIG_IEEE1394_OHCI1394=y

#
# Protocols
#
# CONFIG_IEEE1394_VIDEO1394 is not set
# CONFIG_IEEE1394_SBP2 is not set
# CONFIG_IEEE1394_ETH1394_ROM_ENTRY is not set
# CONFIG_IEEE1394_ETH1394 is not set
# CONFIG_IEEE1394_DV1394 is not set
CONFIG_IEEE1394_RAWIO=y
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
# CONFIG_MAC_EMUMOUSEBTN is not set
CONFIG_NETDEVICES=y
# CONFIG_NETDEVICES_MULTIQUEUE is not set
# CONFIG_DUMMY is not set
CONFIG_BONDING=y
# CONFIG_MACVLAN is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_VETH is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_ARCNET is not set
# CONFIG_PHYLIB is not set
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NET_VENDOR_3COM is not set
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
CONFIG_TULIP=y
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
# CONFIG_TULIP_NAPI is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
# CONFIG_HP100 is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_B44=y
CONFIG_B44_PCI_AUTOSELECT=y
CONFIG_B44_PCICORE_AUTOSELECT=y
CONFIG_B44_PCI=y
CONFIG_FORCEDETH=y
# CONFIG_FORCEDETH_NAPI is not set
# CONFIG_DGRS is not set
# CONFIG_EEPRO100 is not set
# CONFIG_E100 is not set
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_SC92031 is not set
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_TIGON3=y
CONFIG_BNX2=y
# CONFIG_QLA3XXX is not set
# CONFIG_ATL1 is not set
CONFIG_NETDEV_10000=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set
# CONFIG_MYRI10GE is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_TR is not set

#
# Wireless LAN
#
# CONFIG_WLAN_PRE80211 is not set
# CONFIG_WLAN_80211 is not set
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
CONFIG_PPP=y
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
# CONFIG_PPP_ASYNC is not set
# CONFIG_PPP_SYNC_TTY is not set
# CONFIG_PPP_DEFLATE is not set
# CONFIG_PPP_BSDCOMP is not set
# CONFIG_PPP_MPPE is not set
# CONFIG_PPPOE is not set
# CONFIG_PPPOL2TP is not set
# CONFIG_SLIP is not set
CONFIG_SLHC=y
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
# CONFIG_ISDN is not set
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_COMPUTONE is not set
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_DIGIEPCA is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_MOXA_SMARTIO_NEW is not set
# CONFIG_ISI is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_N_HDLC is not set
# CONFIG_SPECIALIX is not set
# CONFIG_SX is not set
# CONFIG_RIO is not set
CONFIG_STALDRV=y
# CONFIG_NOZOMI is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
# CONFIG_SERIAL_8250_MANY_PORTS is not set
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_8250_DETECT_IRQ=y
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
# CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
CONFIG_RTC=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set
CONFIG_AGP=y
CONFIG_AGP_ALI=y
CONFIG_AGP_ATI=y
# CONFIG_AGP_AMD is not set
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_NVIDIA is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_EFFICEON is not set
CONFIG_DRM=y
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
CONFIG_DRM_RADEON=y
# CONFIG_DRM_I810 is not set
# CONFIG_DRM_I830 is not set
# CONFIG_DRM_I915 is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_MWAVE is not set
# CONFIG_PC8736x_GPIO is not set
# CONFIG_NSC_GPIO is not set
# CONFIG_CS5535_GPIO is not set
CONFIG_RAW_DRIVER=y
CONFIG_MAX_RAW_DEVS=256
CONFIG_HPET=y
# CONFIG_HPET_RTC_IRQ is not set
CONFIG_HPET_MMAP=y
CONFIG_HANGCHECK_TIMER=y
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_I2C is not set

#
# SPI support
#
# CONFIG_SPI is not set
# CONFIG_SPI_MASTER is not set
# CONFIG_W1 is not set
# CONFIG_POWER_SUPPLY is not set
# CONFIG_HWMON is not set
# CONFIG_WATCHDOG is not set

#
# Sonics Silicon Backplane
#
CONFIG_SSB_POSSIBLE=y
CONFIG_SSB=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
# CONFIG_SSB_DEBUG is not set
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y

#
# Multifunction device drivers
#
# CONFIG_MFD_SM501 is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
# CONFIG_DVB_CORE is not set
CONFIG_DAB=y

#
# Graphics support
#
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set

#
# Display device support
#
# CONFIG_DISPLAY_SUPPORT is not set
# CONFIG_VGASTATE is not set
CONFIG_VIDEO_OUTPUT_CONTROL=m
# CONFIG_FB is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=128
CONFIG_VIDEO_SELECT=y
CONFIG_DUMMY_CONSOLE=y

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
# CONFIG_SND is not set

#
# Open Sound System
#
CONFIG_SOUND_PRIME=y
# CONFIG_SOUND_TRIDENT is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
# CONFIG_SOUND_OSS is not set
CONFIG_HID_SUPPORT=y
CONFIG_HID=y
# CONFIG_HID_DEBUG is not set
# CONFIG_HIDRAW is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
# CONFIG_USB is not set

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set
# CONFIG_MMC is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_INFINIBAND is not set
# CONFIG_EDAC is not set
# CONFIG_RTC_CLASS is not set
# CONFIG_DMADEVICES is not set
CONFIG_VIRTUALIZATION=y
# CONFIG_KVM is not set

#
# Userspace I/O
#
# CONFIG_UIO is not set

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
CONFIG_EXT2_FS_XIP=y
CONFIG_FS_XIP=y
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
# CONFIG_EXT4DEV_FS is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISER4_FS is not set
CONFIG_REISERFS_FS=y
CONFIG_REISERFS_CHECK=y
CONFIG_REISERFS_PROC_INFO=y
CONFIG_REISERFS_FS_XATTR=y
CONFIG_REISERFS_FS_POSIX_ACL=y
CONFIG_REISERFS_FS_SECURITY=y
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
# CONFIG_JOLIET is not set
# CONFIG_ZISOFS is not set
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
# CONFIG_PROC_KCORE is not set
CONFIG_PROC_SYSCTL=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_TMPFS_POSIX_ACL is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_CONFIGFS_FS=y

#
# Layered filesystems
#
# CONFIG_UNION_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
CONFIG_SMB_FS=y
# CONFIG_SMB_NLS_DEFAULT is not set
CONFIG_CIFS=y
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_WEAK_PW_HASH is not set
# CONFIG_CIFS_XATTR is not set
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_EXPERIMENTAL is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
CONFIG_NLS_ISO8859_15=y
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=y

#
# Distributed Lock Manager
#
# CONFIG_DLM is not set
CONFIG_INSTRUMENTATION=y
CONFIG_PROFILING=y
CONFIG_OPROFILE=y
CONFIG_KPROBES=y

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
# CONFIG_PRINTK_TIME is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_MAGIC_SYSRQ=y
CONFIG_UNUSED_SYMBOLS=y
# CONFIG_PAGE_OWNER is not set
# CONFIG_DEBUG_FS is not set
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
CONFIG_DETECT_SOFTLOCKUP=y
# CONFIG_SCHED_DEBUG is not set
# CONFIG_SCHEDSTATS is not set
# CONFIG_TIMER_STATS is not set
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
CONFIG_DEBUG_LOCKDEP=y
CONFIG_TRACE_IRQFLAGS=y
CONFIG_DEBUG_SPINLOCK_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
# CONFIG_DEBUG_HIGHMEM is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_LIST is not set
CONFIG_FRAME_POINTER=y
# CONFIG_UNWIND_INFO is not set
# CONFIG_PROFILE_LIKELY is not set
CONFIG_FORCED_INLINING=y
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DEBUG_SYNCHRO_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_LKDTM is not set
# CONFIG_FAULT_INJECTION is not set
# CONFIG_WANT_EXTRA_DEBUG_INFORMATION is not set
# CONFIG_KGDB is not set
# CONFIG_KGDB_ATTACH_WAIT is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_RODATA is not set
# CONFIG_4KSTACKS is not set
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y
CONFIG_DOUBLEFAULT=y

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
# CONFIG_CRYPTO is not set

#
# Library routines
#
CONFIG_BITREVERSE=y
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC16 is not set
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
# CONFIG_CRC7 is not set
# CONFIG_LIBCRC32C is not set
CONFIG_AUDIT_GENERIC=y
CONFIG_ZLIB_INFLATE=y
CONFIG_PLIST=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_X86_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_KTIME_SCALAR=y


Thanks
-- 
regards,
Dhaval

I would like to change the world but they don't give me the source code!

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-17 13:57             ` Dhaval Giani
@ 2007-09-17 14:07               ` Denis V. Lunev
  2007-09-17 21:00                 ` Vlad Yasevich
  2007-09-17 23:56                 ` Satyam Sharma
  0 siblings, 2 replies; 43+ messages in thread
From: Denis V. Lunev @ 2007-09-17 14:07 UTC (permalink / raw)
  To: Dhaval Giani
  Cc: ajwade+00, Satyam Sharma, thunder7, Jeff Garzik, Andrew Morton,
	Linux Kernel Mailing List, netdev

I have also seen this OOPS on e1000 card. So, looks like driver independent.

By the way, this one has been triggered in a semi-stable way by the
'git-pull'

Regards,
	Den

Dhaval Giani wrote:
> On Thu, Sep 13, 2007 at 11:51:33PM -0400, Andrew James Wade wrote:
>> I have an Oops that may be related:
>>
>> BUG: unable to handle kernel NULL pointer dereference at virtual address 00000025
>> printing eip: c037d81b *pde = 00000000
>> Oops: 0000 [#1]
>> last sysfs file: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/class
>>
>> Pid: 0, comm: swapper Not tainted (2.6.23-rc4-mm1-config2 #2)
>> EIP: 0060:[<c037d81b>] EFLAGS: 00010246 CPU: 0
>> EIP is at tcp_rto_min+0xb/0x15
>> EAX: 00000032 EBX: c4c98b68 ECX: fffffffe EDX: 00000000
>> ESI: c4c98b68 EDI: c055f600 EBP: c4432e40 ESP: c0596dec
>>  DS: 007b ES: 007b FS: 0000 GS: 0000 SS: 0068
>> Process swapper (pid: 0, ti=c0596000 task=c052a340 task.ti=c0568000)
>> Stack: c037d8de c4c98b68 c4c98b68 c037e0ec 00000001 c037f879 c052a8b4 c052a340
>>        00000000 00000001 c25e1e60 00000000 00000000 00000001 8c176265 8c17678a
>>        00000000 00000001 00000001 00000000 8c17678a 86000000 ffffffff 007d8b21
>> Call Trace:
>>  [<c037d8de>] tcp_rtt_estimator+0xb9/0xfe
>>  [<c037e0ec>] tcp_ack_saw_tstamp+0x14/0x43
>>  [<c037f879>] tcp_ack+0x6b8/0x17b8
>>  [<c03833cc>] tcp_rcv_established+0x519/0x5f1
>>  [<c038838d>] tcp_v4_do_rcv+0x28/0x2f8
>>  [<c038a4ce>] tcp_v4_rcv+0x7df/0x83d
>>  [<c0372542>] ip_local_deliver+0xcc/0x148
>>  [<c0372975>] ip_rcv+0x3b7/0x3de
>>  [<c035fa0e>] netif_receive_skb+0x17a/0x1c2
>>  [<c02cc121>] rtl8139_poll+0x2d9/0x425
>>  [<c03616d7>] net_rx_action+0xa8/0xc8
>>  [<c011e8e0>] __do_softirq+0x40/0x90
>>  [<c010635d>] do_softirq+0x4d/0xb6
>>  =======================
>> INFO: lockdep is turned off.
>> Code: 24 8b 82 88 03 00 00 89 82 40 05 00 00 a1 a0 23 53 c0 89 82 44 05 00 00 83 c4 0c 5b 5e 5f 5d c3 8b 90 88 00 00 00 b8 32 00 00 00 <f6> 42 25 20 74 03 8b 42 54 c3 56
>>  85 d2 b9 01 00 00 00 0f 45 ca
>> EIP: [<c037d81b>] tcp_rto_min+0xb/0x15 SS:ESP 0068:c0596dec
>> Kernel panic - not syncing: Fatal exception in interrupt

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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-17 14:07               ` Denis V. Lunev
@ 2007-09-17 21:00                 ` Vlad Yasevich
  2007-09-17 23:56                 ` Satyam Sharma
  1 sibling, 0 replies; 43+ messages in thread
From: Vlad Yasevich @ 2007-09-17 21:00 UTC (permalink / raw)
  To: Denis V. Lunev
  Cc: Dhaval Giani, ajwade+00, Satyam Sharma, thunder7, Jeff Garzik,
	Andrew Morton, Linux Kernel Mailing List, netdev

Denis V. Lunev wrote:
> I have also seen this OOPS on e1000 card. So, looks like driver independent.
> 
> By the way, this one has been triggered in a semi-stable way by the
> 'git-pull'

Do you have this patch:

commit 5c127c58ae9bf196d787815b1bd6b0aec5aee816
Author: David S. Miller <davem@sunset.davemloft.net>
Date:   Fri Aug 31 14:39:44 2007 -0700

    [TCP]: 'dst' can be NULL in tcp_rto_min()
    
    Reported by Rick Jones.
    
    Signed-off-by: David S. Miller <davem@davemloft.net>

diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 1ee7212..bbad2cd 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -560,7 +560,7 @@ static u32 tcp_rto_min(struct sock *sk)
        struct dst_entry *dst = __sk_dst_get(sk);
        u32 rto_min = TCP_RTO_MIN;
 
-       if (dst_metric_locked(dst, RTAX_RTO_MIN))
+       if (dst && dst_metric_locked(dst, RTAX_RTO_MIN))
                rto_min = dst->metrics[RTAX_RTO_MIN-1];
        return rto_min;
 }



> 
> Regards,
> 	Den
> 
> Dhaval Giani wrote:
>> On Thu, Sep 13, 2007 at 11:51:33PM -0400, Andrew James Wade wrote:
>>> I have an Oops that may be related:
>>>
>>> BUG: unable to handle kernel NULL pointer dereference at virtual address 00000025
>>> printing eip: c037d81b *pde = 00000000
>>> Oops: 0000 [#1]
>>> last sysfs file: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/class
>>>
>>> Pid: 0, comm: swapper Not tainted (2.6.23-rc4-mm1-config2 #2)
>>> EIP: 0060:[<c037d81b>] EFLAGS: 00010246 CPU: 0
>>> EIP is at tcp_rto_min+0xb/0x15
>>> EAX: 00000032 EBX: c4c98b68 ECX: fffffffe EDX: 00000000
>>> ESI: c4c98b68 EDI: c055f600 EBP: c4432e40 ESP: c0596dec
>>>  DS: 007b ES: 007b FS: 0000 GS: 0000 SS: 0068
>>> Process swapper (pid: 0, ti=c0596000 task=c052a340 task.ti=c0568000)
>>> Stack: c037d8de c4c98b68 c4c98b68 c037e0ec 00000001 c037f879 c052a8b4 c052a340
>>>        00000000 00000001 c25e1e60 00000000 00000000 00000001 8c176265 8c17678a
>>>        00000000 00000001 00000001 00000000 8c17678a 86000000 ffffffff 007d8b21
>>> Call Trace:
>>>  [<c037d8de>] tcp_rtt_estimator+0xb9/0xfe
>>>  [<c037e0ec>] tcp_ack_saw_tstamp+0x14/0x43
>>>  [<c037f879>] tcp_ack+0x6b8/0x17b8
>>>  [<c03833cc>] tcp_rcv_established+0x519/0x5f1
>>>  [<c038838d>] tcp_v4_do_rcv+0x28/0x2f8
>>>  [<c038a4ce>] tcp_v4_rcv+0x7df/0x83d
>>>  [<c0372542>] ip_local_deliver+0xcc/0x148
>>>  [<c0372975>] ip_rcv+0x3b7/0x3de
>>>  [<c035fa0e>] netif_receive_skb+0x17a/0x1c2
>>>  [<c02cc121>] rtl8139_poll+0x2d9/0x425
>>>  [<c03616d7>] net_rx_action+0xa8/0xc8
>>>  [<c011e8e0>] __do_softirq+0x40/0x90
>>>  [<c010635d>] do_softirq+0x4d/0xb6
>>>  =======================
>>> INFO: lockdep is turned off.
>>> Code: 24 8b 82 88 03 00 00 89 82 40 05 00 00 a1 a0 23 53 c0 89 82 44 05 00 00 83 c4 0c 5b 5e 5f 5d c3 8b 90 88 00 00 00 b8 32 00 00 00 <f6> 42 25 20 74 03 8b 42 54 c3 56
>>>  85 d2 b9 01 00 00 00 0f 45 ca
>>> EIP: [<c037d81b>] tcp_rto_min+0xb/0x15 SS:ESP 0068:c0596dec
>>> Kernel panic - not syncing: Fatal exception in interrupt
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


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

* Re: 2.6.23-rc4-mm1 OOPS in forcedeth?
  2007-09-17 14:07               ` Denis V. Lunev
  2007-09-17 21:00                 ` Vlad Yasevich
@ 2007-09-17 23:56                 ` Satyam Sharma
  1 sibling, 0 replies; 43+ messages in thread
From: Satyam Sharma @ 2007-09-17 23:56 UTC (permalink / raw)
  To: Denis V. Lunev
  Cc: Dhaval Giani, Andrew James Wade, thunder7, Jeff Garzik,
	Andrew Morton, Linux Kernel Mailing List,
	Linux Netdev Mailing List, Manfred Spraul



On Mon, 17 Sep 2007, Denis V. Lunev wrote:
> Dhaval Giani wrote:
> > On Thu, Sep 13, 2007 at 11:51:33PM -0400, Andrew James Wade wrote:

> >> EIP: [<c037d81b>] tcp_rto_min+0xb/0x15 SS:ESP 0068:c0596dec

As Vlad Yasevich mentioned, this one is already fixed in 23-rc6.

The forcedeth oops is unrelated, but multiple people have reported that
same oops now -- adding Manfred Spraul to CC. [ original thread is at:
http://lkml.org/lkml/2007/9/1/115 ]

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

end of thread, other threads:[~2007-09-17 23:53 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20070831215822.26e1432b.akpm@linux-foundation.org>
     [not found] ` <20070901155353.8a09db69.kamezawa.hiroyu@jp.fujitsu.com>
2007-09-01  6:58   ` 2.6.23-rc4-mm1 Andrew Morton
2007-09-01  8:54     ` 2.6.23-rc4-mm1 Herbert Xu
2007-09-01 11:55     ` 2.6.23-rc4-mm1 Kamalesh Babulal
     [not found] ` <20070901181352.GA4156@amd64.of.nowhere>
2007-09-01 19:05   ` 2.6.23-rc4-mm1 OOPS in forcedeth? Jeff Garzik
2007-09-02  0:54     ` Satyam Sharma
2007-09-02  5:36       ` thunder7
2007-09-02  6:19       ` thunder7
2007-09-02  9:55         ` Satyam Sharma
2007-09-14  3:51           ` Andrew James Wade
2007-09-17 13:57             ` Dhaval Giani
2007-09-17 14:07               ` Denis V. Lunev
2007-09-17 21:00                 ` Vlad Yasevich
2007-09-17 23:56                 ` Satyam Sharma
2007-09-01 22:06 ` 2.6.23-rc4-mm1 "no CRC" MODPOST warnings Satyam Sharma
2007-09-01 22:40   ` Adrian Bunk
2007-09-01 23:15   ` Sam Ravnborg
2007-09-02  1:30 ` [PATCH -mm] net/sched/sch_cbq.c: Shut up uninitialized variable warning Satyam Sharma
2007-09-02 11:36   ` Patrick McHardy
2007-09-02  2:36 ` 2.6.23-rc4-mm1: unpingable box and NULL dereference at tcp_rto_min() Alexey Dobriyan
2007-09-02  5:02   ` Satyam Sharma
2007-09-02 20:52   ` Andrew Morton
2007-09-02 21:19     ` Alexey Dobriyan
2007-09-02  9:14 ` 2.6.23-rc4-mm1 net bitops compile error Adrian Bunk
2007-09-04 17:53   ` Jiri Slaby
2007-09-02 11:25 ` [-mm patch] IPV6 must select XFRM Adrian Bunk
2007-09-03 10:43   ` Masahide NAKAMURA
2007-09-06 10:01     ` net-26.24 broken with XFRM off Noriaki TAKAMIYA
2007-09-04 17:54 ` 2.6.23-rc4-mm1 Zach Carter
2007-09-04 21:36   ` 2.6.23-rc4-mm1 Stephen Hemminger
2007-09-09 20:25 ` [-mm patch] really unexport do_softirq Adrian Bunk
2007-09-12 13:14   ` David Miller
2007-09-09 20:25 ` [-mm patch] unexport raise_softirq_irqoff Adrian Bunk
2007-09-09 20:41   ` Christoph Hellwig
2007-09-12 13:15     ` David Miller
2007-09-09 20:25 ` [-mm patch] net/sctp/socket.c: make 3 variables static Adrian Bunk
2007-09-10 14:05   ` [Lksctp-developers] " Neil Horman
2007-09-12 13:18   ` David Miller
2007-09-09 20:25 ` [-mm patch] make tcp_splice_data_recv() static Adrian Bunk
2007-09-12 13:21   ` David Miller
2007-09-12 17:44     ` Jens Axboe
2007-09-06  7:25 net-26.24 broken with XFRM off Divy Le Ray
2007-09-06  8:13 ` Eric Dumazet
2007-09-06  9:50   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).