All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: 2.6.9-rc4-mm1
       [not found] ` <2O6Ho-6ra-51@gated-at.bofh.it>
@ 2004-10-11 12:40   ` Andi Kleen
  2004-10-11 13:38     ` 2.6.9-rc4-mm1 Rafael J. Wysocki
  0 siblings, 1 reply; 61+ messages in thread
From: Andi Kleen @ 2004-10-11 12:40 UTC (permalink / raw)
  To: Tim Cambrant; +Cc: linux-kernel, akpm

Tim Cambrant <cambrant@acc.umu.se> writes:

> On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
>>
>> optimize-profile-path-slightly.patch
>>   Optimize profile path slightly
>>
>
> I'm still getting an oops at startup with this patch. After reversing
> it, everything is fine. Weren't you supposed to remove that from your
> tree until it was fixed?

There's a fixed version around. I thought Andrew had merged that one?

-Andi

-------------------------------------

Fixed version of profile optimization


Index: linux/kernel/profile.c
===================================================================
--- linux.orig/kernel/profile.c	2004-09-30 10:35:51.%N +0200
+++ linux/kernel/profile.c	2004-10-07 13:22:33.%N +0200
@@ -181,20 +181,27 @@
 EXPORT_SYMBOL_GPL(profile_event_register);
 EXPORT_SYMBOL_GPL(profile_event_unregister);
 
-void profile_hit(int type, void *__pc)
+static inline void __profile_hit(int type, void *__pc)
 {
 	unsigned long pc;
 
-	if (prof_on != type || !prof_buffer)
-		return;
 	pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift;
 	atomic_inc(&prof_buffer[min(pc, prof_len - 1)]);
 }
 
+void profile_hit(int type, void *pc)
+{
+	if (prof_on != type || !prof_buffer)
+		return;
+	__profile_hit(type, pc);
+}
+
 void profile_tick(int type, struct pt_regs *regs)
 {
 	if (type == CPU_PROFILING)
 		profile_hook(regs);
+	if (prof_on != type || !prof_buffer)
+		return;
 	if (!user_mode(regs) && cpu_isset(smp_processor_id(), prof_cpu_mask))
 		profile_hit(type, (void *)profile_pc(regs));
 }


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 12:40   ` 2.6.9-rc4-mm1 Andi Kleen
@ 2004-10-11 13:38     ` Rafael J. Wysocki
  2004-10-11 14:12       ` 2.6.9-rc4-mm1 J.A. Magallon
  2004-10-11 14:50       ` 2.6.9-rc4-mm1 Andi Kleen
  0 siblings, 2 replies; 61+ messages in thread
From: Rafael J. Wysocki @ 2004-10-11 13:38 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andi Kleen, Tim Cambrant, akpm

On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> Tim Cambrant <cambrant@acc.umu.se> writes:
> 
> > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> >>
> >> optimize-profile-path-slightly.patch
> >>   Optimize profile path slightly
> >>
> >
> > I'm still getting an oops at startup with this patch. After reversing
> > it, everything is fine. Weren't you supposed to remove that from your
> > tree until it was fixed?
> 
> There's a fixed version around. I thought Andrew had merged that one?
[-- snip --]

This one does not apply to -mm.

Greets,
RJW

-- 
- Would you tell me, please, which way I ought to go from here?
- That depends a good deal on where you want to get to.
		-- Lewis Carroll "Alice's Adventures in Wonderland"

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 13:38     ` 2.6.9-rc4-mm1 Rafael J. Wysocki
@ 2004-10-11 14:12       ` J.A. Magallon
  2004-10-11 14:23         ` 2.6.9-rc4-mm1 Rafael J. Wysocki
  2004-10-11 14:50       ` 2.6.9-rc4-mm1 Andi Kleen
  1 sibling, 1 reply; 61+ messages in thread
From: J.A. Magallon @ 2004-10-11 14:12 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: linux-kernel, Andi Kleen, Tim Cambrant, akpm


On 2004.10.11, Rafael J. Wysocki wrote:
> On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> > Tim Cambrant <cambrant@acc.umu.se> writes:
> > 
> > > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> > >>
> > >> optimize-profile-path-slightly.patch
> > >>   Optimize profile path slightly
> > >>
> > >
> > > I'm still getting an oops at startup with this patch. After reversing
> > > it, everything is fine. Weren't you supposed to remove that from your
> > > tree until it was fixed?
> > 
> > There's a fixed version around. I thought Andrew had merged that one?
> [-- snip --]
> 
> This one does not apply to -mm.
> 

Use this:

diff -ruN linux-2.6.9-rc3-mm3/include/linux/profile.h linux-2.6.9-rc3-mm3-prof/include/linux/profile.h
--- linux-2.6.9-rc3-mm3/include/linux/profile.h	2004-09-30 09:46:41.000000000 +0200
+++ linux-2.6.9-rc3-mm3-prof/include/linux/profile.h	2004-10-07 19:41:36.254643765 +0200
@@ -8,6 +8,7 @@
 #include <linux/init.h>
 #include <linux/cpumask.h>
 #include <asm/errno.h>
+#include <asm/atomic.h>
 
 #define CPU_PROFILING	1
 #define SCHED_PROFILING	2
@@ -17,8 +18,8 @@
 
 /* init basic kernel profiler */
 void __init profile_init(void);
-void profile_tick(int, struct pt_regs *);
-void profile_hit(int, void *);
+void FASTCALL(__profile_hit(void *));
+
 #ifdef CONFIG_PROC_FS
 void create_prof_cpu_mask(struct proc_dir_entry *);
 #else
@@ -101,6 +102,26 @@
 
 #endif /* CONFIG_PROFILING */
 
+static inline void profile_hit(int type, void *pc)
+{
+	extern int prof_on;
+	extern atomic_t *prof_buffer;
+
+	if (prof_on == type && prof_buffer)
+		__profile_hit(pc);
+}
+
+static inline void profile_tick(int type, struct pt_regs *regs)
+{
+	extern cpumask_t prof_cpu_mask;
+
+	if (type != CPU_PROFILING)
+		return;
+	profile_hook(regs);
+	if (!user_mode(regs) && cpu_isset(smp_processor_id(), prof_cpu_mask))
+		profile_hit(type, (void *)profile_pc(regs));
+}
+
 #endif /* __KERNEL__ */
 
 #endif /* _LINUX_PROFILE_H */
diff -ruN linux-2.6.9-rc3-mm3/kernel/profile.c linux-2.6.9-rc3-mm3-prof/kernel/profile.c
--- linux-2.6.9-rc3-mm3/kernel/profile.c	2004-10-07 14:45:02.176576637 +0200
+++ linux-2.6.9-rc3-mm3-prof/kernel/profile.c	2004-10-07 19:41:36.253643976 +0200
@@ -34,10 +34,10 @@
 #define NR_PROFILE_HIT		(PAGE_SIZE/sizeof(struct profile_hit))
 #define NR_PROFILE_GRP		(NR_PROFILE_HIT/PROFILE_GRPSZ)
 
-static atomic_t *prof_buffer;
+atomic_t *prof_buffer;
 static unsigned long prof_len, prof_shift;
-static int prof_on;
-static cpumask_t prof_cpu_mask = CPU_MASK_ALL;
+int prof_on;
+cpumask_t prof_cpu_mask = CPU_MASK_ALL;
 #ifdef CONFIG_SMP
 static DEFINE_PER_CPU(struct profile_hit *[2], cpu_profile_hits);
 static DEFINE_PER_CPU(int, cpu_profile_flip);
@@ -284,14 +284,12 @@
 	up(&profile_flip_mutex);
 }
 
-void profile_hit(int type, void *__pc)
+void fastcall __profile_hit(void *__pc)
 {
 	unsigned long primary, secondary, flags, pc = (unsigned long)__pc;
 	int i, j, cpu;
 	struct profile_hit *hits;
 
-	if (prof_on != type || !prof_buffer)
-		return;
 	pc = min((pc - (unsigned long)_stext) >> prof_shift, prof_len - 1);
 	i = primary = (pc & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT;
 	secondary = (~(pc << 1) & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT;
@@ -381,25 +379,17 @@
 #define profile_flip_buffers()		do { } while (0)
 #define profile_discard_flip_buffers()	do { } while (0)
 
-inline void profile_hit(int type, void *__pc)
+void profile_hit(int type, void *__pc)
 {
 	unsigned long pc;
 
+	if (prof_on != type || !prof_buffer)
+		return;
 	pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift;
 	atomic_inc(&prof_buffer[min(pc, prof_len - 1)]);
 }
 #endif /* !CONFIG_SMP */
 
-void profile_tick(int type, struct pt_regs *regs)
-{
-	if (type == CPU_PROFILING)
-		profile_hook(regs);
-	if (prof_on != type || !prof_buffer)
-		return;
-	if (!user_mode(regs) && cpu_isset(smp_processor_id(), prof_cpu_mask))
-		profile_hit(type, (void *)profile_pc(regs));
-}
-
 #ifdef CONFIG_PROC_FS
 #include <linux/proc_fs.h>
 #include <asm/uaccess.h>


--
J.A. Magallon <jamagallon()able!es>     \               Software is like sex:
werewolf!able!es                         \         It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc4-mm1 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #1



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

* Re: 2.6.9-rc4-mm1
  2004-10-11 14:12       ` 2.6.9-rc4-mm1 J.A. Magallon
@ 2004-10-11 14:23         ` Rafael J. Wysocki
  2004-10-11 14:28           ` 2.6.9-rc4-mm1 J.A. Magallon
  0 siblings, 1 reply; 61+ messages in thread
From: Rafael J. Wysocki @ 2004-10-11 14:23 UTC (permalink / raw)
  To: linux-kernel; +Cc: J.A. Magallon, Andi Kleen, Tim Cambrant, akpm

On Monday 11 of October 2004 16:12, J.A. Magallon wrote:
> 
> On 2004.10.11, Rafael J. Wysocki wrote:
> > On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> > > Tim Cambrant <cambrant@acc.umu.se> writes:
> > > 
> > > > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> > > >>
> > > >> optimize-profile-path-slightly.patch
> > > >>   Optimize profile path slightly
> > > >>
> > > >
> > > > I'm still getting an oops at startup with this patch. After reversing
> > > > it, everything is fine. Weren't you supposed to remove that from your
> > > > tree until it was fixed?
> > > 
> > > There's a fixed version around. I thought Andrew had merged that one?
> > [-- snip --]
> > 
> > This one does not apply to -mm.
> > 
> 
> Use this:
[-- snip --]

This one does not apply too.

Greets,
RJW

-- 
- Would you tell me, please, which way I ought to go from here?
- That depends a good deal on where you want to get to.
		-- Lewis Carroll "Alice's Adventures in Wonderland"

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 14:23         ` 2.6.9-rc4-mm1 Rafael J. Wysocki
@ 2004-10-11 14:28           ` J.A. Magallon
  2004-10-11 15:17             ` 2.6.9-rc4-mm1 Rafael J. Wysocki
  0 siblings, 1 reply; 61+ messages in thread
From: J.A. Magallon @ 2004-10-11 14:28 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: linux-kernel


On 2004.10.11, Rafael J. Wysocki wrote:
> On Monday 11 of October 2004 16:12, J.A. Magallon wrote:
> > 
> > On 2004.10.11, Rafael J. Wysocki wrote:
> > > On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> > > > Tim Cambrant <cambrant@acc.umu.se> writes:
> > > > 
> > > > > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> > > > >>
> > > > >> optimize-profile-path-slightly.patch
> > > > >>   Optimize profile path slightly
> > > > >>
> > > > >
> > > > > I'm still getting an oops at startup with this patch. After reversing
> > > > > it, everything is fine. Weren't you supposed to remove that from your
> > > > > tree until it was fixed?
> > > > 
> > > > There's a fixed version around. I thought Andrew had merged that one?
> > > [-- snip --]
> > > 
> > > This one does not apply to -mm.
> > > 
> > 
> > Use this:
> [-- snip --]
> 
> This one does not apply too.
> 

Uh ? What are you patching ?
I had just used and booted it, and I have now saved my own mail received
from LKML to check if my mailer had been playin with it, and it patches fine.
Sure you applied -mm1 before ? Is you mailer changing tabs to spaces or
wrapping lines ?

--
J.A. Magallon <jamagallon()able!es>     \               Software is like sex:
werewolf!able!es                         \         It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc4-mm1 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #1



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

* Re: 2.6.9-rc4-mm1
  2004-10-11 13:38     ` 2.6.9-rc4-mm1 Rafael J. Wysocki
  2004-10-11 14:12       ` 2.6.9-rc4-mm1 J.A. Magallon
@ 2004-10-11 14:50       ` Andi Kleen
  2004-10-11 15:21         ` 2.6.9-rc4-mm1 Rafael J. Wysocki
  1 sibling, 1 reply; 61+ messages in thread
From: Andi Kleen @ 2004-10-11 14:50 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: linux-kernel, Tim Cambrant, akpm

On Mon, Oct 11, 2004 at 03:38:32PM +0200, Rafael J. Wysocki wrote:
> On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> > Tim Cambrant <cambrant@acc.umu.se> writes:
> > 
> > > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> > >>
> > >> optimize-profile-path-slightly.patch
> > >>   Optimize profile path slightly
> > >>
> > >
> > > I'm still getting an oops at startup with this patch. After reversing
> > > it, everything is fine. Weren't you supposed to remove that from your
> > > tree until it was fixed?
> > 
> > There's a fixed version around. I thought Andrew had merged that one?
> [-- snip --]
> 
> This one does not apply to -mm.

You have to revert the previous version first.

-Andi

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 14:28           ` 2.6.9-rc4-mm1 J.A. Magallon
@ 2004-10-11 15:17             ` Rafael J. Wysocki
  0 siblings, 0 replies; 61+ messages in thread
From: Rafael J. Wysocki @ 2004-10-11 15:17 UTC (permalink / raw)
  To: linux-kernel; +Cc: J.A. Magallon

On Monday 11 of October 2004 16:28, J.A. Magallon wrote:
> 
> On 2004.10.11, Rafael J. Wysocki wrote:
> > On Monday 11 of October 2004 16:12, J.A. Magallon wrote:
> > > 
> > > On 2004.10.11, Rafael J. Wysocki wrote:
> > > > On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> > > > > Tim Cambrant <cambrant@acc.umu.se> writes:
> > > > > 
> > > > > > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> > > > > >>
> > > > > >> optimize-profile-path-slightly.patch
> > > > > >>   Optimize profile path slightly
> > > > > >>
> > > > > >
> > > > > > I'm still getting an oops at startup with this patch. After 
reversing
> > > > > > it, everything is fine. Weren't you supposed to remove that from 
your
> > > > > > tree until it was fixed?
> > > > > 
> > > > > There's a fixed version around. I thought Andrew had merged that 
one?
> > > > [-- snip --]
> > > > 
> > > > This one does not apply to -mm.
> > > > 
> > > 
> > > Use this:
> > [-- snip --]
> > 
> > This one does not apply too.
> > 
> 
> Uh ? What are you patching ?
> I had just used and booted it, and I have now saved my own mail received
> from LKML to check if my mailer had been playin with it, and it patches 
fine.
> Sure you applied -mm1 before ? Is you mailer changing tabs to spaces or
> wrapping lines ?

Ahh, it's on top of optimize-profile-path-slightly.patch, not instead of it 
(Andi's patch was meant to be instead of it).  Applied.

Thanks,
RJW

-- 
- Would you tell me, please, which way I ought to go from here?
- That depends a good deal on where you want to get to.
		-- Lewis Carroll "Alice's Adventures in Wonderland"

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 14:50       ` 2.6.9-rc4-mm1 Andi Kleen
@ 2004-10-11 15:21         ` Rafael J. Wysocki
  0 siblings, 0 replies; 61+ messages in thread
From: Rafael J. Wysocki @ 2004-10-11 15:21 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andi Kleen, Tim Cambrant, akpm

On Monday 11 of October 2004 16:50, Andi Kleen wrote:
> On Mon, Oct 11, 2004 at 03:38:32PM +0200, Rafael J. Wysocki wrote:
> > On Monday 11 of October 2004 14:40, Andi Kleen wrote:
> > > Tim Cambrant <cambrant@acc.umu.se> writes:
> > > 
> > > > On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
> > > >>
> > > >> optimize-profile-path-slightly.patch
> > > >>   Optimize profile path slightly
> > > >>
> > > >
> > > > I'm still getting an oops at startup with this patch. After reversing
> > > > it, everything is fine. Weren't you supposed to remove that from your
> > > > tree until it was fixed?
> > > 
> > > There's a fixed version around. I thought Andrew had merged that one?
> > [-- snip --]
> > 
> > This one does not apply to -mm.
> 
> You have to revert the previous version first.

I know that.  I should have said that it did not apply _after_ reverting the 
previous version.

Greets,
RJW

-- 
- Would you tell me, please, which way I ought to go from here?
- That depends a good deal on where you want to get to.
		-- Lewis Carroll "Alice's Adventures in Wonderland"

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

* Re: 2.6.9-rc4-mm1
  2004-10-15  7:08       ` 2.6.9-rc4-mm1 J.A. Magallon
@ 2004-10-15 16:47         ` Lee Revell
  0 siblings, 0 replies; 61+ messages in thread
From: Lee Revell @ 2004-10-15 16:47 UTC (permalink / raw)
  To: J.A. Magallon; +Cc: Christian Borntraeger, linux-kernel

On Fri, 2004-10-15 at 03:08, J.A. Magallon wrote:
> > There is another problem that "cat diff-file + X copy and paste" does 
> > convert all tabs as well. 
> > 
> 
> At least Balsa has an 'Include file...' menu entry besides the usual
> 'Attach file...', which does the right thing (TM).

For people who like "diff foo bar + X copy and paste", "diff foo bar |
xclip" then pasting into a non-broken mail client like Evolution will do
the right thing.

Lee


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

* Re: 2.6.9-rc4-mm1
  2004-10-14 17:50     ` 2.6.9-rc4-mm1 Christian Borntraeger
@ 2004-10-15  7:08       ` J.A. Magallon
  2004-10-15 16:47         ` 2.6.9-rc4-mm1 Lee Revell
  0 siblings, 1 reply; 61+ messages in thread
From: J.A. Magallon @ 2004-10-15  7:08 UTC (permalink / raw)
  To: Christian Borntraeger; +Cc: linux-kernel


On 2004.10.14, Christian Borntraeger wrote:
> Andrew Morton wrote:
> > Well I can tell just from looking at it that the patch is
> > whitespace-mangled.  It seems that a quarter of the patches I get
> > nowadays are unusable due to this.  What's going on out there?
> 
> I cannot explain this case, but I can at least explain all KMAIL tab/space 
> mangles. The current qt 3.3.3 version has a bug which is fixed in the 
> current qt snapshot. 
> 
> Every kmail user should be aware of that 
> see 
> http://bugs.kde.org/show_bug.cgi?id=90688
> for further details.
> 
> There is another problem that "cat diff-file + X copy and paste" does 
> convert all tabs as well. 
> 

At least Balsa has an 'Include file...' menu entry besides the usual
'Attach file...', which does the right thing (TM).

--
J.A. Magallon <jamagallon()able!es>     \               Software is like sex:
werewolf!able!es                         \         It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc4-mm1 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #3



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

* Re: 2.6.9-rc4-mm1
  2004-10-15  3:23   ` 2.6.9-rc4-mm1 William Wolf
  2004-10-15  3:30     ` 2.6.9-rc4-mm1 Dmitry Torokhov
@ 2004-10-15  7:04     ` Mathieu Segaud
  1 sibling, 0 replies; 61+ messages in thread
From: Mathieu Segaud @ 2004-10-15  7:04 UTC (permalink / raw)
  To: William Wolf; +Cc: kernel list, Dmitry Torokhov, akpm

William Wolf <wwolf@vt.edu> disait dernièrement que :

> Dmitry Torokhov wrote:
>> On Thursday 14 October 2004 03:56 pm, William Wolf wrote:
>>
>>>Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
>>> work, I don't even think it is being recognized.
>> Could you try booting with i8042.noacpi and if it helps mailing me
>> your
>> /proc/acpi/dsdt?
>> Thanks!
>>
>
>
> Thanks a bunch, this fixed the keyboard problem.  What did this do 
> exactly?  Anyway, now I'm having more issues with this kernel.
>
> I'm getting a lot of scheduling while atomic, and not tainted messages. 
>    There are no such messages right after boot or after log in, it only 
> happens when i try to launch certain applications.  gaim, thunderbird, 
> and firefox are some that i tried, all just dying and dumping these 
> types of messages:
>
>
>
>
> Unable to handle kernel paging request at 00000000000c1644 RIP:
> <ffffffff8013564d>{profile_hit+45}
> PML4 16557067 PGD 16b76067 PMD 0
> Oops: 0002 [5] PREEMPT
> CPU 0
> Modules linked in: usbcore snd_intel8x0 snd_ac97_codec snd_pcm snd_timer 
> snd snd_page_alloc evdev sis900 sg sd_mod scsi_mod
> Pid: 7329, comm: firefox-bin Not tainted 2.6.9-rc4-mm1
> RIP: 0010:[<ffffffff8013564d>] <ffffffff8013564d>{profile_hit+45}
> RSP: 0018:0000010016a6df20  EFLAGS: 00010082
> RAX: 0000000000000000 RBX: 0000010016a7f860 RCX: 0000000000000000
> RDX: 0000010016a7f998 RSI: 00000000000c1644 RDI: 0000000000000002
> RBP: 0000010016a6df68 R08: 0000000000000001 R09: 0000000000000001
> R10: 0000002a95d67000 R11: 0000000000000206 R12: 0000000000000000
> R13: 00000000ffffffea R14: 0000007fbfffefb4 R15: ffffffff804543e0
> FS:  000000000051e4a0(005b) GS:ffffffff80497840(0000) knlGS:0000000000000000
> CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> CR2: 00000000000c1644 CR3: 0000000000101000 CR4: 00000000000006e0
> Process firefox-bin (pid: 7329, threadinfo 0000010016a6c000, task 
> 0000010016a7f860)
> Stack: ffffffff801312f6 000000000055c570 0000000000000006 00000000bffff680
>        0000002a95e7c820 0000000000004000 0000000000000000 0000007fbfffefb4
>        0000002a97775e18 0000010016a6df78
> Call Trace:<ffffffff801312f6>{setscheduler+214} 
> <ffffffff801314a9>{sys_sched_setscheduler+9}
>        <ffffffff80110496>{system_call+126}

known issue
try doing this:
cd /path/to/your/kernel/source
wget ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/broken-out/optimize-profile-path-slightly.patch
patch -1 -R -i optimize-profile-path-slightly.patch

and the oops above should disappear.

for the other logs, I don't know where they come from, right now.
They may come from the "bad state" the kernel is left in by the previous
oops...

[snip]


> Unable to handle kernel paging request at 00000000000c1644 RIP:
> <ffffffff8013564d>{profile_hit+45}
> PML4 1675a067 PGD 167ae067 PMD 0
> Oops: 0002 [6] PREEMPT
> CPU 0
> Modules linked in: usbcore snd_intel8x0 snd_ac97_codec snd_pcm snd_timer 
> snd snd_page_alloc evdev sis900 sg sd_mod scsi_mod
> Pid: 7353, comm: mozilla-xremote Not tainted 2.6.9-rc4-mm1
> RIP: 0010:[<ffffffff8013564d>] <ffffffff8013564d>{profile_hit+45}
> RSP: 0018:00000100167d7f20  EFLAGS: 00010082
> RAX: 0000000000000000 RBX: 00000100165091d0 RCX: 0000000000000000
> RDX: 0000010016509308 RSI: 00000000000c1644 RDI: 0000000000000002
> RBP: 00000100167d7f68 R08: 0000000000000001 R09: 0000000000000001
> R10: 0000002a958744a0 R11: 0000000000000206 R12: 0000000000000000
> R13: 00000000ffffffea R14: 0000007fbffff4c4 R15: ffffffff804543e0
> FS:  00000000005034a0(005b) GS:ffffffff80497840(0000) knlGS:0000000000000000
> CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> CR2: 00000000000c1644 CR3: 0000000000101000 CR4: 00000000000006e0
> Process mozilla-xremote (pid: 7353, threadinfo 00000100167d6000, task 
> 00000100165091d0)
> Stack: ffffffff801312f6 0000000000504770 0000000000000002 0000000000402360
>        0000002a95ad8820 0000000000004000 0000000000000000 0000007fbffff4c4
>        0000002a964dfe18 00000100167d7f78
> Call Trace:<ffffffff801312f6>{setscheduler+214} 
> <ffffffff801314a9>{sys_sched_setscheduler+9}
>        <ffffffff80110496>{system_call+126}

this one should be fixed, as the first one

>
> Code: ff 06 c3 48 83 ec 08 39 3d 86 49 32 00 75 54 48 83 3d 64 49
> RIP <ffffffff8013564d>{profile_hit+45} RSP <00000100167d7f20>
> CR2: 00000000000c1644
>  <6>note: mozilla-xremote[7353] exited with preempt_count 2
> scheduling while atomic: mozilla-xremote/0x04000002/7353
>
> Call Trace:<ffffffff803358e7>{schedule+119} 
> <ffffffff80130e34>{__wake_up+84}
>        <ffffffff803364cf>{cond_resched+63} 
> <ffffffff801633af>{unmap_vmas+1519}
>        <ffffffff80168316>{exit_mmap+118} <ffffffff801322a0>{mmput+48}
>        <ffffffff801369f3>{do_exit+483} 
> <ffffffff80259dc7>{do_unblank_screen+119}
>        <ffffffff801212df>{do_page_fault+1263} 
> <ffffffff80164afd>{do_no_page+1341}
>        <ffffffff80164cc6>{handle_mm_fault+326} 
> <ffffffff80110d49>{error_exit+0}
>        <ffffffff8013564d>{profile_hit+45} 
> <ffffffff801312f6>{setscheduler+214}
>        <ffffffff801314a9>{sys_sched_setscheduler+9} 
> <ffffffff80110496>{system_call+126}

as for the second kernel message, this may be a "consequence" of the
previous one

[snip]

I guess that all 'scheduling while atomic' messages were consequences of
the oopses occured just before them.

-- 
All the authors of the linux kernel? That would be more difficult than
herding Debian developers.

	- Martijn van Oosterhout on linux-kernel


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

* Re: 2.6.9-rc4-mm1
       [not found] ` <200410142305.29859.dtor_core@ameritech.net>
  2004-10-15  5:14   ` 2.6.9-rc4-mm1 William Wolf
@ 2004-10-15  5:26   ` William Wolf
  1 sibling, 0 replies; 61+ messages in thread
From: William Wolf @ 2004-10-15  5:26 UTC (permalink / raw)
  To: kernel list; +Cc: Dmitry Torokhov, Andrew Morton



Dmitry Torokhov wrote:

> Yes, that's what I needed.. It seems that they decided to use new PNP IDs
> for mouse and keyboard. Please try the patch below when you have time.
> 


Alright, that worked great :D thanks a bunch.

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

* Re: 2.6.9-rc4-mm1
       [not found] ` <200410142305.29859.dtor_core@ameritech.net>
@ 2004-10-15  5:14   ` William Wolf
  2004-10-15  4:25     ` 2.6.9-rc4-mm1 Dmitry Torokhov
  2004-10-15  5:26   ` 2.6.9-rc4-mm1 William Wolf
  1 sibling, 1 reply; 61+ messages in thread
From: William Wolf @ 2004-10-15  5:14 UTC (permalink / raw)
  To: Dmitry Torokhov, kernel list

It's compiling now, i'll let you know how it goes.  Do you have any idea 
about my other errors when using this kernel?

Dmitry Torokhov wrote:
> On Thursday 14 October 2004 11:43 pm, William Wolf wrote:
> 
>>Dmitry Torokhov wrote:
>>
>>>On Thursday 14 October 2004 10:23 pm, William Wolf wrote:
>>>
>>>
>>>>Dmitry Torokhov wrote:
>>>>
>>>>
>>>>>On Thursday 14 October 2004 03:56 pm, William Wolf wrote:
>>>>>
>>>>>
>>>>>
>>>>>>Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
>>>>>>work, I don't even think it is being recognized. 
>>>>>
>>>>>
>>>>>Could you try booting with i8042.noacpi and if it helps mailing me your
>>>>>/proc/acpi/dsdt?
>>>>>
>>>>>Thanks!
>>>>>
>>>>
>>>>
>>>>Thanks a bunch, this fixed the keyboard problem.  What did this do 
>>>>exactly?
>>>
>>>
>>>It caused i8042 not to rely on ACPI BIOS data and use defaults.
>>>
>>>/proc/acpi/dsdt, pretty please.
>>>
>>
>>Hmmm, not sure if i did this right, doesnt look to readable, but ive 
>>attatched it below, i just did a cat /proc/acpi/dsdt > dsdt, hope this 
>>is what u wanted, lemme know if i did something wrong.
>>
> 
> 
> Yes, that's what I needed.. It seems that they decided to use new PNP IDs
> for mouse and keyboard. Please try the patch below when you have time.
> 

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

* Re: 2.6.9-rc4-mm1
  2004-10-15  3:30     ` 2.6.9-rc4-mm1 Dmitry Torokhov
@ 2004-10-15  4:43       ` William Wolf
  0 siblings, 0 replies; 61+ messages in thread
From: William Wolf @ 2004-10-15  4:43 UTC (permalink / raw)
  To: kernel list; +Cc: Dmitry Torokhov

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



Dmitry Torokhov wrote:
> On Thursday 14 October 2004 10:23 pm, William Wolf wrote:
> 
>>Dmitry Torokhov wrote:
>>
>>>On Thursday 14 October 2004 03:56 pm, William Wolf wrote:
>>>
>>>
>>>>Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
>>>>work, I don't even think it is being recognized. 
>>>
>>>
>>>Could you try booting with i8042.noacpi and if it helps mailing me your
>>>/proc/acpi/dsdt?
>>>
>>>Thanks!
>>>
>>
>>
>>Thanks a bunch, this fixed the keyboard problem.  What did this do 
>>exactly?
> 
> 
> It caused i8042 not to rely on ACPI BIOS data and use defaults.
> 
> /proc/acpi/dsdt, pretty please.
> 

Hmmm, not sure if i did this right, doesnt look to readable, but ive 
attatched it below, i just did a cat /proc/acpi/dsdt > dsdt, hope this 
is what u wanted, lemme know if i did something wrong.

[-- Attachment #2: dsdt --]
[-- Type: application/octet-stream, Size: 14875 bytes --]

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

* Re: 2.6.9-rc4-mm1
  2004-10-15  5:14   ` 2.6.9-rc4-mm1 William Wolf
@ 2004-10-15  4:25     ` Dmitry Torokhov
  0 siblings, 0 replies; 61+ messages in thread
From: Dmitry Torokhov @ 2004-10-15  4:25 UTC (permalink / raw)
  To: William Wolf; +Cc: kernel list

On Friday 15 October 2004 12:14 am, William Wolf wrote:
> It's compiling now, i'll let you know how it goes.  Do you have any idea 
> about my other errors when using this kernel?
> 

No, I am sorry - I grok input system a bit but that's all for now.

-- 
Dmitry

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

* Re: 2.6.9-rc4-mm1
  2004-10-15  3:23   ` 2.6.9-rc4-mm1 William Wolf
@ 2004-10-15  3:30     ` Dmitry Torokhov
  2004-10-15  4:43       ` 2.6.9-rc4-mm1 William Wolf
  2004-10-15  7:04     ` 2.6.9-rc4-mm1 Mathieu Segaud
  1 sibling, 1 reply; 61+ messages in thread
From: Dmitry Torokhov @ 2004-10-15  3:30 UTC (permalink / raw)
  To: William Wolf; +Cc: kernel list, akpm

On Thursday 14 October 2004 10:23 pm, William Wolf wrote:
> Dmitry Torokhov wrote:
> > On Thursday 14 October 2004 03:56 pm, William Wolf wrote:
> > 
> >>Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
> >>work, I don't even think it is being recognized. 
> > 
> > 
> > Could you try booting with i8042.noacpi and if it helps mailing me your
> > /proc/acpi/dsdt?
> > 
> > Thanks!
> > 
> 
> 
> Thanks a bunch, this fixed the keyboard problem.  What did this do 
> exactly?

It caused i8042 not to rely on ACPI BIOS data and use defaults.

/proc/acpi/dsdt, pretty please.

-- 
Dmitry

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

* Re: 2.6.9-rc4-mm1
  2004-10-14 23:15 ` 2.6.9-rc4-mm1 Dmitry Torokhov
@ 2004-10-15  3:23   ` William Wolf
  2004-10-15  3:30     ` 2.6.9-rc4-mm1 Dmitry Torokhov
  2004-10-15  7:04     ` 2.6.9-rc4-mm1 Mathieu Segaud
  0 siblings, 2 replies; 61+ messages in thread
From: William Wolf @ 2004-10-15  3:23 UTC (permalink / raw)
  To: kernel list; +Cc: Dmitry Torokhov, akpm

Dmitry Torokhov wrote:
> On Thursday 14 October 2004 03:56 pm, William Wolf wrote:
> 
>>Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
>>work, I don't even think it is being recognized. 
> 
> 
> Could you try booting with i8042.noacpi and if it helps mailing me your
> /proc/acpi/dsdt?
> 
> Thanks!
> 


Thanks a bunch, this fixed the keyboard problem.  What did this do 
exactly?  Anyway, now I'm having more issues with this kernel.

I'm getting a lot of scheduling while atomic, and not tainted messages. 
    There are no such messages right after boot or after log in, it only 
happens when i try to launch certain applications.  gaim, thunderbird, 
and firefox are some that i tried, all just dying and dumping these 
types of messages:




Unable to handle kernel paging request at 00000000000c1644 RIP:
<ffffffff8013564d>{profile_hit+45}
PML4 16557067 PGD 16b76067 PMD 0
Oops: 0002 [5] PREEMPT
CPU 0
Modules linked in: usbcore snd_intel8x0 snd_ac97_codec snd_pcm snd_timer 
snd snd_page_alloc evdev sis900 sg sd_mod scsi_mod
Pid: 7329, comm: firefox-bin Not tainted 2.6.9-rc4-mm1
RIP: 0010:[<ffffffff8013564d>] <ffffffff8013564d>{profile_hit+45}
RSP: 0018:0000010016a6df20  EFLAGS: 00010082
RAX: 0000000000000000 RBX: 0000010016a7f860 RCX: 0000000000000000
RDX: 0000010016a7f998 RSI: 00000000000c1644 RDI: 0000000000000002
RBP: 0000010016a6df68 R08: 0000000000000001 R09: 0000000000000001
R10: 0000002a95d67000 R11: 0000000000000206 R12: 0000000000000000
R13: 00000000ffffffea R14: 0000007fbfffefb4 R15: ffffffff804543e0
FS:  000000000051e4a0(005b) GS:ffffffff80497840(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 00000000000c1644 CR3: 0000000000101000 CR4: 00000000000006e0
Process firefox-bin (pid: 7329, threadinfo 0000010016a6c000, task 
0000010016a7f860)
Stack: ffffffff801312f6 000000000055c570 0000000000000006 00000000bffff680
        0000002a95e7c820 0000000000004000 0000000000000000 0000007fbfffefb4
        0000002a97775e18 0000010016a6df78
Call Trace:<ffffffff801312f6>{setscheduler+214} 
<ffffffff801314a9>{sys_sched_setscheduler+9}
        <ffffffff80110496>{system_call+126}

Code: ff 06 c3 48 83 ec 08 39 3d 86 49 32 00 75 54 48 83 3d 64 49
RIP <ffffffff8013564d>{profile_hit+45} RSP <0000010016a6df20>
CR2: 00000000000c1644
  <6>note: firefox-bin[7329] exited with preempt_count 2
scheduling while atomic: firefox-bin/0x04000002/7329

Call Trace:<ffffffff803358e7>{schedule+119} 
<ffffffff80130e34>{__wake_up+84}
        <ffffffff803364cf>{cond_resched+63} 
<ffffffff801633af>{unmap_vmas+1519}
        <ffffffff80168316>{exit_mmap+118} <ffffffff801322a0>{mmput+48}
        <ffffffff801369f3>{do_exit+483} 
<ffffffff80259dc7>{do_unblank_screen+119}
        <ffffffff801212df>{do_page_fault+1263} 
<ffffffff80164afd>{do_no_page+1341}
        <ffffffff80164cc6>{handle_mm_fault+326} 
<ffffffff8018248c>{path_release+12}
        <ffffffff80183984>{link_path_walk+3780} 
<ffffffff80110d49>{error_exit+0}
        <ffffffff8013564d>{profile_hit+45} 
<ffffffff801312f6>{setscheduler+214}
        <ffffffff801314a9>{sys_sched_setscheduler+9} 
<ffffffff80110496>{system_call+126}

Unable to handle kernel paging request at 00000000000c1644 RIP:
<ffffffff8013564d>{profile_hit+45}
PML4 1675a067 PGD 167ae067 PMD 0
Oops: 0002 [6] PREEMPT
CPU 0
Modules linked in: usbcore snd_intel8x0 snd_ac97_codec snd_pcm snd_timer 
snd snd_page_alloc evdev sis900 sg sd_mod scsi_mod
Pid: 7353, comm: mozilla-xremote Not tainted 2.6.9-rc4-mm1
RIP: 0010:[<ffffffff8013564d>] <ffffffff8013564d>{profile_hit+45}
RSP: 0018:00000100167d7f20  EFLAGS: 00010082
RAX: 0000000000000000 RBX: 00000100165091d0 RCX: 0000000000000000
RDX: 0000010016509308 RSI: 00000000000c1644 RDI: 0000000000000002
RBP: 00000100167d7f68 R08: 0000000000000001 R09: 0000000000000001
R10: 0000002a958744a0 R11: 0000000000000206 R12: 0000000000000000
R13: 00000000ffffffea R14: 0000007fbffff4c4 R15: ffffffff804543e0
FS:  00000000005034a0(005b) GS:ffffffff80497840(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 00000000000c1644 CR3: 0000000000101000 CR4: 00000000000006e0
Process mozilla-xremote (pid: 7353, threadinfo 00000100167d6000, task 
00000100165091d0)
Stack: ffffffff801312f6 0000000000504770 0000000000000002 0000000000402360
        0000002a95ad8820 0000000000004000 0000000000000000 0000007fbffff4c4
        0000002a964dfe18 00000100167d7f78
Call Trace:<ffffffff801312f6>{setscheduler+214} 
<ffffffff801314a9>{sys_sched_setscheduler+9}
        <ffffffff80110496>{system_call+126}

Code: ff 06 c3 48 83 ec 08 39 3d 86 49 32 00 75 54 48 83 3d 64 49
RIP <ffffffff8013564d>{profile_hit+45} RSP <00000100167d7f20>
CR2: 00000000000c1644
  <6>note: mozilla-xremote[7353] exited with preempt_count 2
scheduling while atomic: mozilla-xremote/0x04000002/7353

Call Trace:<ffffffff803358e7>{schedule+119} 
<ffffffff80130e34>{__wake_up+84}
        <ffffffff803364cf>{cond_resched+63} 
<ffffffff801633af>{unmap_vmas+1519}
        <ffffffff80168316>{exit_mmap+118} <ffffffff801322a0>{mmput+48}
        <ffffffff801369f3>{do_exit+483} 
<ffffffff80259dc7>{do_unblank_screen+119}
        <ffffffff801212df>{do_page_fault+1263} 
<ffffffff80164afd>{do_no_page+1341}
        <ffffffff80164cc6>{handle_mm_fault+326} 
<ffffffff80110d49>{error_exit+0}
        <ffffffff8013564d>{profile_hit+45} 
<ffffffff801312f6>{setscheduler+214}
        <ffffffff801314a9>{sys_sched_setscheduler+9} 
<ffffffff80110496>{system_call+126}

Unable to handle kernel paging request at 00000000000c1644 RIP:
<ffffffff8013564d>{profile_hit+45}
PML4 16708067 PGD 167c3067 PMD 0
Oops: 0002 [7] PREEMPT
CPU 0
Modules linked in: usbcore snd_intel8x0 snd_ac97_codec snd_pcm snd_timer 
snd snd_page_alloc evdev sis900 sg sd_mod scsi_mod
Pid: 7355, comm: thunderbird-bin Not tainted 2.6.9-rc4-mm1
RIP: 0010:[<ffffffff8013564d>] <ffffffff8013564d>{profile_hit+45}
RSP: 0018:00000100167d9f20  EFLAGS: 00010082
RAX: 0000000000000000 RBX: 000001001678b210 RCX: 0000000000000000
RDX: 000001001678b348 RSI: 00000000000c1644 RDI: 0000000000000002
RBP: 00000100167d9f68 R08: 0000000000000001 R09: 0000000000000001
R10: 0000002a96b1c950 R11: 0000000000000202 R12: 0000000000000000
R13: 00000000ffffffea R14: 0000007fbfffeea4 R15: ffffffff804543e0
FS:  000000000051e4a0(005b) GS:ffffffff80497840(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 00000000000c1644 CR3: 0000000000101000 CR4: 00000000000006e0
Process thunderbird-bin (pid: 7355, threadinfo 00000100167d8000, task 
000001001678b210)
Stack: ffffffff801312f6 000000000055c5c0 0000000000000002 00000000bffff570
        0000002a96e71820 0000000000004000 0000000000000000 0000007fbfffeea4
        0000002a97775e18 00000100167d9f78
Call Trace:<ffffffff801312f6>{setscheduler+214} 
<ffffffff801314a9>{sys_sched_setscheduler+9}
        <ffffffff80110496>{system_call+126}

Code: ff 06 c3 48 83 ec 08 39 3d 86 49 32 00 75 54 48 83 3d 64 49
RIP <ffffffff8013564d>{profile_hit+45} RSP <00000100167d9f20>
CR2: 00000000000c1644
  <6>note: thunderbird-bin[7355] exited with preempt_count 2
scheduling while atomic: thunderbird-bin/0x04000002/7355

Call Trace:<ffffffff803358e7>{schedule+119} 
<ffffffff80130e34>{__wake_up+84}
        <ffffffff803364cf>{cond_resched+63} 
<ffffffff801633af>{unmap_vmas+1519}
        <ffffffff80168316>{exit_mmap+118} <ffffffff801322a0>{mmput+48}
        <ffffffff801369f3>{do_exit+483} 
<ffffffff80259dc7>{do_unblank_screen+119}
        <ffffffff801212df>{do_page_fault+1263} 
<ffffffff80164afd>{do_no_page+1341}
        <ffffffff80164cc6>{handle_mm_fault+326} 
<ffffffff8018248c>{path_release+12}
        <ffffffff80183984>{link_path_walk+3780} 
<ffffffff80110d49>{error_exit+0}
        <ffffffff8013564d>{profile_hit+45} 
<ffffffff801312f6>{setscheduler+214}
        <ffffffff801314a9>{sys_sched_setscheduler+9} 
<ffffffff80110496>{system_call+126}

Unable to handle kernel paging request at 00000000000c1644 RIP:
<ffffffff8013564d>{profile_hit+45}
PML4 15e0e067 PGD 15e44067 PMD 0
Oops: 0002 [8] PREEMPT
CPU 0
Modules linked in: usbcore snd_intel8x0 snd_ac97_codec snd_pcm snd_timer 
snd snd_page_alloc evdev sis900 sg sd_mod scsi_mod
Pid: 7366, comm: gaim Not tainted 2.6.9-rc4-mm1
RIP: 0010:[<ffffffff8013564d>] <ffffffff8013564d>{profile_hit+45}
RSP: 0018:000001001678ff20  EFLAGS: 00010082
RAX: 0000000000000000 RBX: 00000100165098a0 RCX: 0000000000000000
RDX: 00000100165099d8 RSI: 00000000000c1644 RDI: 0000000000000002
RBP: 000001001678ff68 R08: 0000000000000001 R09: 0000002a97823a01
R10: 0000002a9556b9c8 R11: 0000000000000202 R12: 0000000000000000
R13: 00000000ffffffea R14: 0000007fbfff5404 R15: ffffffff804543e0
FS:  00000000005e34a0(005b) GS:ffffffff80497840(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00000000000c1644 CR3: 0000000000101000 CR4: 00000000000006e0
Process gaim (pid: 7366, threadinfo 000001001678e000, task 00000100165098a0)
Stack: ffffffff801312f6 0000002a9a51f17f 0000000000000006 0000000000000000
        0000002a95899820 0000000000004000 0000000000000000 0000007fbfff5404
        0000000000000001 000001001678ff78
Call Trace:<ffffffff801312f6>{setscheduler+214} 
<ffffffff801314a9>{sys_sched_setscheduler+9}
        <ffffffff80110496>{system_call+126}

Code: ff 06 c3 48 83 ec 08 39 3d 86 49 32 00 75 54 48 83 3d 64 49
RIP <ffffffff8013564d>{profile_hit+45} RSP <000001001678ff20>
CR2: 00000000000c1644
  <6>note: gaim[7366] exited with preempt_count 2
scheduling while atomic: gaim/0x04000002/7366

Call Trace:<ffffffff803358e7>{schedule+119} 
<ffffffff80130e34>{__wake_up+84}
        <ffffffff803364cf>{cond_resched+63} 
<ffffffff801633af>{unmap_vmas+1519}
        <ffffffff80168316>{exit_mmap+118} <ffffffff801322a0>{mmput+48}
        <ffffffff801369f3>{do_exit+483} <ffffffff801119ee>{oops_end+62}
        <ffffffff801212df>{do_page_fault+1263} 
<ffffffff80163d42>{do_wp_page+354}
        <ffffffff80165021>{handle_mm_fault+1185} 
<ffffffff8018fa28>{inode_update_time+168}
        <ffffffff80110d49>{error_exit+0} <ffffffff8013564d>{profile_hit+45}
        <ffffffff801312f6>{setscheduler+214

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

* Re: 2.6.9-rc4-mm1
  2004-10-14 20:56 2.6.9-rc4-mm1 William Wolf
@ 2004-10-14 23:15 ` Dmitry Torokhov
  2004-10-15  3:23   ` 2.6.9-rc4-mm1 William Wolf
       [not found] ` <200410142305.29859.dtor_core@ameritech.net>
  1 sibling, 1 reply; 61+ messages in thread
From: Dmitry Torokhov @ 2004-10-14 23:15 UTC (permalink / raw)
  To: linux-kernel; +Cc: William Wolf, akpm

On Thursday 14 October 2004 03:56 pm, William Wolf wrote:
> Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
> work, I don't even think it is being recognized. 

Could you try booting with i8042.noacpi and if it helps mailing me your
/proc/acpi/dsdt?

Thanks!

-- 
Dmitry

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

* Re: 2.6.9-rc4-mm1
@ 2004-10-14 20:56 William Wolf
  2004-10-14 23:15 ` 2.6.9-rc4-mm1 Dmitry Torokhov
       [not found] ` <200410142305.29859.dtor_core@ameritech.net>
  0 siblings, 2 replies; 61+ messages in thread
From: William Wolf @ 2004-10-14 20:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm

Hey, I just tried -rc4-mm1 on my amd64 laptop, and my keyboard fails to
work, I don't even think it is being recognized.  I compared the kernel
output from my plain -rc4 boot and my -rc4-mm1 boot.  I'm using the same
.config for each kernel. This is what it shows:

 From -rc4:

Nov 13 19:44:53 Xnix mice: PS/2 mouse device common for all mice
Nov 13 19:44:53 Xnix input: AT Translated Set 2 keyboard on isa0060/serio0
Nov 13 19:44:53 Xnix Synaptics Touchpad, model: 1
Nov 13 19:44:53 Xnix Firmware: 5.9
Nov 13 19:44:53 Xnix 180 degree mounted touchpad
Nov 13 19:44:53 Xnix Sensor: 35
Nov 13 19:44:53 Xnix new absolute packet format
Nov 13 19:44:53 Xnix Touchpad has extended capability bits
Nov 13 19:44:53 Xnix -> multifinger detection
Nov 13 19:44:53 Xnix -> palm detection
Nov 13 19:44:53 Xnix input: SynPS/2 Synaptics TouchPad on isa0060/serio2
Nov 13 19:44:53 Xnix NET: Registered protocol family 2
Nov 13 19:44:53 Xnix IP: routing cache hash table of 8192 buckets, 64Kbytes



 From -rc4-mm1:

Nov 13 20:19:18 Xnix mice: PS/2 mouse device common for all mice
Nov 13 20:19:18 Xnix NET: Registered protocol family 2
Nov 13 20:19:18 Xnix Losing some ticks... checking if CPU frequency changed.
Nov 13 20:19:18 Xnix IP: routing cache hash table of 8192 buckets, 64Kbytes


Any ideas?




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

* Re: 2.6.9-rc4-mm1
  2004-10-14  4:50   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-14  5:23     ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
@ 2004-10-14 17:50     ` Christian Borntraeger
  2004-10-15  7:08       ` 2.6.9-rc4-mm1 J.A. Magallon
  1 sibling, 1 reply; 61+ messages in thread
From: Christian Borntraeger @ 2004-10-14 17:50 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Andrew Morton wrote:
> Well I can tell just from looking at it that the patch is
> whitespace-mangled.  It seems that a quarter of the patches I get
> nowadays are unusable due to this.  What's going on out there?

I cannot explain this case, but I can at least explain all KMAIL tab/space 
mangles. The current qt 3.3.3 version has a bug which is fixed in the 
current qt snapshot. 

Every kmail user should be aware of that 
see 
http://bugs.kde.org/show_bug.cgi?id=90688
for further details.

There is another problem that "cat diff-file + X copy and paste" does 
convert all tabs as well. 

cheers

Christian

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

* Re: 2.6.9-rc4-mm1
  2004-10-14  4:50   ` 2.6.9-rc4-mm1 Andrew Morton
@ 2004-10-14  5:23     ` Hiroyuki KAMEZAWA
  2004-10-14 17:50     ` 2.6.9-rc4-mm1 Christian Borntraeger
  1 sibling, 0 replies; 61+ messages in thread
From: Hiroyuki KAMEZAWA @ 2004-10-14  5:23 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

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

Andrew Morton wrote:
> Well I can tell just from looking at it that the patch is
> whitespace-mangled.  It seems that a quarter of the patches I get nowadays
> are unusable due to this.  What's going on out there?
> 
> Please resend the patch, and also your full .config.  Thanks.

I resend the patch and my .config by attached files, not by cut & paste.

Thanks.
Kame <kamezawa.hiroyu@jp.fujitsu.com>

[-- Attachment #2: ia64_compile.patch --]
[-- Type: text/x-patch, Size: 1726 bytes --]

---

 linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec.h      |    8 ++++----
 linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec_init.h |    1 +
 2 files changed, 5 insertions(+), 4 deletions(-)

diff -puN include/asm-ia64/machvec.h~ia64_compile include/asm-ia64/machvec.h
--- linux-2.6.9-rc4-mm1/include/asm-ia64/machvec.h~ia64_compile	2004-10-14 10:24:41.000000000 +0900
+++ linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec.h	2004-10-14 10:29:05.000000000 +0900
@@ -63,10 +63,10 @@ typedef void ia64_mv_outb_t (unsigned ch
 typedef void ia64_mv_outw_t (unsigned short, unsigned long);
 typedef void ia64_mv_outl_t (unsigned int, unsigned long);
 typedef void ia64_mv_mmiowb_t (void);
-typedef unsigned char ia64_mv_readb_t (void *);
-typedef unsigned short ia64_mv_readw_t (void *);
-typedef unsigned int ia64_mv_readl_t (void *);
-typedef unsigned long ia64_mv_readq_t (void *);
+typedef unsigned char ia64_mv_readb_t (const volatile void *);
+typedef unsigned short ia64_mv_readw_t (const volatile void *);
+typedef unsigned int ia64_mv_readl_t (const volatile void *);
+typedef unsigned long ia64_mv_readq_t (const volatile void *);
 typedef unsigned char ia64_mv_readb_relaxed_t (void *);
 typedef unsigned short ia64_mv_readw_relaxed_t (void *);
 typedef unsigned int ia64_mv_readl_relaxed_t (void *);
diff -puN include/asm-ia64/machvec_init.h~ia64_compile include/asm-ia64/machvec_init.h
--- linux-2.6.9-rc4-mm1/include/asm-ia64/machvec_init.h~ia64_compile	2004-10-14 11:10:44.000000000 +0900
+++ linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec_init.h	2004-10-14 11:11:06.000000000 +0900
@@ -1,3 +1,4 @@
+#include <asm/io.h>
 #include <asm/machvec.h>
 
 extern ia64_mv_send_ipi_t ia64_send_ipi;

_

[-- Attachment #3: .config --]
[-- Type: text/plain, Size: 23631 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.9-rc4-mm1
# Thu Oct 14 08:15:24 2004
#

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
# CONFIG_CLEAN_COMPILE is not set
CONFIG_BROKEN=y
CONFIG_BROKEN_ON_SMP=y

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_LOG_BUF_SHIFT=16
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_FUTEX=y
CONFIG_EPOLL=y
# CONFIG_CPUSETS is not set
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SHMEM=y
# CONFIG_TINY_SHMEM is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# Processor type and features
#
CONFIG_IA64=y
CONFIG_64BIT=y
CONFIG_MMU=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_TIME_INTERPOLATION=y
CONFIG_EFI=y
CONFIG_GENERIC_IOMAP=y
CONFIG_IA64_GENERIC=y
# CONFIG_IA64_DIG is not set
# CONFIG_IA64_HP_ZX1 is not set
# CONFIG_IA64_SGI_SN2 is not set
# CONFIG_IA64_HP_SIM is not set
# CONFIG_ITANIUM is not set
CONFIG_MCKINLEY=y
# CONFIG_IA64_PAGE_SIZE_4KB is not set
# CONFIG_IA64_PAGE_SIZE_8KB is not set
CONFIG_IA64_PAGE_SIZE_16KB=y
# CONFIG_IA64_PAGE_SIZE_64KB is not set
CONFIG_IA64_L1_CACHE_SHIFT=7
CONFIG_NUMA=y
CONFIG_VIRTUAL_MEM_MAP=y
CONFIG_HOLES_IN_ZONE=y
CONFIG_DISCONTIGMEM=y
# CONFIG_KGDB is not set
CONFIG_DEBUG_INFO=y
# CONFIG_IA64_CYCLONE is not set
CONFIG_IOSAPIC=y
CONFIG_FORCE_MAX_ZONEORDER=18
CONFIG_SMP=y
CONFIG_NR_CPUS=16
# CONFIG_HOTPLUG_CPU is not set
# CONFIG_PREEMPT is not set
CONFIG_HAVE_DEC_LOCK=y
CONFIG_IA32_SUPPORT=y
CONFIG_COMPAT=y
# CONFIG_IA64_MCA_RECOVERY is not set
CONFIG_PERFMON=y
CONFIG_IA64_PALINFO=y

#
# Firmware Drivers
#
CONFIG_EFI_VARS=y
CONFIG_EFI_PCDP=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y

#
# Power management and ACPI
#
CONFIG_PM=y
CONFIG_ACPI=y

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUS=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y

#
# Bus options (PCI, PCMCIA)
#
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_MSI is not set
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set

#
# PCMCIA/CardBus support
#
# CONFIG_PCMCIA is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
# CONFIG_FW_LOADER is not set
# CONFIG_DEBUG_DRIVER is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Plug and Play support
#

#
# Block devices
#
# 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_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=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
# CONFIG_CDROM_PKTCDVD is not set

#
# ATA/ATAPI/MFM/RLL support
#
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_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
CONFIG_BLK_DEV_IDEFLOPPY=m
CONFIG_BLK_DEV_IDESCSI=m
CONFIG_IDE_TASK_IOCTL=y

#
# IDE chipset support/bugfixes
#
# CONFIG_IDE_GENERIC is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
# CONFIG_BLK_DEV_OPTI621 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
CONFIG_BLK_DEV_CMD64X=y
# 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_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX 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_SGIIOC4 is not set
CONFIG_BLK_DEV_SIIMAGE=y
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y

#
# 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=y
CONFIG_CHR_DEV_SG=y

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y

#
# SCSI Transport Attributes
#
CONFIG_SCSI_SPI_ATTRS=y
CONFIG_SCSI_FC_ATTRS=y

#
# SCSI low-level drivers
#
# 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=y
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_ADVANSYS is not set
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
# CONFIG_SCSI_SATA is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO 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_SYM53C8XX_2=y
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
# CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
CONFIG_SCSI_QLOGIC_1280=y
# CONFIG_SCSI_QLOGIC_1280_1040 is not set
CONFIG_SCSI_QLA2XXX=y
CONFIG_SCSI_QLA21XX=y
CONFIG_SCSI_QLA22XX=y
CONFIG_SCSI_QLA2300=y
CONFIG_SCSI_QLA2322=y
# CONFIG_SCSI_QLA6312 is not set
# CONFIG_SCSI_QLA6322 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_DEBUG is not set

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=m
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
# CONFIG_MD_RAID10 is not set
CONFIG_MD_RAID5=m
# CONFIG_MD_RAID6 is not set
CONFIG_MD_MULTIPATH=m
CONFIG_BLK_DEV_DM=m
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_ZERO is not set

#
# Fusion MPT device support
#
CONFIG_FUSION=y
CONFIG_FUSION_MAX_SGE=40
CONFIG_FUSION_CTL=m

#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# 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_TUNNEL is not set

#
# IP: Virtual Server Configuration
#
# CONFIG_IP_VS is not set
# CONFIG_IPV6 is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set

#
# IP: Netfilter Configuration
#
# CONFIG_IP_NF_CONNTRACK is not set
# CONFIG_IP_NF_QUEUE is not set
# CONFIG_IP_NF_IPTABLES is not set
CONFIG_IP_NF_ARPTABLES=y
# CONFIG_IP_NF_ARPFILTER is not set
# CONFIG_IP_NF_ARP_MANGLE is not set
# CONFIG_IP_NF_COMPAT_IPCHAINS is not set
# CONFIG_IP_NF_COMPAT_IPFWADM is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP 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_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

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

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_KGDBOE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NETPOLL_RX is not set
# CONFIG_NETPOLL_TRAP is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_NETDEVICES=y
CONFIG_DUMMY=y
CONFIG_BONDING=y
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set

#
# Tulip family network device support
#
# CONFIG_NET_TULIP 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=y
# 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_VIA_RHINE is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
CONFIG_E1000=y
# CONFIG_E1000_NAPI is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SK98LIN is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_TIGON3=y

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Wan interfaces
#
# 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

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# 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=y
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input I/O drivers
#
# CONFIG_GAMEPORT is not set
CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
# CONFIG_SERIO_I8042 is not set
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW 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=y
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

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

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_ACPI=y
CONFIG_SERIAL_8250_NR_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_SGI_L1_CONSOLE is not set
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
CONFIG_EFI_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# Ftape, the floppy tape device driver
#
CONFIG_AGP=m
# CONFIG_AGP_I460 is not set
CONFIG_AGP_HP_ZX1=m
CONFIG_DRM=y
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_GAMMA is not set
# CONFIG_DRM_R128 is not set
CONFIG_DRM_RADEON=m
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
CONFIG_MMTIMER=y

#
# I2C support
#
CONFIG_I2C=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_ISA is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 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_STUB is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Hardware Sensors Chip support
#
# CONFIG_I2C_SENSOR is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_IT87 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_LM90 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set

#
# Other I2C Chip support
#
# CONFIG_SENSORS_EEPROM is not set
# CONFIG_SENSORS_PCF8574 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_SENSORS_RTC8564 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

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Misc devices
#

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
CONFIG_FB_RIVA=m
# CONFIG_FB_RIVA_I2C is not set
# CONFIG_FB_RIVA_DEBUG is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
# CONFIG_FB_RADEON_DEBUG is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY 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_TRIDENT is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y

#
# Sound
#
# CONFIG_SOUND is not set

#
# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
CONFIG_USB_BANDWIDTH=y
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND 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=y
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_UHCI_HCD=y

#
# USB Device Class drivers
#
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
# CONFIG_USB_STORAGE is not set

#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=y
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_EGALAX is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set

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

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set

#
# Video4Linux support is needed for USB Multimedia device support
#

#
# USB Network adaptors
#
# 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 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_TIGL 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_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_TEST is not set

#
# USB ATM/DSL drivers
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
# CONFIG_EXT2_FS_POSIX_ACL is not set
# CONFIG_EXT2_FS_SECURITY is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
# CONFIG_EXT3_FS_POSIX_ACL is not set
# CONFIG_EXT3_FS_SECURITY 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 is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
CONFIG_AUTOFS_FS=y
# CONFIG_AUTOFS4_FS is not set

#
# Caches
#
# CONFIG_FSCACHE 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 is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_RAMFS=y

#
# 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=y
CONFIG_NFS_V3=y
CONFIG_NFS_V4=y
CONFIG_NFS_DIRECTIO=y
CONFIG_NFSD=y
CONFIG_NFSD_V3=y
# CONFIG_NFSD_V4 is not set
# CONFIG_NFSD_TCP is not set
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_RPCSEC_GSS_SPKM3 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=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
# CONFIG_LDM_PARTITION is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
CONFIG_EFI_PARTITION=y

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

#
# Library routines
#
# CONFIG_CRC_CCITT is not set
CONFIG_CRC32=y
# CONFIG_LIBCRC32C is not set

#
# HP Simulator drivers
#
# CONFIG_HP_SIMETH is not set
# CONFIG_HP_SIMSERIAL is not set
# CONFIG_HP_SIMSCSI is not set

#
# Profiling support
#
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
CONFIG_IA64_GRANULE_16MB=y
# CONFIG_IA64_GRANULE_64MB is not set
CONFIG_IA64_PRINT_HAZARDS=y
CONFIG_DISABLE_VHPT=y
# CONFIG_IA64_DEBUG_CMPXCHG is not set
# CONFIG_IA64_DEBUG_IRQ is not set
CONFIG_SYSVIPC_COMPAT=y

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

#
# Cryptographic options
#
CONFIG_CRYPTO=y
# CONFIG_CRYPTO_HMAC is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# 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_DES=y
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_AES 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_DEFLATE is not set
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_TEST is not set

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

* Re: 2.6.9-rc4-mm1
  2004-10-14  4:42 ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
@ 2004-10-14  4:50   ` Andrew Morton
  2004-10-14  5:23     ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
  2004-10-14 17:50     ` 2.6.9-rc4-mm1 Christian Borntraeger
  0 siblings, 2 replies; 61+ messages in thread
From: Andrew Morton @ 2004-10-14  4:50 UTC (permalink / raw)
  To: Hiroyuki KAMEZAWA; +Cc: linux-kernel

Hiroyuki KAMEZAWA <kamezawa.hiroyu@jp.fujitsu.com> wrote:
>
> Hi, Andrew
> 
> I need this patch for compiling 2.6.9-rc4-mm1 on my ia64 box (tiger4).
> I don't know this patch is enough good or not.

Well I can tell just from looking at it that the patch is
whitespace-mangled.  It seems that a quarter of the patches I get nowadays
are unusable due to this.  What's going on out there?

Please resend the patch, and also your full .config.  Thanks.


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (12 preceding siblings ...)
  2004-10-13 13:07 ` 2.6.9-rc4-mm1 Jesse Stockall
@ 2004-10-14  4:42 ` Hiroyuki KAMEZAWA
  2004-10-14  4:50   ` 2.6.9-rc4-mm1 Andrew Morton
  13 siblings, 1 reply; 61+ messages in thread
From: Hiroyuki KAMEZAWA @ 2004-10-14  4:42 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Hi, Andrew

I need this patch for compiling 2.6.9-rc4-mm1 on my ia64 box (tiger4).
I don't know this patch is enough good or not.

Kame <kamezawa.hiroyu@jp.fujitsu.com>

Additonal Info:
gcc version is 3.2.3.
CONFIG_IA64_GENERIC=y

---

  linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec.h      |    8 ++++----
  linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec_init.h |    1 +
  2 files changed, 5 insertions(+), 4 deletions(-)

diff -puN include/asm-ia64/machvec.h~ia64_compile include/asm-ia64/machvec.h
--- linux-2.6.9-rc4-mm1/include/asm-ia64/machvec.h~ia64_compile	2004-10-14 10:24:41.318281363 +0900
+++ linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec.h	2004-10-14 10:29:05.813395311 +0900
@@ -63,10 +63,10 @@ typedef void ia64_mv_outb_t (unsigned ch
  typedef void ia64_mv_outw_t (unsigned short, unsigned long);
  typedef void ia64_mv_outl_t (unsigned int, unsigned long);
  typedef void ia64_mv_mmiowb_t (void);
-typedef unsigned char ia64_mv_readb_t (void *);
-typedef unsigned short ia64_mv_readw_t (void *);
-typedef unsigned int ia64_mv_readl_t (void *);
-typedef unsigned long ia64_mv_readq_t (void *);
+typedef unsigned char ia64_mv_readb_t (const volatile void *);
+typedef unsigned short ia64_mv_readw_t (const volatile void *);
+typedef unsigned int ia64_mv_readl_t (const volatile void *);
+typedef unsigned long ia64_mv_readq_t (const volatile void *);
  typedef unsigned char ia64_mv_readb_relaxed_t (void *);
  typedef unsigned short ia64_mv_readw_relaxed_t (void *);
  typedef unsigned int ia64_mv_readl_relaxed_t (void *);
diff -puN include/asm-ia64/machvec_init.h~ia64_compile include/asm-ia64/machvec_init.h
--- linux-2.6.9-rc4-mm1/include/asm-ia64/machvec_init.h~ia64_compile	2004-10-14 11:10:44.690317824 +0900
+++ linux-2.6.9-rc4-mm1-kamezawa/include/asm-ia64/machvec_init.h	2004-10-14 11:11:06.924692552 +0900
@@ -1,3 +1,4 @@
+#include <asm/io.h>
  #include <asm/machvec.h>

  extern ia64_mv_send_ipi_t ia64_send_ipi;

_


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

* Re: 2.6.9-rc4-mm1
  2004-10-13 13:19   ` 2.6.9-rc4-mm1 Mathieu Segaud
  2004-10-13 13:34     ` 2.6.9-rc4-mm1 Jesse Stockall
@ 2004-10-13 17:27     ` Peter Adebahr
  1 sibling, 0 replies; 61+ messages in thread
From: Peter Adebahr @ 2004-10-13 17:27 UTC (permalink / raw)
  To: linux-kernel

On Wed, 13 Oct 2004, Mathieu Segaud wrote:

>
> here's a fix
> cd /usr/src/linux-2.6.9-rc4-mm1
> wget ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/broken-out/optimize-profile-path-slightly.patch
> patch -R -p1 < optimize-profile-path-slightly.patch
>
> this should fix the sources and so...
>

yes, helps here, too - on a redhat based (but otherwise self configured)
system, w/ self compiled firefox.

pse include resp. remove in next -mm.

thanks a lot!

best regards,
Peter

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

* Re: 2.6.9-rc4-mm1
  2004-10-13 13:19   ` 2.6.9-rc4-mm1 Mathieu Segaud
@ 2004-10-13 13:34     ` Jesse Stockall
  2004-10-13 17:27     ` 2.6.9-rc4-mm1 Peter Adebahr
  1 sibling, 0 replies; 61+ messages in thread
From: Jesse Stockall @ 2004-10-13 13:34 UTC (permalink / raw)
  To: Mathieu Segaud; +Cc: Andrew Morton, linux-kernel

On Wed, 2004-10-13 at 09:19, Mathieu Segaud wrote:
> 
> here's a fix
> cd /usr/src/linux-2.6.9-rc4-mm1
> wget ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/broken-out/optimize-profile-path-slightly.patch
> patch -R -p1 < optimize-profile-path-slightly.patch
> 
> this should fix the sources and so...

Yup, that fixed it.

Thanks

-- 
Jesse Stockall <stockall@magma.ca>


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

* Re: 2.6.9-rc4-mm1
  2004-10-13 13:07 ` 2.6.9-rc4-mm1 Jesse Stockall
@ 2004-10-13 13:19   ` Mathieu Segaud
  2004-10-13 13:34     ` 2.6.9-rc4-mm1 Jesse Stockall
  2004-10-13 17:27     ` 2.6.9-rc4-mm1 Peter Adebahr
  0 siblings, 2 replies; 61+ messages in thread
From: Mathieu Segaud @ 2004-10-13 13:19 UTC (permalink / raw)
  To: Jesse Stockall; +Cc: Andrew Morton, linux-kernel

Jesse Stockall <stockall@magma.ca> disait dernièrement que :

> On Mon, 2004-10-11 at 06:25, Andrew Morton wrote:
>> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
>> 
>> - I wasn't going to do any -mm's until after 2.6.9 comes out.  But we need
>>   this one so that people who have patches in -mm can check that I haven't
>>   failed to push anything critical.  If there's a patch in here which you
>>   think should be in 2.6.9, please let me know.
>> 
>
> Hi
>
> I'm have a Gentoo box and with either 2.6.9-rc4-mm1 or 2.6.9-rc3-mmX
> mozilla-firefox, mozilla-thunderbird, gaim segfault on launch. The Gnome
> desktop env (panel, window manager, etc) run normally.
>
> Rebooting to 2.6.9-rc4 and everything is back to normal.
>
> I have seen 1 other user on #gentoo with the same problem.
>
> Tried with preemptable-blk on and off.

here's a fix
cd /usr/src/linux-2.6.9-rc4-mm1
wget ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/broken-out/optimize-profile-path-slightly.patch
patch -R -p1 < optimize-profile-path-slightly.patch

this should fix the sources and so...

>
> strace, config and dmesg atached.
>
> Thanks

-- 
/* Allow the packet buffer size to be overridden by know-it-alls. */

	- comment from drivers/net/ne.c


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (11 preceding siblings ...)
  2004-10-13  7:42 ` 2.6.9-rc4-mm1 Wen-chien Jesse Sung
@ 2004-10-13 13:07 ` Jesse Stockall
  2004-10-13 13:19   ` 2.6.9-rc4-mm1 Mathieu Segaud
  2004-10-14  4:42 ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
  13 siblings, 1 reply; 61+ messages in thread
From: Jesse Stockall @ 2004-10-13 13:07 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

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

On Mon, 2004-10-11 at 06:25, Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
> 
> - I wasn't going to do any -mm's until after 2.6.9 comes out.  But we need
>   this one so that people who have patches in -mm can check that I haven't
>   failed to push anything critical.  If there's a patch in here which you
>   think should be in 2.6.9, please let me know.
> 

Hi

I'm have a Gentoo box and with either 2.6.9-rc4-mm1 or 2.6.9-rc3-mmX
mozilla-firefox, mozilla-thunderbird, gaim segfault on launch. The Gnome
desktop env (panel, window manager, etc) run normally.

Rebooting to 2.6.9-rc4 and everything is back to normal.

I have seen 1 other user on #gentoo with the same problem.

Tried with preemptable-blk on and off.

strace, config and dmesg atached.

Thanks

-- 
Jesse Stockall <stockall@magma.ca>

[-- Attachment #2: config-2.6.9-rc4-mm1 --]
[-- Type: text/plain, Size: 25508 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.9-rc4-mm1
# Tue Oct 12 11:55:13 2004
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_BROKEN_ON_SMP=y

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_LOG_BUF_SHIFT=14
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
# CONFIG_IKCONFIG is not set
CONFIG_EMBEDDED=y
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_AS is not set
# CONFIG_IOSCHED_DEADLINE is not set
CONFIG_IOSCHED_CFQ=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SHMEM=y
# CONFIG_TINY_SHMEM is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y

#
# Processor type and features
#
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_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=y
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_RWSEM_XCHGADD_ALGORITHM=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_SMP is not set
CONFIG_PREEMPT=y
# CONFIG_PREEMPT_BKL is not set
# CONFIG_X86_UP_APIC is not set
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCE_NONFATAL is not set
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
CONFIG_HAVE_DEC_LOCK=y
# CONFIG_REGPARM is not set

#
# Performance-monitoring counters support
#
# CONFIG_PERFCTR is not set
# CONFIG_KEXEC is not set

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
CONFIG_PM_DEBUG=y
CONFIG_SOFTWARE_SUSPEND=y
CONFIG_PM_STD_PARTITION="/dev/hda2"

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_THINKPAD is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=1998
CONFIG_ACPI_DEBUG=y
CONFIG_ACPI_BUS=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y

#
# APM (Advanced Power Management) BIOS Support
#
# CONFIG_APM is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ 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_PCI_LEGACY_PROC is not set
CONFIG_PCI_NAMES=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set

#
# PCMCIA/CardBus support
#
CONFIG_PCMCIA=m
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_YENTA=m
CONFIG_CARDBUS=y
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
# CONFIG_TCIC is not set

#
# PCI Hotplug Support
#
# 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

#
# Device Drivers
#

#
# Generic Driver Options
#
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
# CONFIG_FW_LOADER is not set
# CONFIG_DEBUG_DRIVER is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_PC_CML1=m
# CONFIG_PARPORT_SERIAL is not set
# CONFIG_PARPORT_PC_FIFO is not set
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_PC_PCMCIA is not set
# CONFIG_PARPORT_OTHER is not set
# CONFIG_PARPORT_1284 is not set

#
# Plug and Play support
#

#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_PARIDE 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_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_INITRAMFS_SOURCE=""
# CONFIG_LBD is not set
# CONFIG_CDROM_PKTCDVD is not set

#
# ATA/ATAPI/MFM/RLL support
#
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 is not set
# CONFIG_BLK_DEV_IDECS is not set
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_IDE_TASK_IOCTL is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
# CONFIG_BLK_DEV_CMD640 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=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_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# 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_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
CONFIG_BLK_DEV_PIIX=y
# 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_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
CONFIG_SCSI=m
# CONFIG_SCSI_PROC_FS is not set

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=m
# 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=m

#
# 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

#
# SCSI Transport Attributes
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set

#
# SCSI low-level drivers
#
# 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_DPT_I2O is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_SCSI_SATA is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO 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_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLOGIC_1280_1040 is not set
CONFIG_SCSI_QLA2XXX=m
# CONFIG_SCSI_QLA21XX is not set
# CONFIG_SCSI_QLA22XX is not set
# CONFIG_SCSI_QLA2300 is not set
# CONFIG_SCSI_QLA2322 is not set
# CONFIG_SCSI_QLA6312 is not set
# CONFIG_SCSI_QLA6322 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

#
# PCMCIA SCSI adapter support
#
# CONFIG_PCMCIA_AHA152X is not set
# CONFIG_PCMCIA_FDOMAIN is not set
# CONFIG_PCMCIA_NINJA_SCSI is not set
# CONFIG_PCMCIA_QLOGIC is not set
# CONFIG_PCMCIA_SYM53C500 is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV 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_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_TUNNEL is not set
# CONFIG_IPV6 is not set
# CONFIG_NETFILTER is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP 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_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

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

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_KGDBOE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NETPOLL_RX is not set
# CONFIG_NETPOLL_TRAP is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=m
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=m
# CONFIG_TYPHOON is not set

#
# Tulip family network device support
#
# CONFIG_NET_TULIP is not set
# CONFIG_HP100 is not set
# CONFIG_NET_PCI is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SK98LIN is not set
# CONFIG_TIGON3 is not set

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# PCMCIA network device support
#
CONFIG_NET_PCMCIA=y
# CONFIG_PCMCIA_3C589 is not set
# CONFIG_PCMCIA_3C574 is not set
# CONFIG_PCMCIA_FMVJ18X is not set
CONFIG_PCMCIA_PCNET=m
# CONFIG_PCMCIA_NMCLAN is not set
# CONFIG_PCMCIA_SMC91C92 is not set
# CONFIG_PCMCIA_XIRC2PS is not set
# CONFIG_PCMCIA_AXNET is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP 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

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# 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 is not set
# CONFIG_INPUT_EVBUG is not set

#
# Input I/O drivers
#
# CONFIG_GAMEPORT is not set
CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW 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_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

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

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_ACPI=y
CONFIG_SERIAL_8250_NR_UARTS=2
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
# CONFIG_PPDEV is not set
# CONFIG_TIPAR is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
CONFIG_RTC=m
CONFIG_GEN_RTC=m
# CONFIG_GEN_RTC_X is not set
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=m
# 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=m
# CONFIG_AGP_INTEL_MCH is not set
# 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 is not set
# 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

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
CONFIG_MWAVE=m
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set

#
# I2C support
#
# CONFIG_I2C is not set

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 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_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I810 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SIS is not set
CONFIG_FB_NEOMAGIC=y
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
# CONFIG_LOGO is not set

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
# CONFIG_SND_SEQUENCER_OSS is not set
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
# 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_AC97_CODEC=m
# 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_CS46XX=m
# CONFIG_SND_CS46XX_NEW_DSP is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI 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_MAESTRO3 is not set
# CONFIG_SND_FM801 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_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VX222 is not set

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

#
# PCMCIA devices
#

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

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

#
# USB Host Controller Drivers
#
# CONFIG_USB_EHCI_HCD is not set
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=m

#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_RW_DETECT 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_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set

#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
# CONFIG_USB_HIDDEV is not set

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_EGALAX is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set

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

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set

#
# Video4Linux support is needed for USB Multimedia device support
#

#
# USB Network adaptors
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
CONFIG_USB_PEGASUS=m
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set

#
# USB port drivers
#
# CONFIG_USB_USS720 is not set

#
# 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_TIGL 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_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_TEST is not set

#
# USB ATM/DSL drivers
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
# CONFIG_EXT3_FS_POSIX_ACL is not set
# CONFIG_EXT3_FS_SECURITY is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set

#
# Caches
#
# CONFIG_FSCACHE 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_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y

#
# 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=m
CONFIG_NFS_V3=y
# CONFIG_NFS_V4 is not set
# CONFIG_NFS_DIRECTIO is not set
CONFIG_NFSD=m
CONFIG_NFSD_V3=y
# CONFIG_NFSD_V4 is not set
# CONFIG_NFSD_TCP is not set
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=m
CONFIG_SUNRPC=m
# CONFIG_RPCSEC_GSS_KRB5 is not set
# CONFIG_RPCSEC_GSS_SPKM3 is not set
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT 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=m
# 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=m
# 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

#
# Profiling support
#
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
CONFIG_DEBUG_PREEMPT=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_FRAME_POINTER is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_KPROBES is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_4KSTACKS=y
# CONFIG_SCHEDSTATS is not set
# CONFIG_KGDB is not set

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

#
# Cryptographic options
#
# CONFIG_CRYPTO is not set

#
# Library routines
#
# CONFIG_CRC_CCITT is not set
CONFIG_CRC32=m
# CONFIG_LIBCRC32C is not set
CONFIG_GENERIC_HARDIRQS=y
CONFIG_X86_BIOS_REBOOT=y

[-- Attachment #3: dmesg-2.6.9-rc4-mm1 --]
[-- Type: text/plain, Size: 9032 bytes --]

Linux version 2.6.9-rc4-mm1 (jesse@maggie) (gcc version 3.3.4 20040623 (Gentoo Linux 3.3.4-r1, ssp-3.3.2-2, pie-8.7.6)) #3 Tue Oct 12 12:01:03 EDT 2004
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 0000000013fd0000 (usable)
 BIOS-e820: 0000000013fd0000 - 0000000013fdf000 (ACPI data)
 BIOS-e820: 0000000013fdf000 - 0000000013fe0000 (ACPI NVS)
 BIOS-e820: 0000000013fe0000 - 0000000014000000 (reserved)
 BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved)
319MB LOWMEM available.
On node 0 totalpages: 81872
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 77776 pages, LIFO batch:16
  HighMem zone: 0 pages, LIFO batch:1
DMI 2.2 present.
ACPI: RSDP (v000 IBM                                   ) @ 0x000fd6e0
ACPI: RSDT (v001 IBM    TP600X   0x00000001  0x00000000) @ 0x13fd0000
ACPI: FADT (v001 IBM    TP600X   0x00000001  0x00000000) @ 0x13fd0100
ACPI: BOOT (v001 IBM    TP600X   0x00000001  0x00000000) @ 0x13fd0040
ACPI: DSDT (v001 IBM    TP600X   0x00000106 MSFT 0x0100000c) @ 0x00000000
ACPI: PM-Timer IO Port: 0xef08
Built 1 zonelists
Initializing CPU#0
Kernel command line: BOOT_IMAGE=GentooOld ro root=303 elevator=cfq resume=/dev/hda2 acpi=force pci=noacpi
CPU 0 irqstacks, hard=c03be000 soft=c03bd000
PID hash table entries: 2048 (order: 11, 32768 bytes)
Detected 498.223 MHz processor.
Using pmtmr for high-res timesource
Console: colour dummy device 80x25
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 320984k/327488k available (1901k kernel code, 5944k reserved, 753k data, 124k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 987.13 BogoMIPS (lpj=493568)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383f9ff 00000000 00000000 00000000
CPU: After vendor identify, caps:  0383f9ff 00000000 00000000 00000000
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 256K
CPU: After all inits, caps:        0383f9ff 00000000 00000000 00000040
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: Intel Pentium III (Coppermine) stepping 01
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
ACPI: IRQ9 SCI: Edge set to Level Trigger.
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfd880, last bus=7
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20040816
ACPI: Interpreter enabled
ACPI: Using PIC for interrupt routing
ACPI: Power Resource [PSIO] (on)
ACPI: Embedded Controller [EC0] (gpe 9)
ACPI: Power Resource [PFN0] (off)
ACPI: Power Resource [PVID] (on)
ACPI: Power Resource [PRSD] (off)
ACPI: Power Resource [PDCK] (on)
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Using IRQ router PIIX/ICH [8086/7110] at 0000:00:07.0
Simple Boot Flag at 0x33 set to 0x1
IA-32 Microcode Update Driver: v1.14 <tigran@veritas.com>
Limiting direct PCI/PCI transfers.
PCI: Found IRQ 11 for device 0000:01:00.0
PCI: Sharing IRQ 11 with 0000:00:02.0
PCI: Sharing IRQ 11 with 0000:00:06.0
neofb: mapped io at d4880000
Autodetected internal display
Panel is a 1024x768 color TFT display
neofb: mapped framebuffer at d4b00000
neofb v0.4.2: 4096kB VRAM, using 1024x768, 48.364kHz, 60Hz
Console: switching to colour frame buffer device 128x48
fb0: MagicGraph 256ZX frame buffer device
ACPI: AC Adapter [AC] (on-line)
ACPI: Battery Slot [BAT0] (battery present)
ACPI: Power Button (FF) [PWRF]
ACPI: Lid Switch [LID0]
ACPI: Sleep Button (CM) [SLPB]
ACPI: Fan [FN00] (off)
ACPI: Fan [FN20] (off)
ACPI: Fan [FN60] (off)
ACPI: Fan [FN70] (off)
ACPI: Processor [CPU0] (supports C1 C2 C3, 8 throttling states)
ACPI: Thermal Zone [THM0] (41 C)
ACPI: Thermal Zone [THM2] (37 C)
ACPI: Thermal Zone [THM6] (27 C)
ACPI: Thermal Zone [THM7] (27 C)
ACPI: PS/2 Keyboard Controller [KBD0] at I/O 0x60, 0x64, irq 1
ACPI: PS/2 Mouse Controller [MOU0] at irq 12
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 6 ports, IRQ sharing disabled
acpi_serial_add: no iomem or port address in UAR1 _CRS
io scheduler noop registered
io scheduler cfq registered
ACPI: Floppy Controller [FDC0] at I/O 0x3f0-0x3f5, 0x3f7 irq 6 dma channel 2
Floppy drive(s): fd0 is 1.44M
FDC 0 is a National Semiconductor PC87306
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
PIIX4: IDE controller at PCI slot 0000:00:07.1
PIIX4: chipset revision 1
PIIX4: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0xfcf0-0xfcf7, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0xfcf8-0xfcff, BIOS settings: hdc:DMA, hdd:pio
Probing IDE interface ide0...
hda: IBM-DARA-218000, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: TOSHIBA CD-ROM XM-1902B, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
Probing IDE interface ide2...
ide2: Wait for ready failed before probe !
Probing IDE interface ide3...
ide3: Wait for ready failed before probe !
Probing IDE interface ide4...
ide4: Wait for ready failed before probe !
Probing IDE interface ide5...
ide5: Wait for ready failed before probe !
hda: max request size: 128KiB
hda: 35426160 sectors (18138 MB) w/418KiB Cache, CHS=37488/15/63, UDMA(33)
hda: cache flushes not supported
 hda: hda1 hda2 hda3
hdc: ATAPI 24X CD-ROM drive, 128kB Cache, DMA
Uniform CD-ROM driver Revision: 3.20
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
input: PS/2 Generic Mouse on isa0060/serio1
NET: Registered protocol family 2
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP: Hash tables configured (established 32768 bind 65536)
NET: Registered protocol family 1
NET: Registered protocol family 17
PM: Reading pmdisk image.
swsusp: Resume From Partition: /dev/hda2
<3>swsusp: Invalid partition type.
pmdisk: Error -22 resuming
PM: Resume from disk failed.
ACPI: (supports S0 S1  hwregs-0169: *** Error: Missing Sleep State object
 S4 S5)
ACPI wakeup devices: 
LID0 SLPB PCI0 UAR1 BAT0 USB0 
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 124k freed
kjournald starting.  Commit interval 5 seconds
Adding 491392k swap on /dev/hda2.  Priority:-1 extents:1
EXT3 FS on hda3, internal journal
Linux Kernel Card Services
  options:  [pci] [cardbus] [pm]
PCI: Found IRQ 11 for device 0000:00:02.0
PCI: Sharing IRQ 11 with 0000:00:06.0
PCI: Sharing IRQ 11 with 0000:01:00.0
Yenta: CardBus bridge found at 0000:00:02.0 [1014:0130]
Yenta: Enabling burst memory read transactions
Yenta: Using INTVAL to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket 0000:00:02.0, mfunc 0x00001000, devctl 0x66
spurious 8259A interrupt: IRQ7.
Yenta: ISA IRQ mask 0x04b8, PCI irq 11
Socket status: 30000006
PCI: Found IRQ 11 for device 0000:00:02.1
Yenta: CardBus bridge found at 0000:00:02.1 [1014:0130]
Yenta: Using INTVAL to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket 0000:00:02.1, mfunc 0x00001000, devctl 0x66
Yenta: ISA IRQ mask 0x04b8, PCI irq 11
Socket status: 30000006
Linux agpgart interface v0.100 (c) Dave Jones
PCI: Found IRQ 11 for device 0000:00:06.0
PCI: Sharing IRQ 11 with 0000:00:02.0
PCI: Sharing IRQ 11 with 0000:01:00.0
agpgart: Detected an Intel 440BX Chipset.
agpgart: Maximum main memory to use for agp memory: 262M
agpgart: AGP aperture is 64M @ 0x40000000
USB Universal Host Controller Interface driver v2.2
PCI: Found IRQ 11 for device 0000:00:07.2
uhci_hcd 0000:00:07.2: Intel Corp. 82371AB/EB/MB PIIX4 USB
uhci_hcd 0000:00:07.2: irq 11, io base 0x4000
uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
usb 1-1: new full speed USB device using address 2
hub 1-1:1.0: USB hub found
hub 1-1:1.0: 4 ports detected
usb 1-1.1: new full speed USB device using address 3
drivers/usb/net/pegasus.c: v0.5.12 (2003/06/06):Pegasus/Pegasus II USB Ethernet driver
drivers/usb/net/pegasus.c: intr interval will be changed from 1ms to 128ms
drivers/usb/net/pegasus.c: setup Pegasus II specific registers
eth0: Linksys USB USB100TX
usbcore: registered new driver pegasus
usb 1-1.2: new low speed USB device using address 4
drivers/usb/input/hid-core.c: ctrl urb status -71 received
input: USB HID v1.00 Mouse [USB Mouse] on usb-0000:00:07.2-1.2
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver

[-- Attachment #4: strace-2.6.9-rc4-mm1 --]
[-- Type: text/plain, Size: 19301 bytes --]

execve("/usr/bin/firefox-bin", ["firefox-bin"], [/* 57 vars */]) = 0
uname({sys="Linux", node="maggie", ...}) = 0
brk(0)                                  = 0x80e4000
open("/etc/ld.so.preload", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=40266, ...}) = 0
mmap2(NULL, 40266, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7fe2000
close(3)                                = 0
open("/lib/libdl.so.2", O_RDONLY)       = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\34\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=10964, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7fe1000
mmap2(NULL, 8624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7fde000
mmap2(0xb7fe0000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0xb7fe0000
close(3)                                = 0
open("/lib/libc.so.6", O_RDONLY)        = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0pP\1\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1190544, ...}) = 0
mmap2(NULL, 1121452, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ecc000
mmap2(0xb7fd8000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10b) = 0xb7fd8000
mmap2(0xb7fdc000, 7340, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7fdc000
close(3)                                = 0
set_thread_area({entry_number:-1 -> 6, base_addr:0xb7fe1b00, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
munmap(0xb7fe2000, 40266)               = 0
open("/dev/urandom", O_RDONLY)          = 3
read(3, "\203\17\5\356", 4)             = 4
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
open("/dev/tty", O_RDWR|O_NONBLOCK|O_LARGEFILE) = 3
close(3)                                = 0
open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=38387504, ...}) = 0
mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7ccc000
close(3)                                = 0
brk(0)                                  = 0x80e4000
brk(0x8105000)                          = 0x8105000
getuid32()                              = 1000
getgid32()                              = 100
geteuid32()                             = 1000
getegid32()                             = 100
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
time(NULL)                              = 1097671573
open("/etc/mtab", O_RDONLY)             = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=161, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ccb000
read(3, "/dev/hda3 / ext3 rw,noatime 0 0\n"..., 4096) = 161
close(3)                                = 0
munmap(0xb7ccb000, 4096)                = 0
open("/proc/meminfo", O_RDONLY)         = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ccb000
read(3, "MemTotal:       321280 kB\nMemFre"..., 1024) = 624
close(3)                                = 0
munmap(0xb7ccb000, 4096)                = 0
rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_DFL}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigaction(SIGQUIT, {SIG_IGN}, {SIG_DFL}, 8) = 0
uname({sys="Linux", node="maggie", ...}) = 0
stat64("/home/jesse/tmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64(".", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getpid()                                = 8894
getppid()                               = 8892
getpgrp()                               = 8892
rt_sigaction(SIGCHLD, {0x8076080, [], 0}, {SIG_DFL}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
open("/usr/bin/firefox-bin", O_RDONLY|O_LARGEFILE) = 3
ioctl(3, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbffff328) = -1 ENOTTY (Inappropriate ioctl for device)
_llseek(3, 0, [0], SEEK_CUR)            = 0
read(3, "#!/bin/bash\n#\n# Copyright 1999-2"..., 80) = 80
_llseek(3, 0, [0], SEEK_SET)            = 0
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
dup2(3, 255)                            = 255
close(3)                                = 0
fcntl64(255, F_SETFD, FD_CLOEXEC)       = 0
fcntl64(255, F_GETFL)                   = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat64(255, {st_mode=S_IFREG|0755, st_size=12082, ...}) = 0
_llseek(255, 0, [0], SEEK_CUR)          = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
read(255, "#!/bin/bash\n#\n# Copyright 1999-2"..., 8192) = 8192
open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=21544, ...}) = 0
mmap2(NULL, 21544, PROT_READ, MAP_SHARED, 3, 0) = 0xb7cc6000
close(3)                                = 0
open("/usr/lib/gconv/ISO8859-1.so", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\5\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=6072, ...}) = 0
mmap2(NULL, 8660, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7cc3000
mmap2(0xb7cc5000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7cc5000
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
read(255, "0\n    fi\n  done\n\n  return $retva"..., 8192) = 3890
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
stat64("/opt/firefox/firefox-bin", {st_mode=S_IFREG|0755, st_size=9735896, ...}) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
pipe([3, 4])                            = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
_llseek(255, -23, [12059], SEEK_CUR)    = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fe1b48) = 8895
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD (Child exited) @ 0 (0) ---
waitpid(-1, [WIFEXITED(s) && WEXITSTATUS(s) == 0], WNOHANG) = 8895
waitpid(-1, 0xbfffe4f4, WNOHANG)        = -1 ECHILD (No child processes)
sigreturn()                             = ? (mask now [])
rt_sigaction(SIGCHLD, {0x8076080, [], 0}, {0x8076080, [], 0}, 8) = 0
close(4)                                = 0
read(3, "", 128)                        = 0
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigaction(SIGINT, {0x80750c0, [], 0}, {SIG_DFL}, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL}, {0x80750c0, [], 0}, 8) = 0
stat64(".", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/usr/bin/killall", {st_mode=S_IFREG|0755, st_size=13688, ...}) = 0
open("/proc/sys/kernel/ngroups_max", O_RDONLY) = 3
read(3, "65536\n", 31)                  = 6
close(3)                                = 0
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7c82000
getgroups32(65536, [10, 18, 100])       = 3
stat64("/usr/bin/killall", {st_mode=S_IFREG|0755, st_size=13688, ...}) = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fe1b48) = 8898
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD (Child exited) @ 0 (0) ---
waitpid(-1, [WIFEXITED(s) && WEXITSTATUS(s) == 0], WNOHANG) = 8898
waitpid(-1, 0xbfffe6b4, WNOHANG)        = -1 ECHILD (No child processes)
sigreturn()                             = ? (mask now [])
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigaction(SIGINT, {0x80750c0, [], 0}, {SIG_DFL}, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL}, {0x80750c0, [], 0}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
pipe([3, 4])                            = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [CHLD], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fe1b48) = 8899
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
close(4)                                = 0
close(4)                                = -1 EBADF (Bad file descriptor)
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [CHLD], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fe1b48) = 8900
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigaction(SIGINT, {0x80750c0, [], 0}, {SIG_DFL}, 8) = 0
waitpid(-1, [WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV], 0) = 8899
waitpid(-1, [WIFEXITED(s) && WEXITSTATUS(s) == 1], 0) = 8900
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL}, {0x80750c0, [], 0}, 8) = 0
close(3)                                = -1 EBADF (Bad file descriptor)
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD (Child exited) @ 0 (0) ---
waitpid(-1, 0xbfffe634, WNOHANG)        = -1 ECHILD (No child processes)
sigreturn()                             = ? (mask now [])
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
pipe([3, 4])                            = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fe1b48) = 8901
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGCHLD, {0x8076080, [], 0}, {0x8076080, [], 0}, 8) = 0
close(4)                                = 0
read(3, "", 128)                        = 0
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigaction(SIGINT, {0x80750c0, [], 0}, {SIG_DFL}, 8) = 0
waitpid(-1, [WIFEXITED(s) && WEXITSTATUS(s) == 0], 0) = 8901
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD (Child exited) @ 0 (0) ---
waitpid(-1, 0xbfffe124, WNOHANG)        = -1 ECHILD (No child processes)
sigreturn()                             = ? (mask now [])
rt_sigaction(SIGINT, {SIG_DFL}, {0x80750c0, [], 0}, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
fcntl64(1, F_GETFD)                     = 0
fcntl64(1, F_DUPFD, 10)                 = 10
fcntl64(1, F_GETFD)                     = 0
fcntl64(10, F_SETFD, FD_CLOEXEC)        = 0
dup2(2, 1)                              = 1
fcntl64(2, F_GETFD)                     = 0
fstat64(1, {st_mode=S_IFREG|0600, st_size=13338, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7c81000
write(1, "No running windows found\n", 25No running windows found
) = 25
dup2(10, 1)                             = 1
fcntl64(10, F_GETFD)                    = 0x1 (flags FD_CLOEXEC)
close(10)                               = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
open("/home/jesse/.firefox/", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = -1 ENOENT (No such file or directory)
open("/home/jesse/.firefox/", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = -1 ENOENT (No such file or directory)
open("/home/jesse/.mozilla/firefox/", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = 3
fstat64(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
getdents64(3, /* 5 entries */, 4096)    = 152
getdents64(3, /* 0 entries */, 4096)    = 0
close(3)                                = 0
stat64("/home/jesse/.mozilla/firefox/pluginreg.dat", {st_mode=S_IFREG|0600, st_size=527, ...}) = 0
stat64("/home/jesse/.mozilla/firefox/default.eie", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
lstat64("/home/jesse/.mozilla/firefox/default.eie/compreg.dat", {st_mode=S_IFREG|0644, st_size=145028, ...}) = 0
stat64("/home/jesse/.mozilla/firefox/profiles.ini", {st_mode=S_IFREG|0644, st_size=89, ...}) = 0
open("/home/jesse/.mozilla/firefox/", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = 3
fstat64(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
getdents64(3, /* 5 entries */, 4096)    = 152
getdents64(3, /* 0 entries */, 4096)    = 0
close(3)                                = 0
stat64("/home/jesse/.mozilla/firefox/pluginreg.dat", {st_mode=S_IFREG|0600, st_size=527, ...}) = 0
stat64("/home/jesse/.mozilla/firefox/default.eie", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
lstat64("/home/jesse/.mozilla/firefox/default.eie/chrome.rdf", 0xbfffe9a0) = -1 ENOENT (No such file or directory)
stat64("/home/jesse/.mozilla/firefox/profiles.ini", {st_mode=S_IFREG|0644, st_size=89, ...}) = 0
stat64("/home/jesse/.firefox/*/compreg.dat", 0xbfffe930) = -1 ENOENT (No such file or directory)
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
stat64("/home/jesse/.firefox/*/chrome.rdf", 0xbfffe930) = -1 ENOENT (No such file or directory)
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
stat64("/home/jesse/.mozilla/firefox/default.eie/compreg.dat", {st_mode=S_IFREG|0644, st_size=145028, ...}) = 0
stat64("/home/jesse/.mozilla/firefox/default.eie/compreg.dat", {st_mode=S_IFREG|0644, st_size=145028, ...}) = 0
stat64("/opt/firefox/firefox-bin", {st_mode=S_IFREG|0755, st_size=9735896, ...}) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
stat64("/home/jesse/.mozilla/firefox/*/chrome.rdf", 0xbfffe930) = -1 ENOENT (No such file or directory)
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fe1b48) = 8904
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigaction(SIGINT, {0x80750c0, [], 0}, {SIG_DFL}, 8) = 0
waitpid(-1, [WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV], 0) = 8904
fstat64(2, {st_mode=S_IFREG|0600, st_size=17525, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7c80000
open("/usr/share/locale/locale.alias", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=2586, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7c7f000
read(3, "# Locale name alias data base.\n#"..., 4096) = 2586
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0xb7c7f000, 4096)                = 0
open("/usr/share/locale/en_CA/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
write(2, "/usr/bin/firefox-bin: line 392: "..., 75/usr/bin/firefox-bin: line 392:  8904 Segmentation fault      $mozbin "$@"
) = 75
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [CHLD], 8) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
--- SIGCHLD (Child exited) @ 0 (0) ---
waitpid(-1, 0xbfffe7f4, WNOHANG)        = -1 ECHILD (No child processes)
sigreturn()                             = ? (mask now [])
rt_sigaction(SIGINT, {SIG_DFL}, {0x80750c0, [], 0}, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
munmap(0xb7c80000, 4096)                = 0
munmap(0xb7c81000, 4096)                = 0
exit_group(0)                           = ?

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

* Re: 2.6.9-rc4-mm1
  2004-10-13  7:42 ` 2.6.9-rc4-mm1 Wen-chien Jesse Sung
@ 2004-10-13  8:16   ` Hideo AOKI
  0 siblings, 0 replies; 61+ messages in thread
From: Hideo AOKI @ 2004-10-13  8:16 UTC (permalink / raw)
  To: Wen-chien Jesse Sung; +Cc: Andrew Morton, linux-kernel

Wen-chien Jesse Sung wrote:

> kernel/sysctl.c does not compile if CONFIG_SWAP=n.
> 
> --- 2.6.9-rc4-mm1/kernel/sysctl.c  (revision 16)
> +++ 2.6.9-rc4-mm1/kernel/sysctl.c  (local)
> @@ -813,6 +813,7 @@
>  		.mode		= 0644,
>  		.proc_handler	= &proc_dointvec,
>  	},
> +#ifdef CONFIG_SWAP
>  	{
>  		.ctl_name	= VM_SWAP_TOKEN_TIMEOUT,
>  		.procname	= "swap_token_timeout",
> @@ -822,6 +823,7 @@
>  		.proc_handler	= &proc_dointvec_jiffies,
>  		.strategy	= &sysctl_jiffies,
>  	},
> +#endif
>  	{ .ctl_name = 0 }
>  };

Hello, Wen-chien

Your fix is correct.

Thank you. 

Hideo AOKI

Systems Development Laboratory, Hitachi, Ltd.


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (10 preceding siblings ...)
  2004-10-11 18:51 ` 2.6.9-rc4-mm1 Brice Goglin
@ 2004-10-13  7:42 ` Wen-chien Jesse Sung
  2004-10-13  8:16   ` 2.6.9-rc4-mm1 Hideo AOKI
  2004-10-13 13:07 ` 2.6.9-rc4-mm1 Jesse Stockall
  2004-10-14  4:42 ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
  13 siblings, 1 reply; 61+ messages in thread
From: Wen-chien Jesse Sung @ 2004-10-13  7:42 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Hideo AOKI

Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/

Hi Andrew,

kernel/sysctl.c does not compile if CONFIG_SWAP=n.

--- 2.6.9-rc4-mm1/kernel/sysctl.c  (revision 16)
+++ 2.6.9-rc4-mm1/kernel/sysctl.c  (local)
@@ -813,6 +813,7 @@
 		.mode		= 0644,
 		.proc_handler	= &proc_dointvec,
 	},
+#ifdef CONFIG_SWAP
 	{
 		.ctl_name	= VM_SWAP_TOKEN_TIMEOUT,
 		.procname	= "swap_token_timeout",
@@ -822,6 +823,7 @@
 		.proc_handler	= &proc_dointvec_jiffies,
 		.strategy	= &sysctl_jiffies,
 	},
+#endif
 	{ .ctl_name = 0 }
 };
 
 

-- 
Best Regards,
Wen-chien Jesse Sung


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 19:55   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 21:52     ` 2.6.9-rc4-mm1 Andi Kleen
@ 2004-10-12 14:24     ` Zwane Mwaikambo
  1 sibling, 0 replies; 61+ messages in thread
From: Zwane Mwaikambo @ 2004-10-12 14:24 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Andi Kleen, Linux Kernel, Ingo Molnar

On Mon, 11 Oct 2004, Andrew Morton wrote:

> > allow-x86_64-to-reenable-interrupts-on-contention.patch
> >   Allow x86_64 to reenable interrupts on contention
> 
> IIRC Andi made skeptical noises about this one.

Yes he did (although he did say it would be ok if spinlocks were made 
out of line to make up for the text size increase in the spinlock 
assembly) and Ingo said his preempt_enable on contention spinlock changes 
should have the same effect, however how about the case where we hold a 
lock above the contended one (so preempt is disabled) and interrupts enabled? 
At least with this we still process interrupts, plus it can coexist with 
the preempt friendly spinlock changes. Ingo?

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

* Re: 2.6.9-rc4-mm1
@ 2004-10-12  4:07 Paul Blazejowski
  0 siblings, 0 replies; 61+ messages in thread
From: Paul Blazejowski @ 2004-10-12  4:07 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML


[-- Attachment #1.1: Type: text/plain, Size: 2593 bytes --]

Andrew,

I noticed weirdness with ALSA under 2.6.9-rc4-mm1 (and all mm's under
2.6.9-rc3).

Upon starting GNOME/KDE i get /dev/dsp no such device but the ALSA
modules are loaded for the nForce2 onboard audio snd_intel8x0 and udev
creates /dev/snd/* but not the dsp/audio links which AFAIK worked under
2.6.9-rc2-mm4 kernel.

lsmod output:

snd_pcm_oss            50664  0
snd_mixer_oss          18112  1 snd_pcm_oss
snd_intel8x0           28964  2
snd_ac97_codec         73888  1 snd_intel8x0
snd_pcm                86664  3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec
snd_timer              22596  1 snd_pcm
snd                    48100  10
snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
soundcore               7520  1 snd
snd_page_alloc          7624  2 snd_intel8x0,snd_pcm

lspci output:

00:05.0 Multimedia audio controller: nVidia Corporation nForce
MultiMedia audio [Via VT82C686B] (rev a2)
        Subsystem: nVidia Corporation: Unknown device 0c11
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
ParErr- Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0 (250ns min, 3000ns max)
        Interrupt: pin A routed to IRQ 5
        Region 0: Memory at ee000000 (32-bit, non-prefetchable)
[size=512K]
        Capabilities: <available only to root>

00:06.0 Multimedia audio controller: nVidia Corporation nForce2 AC97
Audio Controler (MCP) (rev a1)
        Subsystem: nVidia Corporation: Unknown device 4144
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
ParErr- Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0 (500ns min, 1250ns max)
        Interrupt: pin A routed to IRQ 21
        Region 0: I/O ports at e400 [size=256]
        Region 1: I/O ports at d000 [size=128]
        Region 2: Memory at ee080000 (32-bit, non-prefetchable)
[size=4K]
        Capabilities: <available only to root>

dmesg snip:

ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 21
ACPI: PCI interrupt 0000:00:06.0[A] -> GSI 21 (level, high) -> IRQ 21
PCI: Setting latency timer of device 0000:00:06.0 to 64
intel8x0_measure_ac97_clock: measured 49682 usecs
intel8x0: clocking to 47379

I noticed no errors or warnings other than /dev/dsp no such device.It
makes me wonder if there's been in kernel ALSA changes that could cause
this?

Attached is my kernel's .config

Regards,

Paul B.

[-- Attachment #1.2: .config --]
[-- Type: text/plain, Size: 33700 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.9-rc4-mm1
# Mon Oct 11 14:10:28 2004
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_BROKEN_ON_SMP=y

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_LOG_BUF_SHIFT=16
CONFIG_HOTPLUG=y
# CONFIG_KOBJECT_UEVENT is not set
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SHMEM=y
# CONFIG_TINY_SHMEM is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_KMOD=y

#
# Processor type and features
#
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_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_MK6 is not set
CONFIG_MK7=y
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_RWSEM_XCHGADD_ALGORITHM=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_SMP is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
CONFIG_X86_UP_APIC=y
CONFIG_X86_UP_IOAPIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_X86_MCE_P4THERMAL=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_MICROCODE is not set
CONFIG_X86_MSR=m
CONFIG_X86_CPUID=m

#
# Firmware Drivers
#
CONFIG_EDD=y
# CONFIG_EDD_SKIP_MBR is not set
# CONFIG_NOHIGHMEM is not set
CONFIG_HIGHMEM4G=y
# CONFIG_HIGHMEM64G is not set
CONFIG_HIGHMEM=y
CONFIG_HIGHPTE=y
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
CONFIG_HAVE_DEC_LOCK=y
# CONFIG_REGPARM is not set

#
# Performance-monitoring counters support
#
# CONFIG_PERFCTR is not set
# CONFIG_KEXEC is not set

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
CONFIG_SOFTWARE_SUSPEND=y
CONFIG_PM_STD_PARTITION="/dev/sda7"

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_THINKPAD is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUS=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y
# CONFIG_X86_PM_TIMER is not set

#
# APM (Advanced Power Management) BIOS Support
#
# CONFIG_APM is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ 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_PCI_MSI is not set
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set

#
# PCMCIA/CardBus support
#
# CONFIG_PCMCIA is not set

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_MISC=y

#
# 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

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_PC_CML1=m
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
CONFIG_PARPORT_PC_SUPERIO=y
# CONFIG_PARPORT_OTHER is not set
CONFIG_PARPORT_1284=y

#
# Plug and Play support
#

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
# CONFIG_PARIDE 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_LOOP=m
CONFIG_BLK_DEV_CRYPTOLOOP=m
CONFIG_BLK_DEV_NBD=m
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=8192
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_LBD=y
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
CONFIG_CDROM_PKTCDVD_WCACHE=y

#
# ATA/ATAPI/MFM/RLL support
#
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=m
# CONFIG_BLK_DEV_IDETAPE is not set
CONFIG_BLK_DEV_IDEFLOPPY=m
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_IDE_TASK_IOCTL is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
# CONFIG_BLK_DEV_CMD640 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# 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_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX 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_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y

#
# 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=m
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=m

#
# 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

#
# SCSI Transport Attributes
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_ACARD is not set
CONFIG_SCSI_ITERAID=y
# CONFIG_SCSI_AACRAID is not set
CONFIG_SCSI_AIC7XXX=y
CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
CONFIG_AIC7XXX_RESET_DELAY_MS=15000
# CONFIG_AIC7XXX_DEBUG_ENABLE is not set
CONFIG_AIC7XXX_DEBUG_MASK=0
# CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
CONFIG_SCSI_SATA=y
# CONFIG_SCSI_SATA_SVW is not set
# CONFIG_SCSI_ATA_PIIX is not set
# CONFIG_SCSI_SATA_NV is not set
# CONFIG_SCSI_SATA_PROMISE is not set
# CONFIG_SCSI_SATA_SX4 is not set
CONFIG_SCSI_SATA_SIL=m
# CONFIG_SCSI_SATA_SIS is not set
# CONFIG_SCSI_SATA_ULI is not set
# CONFIG_SCSI_SATA_VIA is not set
# CONFIG_SCSI_SATA_VITESSE is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO 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_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLOGIC_1280_1040 is not set
CONFIG_SCSI_QLA2XXX=y
# CONFIG_SCSI_QLA21XX is not set
# CONFIG_SCSI_QLA22XX is not set
# CONFIG_SCSI_QLA2300 is not set
# CONFIG_SCSI_QLA2322 is not set
# CONFIG_SCSI_QLA6312 is not set
# CONFIG_SCSI_QLA6322 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

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
# CONFIG_BLK_DEV_MD is not set
CONFIG_BLK_DEV_DM=y
CONFIG_DM_CRYPT=y
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_ZERO is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
CONFIG_IEEE1394=m

#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
# CONFIG_IEEE1394_OUI_DB is not set
CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y
CONFIG_IEEE1394_CONFIG_ROM_IP1394=y

#
# Device Drivers
#
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m

#
# Protocol Drivers
#
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_SBP2=m
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
CONFIG_IEEE1394_CMP=m
CONFIG_IEEE1394_AMDTP=m

#
# I2O device support
#
CONFIG_I2O=m
# CONFIG_I2O_CONFIG is not set
CONFIG_I2O_BLOCK=m
CONFIG_I2O_SCSI=m
CONFIG_I2O_PROC=m

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# 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=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_TUNNEL is not set
CONFIG_IPV6=m
# CONFIG_IPV6_PRIVACY is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_NETFILTER is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
CONFIG_IP_SCTP=m
# CONFIG_SCTP_DBG_MSG is not set
# CONFIG_SCTP_DBG_OBJCNT is not set
# CONFIG_SCTP_HMAC_NONE is not set
# CONFIG_SCTP_HMAC_SHA1 is not set
CONFIG_SCTP_HMAC_MD5=y
# 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_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

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

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_KGDBOE is not set
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_RX is not set
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_NETDEVICES=y
CONFIG_DUMMY=m
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set

#
# Tulip family network device support
#
# CONFIG_NET_TULIP 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 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

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
CONFIG_E1000=m
CONFIG_E1000_NAPI=y
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SK98LIN is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP 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=m

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# 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=m
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=m
# CONFIG_INPUT_EVBUG is not set

#
# Input I/O drivers
#
CONFIG_GAMEPORT=m
CONFIG_SOUND_GAMEPORT=m
CONFIG_GAMEPORT_NS558=m
# CONFIG_GAMEPORT_L4 is not set
CONFIG_GAMEPORT_EMU10K1=m
# CONFIG_GAMEPORT_VORTEX is not set
# CONFIG_GAMEPORT_FM801 is not set
# CONFIG_GAMEPORT_CS461x is not set
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW 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_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_VSXXXAA is not set
CONFIG_INPUT_JOYSTICK=y
CONFIG_JOYSTICK_ANALOG=m
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
CONFIG_JOYSTICK_SIDEWINDER=m
# CONFIG_JOYSTICK_TMDC is not set
CONFIG_JOYSTICK_IFORCE=m
CONFIG_JOYSTICK_IFORCE_USB=y
# CONFIG_JOYSTICK_IFORCE_232 is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDDLER is not set
# CONFIG_JOYSTICK_DB9 is not set
# CONFIG_JOYSTICK_GAMECON is not set
# CONFIG_JOYSTICK_TURBOGRAFX is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

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

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
# CONFIG_SERIAL_8250_ACPI is not set
CONFIG_SERIAL_8250_NR_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 is not set
# CONFIG_SERIAL_8250_MULTIPORT is not set
# CONFIG_SERIAL_8250_RSA is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=512
CONFIG_PRINTER=m
CONFIG_LP_CONSOLE=y
CONFIG_PPDEV=m
# CONFIG_TIPAR is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
CONFIG_NVRAM=m
CONFIG_RTC=m
# CONFIG_GEN_RTC is not set
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=m
# 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_INTEL_MCH is not set
CONFIG_AGP_NVIDIA=m
# 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 is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set

#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
# 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_ISA is not set
CONFIG_I2C_NFORCE2=m
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 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_STUB is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Hardware Sensors Chip support
#
CONFIG_I2C_SENSOR=m
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_IT87 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_LM90 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_VIA686A is not set
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83L785TS=m
CONFIG_SENSORS_W83627HF=m

#
# Other I2C Chip support
#
CONFIG_SENSORS_EEPROM=m
# CONFIG_SENSORS_PCF8574 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_SENSORS_RTC8564 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

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
CONFIG_FB_VESA=y
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I810 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY 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_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
CONFIG_LOGO=y
CONFIG_LOGO_LINUX_MONO=y
CONFIG_LOGO_LINUX_VGA16=y
CONFIG_LOGO_LINUX_CLUT224=y

#
# Sound
#
CONFIG_SOUND=m

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_RTCTIMER=m
CONFIG_SND_VERBOSE_PRINTK=y
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
# 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_AC97_CODEC=m
# 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_CS46XX is not set
# CONFIG_SND_CS4281 is not set
CONFIG_SND_EMU10K1=m
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI 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_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VX222 is not set

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

#
# Open Sound System
#
CONFIG_SOUND_PRIME=m
# CONFIG_SOUND_BT878 is not set
# CONFIG_SOUND_CMPCI is not set
# CONFIG_SOUND_EMU10K1 is not set
# CONFIG_SOUND_FUSION is not set
# CONFIG_SOUND_CS4281 is not set
# CONFIG_SOUND_ES1370 is not set
# CONFIG_SOUND_ES1371 is not set
# CONFIG_SOUND_ESSSOLO1 is not set
# CONFIG_SOUND_MAESTRO is not set
# CONFIG_SOUND_MAESTRO3 is not set
# CONFIG_SOUND_ICH is not set
# CONFIG_SOUND_SONICVIBES is not set
# CONFIG_SOUND_TRIDENT is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
# CONFIG_SOUND_VIA82CXXX is not set
CONFIG_SOUND_OSS=m
CONFIG_SOUND_TRACEINIT=y
# CONFIG_SOUND_DMAP is not set
# CONFIG_SOUND_AD1816 is not set
# CONFIG_SOUND_AD1889 is not set
# CONFIG_SOUND_SGALAXY is not set
# CONFIG_SOUND_ADLIB is not set
# CONFIG_SOUND_ACI_MIXER is not set
# CONFIG_SOUND_CS4232 is not set
# CONFIG_SOUND_SSCAPE is not set
# CONFIG_SOUND_GUS is not set
# CONFIG_SOUND_VMIDI is not set
# CONFIG_SOUND_TRIX is not set
# CONFIG_SOUND_MSS is not set
# CONFIG_SOUND_MPU401 is not set
# CONFIG_SOUND_NM256 is not set
# CONFIG_SOUND_MAD16 is not set
# CONFIG_SOUND_PAS is not set
# CONFIG_SOUND_PSS is not set
# CONFIG_SOUND_SB is not set
# CONFIG_SOUND_AWE32_SYNTH is not set
# CONFIG_SOUND_WAVEFRONT is not set
# CONFIG_SOUND_MAUI is not set
# CONFIG_SOUND_YM3812 is not set
# CONFIG_SOUND_OPL3SA1 is not set
# CONFIG_SOUND_OPL3SA2 is not set
# CONFIG_SOUND_YMFPCI is not set
# CONFIG_SOUND_UART6850 is not set
# CONFIG_SOUND_AEDSP16 is not set
# CONFIG_SOUND_TVMIXER is not set
# CONFIG_SOUND_ALI5455 is not set
# CONFIG_SOUND_FORTE is not set
# CONFIG_SOUND_RME96XX is not set
# CONFIG_SOUND_AD1980 is not set

#
# USB support
#
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set

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

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_EHCI_SPLIT_ISO=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_OHCI_HCD=m
CONFIG_USB_UHCI_HCD=m

#
# USB Device Class drivers
#
CONFIG_USB_AUDIO=m
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
CONFIG_USB_ACM=m
CONFIG_USB_PRINTER=m
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_RW_DETECT=y
# 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_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set

#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
CONFIG_HID_FF=y
CONFIG_HID_PID=y
CONFIG_LOGITECH_FF=y
CONFIG_THRUSTMASTER_FF=y
CONFIG_USB_HIDDEV=y

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_EGALAX is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set

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

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set

#
# Video4Linux support is needed for USB Multimedia device support
#

#
# USB Network adaptors
#
# 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 is not set

#
# USB port drivers
#
# CONFIG_USB_USS720 is not set

#
# 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_TIGL 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_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_TEST is not set

#
# USB ATM/DSL drivers
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# File systems
#
CONFIG_EXT2_FS=m
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
# CONFIG_EXT2_FS_SECURITY is not set
# CONFIG_EXT3_FS is not set
# CONFIG_JBD is not set
CONFIG_FS_MBCACHE=m
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_XFS_FS=y
CONFIG_XFS_RT=y
CONFIG_XFS_QUOTA=y
# CONFIG_XFS_SECURITY is not set
CONFIG_XFS_POSIX_ACL=y
CONFIG_MINIX_FS=m
CONFIG_ROMFS_FS=m
CONFIG_QUOTA=y
CONFIG_QFMT_V1=m
CONFIG_QFMT_V2=m
CONFIG_QUOTACTL=y
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y

#
# Caches
#
CONFIG_FSCACHE=m
CONFIG_CACHEFS=m

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=m
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y

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

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
# CONFIG_DEVFS_FS is not set
CONFIG_DEVPTS_FS_XATTR=y
# CONFIG_DEVPTS_FS_SECURITY is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_RAMFS=y

#
# 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=m
# 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=m
# CONFIG_UFS_FS_WRITE is not set

#
# Network File Systems
#
CONFIG_NFS_FS=m
CONFIG_NFS_V3=y
CONFIG_NFS_V4=y
CONFIG_NFS_DIRECTIO=y
CONFIG_NFSD=m
CONFIG_NFSD_V3=y
CONFIG_NFSD_V4=y
CONFIG_NFSD_TCP=y
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=m
CONFIG_SUNRPC=m
CONFIG_SUNRPC_GSS=m
CONFIG_RPCSEC_GSS_KRB5=m
# CONFIG_RPCSEC_GSS_SPKM3 is not set
CONFIG_SMB_FS=m
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
CONFIG_CIFS_XATTR=y
# CONFIG_CIFS_POSIX 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=m
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=m
# 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=m
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=m
CONFIG_NLS_ISO8859_1=m
CONFIG_NLS_ISO8859_2=m
# 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=m

#
# Profiling support
#
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_PREEMPT is not set
# CONFIG_DEBUG_HIGHMEM is not set
# CONFIG_DEBUG_INFO is not set
# CONFIG_FRAME_POINTER is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_KPROBES is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_4KSTACKS=y
# CONFIG_SCHEDSTATS is not set
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y
# CONFIG_KGDB is not set

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

#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=m
# 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_DES=m
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_SERPENT 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_DEFLATE is not set
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_TEST is not set

#
# Library routines
#
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC32 is not set
# CONFIG_LIBCRC32C is not set
CONFIG_ZLIB_INFLATE=m
CONFIG_GENERIC_HARDIRQS=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_PC=y

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 21:58   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 22:10     ` 2.6.9-rc4-mm1 Tom Rini
  2004-10-11 23:14     ` 2.6.9-rc4-mm1 Thayne Harbaugh
@ 2004-10-12  0:32     ` Jack Byer
  2 siblings, 0 replies; 61+ messages in thread
From: Jack Byer @ 2004-10-12  0:32 UTC (permalink / raw)
  To: linux-kernel

Even thought the help for CONFIG_INITRAMFS_SOURCE says to leave blank, I 
was eventually able to get it to compile by setting 
CONFIG_INITRAMFS_SOURCE="/usr/src/linux/usr/initramfs_list".

I thought about it later and maybe having KBUILD_OUTPUT set caused the 
problem in the first place.

Unfortunately, I couldn't test this because I made my system unbootable 
with a new ivtv module :(

Andrew Morton wrote:

 > Please don't remove me from Cc:
 >
 > Jack Byer <ojbyer@usa.net> wrote:
 >
 >> When I try to compile this kernel, I get the following error:
 >>
 >>   Using /usr/src/linux-2.6.9-rc4-mm1 as source for kernel
 >>   CHK     include/linux/version.h
 >> make[2]: `arch/i386/kernel/asm-offsets.s' is up to date.
 >>   CHK     include/asm-i386/asm_offsets.h
 >>   CHK     include/linux/compile.h
 >>   GEN_INITRAMFS_LIST usr/initramfs_list
 >> Using shipped usr/initramfs_list
 >>   CPIO    usr/initramfs_data.cpio
 >> ERROR: unable to open 'usr/initramfs_list': No such file or directory
 >
 >
 >
 > You need to create usr/initramfs_list.
 >
 > Thayne, some documentation would be nice.
 >


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 21:58   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 22:10     ` 2.6.9-rc4-mm1 Tom Rini
@ 2004-10-11 23:14     ` Thayne Harbaugh
  2004-10-12  0:32     ` 2.6.9-rc4-mm1 Jack Byer
  2 siblings, 0 replies; 61+ messages in thread
From: Thayne Harbaugh @ 2004-10-11 23:14 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Jack Byer, linux-kernel

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

On Mon, 2004-10-11 at 14:58 -0700, Andrew Morton wrote:
> Please don't remove me from Cc:
> 
> Jack Byer <ojbyer@usa.net> wrote:
> >
> > When I try to compile this kernel, I get the following error:
> > 
> >    Using /usr/src/linux-2.6.9-rc4-mm1 as source for kernel
> >    CHK     include/linux/version.h
> > make[2]: `arch/i386/kernel/asm-offsets.s' is up to date.
> >    CHK     include/asm-i386/asm_offsets.h
> >    CHK     include/linux/compile.h
> >    GEN_INITRAMFS_LIST usr/initramfs_list
> > Using shipped usr/initramfs_list
> >    CPIO    usr/initramfs_data.cpio
> > ERROR: unable to open 'usr/initramfs_list': No such file or directory
> 
> You need to create usr/initramfs_list.

Err, there should be a default usr/initramfs_list - was this deleted by
the patch that added the initramfs_list generation script?  It would be
nice to see the V=1 output.  There might also be a problem with O=<dir>
here so that the default usr/initramfs_list isn't used.

> Thayne, some documentation would be nice.

You are, of course correct.  Where do you suggest that I put the
documentation?  Should I make changes to
Documentation/early-userspace/README?

BTW, I have to make an emergency trip for the rest of the week and I may
not get to this until next week.


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 19:13   ` 2.6.9-rc4-mm1 Andrew Morton
@ 2004-10-11 22:57     ` Nick Piggin
  0 siblings, 0 replies; 61+ messages in thread
From: Nick Piggin @ 2004-10-11 22:57 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Andrew Morton wrote:
> Nick Piggin <nickpiggin@yahoo.com.au> wrote:
> 
>>>+no-wild-kswapd-2.patch
>>
>>Is this an improvement?
> 
> 
> Seems to be a wash in my testing.
> 
> 
>>It again decouples the "priority" semantics of
>>the direct and asynch reclaim paths.
> 
> 
> What's that mean?
> 

Before those patches, priority means what fraction of the lists
have to be scanned to free 32 pages.

Afterwards, it means something significantly different for
balance_pgdat.

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 16:08 ` 2.6.9-rc4-mm1 Jeff Garzik
@ 2004-10-11 22:38   ` Lee Revell
  0 siblings, 0 replies; 61+ messages in thread
From: Lee Revell @ 2004-10-11 22:38 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Andrew Morton, linux-kernel

On Mon, 2004-10-11 at 12:08, Jeff Garzik wrote:
> Andrew Morton wrote:
> > - Added a new bk tree to the -mm lineup: bk-drm-via.patch.  Graphics support
> >   for VIA CPUs.
> 
> VIA motherboards, I presume you mean?
> 

I read that as GPUs.

Lee


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 21:58   ` 2.6.9-rc4-mm1 Andrew Morton
@ 2004-10-11 22:10     ` Tom Rini
  2004-10-11 23:14     ` 2.6.9-rc4-mm1 Thayne Harbaugh
  2004-10-12  0:32     ` 2.6.9-rc4-mm1 Jack Byer
  2 siblings, 0 replies; 61+ messages in thread
From: Tom Rini @ 2004-10-11 22:10 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Jack Byer, linux-kernel, Thayne Harbaugh

On Mon, Oct 11, 2004 at 02:58:38PM -0700, Andrew Morton wrote:
> 
> Please don't remove me from Cc:
> 
> Jack Byer <ojbyer@usa.net> wrote:
> >
> > When I try to compile this kernel, I get the following error:
> > 
> >    Using /usr/src/linux-2.6.9-rc4-mm1 as source for kernel
> >    CHK     include/linux/version.h
> > make[2]: `arch/i386/kernel/asm-offsets.s' is up to date.
> >    CHK     include/asm-i386/asm_offsets.h
> >    CHK     include/linux/compile.h
> >    GEN_INITRAMFS_LIST usr/initramfs_list
> > Using shipped usr/initramfs_list
> >    CPIO    usr/initramfs_data.cpio
> > ERROR: unable to open 'usr/initramfs_list': No such file or directory
> 
> You need to create usr/initramfs_list.
> 
> Thayne, some documentation would be nice.

Was this was O= ?  I could be mis-remembering things, but there is a
default usr/initramfs_list, but when you compile with O=, you don't get
the default list.

-- 
Tom Rini
http://gate.crashing.org/~trini/

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 13:43 ` 2.6.9-rc4-mm1 Jack Byer
@ 2004-10-11 21:58   ` Andrew Morton
  2004-10-11 22:10     ` 2.6.9-rc4-mm1 Tom Rini
                       ` (2 more replies)
  0 siblings, 3 replies; 61+ messages in thread
From: Andrew Morton @ 2004-10-11 21:58 UTC (permalink / raw)
  To: Jack Byer; +Cc: linux-kernel, Thayne Harbaugh


Please don't remove me from Cc:

Jack Byer <ojbyer@usa.net> wrote:
>
> When I try to compile this kernel, I get the following error:
> 
>    Using /usr/src/linux-2.6.9-rc4-mm1 as source for kernel
>    CHK     include/linux/version.h
> make[2]: `arch/i386/kernel/asm-offsets.s' is up to date.
>    CHK     include/asm-i386/asm_offsets.h
>    CHK     include/linux/compile.h
>    GEN_INITRAMFS_LIST usr/initramfs_list
> Using shipped usr/initramfs_list
>    CPIO    usr/initramfs_data.cpio
> ERROR: unable to open 'usr/initramfs_list': No such file or directory

You need to create usr/initramfs_list.

Thayne, some documentation would be nice.

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 19:55   ` 2.6.9-rc4-mm1 Andrew Morton
@ 2004-10-11 21:52     ` Andi Kleen
  2004-10-12 14:24     ` 2.6.9-rc4-mm1 Zwane Mwaikambo
  1 sibling, 0 replies; 61+ messages in thread
From: Andi Kleen @ 2004-10-11 21:52 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Zwane Mwaikambo, ak, linux-kernel

> > allow-x86_64-to-reenable-interrupts-on-contention.patch
> >   Allow x86_64 to reenable interrupts on contention
> 
> IIRC Andi made skeptical noises about this one.

With the out of line spinlocks there is no reason to not apply
it anymore. But I'm still not sure if it actually helps for anything ...

-Andi

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 18:51 ` 2.6.9-rc4-mm1 Brice Goglin
@ 2004-10-11 20:18   ` Adrian Bunk
  0 siblings, 0 replies; 61+ messages in thread
From: Adrian Bunk @ 2004-10-11 20:18 UTC (permalink / raw)
  To: Brice.Goglin; +Cc: Andrew Morton, linux-kernel

On Mon, Oct 11, 2004 at 08:51:48PM +0200, Brice Goglin wrote:

> Hi Andrew,
> 
> The old Gamma DRM driver seems broken.
> (I removed the inter_module_ "deprecated" warnings)

That's why it's marked BROKEN in the Kconfig file (you can't even select 
it unless you did previously choose to disable
  "Select only drivers expected to compile cleanly"
).

> Regards,
> Brice Goglin

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] 61+ messages in thread

* Re: 2.6.9-rc4-mm1
  2004-10-11 15:47 ` 2.6.9-rc4-mm1 Zwane Mwaikambo
  2004-10-11 15:49   ` 2.6.9-rc4-mm1 Andi Kleen
@ 2004-10-11 19:55   ` Andrew Morton
  2004-10-11 21:52     ` 2.6.9-rc4-mm1 Andi Kleen
  2004-10-12 14:24     ` 2.6.9-rc4-mm1 Zwane Mwaikambo
  1 sibling, 2 replies; 61+ messages in thread
From: Andrew Morton @ 2004-10-11 19:55 UTC (permalink / raw)
  To: Zwane Mwaikambo; +Cc: ak, linux-kernel

Zwane Mwaikambo <zwane@linuxpower.ca> wrote:
>
> How about the following?
> 
> remove-lock_section-from-x86_64-spin_lock-asm.patch
>   remove LOCK_SECTION from x86_64 spin_lock asm

OK.

> allow-x86_64-to-reenable-interrupts-on-contention.patch
>   Allow x86_64 to reenable interrupts on contention

IIRC Andi made skeptical noises about this one.

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 11:38 ` 2.6.9-rc4-mm1 Nick Piggin
@ 2004-10-11 19:13   ` Andrew Morton
  2004-10-11 22:57     ` 2.6.9-rc4-mm1 Nick Piggin
  0 siblings, 1 reply; 61+ messages in thread
From: Andrew Morton @ 2004-10-11 19:13 UTC (permalink / raw)
  To: Nick Piggin; +Cc: linux-kernel

Nick Piggin <nickpiggin@yahoo.com.au> wrote:
>
> > +no-wild-kswapd-2.patch
> 
> Is this an improvement?

Seems to be a wash in my testing.

> It again decouples the "priority" semantics of
> the direct and asynch reclaim paths.

What's that mean?

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (9 preceding siblings ...)
  2004-10-11 16:08 ` 2.6.9-rc4-mm1 Jeff Garzik
@ 2004-10-11 18:51 ` Brice Goglin
  2004-10-11 20:18   ` 2.6.9-rc4-mm1 Adrian Bunk
  2004-10-13  7:42 ` 2.6.9-rc4-mm1 Wen-chien Jesse Sung
                   ` (2 subsequent siblings)
  13 siblings, 1 reply; 61+ messages in thread
From: Brice Goglin @ 2004-10-11 18:51 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Hi Andrew,

The old Gamma DRM driver seems broken.
(I removed the inter_module_ "deprecated" warnings)

Regards,
Brice Goglin

  In file included from drivers/char/drm/gamma_drv.c:42:
drivers/char/drm/gamma_context.h: Dans la fonction « 
gamma_context_switch_complete »:
drivers/char/drm/gamma_context.h:193: error: structure has no member 
named `next_buffer'
drivers/char/drm/gamma_context.h:193: error: structure has no member 
named `next_buffer'
In file included from drivers/char/drm/gamma_drv.c:44:
drivers/char/drm/gamma_old_dma.h: Dans la fonction « 
gamma_clear_next_buffer »:
drivers/char/drm/gamma_old_dma.h:40: error: structure has no member 
named `next_buffer'
drivers/char/drm/gamma_old_dma.h:41: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:41: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:41: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:41: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:41: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:41: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:42: error: structure has no member 
named `next_queue'
drivers/char/drm/gamma_old_dma.h:44: error: structure has no member 
named `next_queue'
In file included from drivers/char/drm/gamma_drv.c:46:
drivers/char/drm/drm_drv.h: Dans la fonction « gamma_release »:
drivers/char/drm/drm_drv.h:808: attention : implicit declaration of 
function `gamma_ctxbitmap_free'
make[3]: *** [drivers/char/drm/gamma_drv.o] Erreur 1
make[2]: *** [drivers/char/drm] Erreur 2
make[1]: *** [drivers/char] Erreur 2
make: *** [drivers] Erreur 2

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (8 preceding siblings ...)
  2004-10-11 15:47 ` 2.6.9-rc4-mm1 Zwane Mwaikambo
@ 2004-10-11 16:08 ` Jeff Garzik
  2004-10-11 22:38   ` 2.6.9-rc4-mm1 Lee Revell
  2004-10-11 18:51 ` 2.6.9-rc4-mm1 Brice Goglin
                   ` (3 subsequent siblings)
  13 siblings, 1 reply; 61+ messages in thread
From: Jeff Garzik @ 2004-10-11 16:08 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Andrew Morton wrote:
> - Added a new bk tree to the -mm lineup: bk-drm-via.patch.  Graphics support
>   for VIA CPUs.

VIA motherboards, I presume you mean?

	Jeff



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

* Re: 2.6.9-rc4-mm1
  2004-10-11 15:58     ` 2.6.9-rc4-mm1 Zwane Mwaikambo
@ 2004-10-11 16:01       ` Andi Kleen
  0 siblings, 0 replies; 61+ messages in thread
From: Andi Kleen @ 2004-10-11 16:01 UTC (permalink / raw)
  To: Zwane Mwaikambo; +Cc: Andi Kleen, Andrew Morton, Linux Kernel

On Mon, Oct 11, 2004 at 06:58:01PM +0300, Zwane Mwaikambo wrote:
> On Mon, 11 Oct 2004, Andi Kleen wrote:
> 
> > On Mon, Oct 11, 2004 at 06:47:45PM +0300, Zwane Mwaikambo wrote:
> > > How about the following?
> > > 
> > > remove-lock_section-from-x86_64-spin_lock-asm.patch
> > >   remove LOCK_SECTION from x86_64 spin_lock asm
> > > 
> > > allow-x86_64-to-reenable-interrupts-on-contention.patch
> > >   Allow x86_64 to reenable interrupts on contention
> > > 
> > > The former is a fix.
> > 
> > What does it fix? 
> 
> Well we don't have lock section anymore since the spinlock text is all in 
> the out of line functions. So this was really something i missed in my 
> sweep.

I think the linker handles it anyways, so it's probably not critical
(without that it would slash'n'burn immediately)

-Andi

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 15:49   ` 2.6.9-rc4-mm1 Andi Kleen
@ 2004-10-11 15:58     ` Zwane Mwaikambo
  2004-10-11 16:01       ` 2.6.9-rc4-mm1 Andi Kleen
  0 siblings, 1 reply; 61+ messages in thread
From: Zwane Mwaikambo @ 2004-10-11 15:58 UTC (permalink / raw)
  To: Andi Kleen; +Cc: Andrew Morton, Linux Kernel

On Mon, 11 Oct 2004, Andi Kleen wrote:

> On Mon, Oct 11, 2004 at 06:47:45PM +0300, Zwane Mwaikambo wrote:
> > How about the following?
> > 
> > remove-lock_section-from-x86_64-spin_lock-asm.patch
> >   remove LOCK_SECTION from x86_64 spin_lock asm
> > 
> > allow-x86_64-to-reenable-interrupts-on-contention.patch
> >   Allow x86_64 to reenable interrupts on contention
> > 
> > The former is a fix.
> 
> What does it fix? 

Well we don't have lock section anymore since the spinlock text is all in 
the out of line functions. So this was really something i missed in my 
sweep.


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 15:47 ` 2.6.9-rc4-mm1 Zwane Mwaikambo
@ 2004-10-11 15:49   ` Andi Kleen
  2004-10-11 15:58     ` 2.6.9-rc4-mm1 Zwane Mwaikambo
  2004-10-11 19:55   ` 2.6.9-rc4-mm1 Andrew Morton
  1 sibling, 1 reply; 61+ messages in thread
From: Andi Kleen @ 2004-10-11 15:49 UTC (permalink / raw)
  To: Zwane Mwaikambo; +Cc: Andrew Morton, Andi Kleen, Linux Kernel

On Mon, Oct 11, 2004 at 06:47:45PM +0300, Zwane Mwaikambo wrote:
> How about the following?
> 
> remove-lock_section-from-x86_64-spin_lock-asm.patch
>   remove LOCK_SECTION from x86_64 spin_lock asm
> 
> allow-x86_64-to-reenable-interrupts-on-contention.patch
>   Allow x86_64 to reenable interrupts on contention
> 
> The former is a fix.

What does it fix? 

-Andi

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (7 preceding siblings ...)
  2004-10-11 14:23 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
@ 2004-10-11 15:47 ` Zwane Mwaikambo
  2004-10-11 15:49   ` 2.6.9-rc4-mm1 Andi Kleen
  2004-10-11 19:55   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 16:08 ` 2.6.9-rc4-mm1 Jeff Garzik
                   ` (4 subsequent siblings)
  13 siblings, 2 replies; 61+ messages in thread
From: Zwane Mwaikambo @ 2004-10-11 15:47 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Andi Kleen, Linux Kernel

On Mon, 11 Oct 2004, Andrew Morton wrote:

> - I wasn't going to do any -mm's until after 2.6.9 comes out.  But we need
>   this one so that people who have patches in -mm can check that I haven't
>   failed to push anything critical.  If there's a patch in here which you
>   think should be in 2.6.9, please let me know.

How about the following?

remove-lock_section-from-x86_64-spin_lock-asm.patch
  remove LOCK_SECTION from x86_64 spin_lock asm

allow-x86_64-to-reenable-interrupts-on-contention.patch
  Allow x86_64 to reenable interrupts on contention

The former is a fix.

Thanks,
	Zwane

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 13:17   ` 2.6.9-rc4-mm1 Alan Cox
  2004-10-11 14:23     ` 2.6.9-rc4-mm1 Con Kolivas
@ 2004-10-11 14:30     ` J.A. Magallon
  1 sibling, 0 replies; 61+ messages in thread
From: J.A. Magallon @ 2004-10-11 14:30 UTC (permalink / raw)
  To: Alan Cox; +Cc: Linux Kernel Mailing List


On 2004.10.11, Alan Cox wrote:
> On Llu, 2004-10-11 at 13:30, Con Kolivas wrote:
> > Andrew Morton wrote:
> > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
> > 
> > I have a keyboard problem from 2 things that seem related:
> > 
> > mm1 dmesg:
> > ---
> > ACPI: PS/2 Keyboard Controller [PS2K] at I/O 0x60, 0x64, irq 1
> > i8042.c: Can't read CTR while initializing i8042.
> 
> Intel E7xxx board ? If so you either need the patch I posted ages ago
> (or grab it from a Fedora kernel) or to turn off USB legacy in the BIOS.
> 

My box is not a E7xxx, but a 

00:00.0 Host bridge: Intel Corp. 82875P Memory Controller Hub (rev 02)
00:01.0 PCI bridge: Intel Corp. 82875P Processor to AGP Controller (rev 02)
00:03.0 PCI bridge: Intel Corp. 82875P Processor to PCI to CSA Bridge (rev 02)

and also have problems with USB legacy active in BIOS (erratic PS2 mouse and
so on...)

Perhaps this helps.

--
J.A. Magallon <jamagallon()able!es>     \               Software is like sex:
werewolf!able!es                         \         It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc4-mm1 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #1



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

* Re: 2.6.9-rc4-mm1
@ 2004-10-11 14:30 Albert Cahalan
  0 siblings, 0 replies; 61+ messages in thread
From: Albert Cahalan @ 2004-10-11 14:30 UTC (permalink / raw)
  To: linux-kernel mailing list; +Cc: akpm

Please get these 4 patches into the 2.6.9 release:

distinct-tgid-tid-cpu-usage.patch
  distinct tgid/tid CPU usage

show-aggregate-per-process-counters-in-proc-pid-stat-2.patch
  show aggregate per-process counters in /proc/PID/stat 2

kallsyms-data-size-reduction--lookup-speedup.patch
  kallsyms data size reduction / lookup speedup

fix-process-start-times.patch
  Fix reporting of process start times

BTW, the explanation for ps-shows-wrong-ppid.patch
is messed up. It referrs to a "Thread 3", but there
is no such thread. An explanation in terms of clone()
would also be an improvement.





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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (6 preceding siblings ...)
  2004-10-11 14:22 ` 2.6.9-rc4-mm1 J.A. Magallon
@ 2004-10-11 14:23 ` Eyal Lebedinsky
  2004-10-11 15:47 ` 2.6.9-rc4-mm1 Zwane Mwaikambo
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 61+ messages in thread
From: Eyal Lebedinsky @ 2004-10-11 14:23 UTC (permalink / raw)
  To: linux-kernel

Andrew Morton wrote:
 > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/

 > +i2o-code-beautifying-and-cleanup.patch
 > +i2o-added-support-for-promise-controllers.patch
 > +i2o-new-functions-to-convert-messages-to-a-virtual-address.patch
 > +i2o-correct-error-code-if-bus-is-busy-in-i2o_scsi.patch
 > +i2o-message-conversion-fix-for-le32_to_cpu-parameters.patch
 >
 >  i2o driver update

WARNING: /lib/modules/2.6.9-rc4-mm1/kernel/drivers/message/i2o/i2o_scsi.ko needs unknown symbol i2o_msg_in_to_virt
WARNING: /lib/modules/2.6.9-rc4-mm1/kernel/drivers/message/i2o/i2o_core.ko needs unknown symbol i2o_msg_in_to_virt
WARNING: /lib/modules/2.6.9-rc4-mm1/kernel/drivers/message/i2o/i2o_core.ko needs unknown symbol i2o_msg_out_to_virt
WARNING: /lib/modules/2.6.9-rc4-mm1/kernel/drivers/message/i2o/i2o_block.ko needs unknown symbol i2o_msg_in_to_virt

The references were added in -mm3, but the function is missing.

-- 
Eyal Lebedinsky	 (eyal@eyal.emu.id.au) <http://samba.org/eyal/>

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 13:17   ` 2.6.9-rc4-mm1 Alan Cox
@ 2004-10-11 14:23     ` Con Kolivas
  2004-10-11 14:30     ` 2.6.9-rc4-mm1 J.A. Magallon
  1 sibling, 0 replies; 61+ messages in thread
From: Con Kolivas @ 2004-10-11 14:23 UTC (permalink / raw)
  To: Alan Cox; +Cc: Andrew Morton, Linux Kernel Mailing List

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

Alan Cox wrote:
> On Llu, 2004-10-11 at 13:30, Con Kolivas wrote:
> 
>>Andrew Morton wrote:
>>
>>>ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
>>
>>I have a keyboard problem from 2 things that seem related:
>>
>>mm1 dmesg:
>>---
>>ACPI: PS/2 Keyboard Controller [PS2K] at I/O 0x60, 0x64, irq 1
>>i8042.c: Can't read CTR while initializing i8042.
> 
> 
> Intel E7xxx board ? If so you either need the patch I posted ages ago
> (or grab it from a Fedora kernel) or to turn off USB legacy in the BIOS.

No. ASUS P4P800. USB legacy is off in the BIOS. This is a new bug as of 
recent mms.

00:00.0 Host bridge: Intel Corp. 82845G/GL [Brookdale-G] Chipset Host 
Bridge (rev 02)
00:01.0 PCI bridge: Intel Corp. 82845G/GL [Brookdale-G] Chipset AGP 
Bridge (rev 02)
00:1d.0 USB Controller: Intel Corp. 82801DB USB (Hub #1) (rev 02)
00:1d.1 USB Controller: Intel Corp. 82801DB USB (Hub #2) (rev 02)
00:1d.2 USB Controller: Intel Corp. 82801DB USB (Hub #3) (rev 02)
00:1d.7 USB Controller: Intel Corp. 82801DB USB2 (rev 02)
00:1e.0 PCI bridge: Intel Corp. 82801BA/CA/DB/EB PCI Bridge (rev 82)
00:1f.0 ISA bridge: Intel Corp. 82801DB LPC Interface Controller (rev 02)
00:1f.1 IDE interface: Intel Corp. 82801DB Ultra ATA Storage Controller 
(rev 02)
00:1f.3 SMBus: Intel Corp. 82801DB/DBM SMBus Controller (rev 02)
00:1f.5 Multimedia audio controller: Intel Corp. 82801DB AC'97 Audio 
Controller (rev 02)
01:00.0 VGA compatible controller: nVidia Corporation NV18 [GeForce4 MX 
440 AGP 8x] (rev a4)
02:05.0 Ethernet controller: Broadcom Corporation BCM4401 100Base-T (rev 01)
02:0d.0 Multimedia video controller: Brooktree Corporation Bt878 Video 
Capture (rev 11)
02:0d.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture 
(rev 11)

Con

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (5 preceding siblings ...)
  2004-10-11 13:43 ` 2.6.9-rc4-mm1 Jack Byer
@ 2004-10-11 14:22 ` J.A. Magallon
  2004-10-11 14:23 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 61+ messages in thread
From: J.A. Magallon @ 2004-10-11 14:22 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel


On 2004.10.11, Andrew Morton wrote:
> 
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
> 
> - I wasn't going to do any -mm's until after 2.6.9 comes out.  But we need
>   this one so that people who have patches in -mm can check that I haven't
>   failed to push anything critical.  If there's a patch in here which you
>   think should be in 2.6.9, please let me know.
> 
> - I won't be taking any patches apart from 2.6.9 bugfixes, please.  So I
>   can concentrate on 2.6.9 bugfixes and so you can, too.
> 

Some warnings on build (some inherited from plain -rc4), and a patch still needed
below:

  CC      kernel/module.o
kernel/module.c: In function `who_is_doing_it':
kernel/module.c:1487: warning: ignoring return value of `copy_from_user', declared with attribute warn_unused_result

  CC      fs/binfmt_elf.o
fs/binfmt_elf.c: In function `padzero':
fs/binfmt_elf.c:113: warning: ignoring return value of `clear_user', declared with attribute warn_unused_result
include/asm/uaccess.h: In function `create_elf_tables':
fs/binfmt_elf.c:175: warning: ignoring return value of `__copy_to_user', declared with attribute warn_unused_result
fs/binfmt_elf.c:273: warning: ignoring return value of `copy_to_user', declared with attribute warn_unused_result
fs/binfmt_elf.c: In function `load_elf_binary':
fs/binfmt_elf.c:758: warning: ignoring return value of `clear_user', declared with attribute warn_unused_result
fs/binfmt_elf.c: In function `fill_psinfo':
fs/binfmt_elf.c:1226: warning: ignoring return value of `copy_from_user', declared with attribute warn_unused_result

  CC [M]  drivers/char/agp/backend.o
drivers/char/agp/backend.c: In function `agp_add_bridge':
drivers/char/agp/backend.c:281: warning: `inter_module_register' is deprecated (declared at include/linux/module.h:577)
drivers/char/agp/backend.c: In function `agp_remove_bridge':
drivers/char/agp/backend.c:301: warning: `inter_module_unregister' is deprecated (declared at include/linux/module.h:578)

  CC [M]  drivers/ieee1394/raw1394.o
include/asm/uaccess.h: In function `raw1394_read':
drivers/ieee1394/raw1394.c:446: warning: ignoring return value of `__copy_to_user', declared with attribute warn_unused_result
  CC [M]  drivers/ieee1394/sbp2.o
In file included from drivers/ieee1394/sbp2.c:78:
drivers/ieee1394/sbp2.h:61:1: warning: "ABORT_TASK_SET" redefined
In file included from drivers/ieee1394/../scsi/scsi.h:31,
                 from drivers/ieee1394/sbp2.c:67:
include/scsi/scsi.h:255:1: warning: this is the location of the previous definition
In file included from drivers/ieee1394/sbp2.c:78:
drivers/ieee1394/sbp2.h:62:1: warning: "LOGICAL_UNIT_RESET" redefined
In file included from drivers/ieee1394/../scsi/scsi.h:31,
                 from drivers/ieee1394/sbp2.c:67:
include/scsi/scsi.h:267:1: warning: this is the location of the previous definition

  CC      drivers/scsi/aic7xxx/aic7xxx_osm.o
drivers/scsi/aic7xxx/aic7xxx_osm.c: In function `ahc_linux_register_host':
drivers/scsi/aic7xxx/aic7xxx_osm.c:1746: warning: ignoring return value of `scsi_add_host', declared with attribute warn_unused_result
drivers/scsi/aic7xxx/aic7xxx_osm.c: At top level:
drivers/scsi/aic7xxx/aic7xxx_osm.c:429: warning: 'aic7xxx' defined but not used
drivers/scsi/aic7xxx/aic7xxx_osm.c:435: warning: 'dummy_buffer' defined but not used
  CC      drivers/scsi/aic7xxx/aic7xxx_proc.o
  CC      drivers/scsi/aic7xxx/aic7xxx_osm_pci.o
drivers/scsi/aic7xxx/aic7xxx_osm_pci.c: In function `ahc_linux_pci_dev_probe':
drivers/scsi/aic7xxx/aic7xxx_osm_pci.c:224: warning: large integer implicitly truncated to unsigned type

  CC [M]  net/ipv4/netfilter/ip_tables.o
net/ipv4/netfilter/ip_tables.c: In function `do_replace':
net/ipv4/netfilter/ip_tables.c:1133: warning: ignoring return value of `copy_to_user', declared with attribute warn_unused_result



This cleans the profile optimization, directly for -mm1:

diff -ruN linux-2.6.9-rc3-mm3/include/linux/profile.h linux-2.6.9-rc3-mm3-prof/include/linux/profile.h
--- linux-2.6.9-rc3-mm3/include/linux/profile.h	2004-09-30 09:46:41.000000000 +0200
+++ linux-2.6.9-rc3-mm3-prof/include/linux/profile.h	2004-10-07 19:41:36.254643765 +0200
@@ -8,6 +8,7 @@
 #include <linux/init.h>
 #include <linux/cpumask.h>
 #include <asm/errno.h>
+#include <asm/atomic.h>
 
 #define CPU_PROFILING	1
 #define SCHED_PROFILING	2
@@ -17,8 +18,8 @@
 
 /* init basic kernel profiler */
 void __init profile_init(void);
-void profile_tick(int, struct pt_regs *);
-void profile_hit(int, void *);
+void FASTCALL(__profile_hit(void *));
+
 #ifdef CONFIG_PROC_FS
 void create_prof_cpu_mask(struct proc_dir_entry *);
 #else
@@ -101,6 +102,26 @@
 
 #endif /* CONFIG_PROFILING */
 
+static inline void profile_hit(int type, void *pc)
+{
+	extern int prof_on;
+	extern atomic_t *prof_buffer;
+
+	if (prof_on == type && prof_buffer)
+		__profile_hit(pc);
+}
+
+static inline void profile_tick(int type, struct pt_regs *regs)
+{
+	extern cpumask_t prof_cpu_mask;
+
+	if (type != CPU_PROFILING)
+		return;
+	profile_hook(regs);
+	if (!user_mode(regs) && cpu_isset(smp_processor_id(), prof_cpu_mask))
+		profile_hit(type, (void *)profile_pc(regs));
+}
+
 #endif /* __KERNEL__ */
 
 #endif /* _LINUX_PROFILE_H */
diff -ruN linux-2.6.9-rc3-mm3/kernel/profile.c linux-2.6.9-rc3-mm3-prof/kernel/profile.c
--- linux-2.6.9-rc3-mm3/kernel/profile.c	2004-10-07 14:45:02.176576637 +0200
+++ linux-2.6.9-rc3-mm3-prof/kernel/profile.c	2004-10-07 19:41:36.253643976 +0200
@@ -34,10 +34,10 @@
 #define NR_PROFILE_HIT		(PAGE_SIZE/sizeof(struct profile_hit))
 #define NR_PROFILE_GRP		(NR_PROFILE_HIT/PROFILE_GRPSZ)
 
-static atomic_t *prof_buffer;
+atomic_t *prof_buffer;
 static unsigned long prof_len, prof_shift;
-static int prof_on;
-static cpumask_t prof_cpu_mask = CPU_MASK_ALL;
+int prof_on;
+cpumask_t prof_cpu_mask = CPU_MASK_ALL;
 #ifdef CONFIG_SMP
 static DEFINE_PER_CPU(struct profile_hit *[2], cpu_profile_hits);
 static DEFINE_PER_CPU(int, cpu_profile_flip);
@@ -284,14 +284,12 @@
 	up(&profile_flip_mutex);
 }
 
-void profile_hit(int type, void *__pc)
+void fastcall __profile_hit(void *__pc)
 {
 	unsigned long primary, secondary, flags, pc = (unsigned long)__pc;
 	int i, j, cpu;
 	struct profile_hit *hits;
 
-	if (prof_on != type || !prof_buffer)
-		return;
 	pc = min((pc - (unsigned long)_stext) >> prof_shift, prof_len - 1);
 	i = primary = (pc & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT;
 	secondary = (~(pc << 1) & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT;
@@ -381,25 +379,17 @@
 #define profile_flip_buffers()		do { } while (0)
 #define profile_discard_flip_buffers()	do { } while (0)
 
-inline void profile_hit(int type, void *__pc)
+void profile_hit(int type, void *__pc)
 {
 	unsigned long pc;
 
+	if (prof_on != type || !prof_buffer)
+		return;
 	pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift;
 	atomic_inc(&prof_buffer[min(pc, prof_len - 1)]);
 }
 #endif /* !CONFIG_SMP */
 
-void profile_tick(int type, struct pt_regs *regs)
-{
-	if (type == CPU_PROFILING)
-		profile_hook(regs);
-	if (prof_on != type || !prof_buffer)
-		return;
-	if (!user_mode(regs) && cpu_isset(smp_processor_id(), prof_cpu_mask))
-		profile_hit(type, (void *)profile_pc(regs));
-}
-
 #ifdef CONFIG_PROC_FS
 #include <linux/proc_fs.h>
 #include <asm/uaccess.h>


--
J.A. Magallon <jamagallon()able!es>     \               Software is like sex:
werewolf!able!es                         \         It's better when it's free
Mandrakelinux release 10.1 (Community) for i586
Linux 2.6.9-rc4-mm1 (gcc 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)) #1



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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (4 preceding siblings ...)
  2004-10-11 12:30 ` 2.6.9-rc4-mm1 Con Kolivas
@ 2004-10-11 13:43 ` Jack Byer
  2004-10-11 21:58   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 14:22 ` 2.6.9-rc4-mm1 J.A. Magallon
                   ` (7 subsequent siblings)
  13 siblings, 1 reply; 61+ messages in thread
From: Jack Byer @ 2004-10-11 13:43 UTC (permalink / raw)
  To: linux-kernel

When I try to compile this kernel, I get the following error:

   Using /usr/src/linux-2.6.9-rc4-mm1 as source for kernel
   CHK     include/linux/version.h
make[2]: `arch/i386/kernel/asm-offsets.s' is up to date.
   CHK     include/asm-i386/asm_offsets.h
   CHK     include/linux/compile.h
   GEN_INITRAMFS_LIST usr/initramfs_list
Using shipped usr/initramfs_list
   CPIO    usr/initramfs_data.cpio
ERROR: unable to open 'usr/initramfs_list': No such file or directory

Usage:
         ./usr/gen_init_cpio <cpio_list>

<cpio_list> is a file containing newline separated entries that
describe the files to be included in the initramfs archive:

# a comment
file <name> <location> <mode> <uid> <gid>
dir <name> <mode> <uid> <gid>
nod <name> <mode> <uid> <gid> <dev_type> <maj> <min>

<name>      name of the file/dir/nod in the archive
<location>  location of the file in the current filesystem
<mode>      mode/permissions of the file
<uid>       user id (0=root)
<gid>       group id (0=root)
<dev_type>  device type (b=block, c=character)
<maj>       major number of nod
<min>       minor number of nod

example:
# A simple initramfs
dir /dev 0755 0 0
nod /dev/console 0600 0 0 c 5 1
dir /root 0700 0 0
dir /sbin 0755 0 0
file /sbin/kinit /usr/src/klibc/kinit/kinit 0755 0 0
make[2]: *** [usr/initramfs_data.cpio] Error 1
make[1]: *** [usr] Error 2
make: *** [bzImage] Error 2

My .config has:

# CONFIG_BLK_DEV_RAM is not set
CONFIG_INITRAMFS_SOURCE=""


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

* Re: 2.6.9-rc4-mm1
  2004-10-11 12:30 ` 2.6.9-rc4-mm1 Con Kolivas
@ 2004-10-11 13:17   ` Alan Cox
  2004-10-11 14:23     ` 2.6.9-rc4-mm1 Con Kolivas
  2004-10-11 14:30     ` 2.6.9-rc4-mm1 J.A. Magallon
  0 siblings, 2 replies; 61+ messages in thread
From: Alan Cox @ 2004-10-11 13:17 UTC (permalink / raw)
  To: Con Kolivas; +Cc: Andrew Morton, Linux Kernel Mailing List

On Llu, 2004-10-11 at 13:30, Con Kolivas wrote:
> Andrew Morton wrote:
> > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
> 
> I have a keyboard problem from 2 things that seem related:
> 
> mm1 dmesg:
> ---
> ACPI: PS/2 Keyboard Controller [PS2K] at I/O 0x60, 0x64, irq 1
> i8042.c: Can't read CTR while initializing i8042.

Intel E7xxx board ? If so you either need the patch I posted ages ago
(or grab it from a Fedora kernel) or to turn off USB legacy in the BIOS.

Alan 


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

* Re: 2.6.9-rc4-mm1
@ 2004-10-11 12:41 Oleg Nesterov
  0 siblings, 0 replies; 61+ messages in thread
From: Oleg Nesterov @ 2004-10-11 12:41 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton

Hello.

arch/i386/kernel/traps.c damaged. CONFIG_KGDB stuff
inside print_context_stack().

Oleg.

--- 2.6.9-rc4-mm1/arch/i386/kernel/traps.c~	Mon Oct 11 16:32:07 2004
+++ 2.6.9-rc4-mm1/arch/i386/kernel/traps.c	Mon Oct 11 16:32:55 2004
@@ -105,17 +105,6 @@ int register_die_notifier(struct notifie
 	return err;
 }
 
-static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
-{
-	return	p > (void *)tinfo &&
-		p < (void *)tinfo + THREAD_SIZE - 3;
-}
-
-static inline unsigned long print_context_stack(struct thread_info *tinfo,
-				unsigned long *stack, unsigned long ebp)
-{
-	unsigned long addr;
-
 #ifdef CONFIG_KGDB
 extern void sysenter_past_esp(void);
 #include <asm/kgdb.h>
@@ -149,6 +138,16 @@ void breakpoint(void)
 #define	CHK_REMOTE_DEBUG(trapnr,signr,error_code,regs,after)
 #endif
 
+static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
+{
+	return	p > (void *)tinfo &&
+		p < (void *)tinfo + THREAD_SIZE - 3;
+}
+
+static inline unsigned long print_context_stack(struct thread_info *tinfo,
+				unsigned long *stack, unsigned long ebp)
+{
+	unsigned long addr;
 
 #ifdef	CONFIG_FRAME_POINTER
 	while (valid_stack_ptr(tinfo, (void *)ebp)) {

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (3 preceding siblings ...)
  2004-10-11 11:43 ` 2.6.9-rc4-mm1 Brice Goglin
@ 2004-10-11 12:30 ` Con Kolivas
  2004-10-11 13:17   ` 2.6.9-rc4-mm1 Alan Cox
  2004-10-11 13:43 ` 2.6.9-rc4-mm1 Jack Byer
                   ` (8 subsequent siblings)
  13 siblings, 1 reply; 61+ messages in thread
From: Con Kolivas @ 2004-10-11 12:30 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

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

Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/

I have a keyboard problem from 2 things that seem related:

mm1 dmesg:
---
ACPI: PS/2 Keyboard Controller [PS2K] at I/O 0x60, 0x64, irq 1
i8042.c: Can't read CTR while initializing i8042.
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
---
This makes my ps/2 keyboard not work on most boots.
rc4 works ok and dmesg looks like this:
---
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
---
booting with pci=routeirq does not help
	

usb aparently starts ok but then usb filesystem mounting is said to have 
failed on init services with this error in dmesg:
---
drivers/usb/core/inode.c: usbfs: unrecognised mount option "mode=0620" 
or missing value
drivers/usb/input/hid-core.c: usb_submit_urb(ctrl) failed
---
Plugging in a usb keyboard fails to do anything but I can get the usb 
keyboard to work by doing sysrq-R at that point.


Con.

Config below

[-- Attachment #2: 269rc4mm1.config --]
[-- Type: text/plain, Size: 25772 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.9-rc4-mm1
# Mon Oct 11 20:56:08 2004
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_LOG_BUF_SHIFT=16
# CONFIG_HOTPLUG is not set
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_EMBEDDED=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_FUTEX=y
CONFIG_EPOLL=y
# CONFIG_CPUSETS is not set
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
# CONFIG_IOSCHED_DEADLINE is not set
CONFIG_IOSCHED_CFQ=y
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SHMEM=y
# CONFIG_TINY_SHMEM is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# Processor type and features
#
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_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_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_RWSEM_XCHGADD_ALGORITHM=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_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_SMP=y
CONFIG_NR_CPUS=2
CONFIG_SCHED_SMT=y
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_X86_MCE_P4THERMAL=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y

#
# Firmware Drivers
#
CONFIG_EDD=y
# CONFIG_EDD_SKIP_MBR is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
# CONFIG_IRQBALANCE is not set
CONFIG_HAVE_DEC_LOCK=y
CONFIG_REGPARM=y

#
# Performance-monitoring counters support
#
# CONFIG_PERFCTR is not set
CONFIG_KEXEC=y
# CONFIG_CRASH_DUMP is not set

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
# CONFIG_SOFTWARE_SUSPEND is not set

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_THINKPAD is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUS=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y
# CONFIG_X86_PM_TIMER is not set

#
# APM (Advanced Power Management) BIOS Support
#
# CONFIG_APM is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ 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_PCI_MSI is not set
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=m
CONFIG_BINFMT_MISC=m

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
# CONFIG_DEBUG_DRIVER is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Plug and Play support
#

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
# 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_LOOP=y
CONFIG_BLK_DEV_CRYPTOLOOP=m
CONFIG_BLK_DEV_NBD=y
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=32768
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
# CONFIG_LBD is not set
# CONFIG_CDROM_PKTCDVD is not set

#
# ATA/ATAPI/MFM/RLL support
#
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_IDE_TASK_IOCTL=y

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
# CONFIG_BLK_DEV_CMD640 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# 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_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
CONFIG_BLK_DEV_PIIX=y
# 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_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_IVB=y
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
# CONFIG_SCSI is not set

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
# CONFIG_MD_LINEAR is not set
CONFIG_MD_RAID0=y
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_RAID6 is not set
# CONFIG_MD_MULTIPATH is not set
CONFIG_BLK_DEV_DM=m
CONFIG_DM_CRYPT=m
# CONFIG_DM_SNAPSHOT is not set
CONFIG_DM_MIRROR=m
# CONFIG_DM_ZERO is not set

#
# Fusion MPT device support
#

#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
# CONFIG_NETLINK_DEV is not set
CONFIG_UNIX=y
CONFIG_NET_KEY=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
CONFIG_NET_IPGRE=y
CONFIG_NET_IPGRE_BROADCAST=y
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
CONFIG_INET_TUNNEL=m
# CONFIG_IPV6 is not set
# CONFIG_NETFILTER is not set
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP 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_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

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

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_KGDBOE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NETPOLL_RX is not set
# CONFIG_NETPOLL_TRAP is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set

#
# Tulip family network device support
#
# CONFIG_NET_TULIP 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_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 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

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SK98LIN is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Wan interfaces
#
# 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_SHAPER is not set
# CONFIG_NETCONSOLE is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# 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 I/O drivers
#
# CONFIG_GAMEPORT is not set
CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW 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_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

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

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
# CONFIG_SERIAL_8250_CONSOLE is not set
# CONFIG_SERIAL_8250_ACPI is not set
CONFIG_SERIAL_8250_NR_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_HW_RANDOM=y
CONFIG_NVRAM=y
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
CONFIG_AGP=m
# 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=m
# CONFIG_AGP_INTEL_MCH is not set
# 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 is not set
# CONFIG_DRM_I810 is not set
# CONFIG_DRM_I830 is not set
CONFIG_DRM_I915=m
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_MWAVE 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=y

#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCF=m
# 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=m
# CONFIG_I2C_I810 is not set
CONFIG_I2C_ISA=m
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
CONFIG_I2C_PIIX4=m
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 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_STUB is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Hardware Sensors Chip support
#
CONFIG_I2C_SENSOR=m
CONFIG_SENSORS_ADM1021=m
CONFIG_SENSORS_ADM1025=m
CONFIG_SENSORS_ADM1031=m
CONFIG_SENSORS_ASB100=m
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_IT87 is not set
CONFIG_SENSORS_LM75=m
CONFIG_SENSORS_LM77=m
CONFIG_SENSORS_LM78=m
CONFIG_SENSORS_LM80=m
CONFIG_SENSORS_LM83=m
CONFIG_SENSORS_LM85=m
CONFIG_SENSORS_LM90=m
CONFIG_SENSORS_MAX1619=m
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_VIA686A is not set
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83L785TS=m
CONFIG_SENSORS_W83627HF=m

#
# Other I2C Chip support
#
CONFIG_SENSORS_EEPROM=m
CONFIG_SENSORS_PCF8574=m
CONFIG_SENSORS_PCF8591=m
CONFIG_SENSORS_RTC8564=m
# 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

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia devices
#
CONFIG_VIDEO_DEV=y

#
# Video For Linux
#

#
# Video Adapters
#
CONFIG_VIDEO_BT848=m
# CONFIG_VIDEO_CPIA is not set
# CONFIG_VIDEO_SAA5246A is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DPC is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_OVCAMCHIP is not set

#
# Radio Adapters
#
# CONFIG_RADIO_GEMTEK_PCI is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
CONFIG_VIDEO_TUNER=m
CONFIG_VIDEO_BUF=m
CONFIG_VIDEO_BTCX=m
CONFIG_VIDEO_IR=m

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
CONFIG_FB_VESA=y
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I810 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY 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_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y

#
# Sound
#
CONFIG_SOUND=m

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
# 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_AC97_CODEC=m
# 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=m
# CONFIG_SND_BT87X_OVERCLOCK is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI 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_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
CONFIG_SND_INTEL8X0M=m
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VX222 is not set

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

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

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

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_EHCI_SPLIT_ISO=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=m

#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
# CONFIG_USB_STORAGE is not set

#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=y
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_EGALAX is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_VICAM is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_KONICAWC is not set
# CONFIG_USB_OV511 is not set
# CONFIG_USB_SE401 is not set
# CONFIG_USB_SN9C102 is not set
# CONFIG_USB_STV680 is not set

#
# USB Network adaptors
#
# 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 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_TIGL 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_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_TEST is not set

#
# USB ATM/DSL drivers
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
# CONFIG_EXT3_FS_POSIX_ACL is not set
# CONFIG_EXT3_FS_SECURITY is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
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_XFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set

#
# Caches
#
# CONFIG_FSCACHE is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
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 is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y

#
# 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_EXPORTFS 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=m
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
CONFIG_NLS_CODEPAGE_850=m
# 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=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=m
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=m

#
# Profiling support
#
CONFIG_PROFILING=y
CONFIG_OPROFILE=m

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
CONFIG_DEBUG_PREEMPT=y
CONFIG_DEBUG_INFO=y
# CONFIG_FRAME_POINTER is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_KPROBES is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_4KSTACKS=y
CONFIG_SCHEDSTATS=y
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y
# CONFIG_KGDB is not set

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

#
# Cryptographic options
#
CONFIG_CRYPTO=y
# CONFIG_CRYPTO_HMAC 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_DES is not set
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_SERPENT 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_DEFLATE is not set
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_TEST is not set

#
# Library routines
#
# CONFIG_CRC_CCITT is not set
CONFIG_CRC32=y
# CONFIG_LIBCRC32C is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_X86_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_X86_TRAMPOLINE=y

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
                   ` (2 preceding siblings ...)
  2004-10-11 11:38 ` 2.6.9-rc4-mm1 Nick Piggin
@ 2004-10-11 11:43 ` Brice Goglin
  2004-10-11 12:30 ` 2.6.9-rc4-mm1 Con Kolivas
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 61+ messages in thread
From: Brice Goglin @ 2004-10-11 11:43 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, benoit.boissinot

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

Andrew Morton wrote:
 >ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
[...]
 > kgdb-ga.patch
 >   kgdb stub for ia32 (George Anzinger's one)
 >   kgdbL warning fix
 >   kgdb buffer overflow fix
 >   kgdbL warning fix
 >   kgdb: CONFIG_DEBUG_INFO fix
 >   x86_64 fixes
 >   correct kgdb.txt Documentation link (against  2.6.1-rc1-mm2)
 >   kgdb: fix for recent gcc
 >   kgdb warning fixes
 >   THREAD_SIZE fixes for kgdb
 >   Fix stack overflow test for non-8k stacks
 >   kgdb-ga.patch fix for i386 single-step into sysenter
 >   fix TRAP_BAD_SYSCALL_EXITS on i386
 >   add TRAP_BAD_SYSCALL_EXITS config for i386

Hi Andrew,

When compiling on my P3 with CONFIG_KGDB, I get this error :

   CC      arch/i386/kernel/traps.o
arch/i386/kernel/traps.c: Dans la fonction « do_debug »:
arch/i386/kernel/traps.c:776: error: `sysenter_past_esp' undeclared 
(first use in this function)
arch/i386/kernel/traps.c:776: error: (Each undeclared identifier is 
reported only once
arch/i386/kernel/traps.c:776: error: for each function it appears in.)
make[1]: *** [arch/i386/kernel/traps.o] Erreur 1
make: *** [arch/i386/kernel] Erreur 2

sysenter_past_esp is declared (as extern). But it seems that 
kgdb-ga.patch moved it inside of the the print_context_stack
function so that it's not visible outside anymore.

Moving "extern void sysenter_past_esp()" outside of print_context_stack
seems to fix compiling. Hope this won't break anything else.
Patch attached.

Regards
Brice Goglin



[-- Attachment #2: move-sysenter_past_esp-outside.diff --]
[-- Type: text/x-patch, Size: 645 bytes --]

--- arch/i386/kernel/traps.c.old	2004-10-11 13:22:01.000000000 +0200
+++ arch/i386/kernel/traps.c	2004-10-11 13:39:24.000000000 +0200
@@ -91,6 +91,10 @@
 asmlinkage void spurious_interrupt_bug(void);
 asmlinkage void machine_check(void);
 
+#ifdef CONFIG_KGDB
+extern void sysenter_past_esp(void);
+#endif
+
 static int kstack_depth_to_print = 24;
 struct notifier_block *i386die_chain;
 static spinlock_t die_notifier_lock = SPIN_LOCK_UNLOCKED;
@@ -117,7 +121,6 @@
 	unsigned long addr;
 
 #ifdef CONFIG_KGDB
-extern void sysenter_past_esp(void);
 #include <asm/kgdb.h>
 #include <linux/init.h>
 void set_intr_gate(unsigned int n, void *addr);

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 11:29 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
  2004-10-11 11:37 ` 2.6.9-rc4-mm1 Tim Cambrant
@ 2004-10-11 11:38 ` Nick Piggin
  2004-10-11 19:13   ` 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 11:43 ` 2.6.9-rc4-mm1 Brice Goglin
                   ` (10 subsequent siblings)
  13 siblings, 1 reply; 61+ messages in thread
From: Nick Piggin @ 2004-10-11 11:38 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/

> +no-wild-kswapd-2.patch

Is this an improvement? It again decouples the "priority" semantics of
the direct and asynch reclaim paths. Seems to make things more complex
in general.

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
  2004-10-11 11:29 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
@ 2004-10-11 11:37 ` Tim Cambrant
  2004-10-11 11:38 ` 2.6.9-rc4-mm1 Nick Piggin
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 61+ messages in thread
From: Tim Cambrant @ 2004-10-11 11:37 UTC (permalink / raw)
  To: Linux Kernel Mailing List

On Mon, Oct 11, 2004 at 03:25:02AM -0700, Andrew Morton wrote:
>
> optimize-profile-path-slightly.patch
>   Optimize profile path slightly
>

I'm still getting an oops at startup with this patch. After reversing
it, everything is fine. Weren't you supposed to remove that from your
tree until it was fixed?


-- 

        Tim Cambrant
     cambrant@acc.umu.se
http://www.acc.umu.se/~cambrant/

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

* Re: 2.6.9-rc4-mm1
  2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
@ 2004-10-11 11:29 ` Eyal Lebedinsky
  2004-10-11 11:37 ` 2.6.9-rc4-mm1 Tim Cambrant
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 61+ messages in thread
From: Eyal Lebedinsky @ 2004-10-11 11:29 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/
> 
> - I wasn't going to do any -mm's until after 2.6.9 comes out.  But we need
>   this one so that people who have patches in -mm can check that I haven't
>   failed to push anything critical.  If there's a patch in here which you
>   think should be in 2.6.9, please let me know.

I use -mm because DVB with my AverMedia (761 and 771) does not work with 2.6.9-rc3.
Please push these if at all possible.

> v4l-msp3400-cleanup.patch
>   v4l: msp3400 cleanup
> 
> v4l-tuner-update.patch
>   v4l: tuner update
> 
> v4l-bttv-update.patch
>   v4l: bttv update
> 
> v4l-dvb-cx88-driver-update.patch
>   v4l/dvb: cx88 driver update
> 
> v4l-dvb-cx88-driver-update-fix.patch
>   v4l-dvb-cx88-driver-update-fix
> 
> DVB-update-saa7146.patch
>   DVB: update saa7146
> 
> DVB-documentation-update.patch
>   DVB: documentation update
> 
> DVB-skystar2-dvb-bt8xx-update.patch
>   DVB: skystar2 dvb bt8xx update
> 
> DVB-dvb-core-update.patch
>   DVB: core update
> 
> DVB-frontend-conversion.patch
>   DVB: frontend conversion
> 
> DVB-frontend-conversion2.patch
>   DVB: frontend conversion #2
> 
> DVB-frontend-conversion3.patch
>   DVB: frontend conversion #3
> 
> DVB-frontend-conversion4.patch
>   DVB: frontend conversion #4
> 
> DVB-add-frontend-1-2.patch
>   DVB: add frontend
> 
> DVB-add-frontend-2-2.patch
>   DVB: add frontend #2
> 
> DVB-new-driver-dibusb.patch
>   DVB: new driver for mobile USB Budget DVB-T devices
> 
> DVB-misc-driver-updates.patch
>   DVB: misc driver updates
> 
> DVB-frontend-updates.patch
>   DVB: frontend updates
> 
> V4L-follow-changes-in-saa7146.patch
>   V4L: follow changes in saa7146

-- 
Eyal Lebedinsky	 (eyal@eyal.emu.id.au) <http://samba.org/eyal/>

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

* 2.6.9-rc4-mm1
@ 2004-10-11 10:25 Andrew Morton
  2004-10-11 11:29 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
                   ` (13 more replies)
  0 siblings, 14 replies; 61+ messages in thread
From: Andrew Morton @ 2004-10-11 10:25 UTC (permalink / raw)
  To: linux-kernel


ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc4/2.6.9-rc4-mm1/

- I wasn't going to do any -mm's until after 2.6.9 comes out.  But we need
  this one so that people who have patches in -mm can check that I haven't
  failed to push anything critical.  If there's a patch in here which you
  think should be in 2.6.9, please let me know.

- I won't be taking any patches apart from 2.6.9 bugfixes, please.  So I
  can concentrate on 2.6.9 bugfixes and so you can, too.

- Added a new bk tree to the -mm lineup: bk-drm-via.patch.  Graphics support
  for VIA CPUs.




Changes since 2.6.9-rc3-mm3:


 bk-acpi.patch
 bk-alsa.patch
 bk-cpufreq.patch
 bk-driver-core.patch
 bk-drm-via.patch
 bk-i2c.patch
 bk-ia64.patch
 bk-ide-dev.patch
 bk-input.patch
 bk-dtor-input.patch
 bk-libata.patch
 bk-netdev.patch
 bk-ntfs.patch
 bk-pci.patch
 bk-pnp.patch
 bk-scsi.patch
 bk-scsi-target.patch
 bk-usb.patch
 bk-watchdog.patch

 External trees

-cdrom-generic_packet-oops-fix.patch
-fix-random-crashes-in-x86-64-swsusp.patch
-acpi-compile-fix.patch
-acpi-x86_64-build-fix.patch
-ppc32-move-some-common-ppc44x-code-to-ibm44x_commonc.patch
-fix-ans-lcd-compilation.patch
-fix-warning-in-arch-ppc-pmac-simple-miscc.patch
-ppc64-kconfig-cleanups.patch
-ppc64-fix-find_udbg_vterm.patch
-ppc64-update-g5_defconfig.patch
-find_isa_irq_pin-should-not-be-__init.patch
-via82xx-fix.patch
-boot-parameters-quoting-of-environment-variables.patch
-uml-add-generic-ptrace-requests.patch
-uml-fix-get_user-warning.patch
-therm_adt746x-various-fixes.patch
-fix-acenic-hotplug.patch

 Merged

+fix-oops-in-parkbd.patch

 Input driver oops fix

+i2c-bus-power-management-support.patch

 PM for i2c busses.

+prof-irq-mask-fixup.patch

 Fix up prof_irq_mask bogosity.

-fix-of-stack-dump-in-soft-hardirqs.patch
-fix-of-stack-dump-in-soft-hardirqs-cleanup.patch
-fix-of-stack-dump-in-soft-hardirqs-build-fix.patch
-fix-of-stack-dump-in-soft-hardirqs-build-fix-3.patch
+fix-show_trace-in-irq-context-with-config_4kstacks.patch

 Added a different fixup for the i386 IRQ stack dumping code.

+ppc32-xilinx-ml300-board-support.patch
+ppc32-use-gen550-for-ppc44x-progress-ppc-stub.patch
+ppc32-add-gen550h.patch
+ppc32-configure-ppc440gx-l2-cache-based-on-cpu-rev.patch
+ppc32-fix-cpu-voltage-change-delay.patch

 ppc32 updates

+disable-sw-irqbalance-irqaffinity-for-e7520-e7320-e7525-2.patch

 IRQ balancing quirks for some x86 platforms.

+x86-64-clustered-apic-support-fix-fix-fix.patch

 Fix x86-64-clustered-apic-support.patch even more.

+hpet-dependency-fix.patch

 Kconfig fix

+x86_64-kconfig-split-config_numa_emu-and-config_k8_numa.patch

 Generalise x86_64 build options a bit.

+s3-suspend-resume-with-noexec-2.patch

 S3 suspend-resume on noexec capable systems.

+uml-dont-declare-cpu_online-fix-compilation-error.patch

 UML fix

+s390-7-12-zfcp-host-adapter.patch
+s390-8-12-qeth-layer-2-support.patch
+s390-9-12-z-vm-watchdog-timer.patch
+s390-10-12-z-vm-log-reader.patch
+s390-11-12-crypto-device-driver.patch
+s390-12-12-add-support-to-read-z-vm-monitor-records.patch

 S/390 update

+xtime-value-may-become-incorrect.patch

 xtime handling fix

+perfctr-interrupt-support-kconfig-fix.patch

 perfctr build fix

+sched-fix-sched_smt-numa=fake=2-lockup.patch
+sched-fix-sched_smt-numa=fake=2-lockup-fix.patch

 Fix problem with x86_64's "numa=fake=N" boot option.

+oprofile-smp_processor_id-fixes.patch

 preempt safety in oprofile.

+fix-smp_processor_id-warning-in-numa_node_id.patch

 Fix a warning

+clean-up-preempt-debugging.patch

 cleanup

+vmtrunc-restart_addr-in-truncate_count.patch

 Fix the vmtruncate latency fixes

-lockmeter-2.patch
-lockmeter-lockmeter-fixes-for-preempt-case.patch
-lockmeter2-build-fix.patch
-lockmeter-in_lock_functions-fix.patch
-lockmeter-in_lock_functions-fix-2.patch
-lockmeter-build-fix-42.patch
-lockmeter-lockmeter-fix-for-generic_read_trylock.patch

 lockmeter is getting in the way of other things.

-pcmcia-fix-eject-lockup.patch

 Unneeded now.

+3c59x-reload-eeprom-values-at-rmmod-for-needy-cards.patch

 3c59x initialisation fix

+serial-8250-receive-lockup-fix.patch

 UART driver fix

+radeonfb-fix-warnings-about-uninitialized-variables-fix.patch

 Fix radeonfb-fix-warnings-about-uninitialized-variables.patch

+rework-radeonfb-blanking.patch

 Experimentalish radeonfb blanking fixes

-smc91x-fix-smp-lock-usage-fix.patch

 Merged into other patches

+i2o-code-beautifying-and-cleanup.patch
+i2o-added-support-for-promise-controllers.patch
+i2o-new-functions-to-convert-messages-to-a-virtual-address.patch
+i2o-correct-error-code-if-bus-is-busy-in-i2o_scsi.patch
+i2o-message-conversion-fix-for-le32_to_cpu-parameters.patch

 i2o driver update

-lsm-add-control-over-proc-pid-visibility.patch
-lsm-add-bsdjail-module.patch
-bsdjail-exports.patch
-bsdjail-old-gcc-build-fix.patch
-bsdjail-rlim-fix.patch
-lsm-add-bsdjail-documentation.patch

 BSD jail needs more work.

+avoid-problems-with-kobject_set_name-and-name-with-%.patch

 kobject safety

+register_chrdev_region-alloc_chrdev_region-const.patch

 cleanup

+megaraid-random-loss-of-luns.patch

 megaraid fix

-ide-dma-blacklist-behaviour-broken.patch

 Unneeded, dropped.

+vm-thrashing-control-tuning-fix.patch
+vm-thrashing-control-tuning-docs.patch

 /proc/sys/vm/swap_token_timeout updates

+proc-txt-cleanup.patch

 Fix proc.txt

-console-fall-back-to-dev-null-when-no-console-is-availlable.patch

 Dropped - insufficiently cooked.

-prevent-netpoll-hanging-when-link-is-down.patch

 Ditto.

+dont-align-initmem-poisoning.patch

 x86 initmem poisoning fix

-kill-a-sparse-warning-in-binfmt_elfc.patch

 this seemed wrong.

+sata_sil-mod15-quirk-with-seagate-st3120026as.patch

 SATA fix

+alloc_percpu-fix-for-non-numa.patch

 Slab fix for NUMA.

+use-container_of-for-rb_entry.patch

 cleanup

+remove-weird-pmd-cast.patch

 cleanup

+include-asm-bitopsh-include-linux-bitopsh.patch

 include file regularity

+figure-out-who-is-inserting-bogus-modules.patch

 Debug for a modprobe problem

+vmscan-total_scanned-fix.patch

 memory reclaim throttling fix (and apparent slowdown)

+revert-vm-no-wild-kswapd.patch
+balance_pgdat-cleanup.patch
+no-wild-kswapd-2.patch
+no-wild-kswapd-kswapd-continue.patch

 Fix up various gunk in the memory reclaim code.

+ps-shows-wrong-ppid.patch

 task_state() fix

+no-buddy-bitmap-patch-revist-intro-and-includes.patch
+no-buddy-bitmap-patch-revisit-for-mm-page_allocc.patch
+no-buddy-bitmap-patch-revist-for-ia64.patch

 Remove the bitmaps from the buddy allocator

+selinux-retain-ptracer-sid-across-fork.patch

 SELinux fix

+remove-redundant-and-from-swp_type.patch

 cleanup

+slab-reduce-fragmentation-due-to-kmem_cache_alloc_node.patch

 Slab fragmentations fix

+lockd-remove-hardcoded-maximum-nlm-cookie-length.patch
+lockd-remove-hardcoded-maximum-nlm-cookie-length-enhancements.patch
 Make lockd play better with certain servers

+md-convert-lu-to-llu-in-printk.patch

 printk fixes


number of patches in -mm: 741
number of changesets in external trees: 701
number of patches in -mm only: 722
total patches: 1423




All 741 patches


fix-oops-in-parkbd.patch
  Fix oops in parkbd

parport_pc-superio-chip-fixes.patch
  parport_pc superio chip fixes

bk-acpi.patch

acpi-report-errors-in-fanc.patch
  ACPI: report errors in fan.c

bk-alsa.patch

bk-cpufreq.patch

bk-driver-core.patch

bk-drm-via.patch

bk-i2c.patch

bk-ia64.patch

bk-ide-dev.patch

bk-input.patch

psmouse-build-fix.patch
  psmouse build fix

atkbd-warning-fixes.patch
  atkbd warning fixes

bk-dtor-input.patch

bk-libata.patch

bk-netdev.patch

ne2k-pci-pci-build-fix.patch
  ne2k-pci pci build fix

bk-ntfs.patch

bk-pci.patch

via-agp-pci-build-fix.patch
  via-agp-pci-build-fix

bk-pnp.patch

bk-scsi.patch

bk-scsi-target.patch

bk-usb.patch

bk-watchdog.patch

mm.patch
  add -mmN to EXTRAVERSION

fix-smm-failures-on-e750x-systems.patch
  fix SMM failures on E750x systems

swsusp-progress-in-percent.patch
  swsusp: progress in percent

acpi-proc-simplify-error-handling.patch
  acpi proc: error handling

i2c-bus-power-management-support.patch
  i2c bus power management support

entry-s-cleanups.patch
  i386 entry.S cleanups

make-rlimit-settings-per-process-instead-of-per-thread.patch
  make rlimit settings per-process instead of per-thread

add-wcontinued-support-to-wait4-syscall.patch
  add WCONTINUED support to wait4 syscall

fix-ptrace_attach-race-with-real-parents-wait-calls-2.patch
  fix PTRACE_ATTACH race with real parent's wait calls

softirqs-fix-latency-of-softirq-processing.patch
  softirqs: fix latency of softirq processing

softirqs-fix-latency-of-softirq-processing-fix.patch
  softirqs-fix-latency-of-softirq-processing fix

add-missing-linux-syscallsh-includes.patch
  add missing linux/syscalls.h includes

add-missing-linux-syscallsh-includes-fix.patch
  add-missing-linux-syscallsh-includes-fix

distinct-tgid-tid-cpu-usage.patch
  distinct tgid/tid CPU usage

show-aggregate-per-process-counters-in-proc-pid-stat-2.patch
  show aggregate per-process counters in /proc/PID/stat 2

exec-fix-posix-timers-leak-and-pending-signal-loss.patch
  exec: fix posix-timers leak and pending signal loss

__set_page_dirty_nobuffers-mappings.patch
  __set_page_dirty_nobuffers mappings

reiserfs-small-filesystem-fix.patch
  reiserfs: small filesystem fix

sysfs-backing-store-prepare-file_operations.patch
  sysfs backing store - prepare sysfs_file_operations helpers

sysfs-backing-store-prepare-file_operations-fix.patch
  fix oops with firmware loading

sysfs-backing-store-add-sysfs_dirent.patch
  sysfs backing store - add sysfs_direct structure

sysfs-backing-store-use-sysfs_dirent-tree-in-removal.patch
  sysfs backing store: use sysfs_dirent based tree in file removal

sysfs-backing-store-use-sysfs_dirent-tree-in-dir-file_operations.patch
  sysfs backing store: use sysfs_dirent based tree in dir file operations

sysfs-backing-store-stop-pinning-dentries-inodes-for-leaves.patch
  sysfs backing store: stop pinning dentries/inodes for leaf entries

generic-irq-subsystem-core.patch
  generic irq subsystem: core

prof-irq-mask-fixup.patch
  prof_cpu_mask fixup

setup_irq-warning-fixes.patch
  setup_irq() warning fixes

generic-irq-subsystem-x86-port.patch
  generic irq subsystem: x86 port

uninline-ack_bad_irq.patch
  uninline-ack_bad_irq

irq_mis_count-build-fix.patch
  irq_mis_count build fix

generic-irq-subsystem-x64-port.patch
  generic irq subsystem: x86_64 port

generic-irq-subsystem-ppc-port.patch
  generic irq subsystem: ppc port

generic-irq-subsystem-ppc64-port.patch
  generic irq subsystem: ppc64 port

doc-remove-references-to-hardirqc.patch
  doc: remove references to hardirq.c

invalidate-page-race-fix.patch
  invalidate page race fix

make-tree_lock-an-rwlock.patch
  make mapping->tree_lock an rwlock

must-fix.patch
  must fix lists update
  must fix list update
  mustfix update
  must-fix update
  mustfix lists

ppc32-xilinx-ml300-board-support.patch
  ppc32: Xilinx ML300 board support (very basic)

ppc32-use-gen550-for-ppc44x-progress-ppc-stub.patch
  ppc32: use gen550 for PPC44x progress/ppc-stub

ppc32-add-gen550h.patch
  ppc32: add gen550.h

ppc32-configure-ppc440gx-l2-cache-based-on-cpu-rev.patch
  ppc32: configure PPC440GX L2 cache based on CPU rev

ppc32-fix-cpu-voltage-change-delay.patch
  ppc32: fix cpu voltage change delay

ppc64-reloc_hide.patch

share-i386-x86_64-intel-cache-descriptors-table.patch
  share i386/x86_64 intel cache descriptors table

fix-show_trace-in-irq-context-with-config_4kstacks.patch
  Fix show_trace() in irq context with CONFIG_4KSTACKS

disable-sw-irqbalance-irqaffinity-for-e7520-e7320-e7525-2.patch
  Disable SW irqbalance/irqaffinity for E7520/E7320/E7525 v2

drop-old-apic-workaround-on-x86-64.patch
  x86_64: drop old APIC workaround

x86-64-clustered-apic-support.patch
  x86-64 clustered APIC support

x86-64-clustered-apic-support-fix.patch
  x86-64-clustered-apic-support fix

x86-64-clustered-apic-support-fix-fix.patch
  x86-64-clustered-apic-support-fix fix

x86-64-clustered-apic-support-fix-fix-fix.patch
  x86-64-clustered-apic-support fix

intialize-hpet-char-driver-on-x86-64.patch
  x86_64: intialize hpet char driver

hpet-dependency-fix.patch
  hpet dependency fix

use-tsc-on-smp-em64t-machines.patch
  x86_64: use TSC on SMP EM64T machines

add-notsc-option-to-x86-64.patch
  x86_64: add notsc option

add-an-option-to-configure-oops-stack-dump-on-x86-64.patch
  x86_64: add an option to configure oops stack dump

fix-ioapic-on-nvidia-boards.patch
  x86_64: fix IOAPIC on Nvidia boards

x86-64-optimize-numa-lookup.patch
  x86-64: optimize NUMA lookup

x86_64-kconfig-split-config_numa_emu-and-config_k8_numa.patch
  x86_64 Kconfig: Split CONFIG_NUMA_EMU and CONFIG_K8_NUMA

swsusp-fix-x86-64-do-not-use-memory-in-copy-loop.patch
  swsusp: fix x86-64 - do not use memory in copy loop

swsusp-fix-process-start-times-after-resume.patch
  swsusp: fix process start times after resume

swsusp-add-comments-at-critical-places.patch
  swsusp: add comments at critical places

swsusp-documentation-update.patch
  swsusp: Documentation update

additional-documentation-for-power-management.patch
  additional documentation for power management

s3-suspend-resume-with-noexec-2.patch
  S3 suspend/resume with noexec v2

m32r-ds1302-driver.patch
  m32r: ds1302 driver

m32r-new-cf-pcmcia-driver-for-m32r.patch
  m32r: new CF/PCMCIA driver for m32r

m32r-update-include-asm-m32r-m32102h.patch
  m32r: update include/asm-m32r/m32102.h

m32r-ar-camera-driver.patch
  m32r: AR camera driver

m32r-ar-camera-driver-build-fix.patch
  m32r-ar-camera-driver build fix

m32r-sio-driver.patch
  m32r: SIO driver

uml-dont-declare-cpu_online-fix-compilation-error.patch
  uml: don't declare cpu_online - fix compilation error

s390-7-12-zfcp-host-adapter.patch
  s390: zfcp host adapter

s390-8-12-qeth-layer-2-support.patch
  s390: qeth layer 2 support

s390-9-12-z-vm-watchdog-timer.patch
  s390: z/VM watchdog timer

s390-10-12-z-vm-log-reader.patch
  s390: z/VM log reader

s390-11-12-crypto-device-driver.patch
  s390: crypto device driver

s390-12-12-add-support-to-read-z-vm-monitor-records.patch
  s390: add support to read z/VM monitor records

reiserfs-cleanup-internal-use-of-bh-macros.patch
  ReiserFS: Cleanup internal use of bh macros

reiserfs-cleanup-access-of-journal-cosmetic.patch
  ReiserFS: Cleanup access of journal (cosmetic)

reiserfs-add-i-o-error-handling-to-journal-operations.patch
  ReiserFS: Add I/O error handling to journal operations

reiserfs-fix-several-missing-reiserfs_write_unlock-calls.patch
  ReiserFS: Fix several missing reiserfs_write_unlock calls

i-o-error-handling-for-reiserfs-v3-fixes.patch
  i-o-error-handling-for-reiserfs-v3-fixes

xtime-value-may-become-incorrect.patch
  xtime value may become incorrect

kgdb-ga.patch
  kgdb stub for ia32 (George Anzinger's one)
  kgdbL warning fix
  kgdb buffer overflow fix
  kgdbL warning fix
  kgdb: CONFIG_DEBUG_INFO fix
  x86_64 fixes
  correct kgdb.txt Documentation link (against  2.6.1-rc1-mm2)
  kgdb: fix for recent gcc
  kgdb warning fixes
  THREAD_SIZE fixes for kgdb
  Fix stack overflow test for non-8k stacks
  kgdb-ga.patch fix for i386 single-step into sysenter
  fix TRAP_BAD_SYSCALL_EXITS on i386
  add TRAP_BAD_SYSCALL_EXITS config for i386

kgdb-is-incompatible-with-kprobes.patch
  kgdb-is-incompatible-with-kprobes

kgdboe-netpoll.patch
  kgdb-over-ethernet via netpoll
  kgdboe: fix configuration of MAC address

kgdb-x86_64-support.patch
  kgdb-x86_64-support.patch for 2.6.2-rc1-mm3
  kgdb-x86_64-warning-fixes

kprobes-exception-notifier-fix-kgdb-x86_64.patch
  kprobes exception notifier fix

kgdb-ia64-support.patch
  IA64 kgdb support
  ia64 kgdb repair and cleanup
  ia64 kgdb fix

kgdb-ia64-fixes.patch
  kgdb: ia64 fixes

invalidate_inodes-speedup.patch
  invalidate_inodes speedup
  more invalidate_inodes speedup fixes

dev-mem-restriction-patch.patch
  /dev/mem restriction patch

dev-mem-restriction-patch-allow-reads.patch
  dev-mem-restriction-patch: allow reads

get_user_pages-handle-VM_IO.patch
  fix get_user_pages() against mappings of /dev/mem

jbd-remove-livelock-avoidance.patch
  JBD: remove livelock avoidance code in journal_dirty_data()

journal_add_journal_head-debug.patch
  journal_add_journal_head-debug

list_del-debug.patch
  list_del debug check

unplug-can-sleep.patch
  unplug functions can sleep

firestream-warnings.patch
  firestream warnings

ext3_rsv_cleanup.patch
  ext3 block reservation patch set -- ext3 preallocation cleanup

ext3_rsv_base.patch
  ext3 block reservation patch set -- ext3 block reservation
  ext3 reservations: fix performance regression
  ext3 block reservation patch set -- mount and ioctl feature
  ext3 block reservation patch set -- dynamically increase reservation window
  ext3 reservation ifdef cleanup patch
  ext3 reservation max window size check patch
  ext3 reservation file ioctl fix

ext3-reservation-default-on.patch
  ext3 reservation: default to on

ext3-lazy-discard-reservation-window-patch.patch
  ext3 lazy discard reservation window patch
  ext3 discard reservation in last iput fix patch
  Fix lazy reservation discard
  ext3 reservations: bad_inode fix
  ext3 reservation discard race fix

ext3-reservations-spelling-fixes.patch
  ext3 reservations: Spelling fixes

ext3-reservations-renumber-the-ext3-reservations-ioctls.patch
  ext3 reservations: Renumber the ext3 reservations ioctls

ext3-reservations-remove-unneeded-declaration.patch
  ext3 reservations: Remove unneeded declaration.

ext3-reservations-turn-ext3-per-sb-reservations-list-into-an-rbtree.patch
  ext3 reservations: Turn ext3 per-sb reservations list into an rbtree.

ext3-reservations-split-the-reserve_window-struct-into-two.patch
  ext3 reservations: Split the "reserve_window" struct into two

ext3-reservations-smp-protect-the-reservation-during-allocation.patch
  ext3 reservations: SMP-protect the reservation during allocation

ext3-rsv-use-before-initialise-fix.patch
  ext3 reservations: use before initialised fix

ext3-reservations-window-allocation-fix.patch
  ext3 reservations window allocation fix

ext3-reservation-window-size-increase-incorrectly-fix.patch
  ext3 reservation window size increase incorrectly fix

perfctr-core.patch
  From: Mikael Pettersson <mikpe@csd.uu.se>
  Subject: [PATCH][1/6] perfctr-2.7.3 for 2.6.7-rc1-mm1: core
  CONFIG_PERFCTR=n build fix
  From: Mikael Pettersson <mikpe@csd.uu.se>
  Subject: [PATCH][6/6] perfctr-2.7.3 for 2.6.7-rc1-mm1: misc

perfctr-i386.patch
  From: Mikael Pettersson <mikpe@csd.uu.se>
  Subject: [PATCH][2/6] perfctr-2.7.3 for 2.6.7-rc1-mm1: i386
  perfctr #if/#ifdef cleanup
  perfctr Dothan support
  perfctr x86_tests build fix
  perfctr x86 init bug
  perfctr: K8 fix for internal benchmarking code
  perfctr x86 update

perfctr-prescott-fix.patch
  Prescott fix for perfctr

perfctr-x86_64.patch
  From: Mikael Pettersson <mikpe@csd.uu.se>
  Subject: [PATCH][3/6] perfctr-2.7.3 for 2.6.7-rc1-mm1: x86_64

perfctr-ppc.patch
  From: Mikael Pettersson <mikpe@csd.uu.se>
  Subject: [PATCH][4/6] perfctr-2.7.3 for 2.6.7-rc1-mm1: PowerPC
  perfctr ppc32 update
  perfctr update 4/6: PPC32 cleanups
  perfctr ppc32 buglet fix

perfctr-ppc32-mmcr0-handling-fixes.patch
  perfctr ppc32 MMCR0 handling fixes

perfctr-virtualised-counters.patch
  From: Mikael Pettersson <mikpe@csd.uu.se>
  Subject: [PATCH][5/6] perfctr-2.7.3 for 2.6.7-rc1-mm1: virtualised counters
  perfctr update 6/6: misc minor cleanups
  perfctr update 3/6: __user annotations
  perfctr-cpus_complement-fix
  perfctr cpumask cleanup
  perfctr SMP hang fix

virtual-perfctr-illegal-sleep.patch
  virtual perfctr illegal sleep

make-perfctr_virtual-default-in-kconfig-match-recommendation.patch
  Make PERFCTR_VIRTUAL default in Kconfig match recommendation  in help text

perfctr-ifdef-cleanup.patch
  perfctr ifdef cleanup

perfctr-update-2-6-kconfig-related-updates.patch
  perfctr update 2/6: Kconfig-related updates

perfctr-ppc32-preliminary-interrupt-support.patch
  perfctr ppc32 preliminary interrupt support

perfctr-interrupt-support-kconfig-fix.patch
  perfctr interrupt_support Kconfig fix

perfctr-update-5-6-reduce-stack-usage.patch
  perfctr update 5/6: reduce stack usage

perfctr-low-level-documentation.patch
  perfctr low-level documentation
  perfctr documentation update

perfctr-inheritance-1-3-driver-updates.patch
  perfctr inheritance 1/3: driver updates
  perfctr inheritance illegal sleep bug

perfctr-inheritance-2-3-kernel-updates.patch
  perfctr inheritance 2/3: kernel updates

perfctr-inheritance-3-3-documentation-updates.patch
  perfctr inheritance 3/3: documentation updates

perfctr-inheritance-locking-fix.patch
  perfctr inheritance locking fix

ext3-online-resize-patch.patch
  ext3: online resizing
  ext3-online-resize-warning-fix

ext3-online-resize-fix-error-codes.patch
  ext3 online resize: fix error codes

ext3-online-resize-printk-debug-level.patch
  ext3 online resize: printk debug level

ext3-online-resize-fix-bh-leak.patch
  ext3 online resize: fix bh leak

ext3-online-resize-use-is_rdonly.patch
  ext3 online resize: Use IS_RDONLY()

ext3-online-resize-lock-newly-created-buffers.patch
  ext3 online resize: lock newly-created buffers

ext3-online-resize-remove-on-stack-bogus-inode.patch
  ext3 online resize: remove on-stack bogus inode

ext3-online-resize-smp-locking-for-group-metadata.patch
  ext3 online resize: SMP locking for group metadata

ext3-online-resize-remove-s_debts.patch
  ext3 online resize: remove s_debts

ext3-online-resize-remove-on-stack-special-resize-inode.patch
  ext3 online resize: remove on-stack special resize inode

ext3-online-resize-make-group-add-asynchronous.patch
  ext3 online resize: make group-add asynchronous.

ext3-online-resize-fix-comments.patch
  ext3 online resize: fix comments

sched-trivial-sched-changes.patch
  sched: trivial sched changes

sched-add-cpu_down_prepare-notifier.patch
  sched: add CPU_DOWN_PREPARE notifier

sched-integrate-cpu-hotplug-and-sched-domains.patch
  sched: integrate cpu hotplug and sched domains

sched-arch_destroy_sched_domains-warning-fix.patch
  sched: arch_destroy_sched_domains warning fix

sched-sched-add-load-balance-flag.patch
  sched: sched add load balance flag

sched-sched-add-load-balance-flag-fix.patch
  sched: ia64 load balancing fix

sched-remove-disjoint-numa-domains-setup.patch
  sched: remove disjoint NUMA domains setup

sched-make-domain-setup-overridable.patch
  sched: make domain setup overridable

sched-make-domain-setup-overridable-rename.patch
  sched-make-domain-setup-overridable: rename IDLE

sched-make-domain-setup-overridable-fix.patch
  sched: make domain setup overridable fix

sched-ia64-add-disjoint-numa-domain-support.patch
  sched: IA64 add disjoint NUMA domain support

ia64-non-numa-build-fix.patch
  ia64 non numa build fix

ia64-sched_domains-warning-fixes.patch
  ia64-sched_domains warning fixes

sched-fix-domain-debug-for-isolcpus.patch
  sched: fix domain debug for isolcpus

sched-enable-sd_load_balance.patch
  sched: enable SD_LOAD_BALANCE

sched-hotplug-add-a-cpu_down_failed-notifier.patch
  sched: hotplug add a CPU_DOWN_FAILED notifier

sched-use-cpu_down_failed-notifier.patch
  sched: use CPU_DOWN_FAILED notifier

sched-fixes-for-ia64-domain-setup.patch
  sched: fixes for ia64 domain setup

sched-print-preempt-count.patch
  sched-print-preempt-count

cpu-scheduler-fix-potential-error-in-runqueue-nr_uninterruptible-count.patch
  CPU Scheduler: fix potential error in runqueue nr_uninterruptible count

sched_domains-make-sd_node_init-per-arch-2.patch
  sched_domains: Make SD_NODE_INIT per-arch #2

sched-remove-node_balance_rate-definitions.patch
  sched: remove NODE_BALANCE_RATE definitions

sched-fix-sched_smt-numa=fake=2-lockup.patch
  sched: fix SCHED_SMT & numa=fake=2 lockup

sched-fix-sched_smt-numa=fake=2-lockup-fix.patch
  sched-fix-sched_smt-numa=fake=2-lockup fix

preempt-smp.patch
  improve preemption on SMP

preempt-smp-_raw_read_trylock-bias-fix.patch
  preempt-smp _raw_read_trylock bias fix

preempt-cleanup.patch
  preempt cleanup

preempt-cleanup-fix.patch
  preempt-cleanup-fix

add-lock_need_resched.patch
  add lock_need_resched()

sched-add-cond_resched_softirq.patch
  sched: add cond_resched_softirq()

sched-ext3-fix-scheduling-latencies-in-ext3.patch
  sched: ext3: fix scheduling latencies in ext3

break-latency-in-invalidate_list.patch
  break latency in invalidate_list()

sched-vfs-fix-scheduling-latencies-in-prune_dcache-and-select_parent.patch
  sched: vfs: fix scheduling latencies in prune_dcache() and select_parent()

sched-vfs-fix-scheduling-latencies-in-prune_dcache-and-select_parent-fix.patch
  sched-vfs-fix-scheduling-latencies-in-prune_dcache-and-select_parent fix

sched-net-fix-scheduling-latencies-in-netstat.patch
  sched: net: fix scheduling latencies in netstat

sched-net-fix-scheduling-latencies-in-__release_sock.patch
  sched: net: fix scheduling latencies in __release_sock

sched-mm-fix-scheduling-latencies-in-copy_page_range.patch
  sched: mm: fix scheduling latencies in copy_page_range()

fix-config_debug_highmem-assert-in-copy_page_range.patch
  fix CONFIG_DEBUG_HIGHMEM assert in copy_page_range()

sched-mm-fix-scheduling-latencies-in-unmap_vmas.patch
  sched: mm: fix scheduling latencies in unmap_vmas()

sched-mm-fix-scheduling-latencies-in-get_user_pages.patch
  sched: mm: fix scheduling latencies in get_user_pages()

sched-mm-fix-scheduling-latencies-in-filemap_sync.patch
  sched: mm: fix scheduling latencies in filemap_sync()

sched-pty-fix-scheduling-latencies-in-ptyc.patch
  sched: pty: fix scheduling latencies in pty.c

fix-keventd-execution-dependency.patch
  fix keventd execution dependency

sched-fix-scheduling-latencies-in-mttrc.patch
  sched: fix scheduling latencies in mttr.c

sched-fix-scheduling-latencies-in-vgaconc.patch
  sched: fix scheduling latencies in vgacon.c

sched-fix-scheduling-latencies-for-preempt-kernels.patch
  sched: fix scheduling latencies for !PREEMPT kernels

idle-thread-preemption-fix.patch
  idle thread preemption fix

oprofile-smp_processor_id-fixes.patch
  oprofile smp_processor_id() fixes

fix-smp_processor_id-warning-in-numa_node_id.patch
  Fix smp_processor_id() warning in numa_node_id()

remove-the-bkl-by-turning-it-into-a-semaphore.patch
  remove the BKL by turning it into a semaphore

enable-preempt_bkl-on-smp-too.patch
  enable PREEMPT_BKL on SMP too

sched-add-debug_smp_processor_id.patch
  sched: add DEBUG_SMP_PROCESSOR_ID

preempt-debugging.patch
  preempt debugging

clean-up-preempt-debugging.patch
  clean up preempt-debugging

vmtrunc-truncate_count-not-atomic.patch
  vmtrunc: truncate_count not atomic

vmtrunc-restore-unmap_vmas-zap_bytes.patch
  vmtrunc: restore unmap_vmas zap_bytes

vmtrunc-unmap_mapping_range_tree.patch
  vmtrunc: unmap_mapping_range_tree

vmtrunc-unmap_mapping-dropping-i_mmap_lock.patch
  vmtrunc: unmap_mapping dropping i_mmap_lock

vmtrunc-vm_truncate_count-race-caution.patch
  vmtrunc: vm_truncate_count race caution

vmtrunc-bug-if-page_mapped.patch
  vmtrunc: bug if page_mapped

vmtrunc-restart_addr-in-truncate_count.patch
  vmtrunc: restart_addr in truncate_count

ext3_bread-cleanup.patch
  ext3_bread() cleanup

pcmcia-implement-driver-model-support.patch
  pcmcia: implement driver model support

pcmcia-update-network-drivers.patch
  pcmcia: update network drivers

pcmcia-update-wireless-drivers.patch
  pcmcia: update wireless drivers

pcmcia-add-hotplug-support.patch
  pcmcia: add *hotplug support

linux-2.6.8.1-49-rpc_workqueue.patch
  nfs: RPC: Convert rpciod into a work queue for greater flexibility

linux-2.6.8.1-50-rpc_queue_lock.patch
  nfs: RPC: Remove the rpc_queue_lock global spinlock

dvdrw-support-for-267-bk13.patch
  DVD+RW support for 2.6.7-bk13
  packet-writing: add credits
  CDRW packet writing support
  packet: remove #warning
  packet writing: door unlocking fix
  pkt_lock_door() warning fix
  Fix race in pktcdvd kernel thread handling
  Fix open/close races in pktcdvd
  packet writing: review fixups
  Remove pkt_dev from struct pktcdvd_device
  packet writing: convert to seq_file
  Packet writing support for DVD-RW and DVD+RW discs.
  Get blockdev size right in pktcdvd after switching discs
  packet writing documentation
  Trivial CDRW packet writing doc update
  Control pktcdvd with an auxiliary character device
  Subject: Re: 2.6.8-rc2-mm2
  control-pktcdvd-with-an-auxiliary-character-device-fix
  Simplified request size handling in CDRW packet writing
  Fix setting of maximum read speed in CDRW packet writing
  Packet writing reporting fixes
  Speed up the cdrw packet writing driver
  packet writing: avoid BIO hackery
  cdrom: buffer sizing fix

packet-writing-credits.patch
  packet-writing: add credits

cdrw-packet-writing-support-for-267-bk13.patch
  CDRW packet writing support
  packet: remove #warning
  packet writing: door unlocking fix
  pkt_lock_door() warning fix
  Fix race in pktcdvd kernel thread handling
  Fix open/close races in pktcdvd
  packet writing: review fixups
  Remove pkt_dev from struct pktcdvd_device
  packet writing: convert to seq_file

packet-bio-init.patch
  packet-writing: use bio_init()

dvd-rw-packet-writing-update.patch
  Packet writing support for DVD-RW and DVD+RW discs.
  Get blockdev size right in pktcdvd after switching discs

packet-writing-docco.patch
  packet writing documentation
  Trivial CDRW packet writing doc update

control-pktcdvd-with-an-auxiliary-character-device.patch
  Control pktcdvd with an auxiliary character device
  Subject: Re: 2.6.8-rc2-mm2
  control-pktcdvd-with-an-auxiliary-character-device-fix

packet-private-data.patch
  packet-writing: use gendisk private data

simplified-request-size-handling-in-cdrw-packet-writing.patch
  Simplified request size handling in CDRW packet writing

fix-setting-of-maximum-read-speed-in-cdrw-packet-writing.patch
  Fix setting of maximum read speed in CDRW packet writing

packet-writing-reporting-fix.patch
  Packet writing reporting fixes

speed-up-the-cdrw-packet-writing-driver.patch
  Speed up the cdrw packet writing driver

packet-writing-avoid-bio-hackery.patch
  packet writing: avoid BIO hackery

packet-open-comment.patch
  packet-writing: remove useless search

cdrom-buffer-size-fix.patch
  cdrom: buffer sizing fix

cpufreq-driver-for-nforce2-kernel-267.patch
  cpufreq driver for nForce2

allow-modular-ide-pnp.patch
  allow modular ide-pnp

create-nodemask_t.patch
  Create nodemask_t
  nodemask fix
  nodemask build fix

allow-x86_64-to-reenable-interrupts-on-contention.patch
  Allow x86_64 to reenable interrupts on contention

serialize-access-to-ide-devices.patch
  serialize access to ide devices

remove-unconditional-pci-acpi-irq-routing.patch
  remove unconditional PCI ACPI IRQ routing

propagate-pci_enable_device-errors.patch
  propagate pci_enable_device() errors

disable-atykb-warning.patch
  disable atykb "too many keys pressed" warning

reiserfs-rename-struct-key.patch
  reiserfs-rename-struct-key

add-some-key-management-specific-error-codes.patch
  Add some key management specific error codes

keys-new-error-codes-for-alpha-mips-pa-risc-sparc-sparc64.patch
  keys: new error codes for Alpha, MIPS, PA-RISC, Sparc & Sparc64

implement-in-kernel-keys-keyring-management.patch
  implement in-kernel keys & keyring management
  keys build fix
  keys & keyring management update patch
  implement-in-kernel-keys-keyring-management-update-build-fix
  implement-in-kernel-keys-keyring-management-update-build-fix-2
  key management patch cleanup

return-a-different-error-if-unavailable-keytype-is-used.patch
  Return a different error if unavailable keytype is used

link-user-keyrings-together-correctly.patch
  Link user keyrings together correctly

make-key-management-code-use-new-the-error-codes.patch
  Make key management code use new the error codes

keys-permission-fix.patch
  keys: permission fix

implement-in-kernel-keys-keyring-management-afs-workaround.patch
  implement-in-kernel-keys-keyring-management afs workaround

support-supplementary-information-for-request-key.patch
  Support supplementary information for request-key

make-key-management-use-syscalls-not-prctls.patch
  Make key management use syscalls not prctls

move-syscall-declarations-from-linux-keyh-2.patch
  Move syscall declarations from linux/key.h #2

bits-to-make-the-key-management-api-more-usable.patch
  Bits to make the key management API more usable

make-key-management-use-syscalls-not-prctls-build-fix.patch
  make-key-management-use-syscalls-not-prctls build fix

export-file_ra_state_init-again.patch
  Export file_ra_state_init() again

cachefs-filesystem.patch
  CacheFS filesystem

cachefs-release-search-records-lest-they-return-to-haunt-us.patch
  CacheFS: release search records lest they return to haunt us

fix-64-bit-problems-in-cachefs.patch
  Fix 64-bit problems in cachefs

cachefs-fixed-typos-that-cause-wrong-pointer-to-be-kunmapped.patch
  cachefs: fixed typos that cause wrong pointer to be kunmapped

cachefs-return-the-right-error-upon-invalid-mount.patch
  CacheFS: return the right error upon invalid mount

fix-cachefs-barrier-handling-and-other-kernel-discrepancies.patch
  Fix CacheFS barrier handling and other kernel discrepancies

remove-error-from-linux-cachefsh.patch
  Remove #error from linux/cachefs.h

cachefs-warning-fix-2.patch
  cachefs warning fix 2

cachefs-linkage-fix-2.patch
  cachefs linkage fix

cachefs-build-fix.patch
  cachefs build fix

cachefs-documentation.patch
  CacheFS documentation

add-page-becoming-writable-notification.patch
  Add page becoming writable notification

provide-a-filesystem-specific-syncable-page-bit.patch
  Provide a filesystem-specific sync'able page bit

provide-a-filesystem-specific-syncable-page-bit-fix.patch
  provide-a-filesystem-specific-syncable-page-bit-fix

make-afs-use-cachefs.patch
  Make AFS use CacheFS

afs-cachefs-dependency-fix.patch
  afs-cachefs-dependency-fix

split-general-cache-manager-from-cachefs.patch
  Split general cache manager from CacheFS

turn-cachefs-into-a-cache-backend.patch
  Turn CacheFS into a cache backend

rework-the-cachefs-documentation-to-reflect-fs-cache-split.patch
  Rework the CacheFS documentation to reflect FS-Cache split

update-afs-client-to-reflect-cachefs-split.patch
  Update AFS client to reflect CacheFS split

268-rc3-jffs2-unable-to-read-filesystems.patch
  jffs2 unable to read filesystems

assign_irq_vector-section-fix.patch
  assign_irq_vector __init section fix

kexec-i8259-shutdowni386.patch
  kexec: i8259-shutdown.i386

kexec-i8259-shutdown-x86_64.patch
  kexec: x86_64 i8259 shutdown

kexec-apic-virtwire-on-shutdowni386patch.patch
  kexec: apic-virtwire-on-shutdown.i386.patch

kexec-apic-virtwire-on-shutdownx86_64.patch
  kexec: apic-virtwire-on-shutdown.x86_64

kexec-ioapic-virtwire-on-shutdowni386.patch
  kexec: ioapic-virtwire-on-shutdown.i386

kexec-ioapic-virtwire-on-shutdownx86_64.patch
  kexec: ioapic-virtwire-on-shutdown.x86_64

kexec-e820-64bit.patch
  kexec: e820-64bit

kexec-kexec-generic.patch
  kexec: kexec-generic

kexec-machine_shutdownx86_64.patch
  kexec: machine_shutdown.x86_64

kexec-kexecx86_64.patch
  kexec: kexec.x86_64

kexec-machine_shutdowni386.patch
  kexec: machine_shutdown.i386

kexec-kexeci386.patch
  kexec: kexec.i386

kexec-use_mm.patch
  kexec: use_mm

crashdump-documentation.patch
  crashdump: documentation

crashdump-memory-preserving-reboot-using-kexec.patch
  crashdump: memory preserving reboot using kexec

crashdump-routines-for-copying-dump-pages.patch
  crashdump: routines for copying dump pages

crashdump-kmap-build-fix.patch
  crashdump kmap build fix

crashdump-register-snapshotting-before-kexec-boot.patch
  crashdump: register snapshotting before kexec boot

crashdump-elf-format-dump-file-access.patch
  crashdump: ELF format dump file access

crashdump-linear-raw-format-dump-file-access.patch
  crashdump: linear/raw format dump file access

new-bitmap-list-format-for-cpusets.patch
  new bitmap list format (for cpusets)

cpusets-big-numa-cpu-and-memory-placement.patch
  cpusets - big numa cpu and memory placement

cpusets-fix-cpuset_get_dentry.patch
  cpusets : fix cpuset_get_dentry()

cpusets-fix-race-in-cpuset_add_file.patch
  cpusets: fix race in cpuset_add_file()

cpusets-remove-more-casts.patch
  cpusets: remove more casts

cpusets-make-config_cpusets-the-default-in-sn2_defconfig.patch
  cpusets: make CONFIG_CPUSETS the default in sn2_defconfig

cpusets-document-proc-status-allowed-fields.patch
  cpusets: document proc status allowed fields

cpusets-dont-export-proc_cpuset_operations.patch
  Cpusets - Dont export proc_cpuset_operations

cpusets-display-allowed-masks-in-proc-status.patch
  cpusets: display allowed masks in proc status

cpusets-simplify-cpus_allowed-setting-in-attach.patch
  cpusets: simplify cpus_allowed setting in attach

cpusets-remove-useless-validation-check.patch
  cpusets: remove useless validation check

cpusets-config_cpusets-depends-on-smp.patch
  Cpusets: CONFIG_CPUSETS depends on SMP

cpusets-tasks-file-simplify-format-fixes.patch
  Cpusets tasks file: simplify format, fixes

cpusets-simplify-memory-generation.patch
  Cpusets: simplify memory generation

cpusets-interoperate-with-hotplug-online-maps.patch
  cpusets: interoperate with hotplug online maps

cpusets-alternative-fix-for-possible-race-in.patch
  cpusets: alternative fix for possible race in  cpuset_tasks_read()

cpusets-remove-casts.patch
  cpusets: remove void* typecasts

reiser4-sb_sync_inodes.patch
  reiser4: vfs: add super_operations.sync_inodes()

reiser4-sb_sync_inodes-cleanup.patch
  reiser4-sb_sync_inodes-cleanup

reiser4-allow-drop_inode-implementation.patch
  reiser4: export vfs inode.c symbols

reiser4-allow-drop_inode-implementation-cleanup.patch
  reiser4-allow-drop_inode-implementation-cleanup

reiser4-truncate_inode_pages_range.patch
  reiser4: vfs: add truncate_inode_pages_range()

reiser4-truncate_inode_pages_range-cleanup.patch
  reiser4-truncate_inode_pages_range-cleanup

reiser4-export-remove_from_page_cache.patch
  reiser4: export pagecache add/remove functions to modules

reiser4-export-page_cache_readahead.patch
  reiser4: export page_cache_readahead to modules

reiser4-reget-page-mapping.patch
  reiser4: vfs: re-check page->mapping after calling try_to_release_page()

reiser4-rcu-barrier.patch
  reiser4: add rcu_barrier() synchronization point

reiser4-rcu-barrier-fix.patch
  reiser4-rcu-barrier fix

reiser4-export-inode_lock.patch
  reiser4: export inode_lock to modules

reiser4-export-inode_lock-cleanup.patch
  reiser4-export-inode_lock-cleanup

reiser4-export-pagevec-funcs.patch
  reiser4: export pagevec functions to modules

reiser4-export-pagevec-funcs-cleanup.patch
  reiser4-export-pagevec-funcs-cleanup

reiser4-export-radix_tree_preload.patch
  reiser4: export radix_tree_preload() to modules

reiser4-radix-tree-tag.patch
  reiser4: add new radix tree tag

reiser4-radix_tree_lookup_slot.patch
  reiser4: add radix_tree_lookup_slot()

reiser4-aliased-dir.patch
  reiser4: vfs: handle aliased directories

reiser4-kobject-umount-race.patch
  reiser4: introduce filesystem kobjects

reiser4-kobject-umount-race-cleanup.patch
  reiser4-kobject-umount-race-cleanup

reiser4-perthread-pages.patch
  reiser4: per-thread page pools

reiser4-unstatic-kswapd.patch
  reiser4: make kswapd() unstatic for debug

reiser4-include-reiser4.patch
  reiser4: add to build system

reiser4-4kstacks-fix.patch
  resier4-4kstacks-fix

stop-reiser4-from-turning-itself-on-by-default.patch
  Stop reiser4 from turning itself on by default

reiser4-doc.patch
  reiser4: documentation

reiser4-doc-update.patch
  Update Documentation/Changes for reiser4

reiser4-only.patch
  reiser4: main fs

reiser4-cond_resched-build-fix.patch
  reiser4: cond_resched() build fix

reiser4-debug-build-fix.patch
  reiser4-debug-build-fix

reiser4-prefetch-warning-fix.patch
  reiser4: prefetch warning fix

reiser4-mode-fix.patch
  reiser4: mode type fix

reiser4-get_context_ok-warning-fixes.patch
  reiser4: get_context_ok() warning fixes

reiser4-remove-debug.patch
  resier4: remove debug stuff

reiser4-spinlock-debugging-build-fix-2.patch
  reiser4-spinlock-debugging-build-fix-2

reiser4-sparc64-build-fix.patch
  reiser4 sparc64 build fix

sys_reiser4-sparc64-build-fix.patch
  sys_reiser4 sparc64 build fix

reiser4-printk-warning-fixes.patch
  reiser4 printk warning fixes

reiser4-generic_acl-fix.patch
  reiser4: generic_acl fix

reiser4-plugin_set_done-memleak-fix.patch
  reiser4 plugin_set_done-memleak-fix.patch

reiser4-init-max_atom_flusers.patch
  reiser4 init-max_atom_flusers.patch

reiser4-parse-options-reduce-stack-usage.patch
  reiser4 parse-options-reduce-stack-usage.patch

reiser4-sparce64-warning-fix.patch
  reiser4 sparc64-warning-fix.patch

reiser4-hardirq-build-fix.patch
  resiser4: hardirq.h build fix

reiser4-x86_64-warning-fix.patch
  reiser4 x86_64-warning-fix.patch

reiser4-fix-mount-option-parsing.patch
  reiser4 fix-mount-option-parsing.patch

reiser4-parse-option-cleanup.patch
  reiser4 parse-option-cleanup.patch

reiser4-comment-fix.patch
  reiser4 comment-fix.patch

reiser4-fill_super-improve-warning.patch
  reiser4 fill_super-improve-warning.patch

reiser4-disable-pseudo.patch
  reiser4 disable-pseudo.patch

reiser4-disable-repacker.patch
  reiser4 disable-repacker.patch

add-acpi-based-floppy-controller-enumeration.patch
  Add ACPI-based floppy controller enumeration.

add-acpi-based-floppy-controller-enumeration-fix.patch
  add-acpi-based-floppy-controller-enumeration fix

update-acpi-floppy-enumeration.patch
  update ACPI floppy enumeration

floppy-acpi-enumeration-update.patch
  floppy ACPI enumeration update

possible-dcache-bug-debugging-patch.patch
  Possible dcache BUG: debugging patch

kallsyms-data-size-reduction--lookup-speedup.patch
  kallsyms data size reduction / lookup speedup

tioccons-security.patch
  TIOCCONS security

fix-process-start-times.patch
  Fix reporting of process start times

fix-comment-in-include-linux-nodemaskh.patch
  Fix comment in include/linux/nodemask.h

move-waitqueue-functions-to-kernel-waitc.patch
  move waitqueue functions to kernel/wait.c

standardize-bit-waiting-data-type.patch
  standardize bit waiting data type

provide-a-filesystem-specific-syncable-page-bit-fix-2.patch
  provide-a-filesystem-specific-syncable-page-bit-fix-2

consolidate-bit-waiting-code-patterns.patch
  consolidate bit waiting code patterns
  consolidate-bit-waiting-code-patterns-cleanup
  __wait_on_bit-fix

eliminate-bh-waitqueue-hashtable.patch
  eliminate bh waitqueue hashtable

eliminate-bh-waitqueue-hashtable-fix.patch
  wait_on_bit_lock() must test_and_set_bit(), not test_bit()

eliminate-inode-waitqueue-hashtable.patch
  eliminate inode waitqueue hashtable

move-wait-ops-contention-case-completely-out-of-line.patch
  move wait ops' contention case completely out of line

reduce-number-of-parameters-to-__wait_on_bit-and-__wait_on_bit_lock.patch
  reduce number of parameters to __wait_on_bit() and __wait_on_bit_lock()

wait_on_bit-must-loop.patch
  wait_on_bit() must loop

document-wake_up_bits-requirement-for-preceding-memory-barriers.patch
  document wake_up_bit()'s requirement for preceding memory barriers

jbd-wakeup-fix.patch
  jbd wakeup fix

3c59x-pm-fix.patch
  3c59x: enable power management unconditionally

3c59x-missing-pci_disable_device.patch
  3c59x: missing pci_disable_device

3c59x-use-netdev_priv.patch
  3c59x: use netdev_priv

3c59x-make-use-of-generic_mii_ioctl.patch
  3c59x: Make use of generic_mii_ioctl

3c59x-vortex-select-mii.patch
  3c59x: VORTEX select MII

3c59x-reload-eeprom-values-at-rmmod-for-needy-cards.patch
  3c59x: reload EEPROM values at rmmod for needy cards

serial-mpsc-driver.patch
  Serial MPSC driver

serial-add-support-for-non-standard-xtals-to-16c950-driver.patch
  serial: add support for non-standard XTALs to 16c950 driver

add-support-for-possio-gcc-aka-pcmcia-siemens-mc45.patch
  Add support for Possio GCC AKA PCMCIA Siemens MC45

serial-8250-receive-lockup-fix.patch
  serial: 8250 receive lockup fix

new-serial-flow-control.patch
  new serial flow control

vm-pageout-throttling.patch
  vm: pageout throttling

fix-race-in-sysfs_read_file-and-sysfs_write_file.patch
  Fix race in sysfs_read_file() and sysfs_write_file()

possible-race-in-sysfs_read_file-and-sysfs_write_file-update.patch
  Possible race in sysfs_read_file() and sysfs_write_file()

md-add-interface-for-userspace-monitoring-of-events.patch
  md: add interface for userspace monitoring of events.

unreachable-code-in-ext3_direct_io.patch
  unreachable code in ext3_direct_IO()

revert-allow-oem-written-modules-to-make-calls-to-ia64-oem-sal-functions.patch
  revert "allow OEM written modules to make calls to ia64 OEM SAL functions"

switchable-and-modular-io-schedulers.patch
  switchable and modular io schedulers

return-einval-on-elevator_store-failure.patch
  return -EINVAL on elevator_store failure

switchable-and-modular-io-schedulers-fix.patch
  bad while termination on modular scheduler patch

switchable-and-modular-io-schedulers-hack-fix.patch
  switchable-and-modular-io-schedulers hack fix

update-cfq-v2-scheduler-patch.patch
  cfq-v2 I/O scheduler update

cfq-v2-pin-cfq_data-from-io_context.patch
  cfq-v2 pin cfq_data from io_context

convert-jiffies-msecs-for-io-schedulers.patch
  convert jiffies <-> msecs for io schedulers

dont-export-blkdev_open-and-def_blk_ops.patch
  don't export blkdev_open and def_blk_ops

remove-dead-code-from-fs-mbcachec.patch
  remove dead code from fs/mbcache.c

remove-posix_acl_masq_nfs_mode.patch
  remove posix_acl_masq_nfs_mode

dont-export-shmem_file_setup.patch
  don't export shmem_file_setup

remove-pm_find-unexport-pm_send.patch
  remove pm_find, unexport pm_send

remove-dead-code-and-exports-from-signalc.patch
  remove dead code and exports from signal.c

unexport-proc_sys_root.patch
  unexport proc_sys_root

unexport-is_subdir-and-shrink_dcache_anon.patch
  unexport is_subdir and shrink_dcache_anon

unexport-devfs_mk_symlink.patch
  unexport devfs_mk_symlink

unexport-do_execve-do_select.patch
  unexport do_execve/do_select

unexport-exit_mm.patch
  unexport exit_mm

unexport-files_lock-and-put_filp.patch
  unexport files_lock and put_filp

unexport-f_delown.patch
  unexport f_delown

unexport-lookup_create.patch
  unexport lookup_create

remove-wake_up_all_sync.patch
  remove wake_up_all_sync

remove-set_fs_root-set_fs_pwd.patch
  remove set_fs_root/set_fs_pwd

md-remove-md_flush_all.patch
  md: remove md_flush_all

md-make-retry_list-non-global-in-raid1-and-multipath.patch
  md: make retry_list non-global in raid1 and multipath

md-rationalise-issue_flush-function-in-md-personalities.patch
  md: rationalise issue_flush function in md personalities

md-rationalise-unplug-functions-in-md.patch
  md: rationalise unplug functions in md

md-make-sure-md-always-uses-rdev_dec_pending-properly.patch
  md: make sure md always uses rdev_dec_pending properly

md-fix-two-little-bugs-in-raid10.patch
  md: fix two little bugs in raid10

md-modify-locking-when-accessing-subdevices-in-md.patch
  md: modify locking when accessing subdevices in md

generic-acl-support-for-permission.patch
  generic acl support for ->permission

generic-acl-support-for-permission-fix.patch
  generic acl support for ->permission fix

cacheline-align-pagevec-structure.patch
  Adjust align pagevec structure

fbdev-remove-unnecessary-banshee_wait_idle-from-tdfxfb.patch
  fbdev: remove unnecessary banshee_wait_idle from tdfxfb

fbdev-fix-logo-drawing-failure-for-vga16fb.patch
  fbdev: fix logo drawing failure for vga16fb

fbcon-fix-setup-boot-options-of-fbcon.patch
  fbcon: Fix setup boot options of fbcon

fbdev-pass-struct-device-to-class_simple_device_add.patch
  fbdev: Pass struct device to class_simple_device_add

fbdev-add-tile-blitting-support.patch
  fbdev: Add Tile Blitting support

fbdev-fix-scrolling-corruption.patch
  fbdev: fix scrolling corruption

radeonfb-fix-warnings-about-uninitialized-variables.patch
  radeonfb: Fix monitor probe logic

radeonfb-fix-warnings-about-uninitialized-variables-fix.patch
  radeonfb-fix-warnings-about-uninitialized-variables-fix

fbdev-remove-i810fb-explicit-agp-initialization-hack.patch
  fbdev: Remove i810fb explicit agp initialization hack.

fbdev-add-iomem-annotations-to-fbmemc.patch
  fbdev: Add iomem annotations to fbmem.c

fbdev-add-iomem-annotations-to-i810fb.patch
  fbdev: Add iomem annotations to i810fb

fbdev-add-iomem-annotations-to-vga16fbc.patch
  fbdev: Add iomem annotations to vga16fb.c

vga-console-font-problems-on-26-kernel.patch
  VGA console font problems on 2.6 kernel

fbcon-unimap-fix.patch
  fbcon unimap fix

edid_info-in-zero-page.patch
  Fix EDID_INFO in zero-page

fbdev-fix-framebuffer-memory-calculation-for-vesafb.patch
  fbdev: fix framebuffer memory calculation for vesafb

fbdev-split-vesafb-option-vram-into-vtotal-and-vremap.patch
  fbdev: split vesafb option vram into vtotal and vremap

remove-big-endian-mode-from-matroxfb.patch
  Remove big-endian mode from matroxfb

assorted-matroxfb-fixes.patch
  Assorted matroxfb fixes

rework-radeonfb-blanking.patch
  rework radeonfb blanking

fix-for-spurious-interrupts-on-e100-resume-2.patch
  Fix for spurious interrupts on e100 resume 2

i-o-space-write-barrier-2.patch
  I/O space write barrier v2

atomic_inc_return-for-i386.patch
  atomic_inc_return() for i386

atomic_inc_return-for-x86_64.patch
  atomic_inc_return() for x86_64

atomic_inc_return-for-arm.patch
  atomic_inc_return() for arm

atomic_inc_return-for-arm26.patch
  atomic_inc_return() for arm26

atomic_inc_return-for-sparc64.patch
  atomic_inc_return() for sparc64

remove-dead-exports-from-fs-fat.patch
  remove dead exports from fs/fat/

fat-use-hlist_head-for-fat_inode_hashtable-1-6.patch
  FAT: use hlist_head for fat_inode_hashtable

fat-rewrite-the-cache-for-file-allocation-table-lookup.patch
  FAT: rewrite the cache for file allocation table lookup

fat-cache-lock-from-per-sb-to-per-inode-3-6.patch
  FAT: cache lock from per sb to per inode

fat-the-inode-hash-from-per-module-to-per-sb-4-6.patch
  FAT: the inode hash from per module to per sb

fat-fix-the-race-bitween-fat_free-and-fat_get_cluster.patch
  FAT: Fix the race bitween fat_free() and fat_get_cluster()

fat-remove-debug_pr-6-6.patch
  FAT: remove debug_pr()

fat-merge-fix.patch
  Subject: [PATCH 1/4] FAT: merge fix

fat-check-free_clusters-value.patch
  Subject: [PATCH 2/4] FAT: check free_clusters value

fat-removal-of-c_le_-macro.patch
  Subject: [PATCH 3/4] FAT: removal of C[FT]_LE_[WL] macro

fat-remove-validity-check-of-fat-first-entry.patch
  Subject: [PATCH 4/4] FAT: remove validity check of FAT first entry

thinkpad-fnfx-key-driver.patch
  thinkpad fn+fx key driver

enforce-a-gap-between-heap-and-stack.patch
  Enforce a gap between heap and stack

no-exec-i386-and-x86_64-fixes.patch
  no exec: i386 and x86_64 cleanups

rewrite-alloc_pidmap.patch
  pidhashing: rewrite alloc_pidmap()

pidhashing-retain-older-vendor-copyright.patch
  From: William Lee Irwin III <wli@holomorphy.com>
  Subject: [pidhashing] [1/3] retain older vendor copyright

pidhashing-lower-pid_max_limit-for-32-bit-machines.patch
  From: William Lee Irwin III <wli@holomorphy.com>
  Subject: [pidhashing] [2/3] lower PID_MAX_LIMIT for 32-bit machines

pidhashing-enforce-pid_max_limit-in-sysctls.patch
  From: William Lee Irwin III <wli@holomorphy.com>
  Subject: [pidhashing] [3/3] enforce PID_MAX_LIMIT in sysctls

allow-multiple-inputs-in-alternative_input.patch
  Allow multiple inputs in alternative_input

autofs4-allow-map-update-recognition.patch
  autofs4: allow map update recognition

lighten-mmlist_lock.patch
  lighten mmlist_lock

incorrect-pci-interrupt-assignment-on-es7000-for-platform-gsi.patch
  Incorrect PCI interrupt assignment on ES7000 for platform GSI

fix-task_mmuc-text-size-reporting.patch
  procfs: fix task_mmu.c text size reporting

sparc32-add-atomic_sub_and_test.patch
  sparc32: add atomic_sub_and_test()

make-console_conditional_schedule-__sched-and-use-cond_resched.patch
  make console_conditional_schedule() __sched and use cond_resched()

report-per-process-pagetable-usage.patch
  report per-process pagetable usage

remove-lock_section-from-x86_64-spin_lock-asm.patch
  remove LOCK_SECTION from x86_64 spin_lock asm

v4l-msp3400-cleanup.patch
  v4l: msp3400 cleanup

v4l-tuner-update.patch
  v4l: tuner update

v4l-bttv-update.patch
  v4l: bttv update

v4l-dvb-cx88-driver-update.patch
  v4l/dvb: cx88 driver update

v4l-dvb-cx88-driver-update-fix.patch
  v4l-dvb-cx88-driver-update-fix

DVB-update-saa7146.patch
  DVB: update saa7146

DVB-documentation-update.patch
  DVB: documentation update

DVB-skystar2-dvb-bt8xx-update.patch
  DVB: skystar2 dvb bt8xx update

DVB-dvb-core-update.patch
  DVB: core update

DVB-frontend-conversion.patch
  DVB: frontend conversion

DVB-frontend-conversion2.patch
  DVB: frontend conversion #2

DVB-frontend-conversion3.patch
  DVB: frontend conversion #3

DVB-frontend-conversion4.patch
  DVB: frontend conversion #4

DVB-add-frontend-1-2.patch
  DVB: add frontend

DVB-add-frontend-2-2.patch
  DVB: add frontend #2

DVB-new-driver-dibusb.patch
  DVB: new driver for mobile USB Budget DVB-T devices

DVB-misc-driver-updates.patch
  DVB: misc driver updates

DVB-frontend-updates.patch
  DVB: frontend updates

V4L-follow-changes-in-saa7146.patch
  V4L: follow changes in saa7146

a-simple-fifo-implementation.patch
  A simple FIFO implementation

add-hook-for-pci-resource-deallocation-2.patch
  add hook for PCI resource deallocation

replace-hard-coded-modverdir-in-modpost.patch
  Replace hard-coded MODVERDIR in modpost

gen_init_cpio-uses-external-file-list.patch
  gen_init_cpio uses external file list

select-cpio_list-or-source-directory-for-initramfs-image.patch
  Select cpio_list or source directory for initramfs image

select-cpio_list-or-source-directory-for-initramfs-image-fix.patch
  select-cpio_list-or-source-directory-for-initramfs-image fix

ia64-alignment-error-stack-dump.patch
  ia64-alignment-error-stack-dump

changed-pci_find_device-to-pci_get_device.patch
  Changed pci_find_device to pci_get_device

remove-mod_inc_use_count-mod_dec_use_count.patch
  remove MOD_INC_USE_COUNT/MOD_DEC_USE_COUNT

mark-inter_module_-deprecated.patch
  mark inter_module_* deprecated

dont-include-linux-sysctlh-in-linux-securityh.patch
  don't include <linux/sysctl.h> in <linux/security.h>

cleanup-move-call-to-update_process_times.patch
  cleanup: move call to update_process_times.

cleanup-remove-unused-definitions-from-timexh.patch
  cleanup: remove unused definitions from timex.h

cleanup-timeh-timesh-timexh-and-jiffiesh.patch
  cleanup: time.h, times.h, timex.h and jiffies.h

fix-dcache-lookup.patch
  Fix dcache lookup

remove-d_bucket.patch
  Remove d_bucket

remove-d_bucket-warning-fix.patch
  remove-d_bucket warning fix

document-rcu-based-dcache-lookup.patch
  Document RCU based dcache lookup

x86-64-i386-add-mce-tainting.patch
  x86-64/i386: add mce tainting

x86-64-i386-add-mce-tainting-fix-2.patch
  x86-64-i386-add-mce-tainting fix 2

taint-cleanup-mce.patch
  taint: cleanup mce

taint-fix-forced-rmmod.patch
  taint: fix forced rmmod

taint-on-bad_page.patch
  taint on bad_page

smbfs-do-not-honor-uid-gid-file_mode-and-dir_mode-supplied.patch
  smbfs does not honor uid, gid, file_mode and dir_mode supplied by user mount

kfree_skb-dump_stack.patch
  kfree_skb-dump_stack

simplify-last-lib-idrc-change.patch
  Simplify last lib/idr.c change

fix-typesh.patch
  Fix types.h

xattr-consolidation-v3-generic-xattr-api.patch
  xattr consolidation v3 - generic xattr API

xattr-consolidation-v3-lsm.patch
  xattr consolidation v3 - LSM

xattr-consolidation-v3-ext3.patch
  xattr consolidation v3 - ext3

xattr-consolidation-v3-ext2.patch
  xattr consolidation v3 - ext2

xattr-consolidation-v3-devpts.patch
  xattr consolidation v3 - devpts

xattr-consolidation-v3-tmpfs.patch
  xattr consolidation v3 - tmpfs

xattr-consolidation-v3-tmpfs-fix.patch
  xattr-consolidation-v3-tmpfs fix

xattr-reintroduce-sanity-checks-2.patch
  xattr: re-introduce validity check before xattr cache insert

allow-all-filesystems-to-specify-fscreate-mount.patch
  SELinux: allow all filesystems to specify fscreate mount  option

512x-altix-timer-interrupt-livelock-fix-vs-269-rc2-mm2.patch
  profile: 512x Altix timer interrupt livelock fix

sparc32-early-tick_ops.patch
  sparc32: early tick_ops

smc91x-revert-11923358-m32r-modify-drivers-net-smc91xc.patch
  smc91x: Revert 1.1923.3.58: "m32r: modify drivers/net/smc91x.c for m32r"

smc91x-assorted-minor-cleanups.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 2/11] smc91x: Assorted minor cleanups

smc91x-set-the-mac-addr-from-the-smc_enable-function.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 3/11] smc91x: set the MAC addr from the smc_enable function

smc91x-fold-smc_setmulticast-into-smc_set_multicast_list.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 4/11] smc91x: fold smc_setmulticast() into smc_set_multicast_list()

smc91x-simplify-register-bank-usage.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 5/11] smc91x: simplify register bank usage

smc91x-move-tx-processing-out-of-irq-context-entirely.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 6/11] smc91x: move TX processing out of IRQ context entirely

smc91x-use-a-work-queue-to-reconfigure-the-phy-from.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 7/11] smc91x: use a work queue to reconfigure the phy from  smc_timeout()

smc91x-fix-possible-leak-of-the-skb-waiting-for-mem.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 8/11] smc91x: fix possible leak of the skb waiting for mem  allocation

smc91x-display-pertinent-register-values-from-the.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 9/11] smc91x: display pertinent register values from the  timeout function

smc91x-straighten-smp-locking.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 10/11] smc91x: straighten SMP locking

smc91x-cosmetics.patch
  From: Nicolas Pitre <nico@cam.org>
  Subject: [Patch 11/11] smc91x: cosmetics

m32r-trivial-fix-of-smc91xh.patch
  m32r: trivial fix of smc91x.h

smc91x-fix-smp-lock-usage.patch
  smc91x: fix SMP lock usage

smc91x-more-smp-locking-fixes.patch
  smc91x: more SMP locking fixes

smc91x-fix-compilation-with-dma-on-pxa2xx.patch
  smc91x: fix compilation with DMA on PXA2xx

smc91x-receives-two-bytes-too-many.patch
  smc91x: receives two bytes too many

smc91x-release-on-chip-rx-packet-memory-asap.patch
  smc91x: release on-chip RX packet memory ASAP

i2o-code-beautifying-and-cleanup.patch
  i2o: code beautifying and cleanup

i2o-added-support-for-promise-controllers.patch
  i2o: added support for Promise controllers

i2o-new-functions-to-convert-messages-to-a-virtual-address.patch
  i2o: new functions to convert messages to a virtual address

i2o-correct-error-code-if-bus-is-busy-in-i2o_scsi.patch
  i2o: correct error code if bus is busy in i2o_scsi

i2o-message-conversion-fix-for-le32_to_cpu-parameters.patch
  i2o: message conversion fix for le32_to_cpu parameters

janitor-cpqarray-remove-unused-include.patch
  janitor: cpqarray remove unused include

janitor-remove-old-ifdefs-dmascc.patch
  janitor: remove old ifdefs dmascc

janitor-remove-old-ifdefs-fasttimer.patch
  janitor: remove old ifdefs fasttimer

janitor-list_for_each-drivers-char-drm-radeon_memc.patch
  janitor: list_for_each: drivers-char-drm-radeon_mem.c

janitor-char-rio_linux-replace-schedule_timeout-with-msleep-msleep_interruptible.patch
  janitor: char/rio_linux: replace schedule_timeout() with msleep()/msleep_interruptible()

janitor-char-sis-agp-replace-schedule_timeout-with-msleep.patch
  janitor: char/sis-agp: replace schedule_timeout() with msleep()

janitor-char-fdc-io-replace-direct-assignment-with-set_current_state.patch
  janitor: char/fdc-io: replace direct assignment with set_current_state()

janitor-char-ipmi_si_intf-add-set_current_state.patch
  janitor: char/ipmi_si_intf: add set_current_state()

janitor-char-sx-replace-direct-assignment-with-set_current_state.patch
  janitor: char/sx: replace direct assignment with set_current_state()

drivers-char-replace-schedule_timeout-with-msleep_interruptible.patch
  drivers/char: replace schedule_timeout() with msleep_interruptible()

janitor-removing-check_region-from-drivers-char-espc.patch

janitor-mark-__init-__exit-static-drivers-net-ppp_deflate.patch
  janitor: mark __init/__exit static drivers/net/ppp_deflate

janitor-mark-__init-__exit-static-drivers-net-bsd_comp.patch
  janitor: mark __init/__exit static drivers/net/bsd_comp

janitor-fix-typo-arm-dma-arch-arm26-machine-dmac.patch
  janitor: fix-typo-arm-dma arch/arm26/machine/dma.c

kill-kernel_version-duplicate-in-videocodecc.patch
  janitor: kill KERNEL_VERSION duplicate in videocodec.c

video-radeon_base-replace-ms_to_hz-with-msecs_to_jiffies.patch
  janitor: video/radeon_base: replace MS_TO_HZ() with msecs_to_jiffies()

video-radeonfb-remove-ms_to_hz.patch
  janitor: video/radeonfb: remove MS_TO_HZ()

drivers-media-replace-schedule_timeout-with-msleep.patch
  janitor: drivers/media: replace schedule_timeout() with msleep()

drivers-message-replace-schedule_timeout-with-msleep_interruptible.patch
  janitor: drivers/message: replace schedule_timeout() with msleep_interruptible()

drivers-md-replace-schedule_timeout-with-msleep_interruptible.patch
  drivers/md: replace schedule_timeout() with msleep_interruptible()

drivers-ieee1394-replace-schedule_timeout-with-msleep_interruptible.patch
  ieee1394: replace schedule_timeout() with msleep_interruptible()

janitor-replace-dprintk-with-pr_debug-in-drivers-scsi-tpam.patch
  janitor: replace dprintk with pr_debug in drivers/scsi/tpam/

janitor-isdn-icn-change-units-of-icn_boot_timeout1.patch
  janitor: isdn/icn: change units of ICN_BOOT_TIMEOUT1

drivers-isdn-replace-milliseconds-with-msecs_to_jiffies.patch
  drivers/isdn: replace milliseconds() with msecs_to_jiffies()

__function__-string-concatenation-deprecated.patch
  janitor: __FUNCTION__ string concatenation deprecated

janitor-replace-dprintk-with-pr_debug-in-microcodec.patch
  janitor: replace dprintk with pr_debug in microcode.c

janitor-net-mac89x0-replace-schedule_timeout-with-msleep_interruptible.patch
  net/mac89x0: replace schedule_timeout() with msleep_interruptible()

nfsd4-fix-nfsd-oopsed-when-encountering-a-conflict-with-a-local-lock.patch
  nfsd4: nfsd oopsed when encountering a conflict with a local lock

nfsd-separate-a-little-of-logic-from-fh_verify-into-new-function.patch
  nfsd: separate a little of logic from fh_verify into new function

nfsd4-dont-take-i_sem-around-call-to-getxattr.patch
  nfsd4: don't take i_sem around call to ->getxattr

nfsd-make-sure-getxattr-inode-op-is-non-null-before-calling-it.patch
  nfsd: make sure getxattr inode op is non-NULL before calling it

nfsd4-reference-count-stateowners.patch
  nfsd4: reference count stateowners

nfsd4-take-a-reference-to-preserve-stateowner-through-xdr-replay-code.patch
  nfsd4: take a reference to preserve stateowner through xdr replay code

nfsd4-revert-awkward-extension-of-state-lock-over-xdr-for-replay-encoding.patch
  nfsd4: revert awkward extension of state lock over xdr for replay encoding

nfsd4-fix-race-in-xdr-encoding-of-lock_denied-response.patch
  nfsd4: fix race in xdr encoding of lock_denied response.

nfsd-remove-incorrect-stateid-modification-in-nfsv4-open-upgrade.patch
  nfsd: remove incorrect stateid modification in nfsv4 open upgrade

nfsd4-move-open-owner-checks-from-nfsd4_process_open2-into-new-function.patch
  nfsd4: move open owner checks from nfsd4_process_open2 into new function

nfsd4-set-open_result_locktype_posix-in-open.patch
  nfsd: set OPEN_RESULT_LOCKTYPE_POSIX in open()

nfsd4-move-seqid-decrement-on-reclaim-to-separate-function.patch
  nfsd4: move seqid decrement on reclaim to separate function

nfsd4-reorganize-if-in-nfsd4_process_open2-to-make-test-clearer.patch
  nfsd4: reorganize "if" in nfsd4_process_open2 to make test clearer

nfsd4-move-open_upgrade-code-into-a-separate-function.patch
  nfsd4: move open_upgrade code into a separate function

nfsd4-move-some-nfsd4_process_open2-code-to-nfs4_new_open.patch
  nfsd4: move some nfsd4_process_open2 code to nfs4_new_open

nfsd-clean-up-nfsd4_process_open2.patch
  nfsd: clean up nfsd4_process_open2

nfsd4-fix-putrootfh-return.patch
  nfsd4: fix putrootfh return

nfsd4-move-code-to-truncate-on-open-to-separate-function.patch
  nfsd4: move code to truncate on open to separate function

rmmod-ohci1394-hangs.patch
  rmmod ohci1394 hangs

capabilities-issue-in-firmware-loader.patch
  Capabilities issue in firmware loader

introduce-remap_pfn_range-to-replace-remap_page_range.patch
  vm: introduce remap_pfn_range() to replace remap_page_range()

convert-references-to-remap_page_range-under-arch-and-documentation-to-remap_pfn_range.patch
  vm: convert references to remap_page_range() under arch/ and Documentation/ to remap_pfn_range()

convert-users-of-remap_page_range-under-drivers-and-net-to-use-remap_pfn_range.patch
  vm: convert users of remap_page_range() under drivers/ and net/ to use remap_pfn_range()

convert-users-of-remap_page_range-under-include-asm--to-use-remap_pfn_range.patch
  vm: convert users of remap_page_range() under include/asm-*/ to use remap_pfn_range()

convert-users-of-remap_page_range-under-sound-to-use-remap_pfn_range.patch
  vm: convert users of remap_page_range() under sound/ to use remap_pfn_range()

for-mm-only-remove-remap_page_range-completely.patch
  vm: for -mm only: remove remap_page_range() completely

update-noapic-description.patch
  Update 'noapic' description

disk-stats-preempt-safety.patch
  disk stats preempt safety

conntrack-preempt-safety.patch
  conntrack stats preempt safety

conntrack-preempt-safety-fix.patch
  conntrack-preempt-safety-fix

neigh_stat-preempt-fix.patch
  neigh_stat preempt fix

neigh_stat-preempt-fix-fix.patch
  neigh_stat-preempt-fix fix

document-dec-vsxxx-ab-digitizer-as-known-working.patch
  Document DEC VSXXX-AB digitizer as known working

move-struct-k_itimer-out-of-linux-schedh.patch
  move struct k_itimer out of linux/sched.h

fix-bugs-in-selinux-mprotect-hook.patch
  SELinux: fix bugs in mprotect hook

bsd-secure-levels-lsm-add-time-hooks.patch
  BSD Secure Levels LSM: add time hooks

bsd-secure-levels-lsm-add-time-hooks-fix.patch
  bsd-secure-levels-lsm-add-time-hooks fix

bsd-secure-levels-lsm-add-time-hooks-ppc64-fix.patch
  ppc64-security-build-fix

bsd-secure-levels-lsm-core.patch
  BSD Secure Levels LSM: core

bsd-secure-levels-lsm-core-build-fix.patch
  bsd-secure-levels-lsm-core-build fix

bsd-secure-levels-lsm-documentation.patch
  BSD Secure Levels LSM: documentation

avoid-problems-with-kobject_set_name-and-name-with-%.patch
  Avoid problems with kobject_set_name and name with %

register_chrdev_region-alloc_chrdev_region-const.patch
  register_chrdev_region(), alloc_chrdev_region() const char

megaraid-random-loss-of-luns.patch
  Add megaraid PCI IDs

acpi-better-encapsulate-eisa_set_level_irq.patch
  acpi: better encapsulate eisa_set_level_irq()

display-committed-memory-limit-and-available-in-meminfo.patch
  Display committed memory limit and available in  meminfo

display-committed-memory-limit-and-available-in-meminfo-fix.patch
  display-committed-memory-limit-and-available-in-meminfo fix

fix-meminfo-commitavail-to-allow-for-negative-values.patch
  Fix meminfo CommitAvail to allow for negative values

add-documentation-for-new-commitlimit-and-commitavail-meminfo.patch
  Add documentation for new CommitLimit and CommitAvail meminfo items

posix-compliant-cpu-clocks.patch
  Posix compliant cpu clocks

posix-compliant-cpu-clocks-warning-fix.patch
  posix-compliant-cpu-clocks warning fix

posix-compliant-cpu-clocks-v6-mmtimer-provides-clock_sgi_cycle.patch
  Posix compliant cpu clocks V6: mmtimer provides CLOCK_SGI_CYCLE

detach_pid-restore-optimization.patch
  detach_pid(): restore optimization

detach_pid-eliminate-one-find_pid-call.patch
  detach_pid(): eliminate one find_pid() call

dont-include-linux-irqh-from-drivers.patch
  don't include <linux/irq.h> from drivers

display-phys_proc_id-only-when-it-is-initialized.patch
  x86[64]: display phys_proc_id only when it is initialized

deinline-large-function-in-blowfishc.patch
  deinline large function in blowfish.c

small-sha256-cleanup.patch
  small sha256 cleanup

small-sha512-cleanup.patch
  small sha512 cleanup

reduce-sha512_transform-stack-usage-speedup.patch
  reduce sha512_transform() stack usage, speedup

copy_thread-unneeded-child_tid-initialization.patch
  copy_thread(): unneeded child_tid initialization

drivers-remove-unused-mod_decinc_use_count.patch
  drivers: remove unused MOD_{DEC,INC}_USE_COUNT

m68k-mm-off-by-one.patch
  m68k: MM off-by-one

atari-acsi-dependencies.patch
  Atari ACSI dependencies

minmax-removal-arch-m68k-kernel-bios32c.patch
  m68k: minmax-removal arch/m68k/kernel/bios32.c

m68k-dont-emit-empty-stack-program-header-in-vmlinux.patch
  M68k: don't emit empty stack program header in vmlinux

amifb-update-pseudocolor-bitfield-lenghts.patch
  Amifb: update pseudocolor bitfield lenghts

amiga-frame-buffer-kill-obsolete-dmi-resolver-code.patch
  Amiga frame buffer: kill obsolete DMI Resolver code

null-vs-0-cleanups.patch
  m68k: NULL vs. 0 cleanups

amifb-use-new-amifboff-logic-to-enhance-audio-experience.patch
  Amifb: use new amifb:off logic to enhance audio experience

firmware_class-avoid-double-free.patch
  firmware_class: avoid double free

remove-scsi-ioctl-from-udf-lowlevelc.patch
  remove scsi ioctl from udf/lowlevel.c

nfsd-insecure-port-warning-shows-decimal-ipv4-address.patch
  nfsd: Insecure port warning shows decimal IPv4 address

aes-586-asm-formatting-changes.patch
  aes-586-asm: formatting changes

aes-586-asm-small-optimizations.patch
  aes-586-asm: small optimizations

add-new-sysfs-attribute-carrier-for-net-devices.patch
  Add new sysfs attribute 'carrier' for net devices.

mips-added-missing-definition-and-fixed-typo.patch
  mips: added missing definition and fixed typo

drivers-atm-ambassador.c-do_pci_device-printk-warning-fix.patch
  drivers/atm/ambassador.c::do_pci_device printk warning fix

cancel_rearming_delayed_work.patch
  cancel_rearming_delayed_work()

ipvs-deadlock-fix.patch
  ipvs deadlock fix

hvc_console-fix-to-prevent-oops-and-late-hangup-and-write.patch
  hvc_console fix to prevent oops and late hangup and write operations

edd-use-extended-read-command-add-config_edd_skip_mbr.patch
  EDD: use EXTENDED READ command, add CONFIG_EDD_SKIP_MBR

edd-use-extended-read-command-add-config_edd_skip_mbr-fix.patch
  edd-use-extended-read-command-add-config_edd_skip_mbr fix

kobject_uevent-warning-fix.patch
  kobject_uevent warning fix

kobject_hotplug-no-hotplug_ops.patch
  kobject_hotplug: permit no hotplug_ops

remove-cpu_run_sbin_hotplug.patch
  remove cpu_run_sbin_hotplug()

vm-thrashing-control-tuning.patch
  vm thrashing control tuning

vm-thrashing-control-tuning-fix.patch
  vm-thrashing-control-tuning fix

vm-thrashing-control-tuning-docs.patch
  vm-thrashing-control-tuning docs

proc-txt-cleanup.patch
  proc.txt cleanup

warning-fix-in-drivers-macintosh-macio-adbc.patch
  Warning fix in drivers/macintosh/macio-adb.c

idefloppy-suppress-media-not-present-errors.patch
  idefloppy: suppress media not present errors

modules-put-srcversion-checksum-in-each-modinfo-section.patch
  modules: put srcversion checksum in each modinfo section

add-missing-checks-of-__copy_to_user-return-value-in.patch
  __copy_to_user return value checks in i2o_config.c

shared-reed-solomon-ecc-library.patch
  Shared Reed-Solomon ECC Library

ds_ioctl-usercopy-check.patch
  ds_ioctl.c usercopy check

optimize-profile-path-slightly.patch
  Optimize profile path slightly

psi240i-build-fix.patch
  psi240i build fix

vmalloc_to_page-preempt-cleanup.patch
  vmalloc_to_page() preempt cleanup

__init-poisoning-for-i386.patch
  __init poisoning for i386

dont-align-initmem-poisoning.patch
  don't align initmem poisoning

minimal-ide-disk-updates.patch
  Minimal ide-disk updates

sata_sil-mod15-quirk-with-seagate-st3120026as.patch
  sata_sil mod15 quirk with Seagate ST3120026AS

alloc_percpu-fix-for-non-numa.patch
  alloc_percpu fix for non-NUMA

use-container_of-for-rb_entry.patch
  use container_of() for rb_entry()

remove-weird-pmd-cast.patch
  remove weird pmd cast

include-asm-bitopsh-include-linux-bitopsh.patch
  #include <asm/bitops.h> -> #include <linux/bitops.h>

figure-out-who-is-inserting-bogus-modules.patch
  Figure out who is inserting bogus modules

vmscan-total_scanned-fix.patch
  vmscan: total_scanned fix

revert-vm-no-wild-kswapd.patch
  revert-vm-no-wild-kswapd

balance_pgdat-cleanup.patch
  balance_pgdat-cleanup

no-wild-kswapd-2.patch
  no-wild-kswapd-2

no-wild-kswapd-kswapd-continue.patch
  no-wild-kswapd-kswapd-continue

ps-shows-wrong-ppid.patch
  ps shows wrong ppid

no-buddy-bitmap-patch-revist-intro-and-includes.patch
  no buddy bitmap patch revist: intro and includes

no-buddy-bitmap-patch-revisit-for-mm-page_allocc.patch
  no buddy bitmap patch revisit: for mm/page_alloc.c

no-buddy-bitmap-patch-revist-for-ia64.patch
  no buddy bitmap patch revist: for ia64

selinux-retain-ptracer-sid-across-fork.patch
  SELinux: retain ptracer SID across fork

remove-redundant-and-from-swp_type.patch
  Remove redundant AND from swp_type()

slab-reduce-fragmentation-due-to-kmem_cache_alloc_node.patch
  slab: reduce fragmentation due to kmem_cache_alloc_node

lockd-remove-hardcoded-maximum-nlm-cookie-length.patch
  lockd: remove hardcoded maximum NLM cookie length

md-convert-lu-to-llu-in-printk.patch
  md: convert %Lu to %llu in printk

lockd-remove-hardcoded-maximum-nlm-cookie-length-enhancements.patch
  lockd: remove hardcoded maximum NLM cookie length - enhancements




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

end of thread, other threads:[~2004-10-15 16:51 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <2O5L3-5Jq-11@gated-at.bofh.it>
     [not found] ` <2O6Ho-6ra-51@gated-at.bofh.it>
2004-10-11 12:40   ` 2.6.9-rc4-mm1 Andi Kleen
2004-10-11 13:38     ` 2.6.9-rc4-mm1 Rafael J. Wysocki
2004-10-11 14:12       ` 2.6.9-rc4-mm1 J.A. Magallon
2004-10-11 14:23         ` 2.6.9-rc4-mm1 Rafael J. Wysocki
2004-10-11 14:28           ` 2.6.9-rc4-mm1 J.A. Magallon
2004-10-11 15:17             ` 2.6.9-rc4-mm1 Rafael J. Wysocki
2004-10-11 14:50       ` 2.6.9-rc4-mm1 Andi Kleen
2004-10-11 15:21         ` 2.6.9-rc4-mm1 Rafael J. Wysocki
2004-10-14 20:56 2.6.9-rc4-mm1 William Wolf
2004-10-14 23:15 ` 2.6.9-rc4-mm1 Dmitry Torokhov
2004-10-15  3:23   ` 2.6.9-rc4-mm1 William Wolf
2004-10-15  3:30     ` 2.6.9-rc4-mm1 Dmitry Torokhov
2004-10-15  4:43       ` 2.6.9-rc4-mm1 William Wolf
2004-10-15  7:04     ` 2.6.9-rc4-mm1 Mathieu Segaud
     [not found] ` <200410142305.29859.dtor_core@ameritech.net>
2004-10-15  5:14   ` 2.6.9-rc4-mm1 William Wolf
2004-10-15  4:25     ` 2.6.9-rc4-mm1 Dmitry Torokhov
2004-10-15  5:26   ` 2.6.9-rc4-mm1 William Wolf
  -- strict thread matches above, loose matches on Subject: below --
2004-10-12  4:07 2.6.9-rc4-mm1 Paul Blazejowski
2004-10-11 14:30 2.6.9-rc4-mm1 Albert Cahalan
2004-10-11 12:41 2.6.9-rc4-mm1 Oleg Nesterov
2004-10-11 10:25 2.6.9-rc4-mm1 Andrew Morton
2004-10-11 11:29 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
2004-10-11 11:37 ` 2.6.9-rc4-mm1 Tim Cambrant
2004-10-11 11:38 ` 2.6.9-rc4-mm1 Nick Piggin
2004-10-11 19:13   ` 2.6.9-rc4-mm1 Andrew Morton
2004-10-11 22:57     ` 2.6.9-rc4-mm1 Nick Piggin
2004-10-11 11:43 ` 2.6.9-rc4-mm1 Brice Goglin
2004-10-11 12:30 ` 2.6.9-rc4-mm1 Con Kolivas
2004-10-11 13:17   ` 2.6.9-rc4-mm1 Alan Cox
2004-10-11 14:23     ` 2.6.9-rc4-mm1 Con Kolivas
2004-10-11 14:30     ` 2.6.9-rc4-mm1 J.A. Magallon
2004-10-11 13:43 ` 2.6.9-rc4-mm1 Jack Byer
2004-10-11 21:58   ` 2.6.9-rc4-mm1 Andrew Morton
2004-10-11 22:10     ` 2.6.9-rc4-mm1 Tom Rini
2004-10-11 23:14     ` 2.6.9-rc4-mm1 Thayne Harbaugh
2004-10-12  0:32     ` 2.6.9-rc4-mm1 Jack Byer
2004-10-11 14:22 ` 2.6.9-rc4-mm1 J.A. Magallon
2004-10-11 14:23 ` 2.6.9-rc4-mm1 Eyal Lebedinsky
2004-10-11 15:47 ` 2.6.9-rc4-mm1 Zwane Mwaikambo
2004-10-11 15:49   ` 2.6.9-rc4-mm1 Andi Kleen
2004-10-11 15:58     ` 2.6.9-rc4-mm1 Zwane Mwaikambo
2004-10-11 16:01       ` 2.6.9-rc4-mm1 Andi Kleen
2004-10-11 19:55   ` 2.6.9-rc4-mm1 Andrew Morton
2004-10-11 21:52     ` 2.6.9-rc4-mm1 Andi Kleen
2004-10-12 14:24     ` 2.6.9-rc4-mm1 Zwane Mwaikambo
2004-10-11 16:08 ` 2.6.9-rc4-mm1 Jeff Garzik
2004-10-11 22:38   ` 2.6.9-rc4-mm1 Lee Revell
2004-10-11 18:51 ` 2.6.9-rc4-mm1 Brice Goglin
2004-10-11 20:18   ` 2.6.9-rc4-mm1 Adrian Bunk
2004-10-13  7:42 ` 2.6.9-rc4-mm1 Wen-chien Jesse Sung
2004-10-13  8:16   ` 2.6.9-rc4-mm1 Hideo AOKI
2004-10-13 13:07 ` 2.6.9-rc4-mm1 Jesse Stockall
2004-10-13 13:19   ` 2.6.9-rc4-mm1 Mathieu Segaud
2004-10-13 13:34     ` 2.6.9-rc4-mm1 Jesse Stockall
2004-10-13 17:27     ` 2.6.9-rc4-mm1 Peter Adebahr
2004-10-14  4:42 ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
2004-10-14  4:50   ` 2.6.9-rc4-mm1 Andrew Morton
2004-10-14  5:23     ` 2.6.9-rc4-mm1 Hiroyuki KAMEZAWA
2004-10-14 17:50     ` 2.6.9-rc4-mm1 Christian Borntraeger
2004-10-15  7:08       ` 2.6.9-rc4-mm1 J.A. Magallon
2004-10-15 16:47         ` 2.6.9-rc4-mm1 Lee Revell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.