linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RE: [DMESG] cpumask_t in action
@ 2003-11-05 23:18 Chen, Kenneth W
  2003-11-05 23:24 ` Jesse Barnes
  0 siblings, 1 reply; 18+ messages in thread
From: Chen, Kenneth W @ 2003-11-05 23:18 UTC (permalink / raw)
  To: Jesse Barnes, linux-kernel, linux-ia64

> Dentry cache hash table entries: 33554432 (order: 14, 268435456 bytes)
> Inode-cache hash table entries: 33554432 (order: 14, 268435456 bytes)
> IP: routing cache hash table of 8388608 buckets, 131072Kbytes
> TCP: Hash tables configured (established 67108864 bind 65536)
> swapper: page allocation failure. order:17, mode:0x20

Does these hash tables really need to that big? 33 million dentry and
inode
entry? Same thing with network, unless the machine is loaded with
several
gigabit cards, these hash table seems to be exceedingly large.

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

* Re: [DMESG] cpumask_t in action
  2003-11-05 23:18 [DMESG] cpumask_t in action Chen, Kenneth W
@ 2003-11-05 23:24 ` Jesse Barnes
  2003-11-05 23:42   ` Antonio Vargas
  0 siblings, 1 reply; 18+ messages in thread
From: Jesse Barnes @ 2003-11-05 23:24 UTC (permalink / raw)
  To: Chen, Kenneth W; +Cc: linux-kernel

On Wed, Nov 05, 2003 at 03:18:29PM -0800, Chen, Kenneth W wrote:
> > Dentry cache hash table entries: 33554432 (order: 14, 268435456 bytes)
> > Inode-cache hash table entries: 33554432 (order: 14, 268435456 bytes)
> > IP: routing cache hash table of 8388608 buckets, 131072Kbytes
> > TCP: Hash tables configured (established 67108864 bind 65536)
> > swapper: page allocation failure. order:17, mode:0x20
> 
> Does these hash tables really need to that big? 33 million dentry and
> inode entry? Same thing with network, unless the machine is loaded
> with several gigabit cards, these hash table seems to be exceedingly
> large.

This one only has two gige cards:

tg3.c:v2.2 (August 24, 2003)
PCI: Found IRQ 54 for device 0000:01:04.0
ACPI: No IRQ known for interrupt pin A of device 0000:01:04.0 - using IRQ 54
eth0: Tigon3 [partno(030-1771-000) rev 0105 PHY(5701)] (PCI:66MHz:64-bit) 10/100/1000BaseT Ethernet 08:00:69:13:e6:a7
PCI: Found IRQ 66 for device 0000:11:04.0
ACPI: No IRQ known for interrupt pin A of device 0000:11:04.0 - using IRQ 66
eth1: Tigon3 [partno(030-1771-000) rev 0105 PHY(5701)] (PCI:66MHz:64-bit) 10/100/1000BaseT Ethernet 08:00:69:13:e4:a4
PCI: Found IRQ 53 for device 0000:01:03.0
ACPI: No IRQ known for interrupt pin A of device 0000:01:03.0 - using IRQ 53

As for the dentry and inode-cache tables, yes they're probably too big,
and they're also allocated on node 0 rather than being spread out.

Jesse

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

* Re: [DMESG] cpumask_t in action
  2003-11-05 23:24 ` Jesse Barnes
@ 2003-11-05 23:42   ` Antonio Vargas
  2003-11-06  4:36     ` Jesse Barnes
  0 siblings, 1 reply; 18+ messages in thread
From: Antonio Vargas @ 2003-11-05 23:42 UTC (permalink / raw)
  To: Chen, Kenneth W, linux-kernel

On Wed, Nov 05, 2003 at 03:24:38PM -0800, Jesse Barnes wrote:
> On Wed, Nov 05, 2003 at 03:18:29PM -0800, Chen, Kenneth W wrote:
> > > Dentry cache hash table entries: 33554432 (order: 14, 268435456 bytes)
> > > Inode-cache hash table entries: 33554432 (order: 14, 268435456 bytes)
> > > IP: routing cache hash table of 8388608 buckets, 131072Kbytes
> > > TCP: Hash tables configured (established 67108864 bind 65536)
> > > swapper: page allocation failure. order:17, mode:0x20
> > 
> > Does these hash tables really need to that big? 33 million dentry and
> > inode entry? Same thing with network, unless the machine is loaded
> > with several gigabit cards, these hash table seems to be exceedingly
> > large.
> 
> This one only has two gige cards:
> 
> tg3.c:v2.2 (August 24, 2003)
> PCI: Found IRQ 54 for device 0000:01:04.0
> ACPI: No IRQ known for interrupt pin A of device 0000:01:04.0 - using IRQ 54
> eth0: Tigon3 [partno(030-1771-000) rev 0105 PHY(5701)] (PCI:66MHz:64-bit) 10/100/1000BaseT Ethernet 08:00:69:13:e6:a7
> PCI: Found IRQ 66 for device 0000:11:04.0
> ACPI: No IRQ known for interrupt pin A of device 0000:11:04.0 - using IRQ 66
> eth1: Tigon3 [partno(030-1771-000) rev 0105 PHY(5701)] (PCI:66MHz:64-bit) 10/100/1000BaseT Ethernet 08:00:69:13:e4:a4
> PCI: Found IRQ 53 for device 0000:01:03.0
> ACPI: No IRQ known for interrupt pin A of device 0000:01:03.0 - using IRQ 53
> 
> As for the dentry and inode-cache tables, yes they're probably too big,
> and they're also allocated on node 0 rather than being spread out.
> 

Jesse, what about making hash_size = scale * log(mem_size), so that the
tables are not scaled too high on your very-high-end boxes? ;)

-- 
winden/network

1. Dado un programa, siempre tiene al menos un fallo.
2. Dadas varias lineas de codigo, siempre se pueden acortar a menos lineas.
3. Por induccion, todos los programas se pueden
   reducir a una linea que no funciona.

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

* Re: [DMESG] cpumask_t in action
  2003-11-05 23:42   ` Antonio Vargas
@ 2003-11-06  4:36     ` Jesse Barnes
  0 siblings, 0 replies; 18+ messages in thread
From: Jesse Barnes @ 2003-11-06  4:36 UTC (permalink / raw)
  To: Antonio Vargas; +Cc: linux-kernel

On Thu, Nov 06, 2003 at 12:42:31AM +0100, Antonio Vargas wrote:
> > As for the dentry and inode-cache tables, yes they're probably too big,
> > and they're also allocated on node 0 rather than being spread out.
> > 
> 
> Jesse, what about making hash_size = scale * log(mem_size), so that the
> tables are not scaled too high on your very-high-end boxes? ;)

Sounds good to me, should we change the callers in vfs_caches_init() or
revisit each individual hash to see what size makes sense?

Thanks,
Jesse

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

* Re: [DMESG] cpumask_t in action
  2003-11-07  8:13   ` Sylvain Jeaugey
  2003-11-07 17:24     ` Matthew Wilcox
@ 2003-11-10  8:26     ` Jes Sorensen
  1 sibling, 0 replies; 18+ messages in thread
From: Jes Sorensen @ 2003-11-10  8:26 UTC (permalink / raw)
  To: Sylvain Jeaugey; +Cc: Matthew Wilcox, linux-kernel, linux-ia64, acpi-devel

>>>>> "Sylvain" == Sylvain Jeaugey <sylvain.jeaugey@bull.net> writes:

Sylvain> These lines show you the numa topology of your machine (in
Sylvain> our case, we have 2 CPUS per domain, and a memory area).
Sylvain> This is quite a big piece of information about hardware. Even
Sylvain> if it is quite long, I think it should be part of the ACPI
Sylvain> information.

Hi Sylvian,

This information is much better exposed through sysfs (/sys) and Andi
Kleen's libnuma, which will also make it visible at runtime to
applications.

Cheers,
Jes

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

* Re: [DMESG] cpumask_t in action
  2003-11-07  8:13   ` Sylvain Jeaugey
@ 2003-11-07 17:24     ` Matthew Wilcox
  2003-11-10  8:26     ` Jes Sorensen
  1 sibling, 0 replies; 18+ messages in thread
From: Matthew Wilcox @ 2003-11-07 17:24 UTC (permalink / raw)
  To: Sylvain Jeaugey; +Cc: Matthew Wilcox, linux-kernel, linux-ia64, acpi-devel

On Fri, Nov 07, 2003 at 09:13:11AM +0100, Sylvain Jeaugey wrote:
> On Thu, 6 Nov 2003, Matthew Wilcox wrote:
> These lines show you the numa topology of your machine (in our case, we 
> have 2 CPUS per domain, and a memory area).
> This is quite a big piece of information about hardware. Even if it is 
> quite long, I think it should be part of the ACPI information.

Yes, but do we need to know it at boot time, or should it be available
in some other way (eg /proc/acpi/srat or something).  I would argue
that is more useful than seeing it in dmesg.

-- 
"It's not Hollywood.  War is real, war is primarily not about defeat or
victory, it is about death.  I've seen thousands and thousands of dead bodies.
Do you think I want to have an academic debate on this subject?" -- Robert Fisk

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

* Re: [DMESG] cpumask_t in action
  2003-11-06 16:51 ` Matthew Wilcox
                     ` (2 preceding siblings ...)
  2003-11-06 20:11   ` Jes Sorensen
@ 2003-11-07  8:13   ` Sylvain Jeaugey
  2003-11-07 17:24     ` Matthew Wilcox
  2003-11-10  8:26     ` Jes Sorensen
  3 siblings, 2 replies; 18+ messages in thread
From: Sylvain Jeaugey @ 2003-11-07  8:13 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-kernel, linux-ia64, acpi-devel

On Thu, 6 Nov 2003, Matthew Wilcox wrote:

> > ACPI: SRAT Processor (id[0x00] eid[0x00]) in proximity domain 0 enabled
> > ACPI: SRAT Processor (id[0x20] eid[0x00]) in proximity domain 0 enabled
[...]
> > ACPI: SRAT Processor (id[0x00] eid[0x5e]) in proximity domain 47 enabled
> > ACPI: SRAT Processor (id[0x20] eid[0x5e]) in proximity domain 47 enabled
> 
> ... for example ;-)  96 lines which honestly tell me nothing.
> 
> > ACPI: SRAT Memory (0x0000003000000000 length 0x0000001000000000 type 0x1) in proximity domain 0 enabled
> > ACPI: SRAT Memory (0x000000b000000000 length 0x0000001000000000 type 0x1) in proximity domain 1 enabled
> [ snip 44 lines ]
> > ACPI: SRAT Memory (0x0000173000000000 length 0x0000001000000000 type 0x1) in proximity domain 46 enabled
> > ACPI: SRAT Memory (0x000017b000000000 length 0x0000001000000000 type 0x1) in proximity domain 47 enabled
> 
> ... and again.
> 
These lines show you the numa topology of your machine (in our case, we 
have 2 CPUS per domain, and a memory area).
This is quite a big piece of information about hardware. Even if it is 
quite long, I think it should be part of the ACPI information.

Sylvain


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

* Re: [DMESG] cpumask_t in action
  2003-11-06 20:31 ` Robin Holt
@ 2003-11-07  2:06   ` Paul Jackson
  0 siblings, 0 replies; 18+ messages in thread
From: Paul Jackson @ 2003-11-07  2:06 UTC (permalink / raw)
  To: Robin Holt; +Cc: tony.luck, linux-kernel, linux-ia64, jbarnes, willy

> The BogoMIPS is another which I would think could be eliminated unless
> it is significantly different from the boot cpu.  Maybe say greater
> than 10% different.

Or just show the min and max:

  BogoMIPS for 64 CPUs range from 2241.08 to 2298.56

If someone knows they have 32 CPUs at 1.1 GHz, and 32 CPUs at 1.3 GHz,
they don't need to see 32 of these listed as >10% out of spec.

-- 
                          I won't rest till it's the best ...
                          Programmer, Linux Scalability
                          Paul Jackson <pj@sgi.com> 1.650.933.1373

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

* Re: [DMESG] cpumask_t in action
  2003-11-06 18:56 Luck, Tony
@ 2003-11-06 20:31 ` Robin Holt
  2003-11-07  2:06   ` Paul Jackson
  0 siblings, 1 reply; 18+ messages in thread
From: Robin Holt @ 2003-11-06 20:31 UTC (permalink / raw)
  To: Luck, Tony; +Cc: linux-kernel, linux-ia64, Jesse Barnes, Matthew Wilcox

On Thu, Nov 06, 2003 at 10:56:55AM -0800, Luck, Tony wrote:
> > That'd cut us down to:
> > 
> > > CPU 3: 61 virtual and 50 physical address bits
> > > CPU 3: nasid 2, slice 2, cnode 1
> > > CPU 3: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
> > > Calibrating delay loop... 2241.08 BogoMIPS
> > > CPU3: CPU has booted.
> > > Starting migration thread for cpu 3
> 
> Perhaps we could drop printing the number of virtual/physical address
> bits, and the frequency&ratio information (or maybe just print if they
> are different from the boot cpu ... which would most likely surprise
> the kernel in bad ways, and thus be worthy of printing).  That would
> cut another two lines for all bar one cpu.

Do we need the CPU has booted message?  If it fails to boot, we get
notified.  Can we leave it at that?

As far as I can tell, the nasid and slice is fairly useless.  It might
be helpful, but there should be more user accessible ways of determining
the topology than using boot messages.

The BogoMIPS is another which I would think could be eliminated unless
it is significantly different from the boot cpu.  Maybe say greater
than 10% different.

With these, the boot has been reduced to one migration thread message
when a cpu starts and I believe two lines when one fails to start.

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

* Re: [DMESG] cpumask_t in action
  2003-11-06 16:51 ` Matthew Wilcox
  2003-11-06 17:20   ` Jesse Barnes
  2003-11-06 17:23   ` Jesse Barnes
@ 2003-11-06 20:11   ` Jes Sorensen
  2003-11-07  8:13   ` Sylvain Jeaugey
  3 siblings, 0 replies; 18+ messages in thread
From: Jes Sorensen @ 2003-11-06 20:11 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-kernel, linux-ia64, acpi-devel

>>>>> "Matthew" == Matthew Wilcox <willy@debian.org> writes:

Matthew> On Wed, Nov 05, 2003 at 02:22:02PM -0800, Jesse Barnes wrote:

Matthew> There's a number of things here that annoy me.  One is the
Matthew> stupid "Processor 8192/1 is spinning up".  I would expect
Matthew> "Processor 2/96 is spinning up", but why have this line at
Matthew> all?  I'd also like to see "Bringing up 3", "Processor 1 has
Matthew> spun up..." and "CPU 1 IS NOW UP!" go away.  That'd cut us
Matthew> down to:

>> CPU 3: 61 virtual and 50 physical address bits CPU 3: nasid 2,
>> slice 2, cnode 1 CPU 3: base freq=200.000MHz, ITC ratio=15/2, ITC
>> freq=1500.000MHz+/--1ppm Calibrating delay loop... 2241.08 BogoMIPS
>> CPU3: CPU has booted.  Starting migration thread for cpu 3

Matthew> A 40% reduction in per-cpu verbosity ;-)

Why not turn it the other way and just report the success of booted
CPUs and more detailed results for the CPUs that failed? I know there
are cases where you want the debug info in case of tracking kernel
bugs, but one could stick a compile time debug flag into the code for
that case, 960 - 40% = 576 lines of guff is still way too much IMHO,
especially over a serial console.

Cheers,
Jes

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

* RE: [DMESG] cpumask_t in action
@ 2003-11-06 18:56 Luck, Tony
  2003-11-06 20:31 ` Robin Holt
  0 siblings, 1 reply; 18+ messages in thread
From: Luck, Tony @ 2003-11-06 18:56 UTC (permalink / raw)
  To: linux-kernel, linux-ia64, Jesse Barnes; +Cc: Matthew Wilcox

> That'd cut us down to:
> 
> > CPU 3: 61 virtual and 50 physical address bits
> > CPU 3: nasid 2, slice 2, cnode 1
> > CPU 3: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
> > Calibrating delay loop... 2241.08 BogoMIPS
> > CPU3: CPU has booted.
> > Starting migration thread for cpu 3

Perhaps we could drop printing the number of virtual/physical address
bits, and the frequency&ratio information (or maybe just print if they
are different from the boot cpu ... which would most likely surprise
the kernel in bad ways, and thus be worthy of printing).  That would
cut another two lines for all bar one cpu.

-Tony

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

* Re: [DMESG] cpumask_t in action
  2003-11-06 16:51 ` Matthew Wilcox
  2003-11-06 17:20   ` Jesse Barnes
@ 2003-11-06 17:23   ` Jesse Barnes
  2003-11-06 20:11   ` Jes Sorensen
  2003-11-07  8:13   ` Sylvain Jeaugey
  3 siblings, 0 replies; 18+ messages in thread
From: Jesse Barnes @ 2003-11-06 17:23 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-kernel, linux-ia64, acpi-devel

On Thu, Nov 06, 2003 at 04:51:59PM +0000, Matthew Wilcox wrote:
> The arch/ia64 code is not the only offender; ACPI is terribly verbose too.
> I'm going to cc the acpi list too.  See comments below.
> 
> ... and again.
> 
> > CPU 0: 61 virtual and 50 physical address bits
> > ACPI: Local APIC address 0xc0000000fee00000
> > ACPI: LSAPIC (acpi_id[0x00] lsapic_id[0x00] lsapic_eid[0x00] enabled)
> > CPU 0 (0x0000) enabled (BSP)
> > ACPI: LSAPIC (acpi_id[0x01] lsapic_id[0x20] lsapic_eid[0x00] enabled)
> > CPU 1 (0x2000) enabled
> > ACPI: LSAPIC (acpi_id[0x02] lsapic_id[0x00] lsapic_eid[0x02] enabled)
> > CPU 2 (0x0002) enabled
> > ACPI: LSAPIC (acpi_id[0x03] lsapic_id[0x20] lsapic_eid[0x02] enabled)
> > CPU 3 (0x2002) enabled
> [ snip 180 lines ]
> > ACPI: LSAPIC (acpi_id[0x5e] lsapic_id[0x00] lsapic_eid[0x5e] enabled)
> > CPU 94 (0x005e) enabled
> > ACPI: LSAPIC (acpi_id[0x5f] lsapic_id[0x20] lsapic_eid[0x5e] enabled)
> > CPU 95 (0x205e) enabled

And here's a patch to quiet this stuff.

Jesse

===== drivers/acpi/tables.c 1.16 vs edited =====
--- 1.16/drivers/acpi/tables.c	Thu Sep 18 16:22:09 2003
+++ edited/drivers/acpi/tables.c	Thu Nov  6 09:22:35 2003
@@ -35,6 +35,13 @@
 #include <linux/acpi.h>
 #include <linux/bootmem.h>
 
+#undef ACPI_TABLES_DEBUG
+#ifdef ACPI_TABLES_DEBUG
+#define Dprintk(x...) printk(x)
+#else
+#define Dprintk(x...)
+#endif
+
 #define PREFIX			"ACPI: "
 
 #define ACPI_MAX_TABLES		256
@@ -118,7 +125,7 @@
 	{
 		struct acpi_table_lapic *p =
 			(struct acpi_table_lapic*) header;
-		printk(KERN_INFO PREFIX "LAPIC (acpi_id[0x%02x] lapic_id[0x%02x] %s)\n",
+		Dprintk(KERN_INFO PREFIX "LAPIC (acpi_id[0x%02x] lapic_id[0x%02x] %s)\n",
 			p->acpi_id, p->id, p->flags.enabled?"enabled":"disabled");
 	}
 		break;
@@ -127,7 +134,7 @@
 	{
 		struct acpi_table_ioapic *p =
 			(struct acpi_table_ioapic*) header;
-		printk(KERN_INFO PREFIX "IOAPIC (id[0x%02x] address[0x%08x] global_irq_base[0x%x])\n",
+		Dprintk(KERN_INFO PREFIX "IOAPIC (id[0x%02x] address[0x%08x] global_irq_base[0x%x])\n",
 			p->id, p->address, p->global_irq_base);
 	}
 		break;
@@ -136,7 +143,7 @@
 	{
 		struct acpi_table_int_src_ovr *p =
 			(struct acpi_table_int_src_ovr*) header;
-		printk(KERN_INFO PREFIX "INT_SRC_OVR (bus[%d] irq[0x%x] global_irq[0x%x] polarity[0x%x] trigger[0x%x])\n",
+		Dprintk(KERN_INFO PREFIX "INT_SRC_OVR (bus[%d] irq[0x%x] global_irq[0x%x] polarity[0x%x] trigger[0x%x])\n",
 			p->bus, p->bus_irq, p->global_irq, p->flags.polarity, p->flags.trigger);
 	}
 		break;
@@ -145,7 +152,7 @@
 	{
 		struct acpi_table_nmi_src *p =
 			(struct acpi_table_nmi_src*) header;
-		printk(KERN_INFO PREFIX "NMI_SRC (polarity[0x%x] trigger[0x%x] global_irq[0x%x])\n",
+		Dprintk(KERN_INFO PREFIX "NMI_SRC (polarity[0x%x] trigger[0x%x] global_irq[0x%x])\n",
 			p->flags.polarity, p->flags.trigger, p->global_irq);
 	}
 		break;
@@ -154,7 +161,7 @@
 	{
 		struct acpi_table_lapic_nmi *p =
 			(struct acpi_table_lapic_nmi*) header;
-		printk(KERN_INFO PREFIX "LAPIC_NMI (acpi_id[0x%02x] polarity[0x%x] trigger[0x%x] lint[0x%x])\n",
+		Dprintk(KERN_INFO PREFIX "LAPIC_NMI (acpi_id[0x%02x] polarity[0x%x] trigger[0x%x] lint[0x%x])\n",
 			p->acpi_id, p->flags.polarity, p->flags.trigger, p->lint);
 	}
 		break;
@@ -163,7 +170,7 @@
 	{
 		struct acpi_table_lapic_addr_ovr *p =
 			(struct acpi_table_lapic_addr_ovr*) header;
-		printk(KERN_INFO PREFIX "LAPIC_ADDR_OVR (address[%p])\n",
+		Dprintk(KERN_INFO PREFIX "LAPIC_ADDR_OVR (address[%p])\n",
 			(void *) (unsigned long) p->address);
 	}
 		break;
@@ -172,7 +179,7 @@
 	{
 		struct acpi_table_iosapic *p =
 			(struct acpi_table_iosapic*) header;
-		printk(KERN_INFO PREFIX "IOSAPIC (id[0x%x] global_irq_base[0x%x] address[%p])\n",
+		Dprintk(KERN_INFO PREFIX "IOSAPIC (id[0x%x] global_irq_base[0x%x] address[%p])\n",
 			p->id, p->global_irq_base, (void *) (unsigned long) p->address);
 	}
 		break;
@@ -181,7 +188,7 @@
 	{
 		struct acpi_table_lsapic *p =
 			(struct acpi_table_lsapic*) header;
-		printk(KERN_INFO PREFIX "LSAPIC (acpi_id[0x%02x] lsapic_id[0x%02x] lsapic_eid[0x%02x] %s)\n",
+		Dprintk(KERN_INFO PREFIX "LSAPIC (acpi_id[0x%02x] lsapic_id[0x%02x] lsapic_eid[0x%02x] %s)\n",
 			p->acpi_id, p->id, p->eid, p->flags.enabled?"enabled":"disabled");
 	}
 		break;
@@ -190,7 +197,7 @@
 	{
 		struct acpi_table_plat_int_src *p =
 			(struct acpi_table_plat_int_src*) header;
-		printk(KERN_INFO PREFIX "PLAT_INT_SRC (polarity[0x%x] trigger[0x%x] type[0x%x] id[0x%04x] eid[0x%x] iosapic_vector[0x%x] global_irq[0x%x]\n",
+		Dprintk(KERN_INFO PREFIX "PLAT_INT_SRC (polarity[0x%x] trigger[0x%x] type[0x%x] id[0x%04x] eid[0x%x] iosapic_vector[0x%x] global_irq[0x%x]\n",
 			p->flags.polarity, p->flags.trigger, p->type, p->id, p->eid, p->iosapic_vector, p->global_irq);
 	}
 		break;

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

* Re: [DMESG] cpumask_t in action
  2003-11-06 16:51 ` Matthew Wilcox
@ 2003-11-06 17:20   ` Jesse Barnes
  2003-11-06 17:23   ` Jesse Barnes
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 18+ messages in thread
From: Jesse Barnes @ 2003-11-06 17:20 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-kernel, linux-ia64, acpi-devel

On Thu, Nov 06, 2003 at 04:51:59PM +0000, Matthew Wilcox wrote:
> The arch/ia64 code is not the only offender; ACPI is terribly verbose too.
> I'm going to cc the acpi list too.  See comments below.
> 
> > ACPI: SRAT Processor (id[0x00] eid[0x00]) in proximity domain 0 enabled
[snip[
> > ACPI: SRAT Processor (id[0x20] eid[0x5e]) in proximity domain 47 enabled
> 
> ... for example ;-)  96 lines which honestly tell me nothing.
> 
> > ACPI: SRAT Memory (0x0000003000000000 length 0x0000001000000000 type 0x1) in proximity domain 0 enabled
> > ACPI: SRAT Memory (0x000000b000000000 length 0x0000001000000000 type 0x1) in proximity domain 1 enabled
> [ snip 44 lines ]
> > ACPI: SRAT Memory (0x0000173000000000 length 0x0000001000000000 type 0x1) in proximity domain 46 enabled
> > ACPI: SRAT Memory (0x000017b000000000 length 0x0000001000000000 type 0x1) in proximity domain 47 enabled

Here's one for those two.

Jesse

===== drivers/acpi/numa.c 1.5 vs edited =====
--- 1.5/drivers/acpi/numa.c	Tue Feb 18 12:56:05 2003
+++ edited/drivers/acpi/numa.c	Thu Nov  6 09:18:50 2003
@@ -31,6 +31,13 @@
 #include <linux/acpi.h>
 #include <acpi/acpi_bus.h>
 
+#undef ACPI_NUMA_DEBUG
+#ifdef ACPI_NUMA_DEBUG
+#define Dprintk(x...) printk(x)
+#else
+#define Dprintk(x...)
+#endif
+
 extern int __init acpi_table_parse_madt_family (enum acpi_table_id id, unsigned long madt_size, int entry_id, acpi_madt_entry_handler handler);
 
 void __init
@@ -46,7 +53,7 @@
 	{
 		struct acpi_table_processor_affinity *p =
 			(struct acpi_table_processor_affinity*) header;
-		printk(KERN_INFO PREFIX "SRAT Processor (id[0x%02x] eid[0x%02x]) in proximity domain %d %s\n",
+		Dprintk(KERN_INFO PREFIX "SRAT Processor (id[0x%02x] eid[0x%02x]) in proximity domain %d %s\n",
 		       p->apic_id, p->lsapic_eid, p->proximity_domain,
 		       p->flags.enabled?"enabled":"disabled");
 	}
@@ -56,7 +63,7 @@
 	{
 		struct acpi_table_memory_affinity *p =
 			(struct acpi_table_memory_affinity*) header;
-		printk(KERN_INFO PREFIX "SRAT Memory (0x%08x%08x length 0x%08x%08x type 0x%x) in proximity domain %d %s%s\n",
+		Dprintk(KERN_INFO PREFIX "SRAT Memory (0x%08x%08x length 0x%08x%08x type 0x%x) in proximity domain %d %s%s\n",
 		       p->base_addr_hi, p->base_addr_lo, p->length_hi, p->length_lo,
 		       p->memory_type, p->proximity_domain,
 		       p->flags.enabled ? "enabled" : "disabled",

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

* Re: [DMESG] cpumask_t in action
@ 2003-11-06 17:09 Daniel Blueman
  0 siblings, 0 replies; 18+ messages in thread
From: Daniel Blueman @ 2003-11-06 17:09 UTC (permalink / raw)
  To: linux-kernel

Hash tables naturally give less and less incremental benefit as they are
made larger, so it would be natural to size them by [coeff * log(mem_size)].

I thought this was already done, no?

-- 
Daniel J Blueman

NEU FÜR ALLE - GMX MediaCenter - für Fotos, Musik, Dateien...
Fotoalbum, File Sharing, MMS, Multimedia-Gruß, GMX FotoService

Jetzt kostenlos anmelden unter http://www.gmx.net

+++ GMX - die erste Adresse für Mail, Message, More! +++


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

* Re: [DMESG] cpumask_t in action
  2003-11-05 22:22 Jesse Barnes
  2003-11-05 22:49 ` Jesse Barnes
@ 2003-11-06 16:51 ` Matthew Wilcox
  2003-11-06 17:20   ` Jesse Barnes
                     ` (3 more replies)
  1 sibling, 4 replies; 18+ messages in thread
From: Matthew Wilcox @ 2003-11-06 16:51 UTC (permalink / raw)
  To: linux-kernel, linux-ia64; +Cc: acpi-devel

On Wed, Nov 05, 2003 at 02:22:02PM -0800, Jesse Barnes wrote:
> I'm Cc'ing linux-ia64 because I think we have a lot of boot messages to
> cleanup in arch/ia64...

I agree.  I've booted on 16 way machines and been annoyed by the kernel
messages.  Did you set the dmesg buffer size to 128k or did you capture
the boot messages with a serial card?

The arch/ia64 code is not the only offender; ACPI is terribly verbose too.
I'm going to cc the acpi list too.  See comments below.

> ACPI: SRAT Processor (id[0x00] eid[0x00]) in proximity domain 0 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x00]) in proximity domain 0 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x02]) in proximity domain 1 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x02]) in proximity domain 1 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x04]) in proximity domain 2 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x04]) in proximity domain 2 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x06]) in proximity domain 3 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x06]) in proximity domain 3 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x08]) in proximity domain 4 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x08]) in proximity domain 4 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x0a]) in proximity domain 5 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x0a]) in proximity domain 5 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x0c]) in proximity domain 6 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x0c]) in proximity domain 6 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x0e]) in proximity domain 7 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x0e]) in proximity domain 7 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x10]) in proximity domain 8 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x10]) in proximity domain 8 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x12]) in proximity domain 9 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x12]) in proximity domain 9 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x14]) in proximity domain 10 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x14]) in proximity domain 10 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x16]) in proximity domain 11 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x16]) in proximity domain 11 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x18]) in proximity domain 12 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x18]) in proximity domain 12 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x1a]) in proximity domain 13 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x1a]) in proximity domain 13 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x1c]) in proximity domain 14 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x1c]) in proximity domain 14 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x1e]) in proximity domain 15 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x1e]) in proximity domain 15 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x20]) in proximity domain 16 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x20]) in proximity domain 16 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x22]) in proximity domain 17 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x22]) in proximity domain 17 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x24]) in proximity domain 18 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x24]) in proximity domain 18 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x26]) in proximity domain 19 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x26]) in proximity domain 19 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x28]) in proximity domain 20 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x28]) in proximity domain 20 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x2a]) in proximity domain 21 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x2a]) in proximity domain 21 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x2c]) in proximity domain 22 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x2c]) in proximity domain 22 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x2e]) in proximity domain 23 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x2e]) in proximity domain 23 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x30]) in proximity domain 24 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x30]) in proximity domain 24 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x32]) in proximity domain 25 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x32]) in proximity domain 25 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x34]) in proximity domain 26 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x34]) in proximity domain 26 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x36]) in proximity domain 27 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x36]) in proximity domain 27 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x38]) in proximity domain 28 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x38]) in proximity domain 28 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x3a]) in proximity domain 29 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x3a]) in proximity domain 29 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x3c]) in proximity domain 30 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x3c]) in proximity domain 30 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x3e]) in proximity domain 31 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x3e]) in proximity domain 31 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x40]) in proximity domain 32 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x40]) in proximity domain 32 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x42]) in proximity domain 33 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x42]) in proximity domain 33 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x44]) in proximity domain 34 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x44]) in proximity domain 34 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x46]) in proximity domain 35 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x46]) in proximity domain 35 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x48]) in proximity domain 36 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x48]) in proximity domain 36 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x4a]) in proximity domain 37 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x4a]) in proximity domain 37 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x4c]) in proximity domain 38 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x4c]) in proximity domain 38 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x4e]) in proximity domain 39 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x4e]) in proximity domain 39 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x50]) in proximity domain 40 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x50]) in proximity domain 40 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x52]) in proximity domain 41 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x52]) in proximity domain 41 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x54]) in proximity domain 42 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x54]) in proximity domain 42 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x56]) in proximity domain 43 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x56]) in proximity domain 43 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x58]) in proximity domain 44 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x58]) in proximity domain 44 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x5a]) in proximity domain 45 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x5a]) in proximity domain 45 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x5c]) in proximity domain 46 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x5c]) in proximity domain 46 enabled
> ACPI: SRAT Processor (id[0x00] eid[0x5e]) in proximity domain 47 enabled
> ACPI: SRAT Processor (id[0x20] eid[0x5e]) in proximity domain 47 enabled

... for example ;-)  96 lines which honestly tell me nothing.

> ACPI: SRAT Memory (0x0000003000000000 length 0x0000001000000000 type 0x1) in proximity domain 0 enabled
> ACPI: SRAT Memory (0x000000b000000000 length 0x0000001000000000 type 0x1) in proximity domain 1 enabled
[ snip 44 lines ]
> ACPI: SRAT Memory (0x0000173000000000 length 0x0000001000000000 type 0x1) in proximity domain 46 enabled
> ACPI: SRAT Memory (0x000017b000000000 length 0x0000001000000000 type 0x1) in proximity domain 47 enabled

... and again.

> CPU 0: 61 virtual and 50 physical address bits
> ACPI: Local APIC address 0xc0000000fee00000
> ACPI: LSAPIC (acpi_id[0x00] lsapic_id[0x00] lsapic_eid[0x00] enabled)
> CPU 0 (0x0000) enabled (BSP)
> ACPI: LSAPIC (acpi_id[0x01] lsapic_id[0x20] lsapic_eid[0x00] enabled)
> CPU 1 (0x2000) enabled
> ACPI: LSAPIC (acpi_id[0x02] lsapic_id[0x00] lsapic_eid[0x02] enabled)
> CPU 2 (0x0002) enabled
> ACPI: LSAPIC (acpi_id[0x03] lsapic_id[0x20] lsapic_eid[0x02] enabled)
> CPU 3 (0x2002) enabled
[ snip 180 lines ]
> ACPI: LSAPIC (acpi_id[0x5e] lsapic_id[0x00] lsapic_eid[0x5e] enabled)
> CPU 94 (0x005e) enabled
> ACPI: LSAPIC (acpi_id[0x5f] lsapic_id[0x20] lsapic_eid[0x5e] enabled)
> CPU 95 (0x205e) enabled

The information here, such as it is seems to be a duplicate of the SRAT
information above.

> Boot processor id 0x0/0x0
> task migration cache decay timeout: 10 msecs.
> Starting migration thread for cpu 0
> Bringing up 1
> Processor 8192/1 is spinning up...
> CPU 1: 61 virtual and 50 physical address bits
> CPU 1: nasid 0, slice 2, cnode 0
> CPU 1: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
> Calibrating delay loop... 2232.84 BogoMIPS
> CPU1: CPU has booted.
> Processor 1 has spun up...
> CPU 1 IS NOW UP!
> Starting migration thread for cpu 1
> Bringing up 2
> Processor 2/2 is spinning up...
> CPU 2: 61 virtual and 50 physical address bits
> CPU 2: nasid 2, slice 0, cnode 1
> CPU 2: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
> Calibrating delay loop... 2241.08 BogoMIPS
> CPU2: CPU has booted.
> Processor 2 has spun up...
> CPU 2 IS NOW UP!
> Starting migration thread for cpu 2

There's a number of things here that annoy me.  One is the stupid
"Processor 8192/1 is spinning up".  I would expect "Processor 2/96
is spinning up", but why have this line at all?  I'd also like to see
"Bringing up 3", "Processor 1 has spun up..." and "CPU 1 IS NOW UP!" go
away.  That'd cut us down to:

> CPU 3: 61 virtual and 50 physical address bits
> CPU 3: nasid 2, slice 2, cnode 1
> CPU 3: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
> Calibrating delay loop... 2241.08 BogoMIPS
> CPU3: CPU has booted.
> Starting migration thread for cpu 3

A 40% reduction in per-cpu verbosity ;-)

[920 lines deleted]
> CPUS done 128
> Total of 96 processors activated (213739.60 BogoMIPS).
> NET: Registered protocol family 16
[96 lines which aren't too dissimilar to my K6 box deleted ;-)

-- 
"It's not Hollywood.  War is real, war is primarily not about defeat or
victory, it is about death.  I've seen thousands and thousands of dead bodies.
Do you think I want to have an academic debate on this subject?" -- Robert Fisk

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

* Re: [DMESG] cpumask_t in action
  2003-11-05 22:49 ` Jesse Barnes
@ 2003-11-05 23:56   ` Peter Chubb
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Chubb @ 2003-11-05 23:56 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: linux-kernel

>>>>> "Jesse" == Jesse Barnes <jbarnes@sgi.com> writes:

Jesse> We also have a large number of per-cpu and per-node
Jesse> processes...

Do you find /proc a bottleneck with this number of processes?  It
would seem to me that scanning /proc and opening/reading/closing all those
/proc/pid/stat, /proc/pid/status and /proc/pid/cmdline files would
take a long time.  

--
Dr Peter Chubb  http://www.gelato.unsw.edu.au  peterc AT gelato.unsw.edu.au
The technical we do immediately,  the political takes *forever*

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

* Re: [DMESG] cpumask_t in action
  2003-11-05 22:22 Jesse Barnes
@ 2003-11-05 22:49 ` Jesse Barnes
  2003-11-05 23:56   ` Peter Chubb
  2003-11-06 16:51 ` Matthew Wilcox
  1 sibling, 1 reply; 18+ messages in thread
From: Jesse Barnes @ 2003-11-05 22:49 UTC (permalink / raw)
  To: linux-kernel

On Wed, Nov 05, 2003 at 02:22:02PM -0800, Jesse Barnes wrote:
> At the kernel summit, Andrew asked if we really needed cpumask_t in the
> kernel to support > BITS_PER_LONG CPUs.  We've sent out patches to fix
> issues we've seen with large systems, but I realized that we had never
> sent the dmesg of such a system booting up.  Some customers have much
> larger systems than the I used here, so don't be lulled into thinking
> that 2*BITS_PER_LONG is sufficient :).
> 
> I'm Cc'ing linux-ia64 because I think we have a lot of boot messages to
> cleanup in arch/ia64...

We also have a large number of per-cpu and per-node processes...

Jesse

UID        PID  PPID  C STIME TTY          TIME CMD
root         1     0  0 14:29 ?        00:00:05 init [3]  
root         2     1  0 14:29 ?        00:00:00 [migration/0]
root         3     1  0 14:29 ?        00:00:00 [ksoftirqd/0]
root         4     1  0 14:29 ?        00:00:00 [migration/1]
root         5     1  0 14:29 ?        00:00:00 [ksoftirqd/1]
root         6     1  0 14:29 ?        00:00:00 [migration/2]
root         7     1  0 14:29 ?        00:00:00 [ksoftirqd/2]
root         8     1  0 14:29 ?        00:00:00 [migration/3]
root         9     1  0 14:29 ?        00:00:00 [ksoftirqd/3]
root        10     1  0 14:29 ?        00:00:00 [migration/4]
root        11     1  0 14:29 ?        00:00:00 [ksoftirqd/4]
root        12     1  0 14:29 ?        00:00:00 [migration/5]
root        13     1  0 14:29 ?        00:00:00 [ksoftirqd/5]
root        14     1  0 14:29 ?        00:00:00 [migration/6]
root        15     1  0 14:29 ?        00:00:00 [ksoftirqd/6]
root        16     1  0 14:29 ?        00:00:00 [migration/7]
root        17     1  0 14:29 ?        00:00:00 [ksoftirqd/7]
root        18     1  0 14:29 ?        00:00:00 [migration/8]
root        19     1  0 14:29 ?        00:00:00 [ksoftirqd/8]
root        20     1  0 14:29 ?        00:00:00 [migration/9]
root        21     1  0 14:29 ?        00:00:00 [ksoftirqd/9]
root        22     1  0 14:29 ?        00:00:00 [migration/10]
root        23     1  0 14:29 ?        00:00:00 [ksoftirqd/10]
root        24     1  0 14:29 ?        00:00:00 [migration/11]
root        25     1  0 14:29 ?        00:00:00 [ksoftirqd/11]
root        26     1  0 14:29 ?        00:00:00 [migration/12]
root        27     1  0 14:29 ?        00:00:00 [ksoftirqd/12]
root        28     1  0 14:29 ?        00:00:00 [migration/13]
root        29     1  0 14:29 ?        00:00:00 [ksoftirqd/13]
root        30     1  0 14:29 ?        00:00:00 [migration/14]
root        31     1  0 14:29 ?        00:00:00 [ksoftirqd/14]
root        32     1  0 14:29 ?        00:00:00 [migration/15]
root        33     1  0 14:29 ?        00:00:00 [ksoftirqd/15]
root        34     1  0 14:29 ?        00:00:00 [migration/16]
root        35     1  0 14:29 ?        00:00:00 [ksoftirqd/16]
root        36     1  0 14:29 ?        00:00:00 [migration/17]
root        37     1  0 14:29 ?        00:00:00 [ksoftirqd/17]
root        38     1  0 14:29 ?        00:00:00 [migration/18]
root        39     1  0 14:29 ?        00:00:00 [ksoftirqd/18]
root        40     1  0 14:29 ?        00:00:00 [migration/19]
root        41     1  0 14:29 ?        00:00:00 [ksoftirqd/19]
root        42     1  0 14:29 ?        00:00:00 [migration/20]
root        43     1  0 14:29 ?        00:00:00 [ksoftirqd/20]
root        44     1  0 14:29 ?        00:00:00 [migration/21]
root        45     1  0 14:29 ?        00:00:00 [ksoftirqd/21]
root        46     1  0 14:29 ?        00:00:00 [migration/22]
root        47     1  0 14:29 ?        00:00:00 [ksoftirqd/22]
root        48     1  0 14:29 ?        00:00:00 [migration/23]
root        49     1  0 14:29 ?        00:00:00 [ksoftirqd/23]
root        50     1  0 14:29 ?        00:00:00 [migration/24]
root        51     1  0 14:29 ?        00:00:00 [ksoftirqd/24]
root        52     1  0 14:29 ?        00:00:00 [migration/25]
root        53     1  0 14:29 ?        00:00:00 [ksoftirqd/25]
root        54     1  0 14:29 ?        00:00:00 [migration/26]
root        55     1  0 14:29 ?        00:00:00 [ksoftirqd/26]
root        56     1  0 14:29 ?        00:00:00 [migration/27]
root        57     1  0 14:29 ?        00:00:00 [ksoftirqd/27]
root        58     1  0 14:29 ?        00:00:00 [migration/28]
root        59     1  0 14:29 ?        00:00:00 [ksoftirqd/28]
root        60     1  0 14:29 ?        00:00:00 [migration/29]
root        61     1  0 14:29 ?        00:00:00 [ksoftirqd/29]
root        62     1  0 14:29 ?        00:00:00 [migration/30]
root        63     1  0 14:29 ?        00:00:00 [ksoftirqd/30]
root        64     1  0 14:29 ?        00:00:00 [migration/31]
root        65     1  0 14:29 ?        00:00:00 [ksoftirqd/31]
root        66     1  0 14:29 ?        00:00:00 [migration/32]
root        67     1  0 14:29 ?        00:00:00 [ksoftirqd/32]
root        68     1  0 14:29 ?        00:00:00 [migration/33]
root        69     1  0 14:29 ?        00:00:00 [ksoftirqd/33]
root        70     1  0 14:29 ?        00:00:00 [migration/34]
root        71     1  0 14:29 ?        00:00:00 [ksoftirqd/34]
root        72     1  0 14:29 ?        00:00:00 [migration/35]
root        73     1  0 14:29 ?        00:00:00 [ksoftirqd/35]
root        74     1  0 14:29 ?        00:00:00 [migration/36]
root        75     1  0 14:29 ?        00:00:00 [ksoftirqd/36]
root        76     1  0 14:29 ?        00:00:00 [migration/37]
root        77     1  0 14:29 ?        00:00:00 [ksoftirqd/37]
root        78     1  0 14:29 ?        00:00:00 [migration/38]
root        79     1  0 14:29 ?        00:00:00 [ksoftirqd/38]
root        80     1  0 14:29 ?        00:00:00 [migration/39]
root        81     1  0 14:29 ?        00:00:00 [ksoftirqd/39]
root        82     1  0 14:29 ?        00:00:00 [migration/40]
root        83     1  0 14:29 ?        00:00:00 [ksoftirqd/40]
root        84     1  0 14:29 ?        00:00:00 [migration/41]
root        85     1  0 14:29 ?        00:00:00 [ksoftirqd/41]
root        86     1  0 14:29 ?        00:00:00 [migration/42]
root        87     1  0 14:29 ?        00:00:00 [ksoftirqd/42]
root        88     1  0 14:29 ?        00:00:00 [migration/43]
root        89     1  0 14:29 ?        00:00:00 [ksoftirqd/43]
root        90     1  0 14:29 ?        00:00:00 [migration/44]
root        91     1  0 14:29 ?        00:00:00 [ksoftirqd/44]
root        92     1  0 14:29 ?        00:00:00 [migration/45]
root        93     1  0 14:29 ?        00:00:00 [ksoftirqd/45]
root        94     1  0 14:29 ?        00:00:00 [migration/46]
root        95     1  0 14:29 ?        00:00:00 [ksoftirqd/46]
root        96     1  0 14:29 ?        00:00:00 [migration/47]
root        97     1  0 14:29 ?        00:00:00 [ksoftirqd/47]
root        98     1  0 14:29 ?        00:00:00 [migration/48]
root        99     1  0 14:29 ?        00:00:00 [ksoftirqd/48]
root       100     1  0 14:29 ?        00:00:00 [migration/49]
root       101     1  0 14:29 ?        00:00:00 [ksoftirqd/49]
root       102     1  0 14:29 ?        00:00:00 [migration/50]
root       103     1  0 14:29 ?        00:00:00 [ksoftirqd/50]
root       104     1  0 14:29 ?        00:00:00 [migration/51]
root       105     1  0 14:29 ?        00:00:00 [ksoftirqd/51]
root       106     1  0 14:29 ?        00:00:00 [migration/52]
root       107     1  0 14:29 ?        00:00:00 [ksoftirqd/52]
root       108     1  0 14:29 ?        00:00:00 [migration/53]
root       109     1  0 14:29 ?        00:00:00 [ksoftirqd/53]
root       110     1  0 14:29 ?        00:00:00 [migration/54]
root       111     1  0 14:29 ?        00:00:00 [ksoftirqd/54]
root       112     1  0 14:29 ?        00:00:00 [migration/55]
root       113     1  0 14:29 ?        00:00:00 [ksoftirqd/55]
root       114     1  0 14:29 ?        00:00:00 [migration/56]
root       115     1  0 14:29 ?        00:00:00 [ksoftirqd/56]
root       116     1  0 14:29 ?        00:00:00 [migration/57]
root       117     1  0 14:29 ?        00:00:00 [ksoftirqd/57]
root       118     1  0 14:29 ?        00:00:00 [migration/58]
root       119     1  0 14:29 ?        00:00:00 [ksoftirqd/58]
root       120     1  0 14:29 ?        00:00:00 [migration/59]
root       121     1  0 14:29 ?        00:00:00 [ksoftirqd/59]
root       122     1  0 14:29 ?        00:00:00 [migration/60]
root       123     1  0 14:29 ?        00:00:00 [ksoftirqd/60]
root       124     1  0 14:29 ?        00:00:00 [migration/61]
root       125     1  0 14:29 ?        00:00:00 [ksoftirqd/61]
root       126     1  0 14:29 ?        00:00:00 [migration/62]
root       127     1  0 14:29 ?        00:00:00 [ksoftirqd/62]
root       128     1  0 14:29 ?        00:00:00 [migration/63]
root       129     1  0 14:29 ?        00:00:00 [ksoftirqd/63]
root       130     1  0 14:29 ?        00:00:00 [migration/64]
root       131     1  0 14:29 ?        00:00:00 [ksoftirqd/64]
root       132     1  0 14:29 ?        00:00:00 [migration/65]
root       133     1  0 14:29 ?        00:00:00 [ksoftirqd/65]
root       134     1  0 14:29 ?        00:00:00 [migration/66]
root       135     1  0 14:29 ?        00:00:00 [ksoftirqd/66]
root       136     1  0 14:29 ?        00:00:00 [migration/67]
root       137     1  0 14:29 ?        00:00:00 [ksoftirqd/67]
root       138     1  0 14:29 ?        00:00:00 [migration/68]
root       139     1  0 14:29 ?        00:00:00 [ksoftirqd/68]
root       140     1  0 14:29 ?        00:00:00 [migration/69]
root       141     1  0 14:29 ?        00:00:00 [ksoftirqd/69]
root       142     1  0 14:29 ?        00:00:00 [migration/70]
root       143     1  0 14:29 ?        00:00:00 [ksoftirqd/70]
root       144     1  0 14:29 ?        00:00:00 [migration/71]
root       145     1  0 14:29 ?        00:00:00 [ksoftirqd/71]
root       146     1  0 14:29 ?        00:00:00 [migration/72]
root       147     1  0 14:29 ?        00:00:00 [ksoftirqd/72]
root       148     1  0 14:29 ?        00:00:00 [migration/73]
root       149     1  0 14:29 ?        00:00:00 [ksoftirqd/73]
root       150     1  0 14:29 ?        00:00:00 [migration/74]
root       151     1  0 14:29 ?        00:00:00 [ksoftirqd/74]
root       152     1  0 14:29 ?        00:00:00 [migration/75]
root       153     1  0 14:29 ?        00:00:00 [ksoftirqd/75]
root       154     1  0 14:29 ?        00:00:00 [migration/76]
root       155     1  0 14:29 ?        00:00:00 [ksoftirqd/76]
root       156     1  0 14:29 ?        00:00:00 [migration/77]
root       157     1  0 14:29 ?        00:00:00 [ksoftirqd/77]
root       158     1  0 14:29 ?        00:00:00 [migration/78]
root       159     1  0 14:29 ?        00:00:00 [ksoftirqd/78]
root       160     1  0 14:29 ?        00:00:00 [migration/79]
root       161     1  0 14:29 ?        00:00:00 [ksoftirqd/79]
root       162     1  0 14:29 ?        00:00:00 [migration/80]
root       163     1  0 14:29 ?        00:00:00 [ksoftirqd/80]
root       164     1  0 14:29 ?        00:00:00 [migration/81]
root       165     1  0 14:29 ?        00:00:00 [ksoftirqd/81]
root       166     1  0 14:29 ?        00:00:00 [migration/82]
root       167     1  0 14:29 ?        00:00:00 [ksoftirqd/82]
root       168     1  0 14:29 ?        00:00:00 [migration/83]
root       169     1  0 14:29 ?        00:00:00 [ksoftirqd/83]
root       170     1  0 14:29 ?        00:00:00 [migration/84]
root       171     1  0 14:29 ?        00:00:00 [ksoftirqd/84]
root       172     1  0 14:29 ?        00:00:00 [migration/85]
root       173     1  0 14:29 ?        00:00:00 [ksoftirqd/85]
root       174     1  0 14:29 ?        00:00:00 [migration/86]
root       175     1  0 14:29 ?        00:00:00 [ksoftirqd/86]
root       176     1  0 14:29 ?        00:00:00 [migration/87]
root       177     1  0 14:29 ?        00:00:00 [ksoftirqd/87]
root       178     1  0 14:29 ?        00:00:00 [migration/88]
root       179     1  0 14:29 ?        00:00:00 [ksoftirqd/88]
root       180     1  0 14:29 ?        00:00:00 [migration/89]
root       181     1  0 14:29 ?        00:00:00 [ksoftirqd/89]
root       182     1  0 14:29 ?        00:00:00 [migration/90]
root       183     1  0 14:29 ?        00:00:00 [ksoftirqd/90]
root       184     1  0 14:29 ?        00:00:00 [migration/91]
root       185     1  0 14:29 ?        00:00:00 [ksoftirqd/91]
root       186     1  0 14:29 ?        00:00:00 [migration/92]
root       187     1  0 14:29 ?        00:00:00 [ksoftirqd/92]
root       188     1  0 14:29 ?        00:00:00 [migration/93]
root       189     1  0 14:29 ?        00:00:00 [ksoftirqd/93]
root       190     1  0 14:29 ?        00:00:00 [migration/94]
root       191     1  0 14:29 ?        00:00:00 [ksoftirqd/94]
root       192     1  0 14:29 ?        00:00:00 [migration/95]
root       193     1  0 14:29 ?        00:00:00 [ksoftirqd/95]
root       194     1  0 14:29 ?        00:00:00 [events/0]
root       195     1  0 14:29 ?        00:00:00 [events/1]
root       196     1  0 14:29 ?        00:00:00 [events/2]
root       197     1  0 14:29 ?        00:00:00 [events/3]
root       198     1  0 14:29 ?        00:00:00 [events/4]
root       199     1  0 14:29 ?        00:00:00 [events/5]
root       200     1  0 14:29 ?        00:00:00 [events/6]
root       201     1  0 14:29 ?        00:00:00 [events/7]
root       202     1  0 14:29 ?        00:00:00 [events/8]
root       203     1  0 14:29 ?        00:00:00 [events/9]
root       204     1  0 14:29 ?        00:00:00 [events/10]
root       205     1  0 14:29 ?        00:00:00 [events/11]
root       206     1  0 14:29 ?        00:00:00 [events/12]
root       207     1  0 14:29 ?        00:00:00 [events/13]
root       208     1  0 14:29 ?        00:00:00 [events/14]
root       209     1  0 14:29 ?        00:00:00 [events/15]
root       210     1  0 14:29 ?        00:00:00 [events/16]
root       211     1  0 14:29 ?        00:00:00 [events/17]
root       212     1  0 14:29 ?        00:00:00 [events/18]
root       213     1  0 14:29 ?        00:00:00 [events/19]
root       214     1  0 14:29 ?        00:00:00 [events/20]
root       215     1  0 14:29 ?        00:00:00 [events/21]
root       216     1  0 14:29 ?        00:00:00 [events/22]
root       217     1  0 14:29 ?        00:00:00 [events/23]
root       218     1  0 14:29 ?        00:00:00 [events/24]
root       219     1  0 14:29 ?        00:00:00 [events/25]
root       220     1  0 14:29 ?        00:00:00 [events/26]
root       221     1  0 14:29 ?        00:00:00 [events/27]
root       222     1  0 14:29 ?        00:00:00 [events/28]
root       223     1  0 14:29 ?        00:00:00 [events/29]
root       224     1  0 14:29 ?        00:00:00 [events/30]
root       225     1  0 14:29 ?        00:00:00 [events/31]
root       226     1  0 14:29 ?        00:00:00 [events/32]
root       227     1  0 14:29 ?        00:00:00 [events/33]
root       228     1  0 14:29 ?        00:00:00 [events/34]
root       229     1  0 14:29 ?        00:00:00 [events/35]
root       230     1  0 14:29 ?        00:00:00 [events/36]
root       231     1  0 14:29 ?        00:00:00 [events/37]
root       232     1  0 14:29 ?        00:00:00 [events/38]
root       233     1  0 14:29 ?        00:00:00 [events/39]
root       234     1  0 14:29 ?        00:00:00 [events/40]
root       235     1  0 14:29 ?        00:00:00 [events/41]
root       236     1  0 14:29 ?        00:00:00 [events/42]
root       237     1  0 14:29 ?        00:00:00 [events/43]
root       238     1  0 14:29 ?        00:00:00 [events/44]
root       239     1  0 14:29 ?        00:00:00 [events/45]
root       240     1  0 14:29 ?        00:00:00 [events/46]
root       241     1  0 14:29 ?        00:00:00 [events/47]
root       242     1  0 14:29 ?        00:00:00 [events/48]
root       243     1  0 14:29 ?        00:00:00 [events/49]
root       244     1  0 14:29 ?        00:00:00 [events/50]
root       245     1  0 14:29 ?        00:00:00 [events/51]
root       246     1  0 14:29 ?        00:00:00 [events/52]
root       247     1  0 14:29 ?        00:00:00 [events/53]
root       248     1  0 14:29 ?        00:00:00 [events/54]
root       249     1  0 14:29 ?        00:00:00 [events/55]
root       250     1  0 14:29 ?        00:00:00 [events/56]
root       251     1  0 14:29 ?        00:00:00 [events/57]
root       252     1  0 14:29 ?        00:00:00 [events/58]
root       253     1  0 14:29 ?        00:00:00 [events/59]
root       254     1  0 14:29 ?        00:00:00 [events/60]
root       255     1  0 14:29 ?        00:00:00 [events/61]
root       256     1  0 14:29 ?        00:00:00 [events/62]
root       257     1  0 14:29 ?        00:00:00 [events/63]
root       258     1  0 14:29 ?        00:00:00 [events/64]
root       259     1  0 14:29 ?        00:00:00 [events/65]
root       260     1  0 14:29 ?        00:00:00 [events/66]
root       261     1  0 14:29 ?        00:00:00 [events/67]
root       262     1  0 14:29 ?        00:00:00 [events/68]
root       263     1  0 14:29 ?        00:00:00 [events/69]
root       264     1  0 14:29 ?        00:00:00 [events/70]
root       265     1  0 14:29 ?        00:00:00 [events/71]
root       266     1  0 14:29 ?        00:00:00 [events/72]
root       267     1  0 14:29 ?        00:00:00 [events/73]
root       268     1  0 14:29 ?        00:00:00 [events/74]
root       269     1  0 14:29 ?        00:00:00 [events/75]
root       270     1  0 14:29 ?        00:00:00 [events/76]
root       271     1  0 14:29 ?        00:00:00 [events/77]
root       272     1  0 14:29 ?        00:00:00 [events/78]
root       273     1  0 14:29 ?        00:00:00 [events/79]
root       274     1  0 14:29 ?        00:00:00 [events/80]
root       275     1  0 14:29 ?        00:00:00 [events/81]
root       276     1  0 14:29 ?        00:00:00 [events/82]
root       277     1  0 14:29 ?        00:00:00 [events/83]
root       278     1  0 14:29 ?        00:00:00 [events/84]
root       279     1  0 14:29 ?        00:00:00 [events/85]
root       280     1  0 14:29 ?        00:00:00 [events/86]
root       281     1  0 14:29 ?        00:00:00 [events/87]
root       282     1  0 14:29 ?        00:00:00 [events/88]
root       283     1  0 14:29 ?        00:00:00 [events/89]
root       284     1  0 14:29 ?        00:00:00 [events/90]
root       285     1  0 14:29 ?        00:00:00 [events/91]
root       286     1  0 14:29 ?        00:00:00 [events/92]
root       287     1  0 14:29 ?        00:00:00 [events/93]
root       288     1  0 14:29 ?        00:00:00 [events/94]
root       289     1  0 14:29 ?        00:00:00 [events/95]
root       290     1  0 14:29 ?        00:00:00 [kblockd/0]
root       291     1  0 14:29 ?        00:00:00 [kblockd/1]
root       292     1  0 14:29 ?        00:00:00 [kblockd/2]
root       293     1  0 14:29 ?        00:00:00 [kblockd/3]
root       294     1  0 14:29 ?        00:00:00 [kblockd/4]
root       295     1  0 14:29 ?        00:00:00 [kblockd/5]
root       296     1  0 14:29 ?        00:00:00 [kblockd/6]
root       297     1  0 14:29 ?        00:00:00 [kblockd/7]
root       298     1  0 14:29 ?        00:00:00 [kblockd/8]
root       299     1  0 14:29 ?        00:00:00 [kblockd/9]
root       300     1  0 14:29 ?        00:00:00 [kblockd/10]
root       301     1  0 14:29 ?        00:00:00 [kblockd/11]
root       302     1  0 14:29 ?        00:00:00 [kblockd/12]
root       303     1  0 14:29 ?        00:00:00 [kblockd/13]
root       304     1  0 14:29 ?        00:00:00 [kblockd/14]
root       305     1  0 14:29 ?        00:00:00 [kblockd/15]
root       306     1  0 14:29 ?        00:00:00 [kblockd/16]
root       307     1  0 14:29 ?        00:00:00 [kblockd/17]
root       308     1  0 14:29 ?        00:00:00 [kblockd/18]
root       309     1  0 14:29 ?        00:00:00 [kblockd/19]
root       310     1  0 14:29 ?        00:00:00 [kblockd/20]
root       311     1  0 14:29 ?        00:00:00 [kblockd/21]
root       312     1  0 14:29 ?        00:00:00 [kblockd/22]
root       313     1  0 14:29 ?        00:00:00 [kblockd/23]
root       314     1  0 14:29 ?        00:00:00 [kblockd/24]
root       315     1  0 14:29 ?        00:00:00 [kblockd/25]
root       316     1  0 14:29 ?        00:00:00 [kblockd/26]
root       317     1  0 14:29 ?        00:00:00 [kblockd/27]
root       318     1  0 14:29 ?        00:00:00 [kblockd/28]
root       319     1  0 14:29 ?        00:00:00 [kblockd/29]
root       320     1  0 14:29 ?        00:00:00 [kblockd/30]
root       321     1  0 14:29 ?        00:00:00 [kblockd/31]
root       322     1  0 14:29 ?        00:00:00 [kblockd/32]
root       323     1  0 14:29 ?        00:00:00 [kblockd/33]
root       324     1  0 14:29 ?        00:00:00 [kblockd/34]
root       325     1  0 14:29 ?        00:00:00 [kblockd/35]
root       326     1  0 14:29 ?        00:00:00 [kblockd/36]
root       327     1  0 14:29 ?        00:00:00 [kblockd/37]
root       328     1  0 14:29 ?        00:00:00 [kblockd/38]
root       329     1  0 14:29 ?        00:00:00 [kblockd/39]
root       330     1  0 14:29 ?        00:00:00 [kblockd/40]
root       331     1  0 14:29 ?        00:00:00 [kblockd/41]
root       332     1  0 14:29 ?        00:00:00 [kblockd/42]
root       333     1  0 14:29 ?        00:00:00 [kblockd/43]
root       334     1  0 14:29 ?        00:00:00 [kblockd/44]
root       335     1  0 14:29 ?        00:00:00 [kblockd/45]
root       336     1  0 14:29 ?        00:00:00 [kblockd/46]
root       337     1  0 14:29 ?        00:00:00 [kblockd/47]
root       338     1  0 14:29 ?        00:00:00 [kblockd/48]
root       339     1  0 14:29 ?        00:00:00 [kblockd/49]
root       340     1  0 14:29 ?        00:00:00 [kblockd/50]
root       341     1  0 14:29 ?        00:00:00 [kblockd/51]
root       342     1  0 14:29 ?        00:00:00 [kblockd/52]
root       343     1  0 14:29 ?        00:00:00 [kblockd/53]
root       344     1  0 14:29 ?        00:00:00 [kblockd/54]
root       345     1  0 14:29 ?        00:00:00 [kblockd/55]
root       346     1  0 14:29 ?        00:00:00 [kblockd/56]
root       347     1  0 14:29 ?        00:00:00 [kblockd/57]
root       348     1  0 14:29 ?        00:00:00 [kblockd/58]
root       349     1  0 14:29 ?        00:00:00 [kblockd/59]
root       350     1  0 14:29 ?        00:00:00 [kblockd/60]
root       351     1  0 14:29 ?        00:00:00 [kblockd/61]
root       352     1  0 14:29 ?        00:00:00 [kblockd/62]
root       353     1  0 14:29 ?        00:00:00 [kblockd/63]
root       354     1  0 14:29 ?        00:00:00 [kblockd/64]
root       355     1  0 14:29 ?        00:00:00 [kblockd/65]
root       356     1  0 14:29 ?        00:00:00 [kblockd/66]
root       357     1  0 14:29 ?        00:00:00 [kblockd/67]
root       358     1  0 14:29 ?        00:00:00 [kblockd/68]
root       359     1  0 14:29 ?        00:00:00 [kblockd/69]
root       360     1  0 14:29 ?        00:00:00 [kblockd/70]
root       361     1  0 14:29 ?        00:00:00 [kblockd/71]
root       362     1  0 14:29 ?        00:00:00 [kblockd/72]
root       363     1  0 14:29 ?        00:00:00 [kblockd/73]
root       364     1  0 14:29 ?        00:00:00 [kblockd/74]
root       365     1  0 14:29 ?        00:00:00 [kblockd/75]
root       366     1  0 14:29 ?        00:00:00 [kblockd/76]
root       367     1  0 14:29 ?        00:00:00 [kblockd/77]
root       368     1  0 14:29 ?        00:00:00 [kblockd/78]
root       369     1  0 14:29 ?        00:00:00 [kblockd/79]
root       370     1  0 14:29 ?        00:00:00 [kblockd/80]
root       371     1  0 14:29 ?        00:00:00 [kblockd/81]
root       372     1  0 14:29 ?        00:00:00 [kblockd/82]
root       373     1  0 14:29 ?        00:00:00 [kblockd/83]
root       374     1  0 14:29 ?        00:00:00 [kblockd/84]
root       375     1  0 14:29 ?        00:00:00 [kblockd/85]
root       376     1  0 14:29 ?        00:00:00 [kblockd/86]
root       377     1  0 14:29 ?        00:00:00 [kblockd/87]
root       378     1  0 14:29 ?        00:00:00 [kblockd/88]
root       379     1  0 14:29 ?        00:00:00 [kblockd/89]
root       380     1  0 14:29 ?        00:00:00 [kblockd/90]
root       381     1  0 14:29 ?        00:00:00 [kblockd/91]
root       382     1  0 14:29 ?        00:00:00 [kblockd/92]
root       383     1  0 14:29 ?        00:00:00 [kblockd/93]
root       384     1  0 14:29 ?        00:00:00 [kblockd/94]
root       385     1  0 14:29 ?        00:00:00 [kblockd/95]
root       386     1  0 14:29 ?        00:00:00 [linkstatd]
root       433     1  0 14:29 ?        00:00:00 [kswapd44]
root       434     1  0 14:29 ?        00:00:00 [kswapd45]
root       435     1  0 14:29 ?        00:00:00 [kswapd46]
root       429     1  0 14:29 ?        00:00:00 [kswapd40]
root       436     1  0 14:29 ?        00:00:00 [kswapd47]
root       431     1  0 14:29 ?        00:00:00 [kswapd42]
root       432     1  0 14:29 ?        00:00:00 [kswapd43]
root       428     1  0 14:29 ?        00:00:00 [kswapd39]
root       430     1  0 14:29 ?        00:00:00 [kswapd41]
root       427     1  0 14:29 ?        00:00:00 [kswapd38]
root       426     1  0 14:29 ?        00:00:00 [kswapd37]
root       424     1  0 14:29 ?        00:00:00 [kswapd35]
root       425     1  0 14:29 ?        00:00:00 [kswapd36]
root       423     1  0 14:29 ?        00:00:00 [kswapd34]
root       422     1  0 14:29 ?        00:00:00 [kswapd33]
root       420     1  0 14:29 ?        00:00:00 [kswapd31]
root       421     1  0 14:29 ?        00:00:00 [kswapd32]
root       419     1  0 14:29 ?        00:00:00 [kswapd30]
root       418     1  0 14:29 ?        00:00:00 [kswapd29]
root       417     1  0 14:29 ?        00:00:00 [kswapd28]
root       416     1  0 14:29 ?        00:00:00 [kswapd27]
root       415     1  0 14:29 ?        00:00:00 [kswapd26]
root       414     1  0 14:29 ?        00:00:00 [kswapd25]
root       411     1  0 14:29 ?        00:00:00 [kswapd22]
root       410     1  0 14:29 ?        00:00:00 [kswapd21]
root       409     1  0 14:29 ?        00:00:00 [kswapd20]
root       413     1  0 14:29 ?        00:00:00 [kswapd24]
root       412     1  0 14:29 ?        00:00:00 [kswapd23]
root       403     1  0 14:29 ?        00:00:00 [kswapd14]
root       405     1  0 14:29 ?        00:00:00 [kswapd16]
root       404     1  0 14:29 ?        00:00:00 [kswapd15]
root       406     1  0 14:29 ?        00:00:00 [kswapd17]
root       407     1  0 14:29 ?        00:00:00 [kswapd18]
root       398     1  0 14:29 ?        00:00:00 [kswapd9]
root       397     1  0 14:29 ?        00:00:00 [kswapd8]
root       396     1  0 14:29 ?        00:00:00 [kswapd7]
root       402     1  0 14:29 ?        00:00:00 [kswapd13]
root       401     1  0 14:29 ?        00:00:00 [kswapd12]
root       393     1  0 14:29 ?        00:00:00 [kswapd4]
root       392     1  0 14:29 ?        00:00:00 [kswapd3]
root       389     1  0 14:29 ?        00:00:00 [kswapd0]
root       395     1  0 14:29 ?        00:00:00 [kswapd6]
root       394     1  0 14:29 ?        00:00:00 [kswapd5]
root       390     1  0 14:29 ?        00:00:00 [kswapd1]
root       391     1  0 14:29 ?        00:00:00 [kswapd2]
root       388     1  0 14:29 ?        00:00:00 [pdflush]
root       400     1  0 14:29 ?        00:00:00 [kswapd11]
root       399     1  0 14:29 ?        00:00:00 [kswapd10]
root       408     1  0 14:29 ?        00:00:00 [kswapd19]
root       437     1  0 14:29 ?        00:00:00 [aio/0]
root       438     1  0 14:29 ?        00:00:00 [aio/1]
root       439     1  0 14:29 ?        00:00:00 [aio/2]
root       440     1  0 14:29 ?        00:00:00 [aio/3]
root       441     1  0 14:29 ?        00:00:00 [aio/4]
root       442     1  0 14:29 ?        00:00:00 [aio/5]
root       443     1  0 14:29 ?        00:00:00 [aio/6]
root       444     1  0 14:29 ?        00:00:00 [aio/7]
root       445     1  0 14:29 ?        00:00:00 [aio/8]
root       446     1  0 14:29 ?        00:00:00 [aio/9]
root       447     1  0 14:29 ?        00:00:00 [aio/10]
root       448     1  0 14:29 ?        00:00:00 [aio/11]
root       449     1  0 14:29 ?        00:00:00 [aio/12]
root       450     1  0 14:29 ?        00:00:00 [aio/13]
root       451     1  0 14:29 ?        00:00:00 [aio/14]
root       452     1  0 14:29 ?        00:00:00 [aio/15]
root       453     1  0 14:29 ?        00:00:00 [aio/16]
root       454     1  0 14:29 ?        00:00:00 [aio/17]
root       455     1  0 14:29 ?        00:00:00 [aio/18]
root       456     1  0 14:29 ?        00:00:00 [aio/19]
root       457     1  0 14:29 ?        00:00:00 [aio/20]
root       458     1  0 14:29 ?        00:00:00 [aio/21]
root       459     1  0 14:29 ?        00:00:00 [aio/22]
root       460     1  0 14:29 ?        00:00:00 [aio/23]
root       461     1  0 14:29 ?        00:00:00 [aio/24]
root       462     1  0 14:29 ?        00:00:00 [aio/25]
root       463     1  0 14:29 ?        00:00:00 [aio/26]
root       464     1  0 14:29 ?        00:00:00 [aio/27]
root       465     1  0 14:29 ?        00:00:00 [aio/28]
root       466     1  0 14:29 ?        00:00:00 [aio/29]
root       467     1  0 14:29 ?        00:00:00 [aio/30]
root       468     1  0 14:29 ?        00:00:00 [aio/31]
root       469     1  0 14:29 ?        00:00:00 [aio/32]
root       470     1  0 14:29 ?        00:00:00 [aio/33]
root       471     1  0 14:29 ?        00:00:00 [aio/34]
root       472     1  0 14:29 ?        00:00:00 [aio/35]
root       473     1  0 14:29 ?        00:00:00 [aio/36]
root       474     1  0 14:29 ?        00:00:00 [aio/37]
root       475     1  0 14:29 ?        00:00:00 [aio/38]
root       476     1  0 14:29 ?        00:00:00 [aio/39]
root       477     1  0 14:29 ?        00:00:00 [aio/40]
root       478     1  0 14:29 ?        00:00:00 [aio/41]
root       479     1  0 14:29 ?        00:00:00 [aio/42]
root       480     1  0 14:29 ?        00:00:00 [aio/43]
root       481     1  0 14:29 ?        00:00:00 [aio/44]
root       482     1  0 14:29 ?        00:00:00 [aio/45]
root       483     1  0 14:29 ?        00:00:00 [aio/46]
root       484     1  0 14:29 ?        00:00:00 [aio/47]
root       485     1  0 14:29 ?        00:00:00 [aio/48]
root       486     1  0 14:29 ?        00:00:00 [aio/49]
root       487     1  0 14:29 ?        00:00:00 [aio/50]
root       488     1  0 14:29 ?        00:00:00 [aio/51]
root       489     1  0 14:29 ?        00:00:00 [aio/52]
root       490     1  0 14:29 ?        00:00:00 [aio/53]
root       491     1  0 14:29 ?        00:00:00 [aio/54]
root       492     1  0 14:29 ?        00:00:00 [aio/55]
root       493     1  0 14:29 ?        00:00:00 [aio/56]
root       494     1  0 14:29 ?        00:00:00 [aio/57]
root       495     1  0 14:29 ?        00:00:00 [aio/58]
root       496     1  0 14:29 ?        00:00:00 [aio/59]
root       497     1  0 14:29 ?        00:00:00 [aio/60]
root       498     1  0 14:29 ?        00:00:00 [aio/61]
root       499     1  0 14:29 ?        00:00:00 [aio/62]
root       500     1  0 14:29 ?        00:00:00 [aio/63]
root       501     1  0 14:29 ?        00:00:00 [aio/64]
root       502     1  0 14:29 ?        00:00:00 [aio/65]
root       503     1  0 14:29 ?        00:00:00 [aio/66]
root       504     1  0 14:29 ?        00:00:00 [aio/67]
root       505     1  0 14:29 ?        00:00:00 [aio/68]
root       506     1  0 14:29 ?        00:00:00 [aio/69]
root       507     1  0 14:29 ?        00:00:00 [aio/70]
root       508     1  0 14:29 ?        00:00:00 [aio/71]
root       509     1  0 14:29 ?        00:00:00 [aio/72]
root       510     1  0 14:29 ?        00:00:00 [aio/73]
root       511     1  0 14:29 ?        00:00:00 [aio/74]
root       512     1  0 14:29 ?        00:00:00 [aio/75]
root       513     1  0 14:29 ?        00:00:00 [aio/76]
root       514     1  0 14:29 ?        00:00:00 [aio/77]
root       515     1  0 14:29 ?        00:00:00 [aio/78]
root       516     1  0 14:29 ?        00:00:00 [aio/79]
root       517     1  0 14:29 ?        00:00:00 [aio/80]
root       518     1  0 14:29 ?        00:00:00 [aio/81]
root       519     1  0 14:29 ?        00:00:00 [aio/82]
root       520     1  0 14:29 ?        00:00:00 [aio/83]
root       521     1  0 14:29 ?        00:00:00 [aio/84]
root       522     1  0 14:29 ?        00:00:00 [aio/85]
root       523     1  0 14:29 ?        00:00:00 [aio/86]
root       524     1  0 14:29 ?        00:00:00 [aio/87]
root       525     1  0 14:29 ?        00:00:00 [aio/88]
root       526     1  0 14:29 ?        00:00:00 [aio/89]
root       527     1  0 14:29 ?        00:00:00 [aio/90]
root       528     1  0 14:29 ?        00:00:00 [aio/91]
root       529     1  0 14:29 ?        00:00:00 [aio/92]
root       530     1  0 14:29 ?        00:00:00 [aio/93]
root       531     1  0 14:29 ?        00:00:00 [aio/94]
root       532     1  0 14:29 ?        00:00:00 [aio/95]
root       533     1  0 14:29 ?        00:00:00 [xfslogd/0]
root       534     1  0 14:29 ?        00:00:00 [xfslogd/1]
root       535     1  0 14:29 ?        00:00:00 [xfslogd/2]
root       536     1  0 14:29 ?        00:00:00 [xfslogd/3]
root       537     1  0 14:29 ?        00:00:00 [xfslogd/4]
root       538     1  0 14:29 ?        00:00:00 [xfslogd/5]
root       539     1  0 14:29 ?        00:00:00 [xfslogd/6]
root       540     1  0 14:29 ?        00:00:00 [xfslogd/7]
root       541     1  0 14:29 ?        00:00:00 [xfslogd/8]
root       542     1  0 14:29 ?        00:00:00 [xfslogd/9]
root       543     1  0 14:29 ?        00:00:00 [xfslogd/10]
root       544     1  0 14:29 ?        00:00:00 [xfslogd/11]
root       545     1  0 14:29 ?        00:00:00 [xfslogd/12]
root       546     1  0 14:29 ?        00:00:00 [xfslogd/13]
root       547     1  0 14:29 ?        00:00:00 [xfslogd/14]
root       548     1  0 14:29 ?        00:00:00 [xfslogd/15]
root       549     1  0 14:29 ?        00:00:00 [xfslogd/16]
root       550     1  0 14:29 ?        00:00:00 [xfslogd/17]
root       551     1  0 14:29 ?        00:00:00 [xfslogd/18]
root       552     1  0 14:29 ?        00:00:00 [xfslogd/19]
root       553     1  0 14:29 ?        00:00:00 [xfslogd/20]
root       554     1  0 14:29 ?        00:00:00 [xfslogd/21]
root       555     1  0 14:29 ?        00:00:00 [xfslogd/22]
root       556     1  0 14:29 ?        00:00:00 [xfslogd/23]
root       557     1  0 14:29 ?        00:00:00 [xfslogd/24]
root       558     1  0 14:29 ?        00:00:00 [xfslogd/25]
root       559     1  0 14:29 ?        00:00:00 [xfslogd/26]
root       560     1  0 14:29 ?        00:00:00 [xfslogd/27]
root       561     1  0 14:29 ?        00:00:00 [xfslogd/28]
root       562     1  0 14:29 ?        00:00:00 [xfslogd/29]
root       563     1  0 14:29 ?        00:00:00 [xfslogd/30]
root       564     1  0 14:29 ?        00:00:00 [xfslogd/31]
root       565     1  0 14:29 ?        00:00:00 [xfslogd/32]
root       566     1  0 14:29 ?        00:00:00 [xfslogd/33]
root       567     1  0 14:29 ?        00:00:00 [xfslogd/34]
root       568     1  0 14:29 ?        00:00:00 [xfslogd/35]
root       569     1  0 14:29 ?        00:00:00 [xfslogd/36]
root       570     1  0 14:29 ?        00:00:00 [xfslogd/37]
root       571     1  0 14:29 ?        00:00:00 [xfslogd/38]
root       572     1  0 14:29 ?        00:00:00 [xfslogd/39]
root       573     1  0 14:29 ?        00:00:00 [xfslogd/40]
root       574     1  0 14:29 ?        00:00:00 [xfslogd/41]
root       575     1  0 14:29 ?        00:00:00 [xfslogd/42]
root       576     1  0 14:29 ?        00:00:00 [xfslogd/43]
root       577     1  0 14:29 ?        00:00:00 [xfslogd/44]
root       578     1  0 14:29 ?        00:00:00 [xfslogd/45]
root       579     1  0 14:29 ?        00:00:00 [xfslogd/46]
root       580     1  0 14:29 ?        00:00:00 [xfslogd/47]
root       581     1  0 14:29 ?        00:00:00 [xfslogd/48]
root       582     1  0 14:29 ?        00:00:00 [xfslogd/49]
root       583     1  0 14:29 ?        00:00:00 [xfslogd/50]
root       584     1  0 14:29 ?        00:00:00 [xfslogd/51]
root       585     1  0 14:29 ?        00:00:00 [xfslogd/52]
root       586     1  0 14:29 ?        00:00:00 [xfslogd/53]
root       587     1  0 14:29 ?        00:00:00 [xfslogd/54]
root       588     1  0 14:29 ?        00:00:00 [xfslogd/55]
root       589     1  0 14:29 ?        00:00:00 [xfslogd/56]
root       590     1  0 14:29 ?        00:00:00 [xfslogd/57]
root       591     1  0 14:29 ?        00:00:00 [xfslogd/58]
root       592     1  0 14:29 ?        00:00:00 [xfslogd/59]
root       593     1  0 14:29 ?        00:00:00 [xfslogd/60]
root       594     1  0 14:29 ?        00:00:00 [xfslogd/61]
root       595     1  0 14:29 ?        00:00:00 [xfslogd/62]
root       596     1  0 14:29 ?        00:00:00 [xfslogd/63]
root       597     1  0 14:29 ?        00:00:00 [xfslogd/64]
root       598     1  0 14:29 ?        00:00:00 [xfslogd/65]
root       599     1  0 14:29 ?        00:00:00 [xfslogd/66]
root       600     1  0 14:29 ?        00:00:00 [xfslogd/67]
root       601     1  0 14:29 ?        00:00:00 [xfslogd/68]
root       602     1  0 14:29 ?        00:00:00 [xfslogd/69]
root       603     1  0 14:29 ?        00:00:00 [xfslogd/70]
root       604     1  0 14:29 ?        00:00:00 [xfslogd/71]
root       605     1  0 14:29 ?        00:00:00 [xfslogd/72]
root       606     1  0 14:29 ?        00:00:00 [xfslogd/73]
root       607     1  0 14:29 ?        00:00:00 [xfslogd/74]
root       608     1  0 14:29 ?        00:00:00 [xfslogd/75]
root       609     1  0 14:29 ?        00:00:00 [xfslogd/76]
root       610     1  0 14:29 ?        00:00:00 [xfslogd/77]
root       611     1  0 14:29 ?        00:00:00 [xfslogd/78]
root       612     1  0 14:29 ?        00:00:00 [xfslogd/79]
root       613     1  0 14:29 ?        00:00:00 [xfslogd/80]
root       614     1  0 14:29 ?        00:00:00 [xfslogd/81]
root       615     1  0 14:29 ?        00:00:00 [xfslogd/82]
root       616     1  0 14:29 ?        00:00:00 [xfslogd/83]
root       617     1  0 14:29 ?        00:00:00 [xfslogd/84]
root       618     1  0 14:29 ?        00:00:00 [xfslogd/85]
root       619     1  0 14:29 ?        00:00:00 [xfslogd/86]
root       620     1  0 14:29 ?        00:00:00 [xfslogd/87]
root       621     1  0 14:29 ?        00:00:00 [xfslogd/88]
root       622     1  0 14:29 ?        00:00:00 [xfslogd/89]
root       623     1  0 14:29 ?        00:00:00 [xfslogd/90]
root       624     1  0 14:29 ?        00:00:00 [xfslogd/91]
root       625     1  0 14:29 ?        00:00:00 [xfslogd/92]
root       626     1  0 14:29 ?        00:00:00 [xfslogd/93]
root       627     1  0 14:29 ?        00:00:00 [xfslogd/94]
root       628     1  0 14:29 ?        00:00:00 [xfslogd/95]
root       629     1  0 14:29 ?        00:00:00 [xfsdatad/0]
root       630     1  0 14:29 ?        00:00:00 [xfsdatad/1]
root       631     1  0 14:29 ?        00:00:00 [xfsdatad/2]
root       632     1  0 14:29 ?        00:00:00 [xfsdatad/3]
root       633     1  0 14:29 ?        00:00:00 [xfsdatad/4]
root       634     1  0 14:29 ?        00:00:00 [xfsdatad/5]
root       635     1  0 14:29 ?        00:00:00 [xfsdatad/6]
root       636     1  0 14:29 ?        00:00:00 [xfsdatad/7]
root       637     1  0 14:29 ?        00:00:00 [xfsdatad/8]
root       638     1  0 14:29 ?        00:00:00 [xfsdatad/9]
root       639     1  0 14:29 ?        00:00:00 [xfsdatad/10]
root       640     1  0 14:29 ?        00:00:00 [xfsdatad/11]
root       641     1  0 14:29 ?        00:00:00 [xfsdatad/12]
root       642     1  0 14:29 ?        00:00:00 [xfsdatad/13]
root       643     1  0 14:29 ?        00:00:00 [xfsdatad/14]
root       644     1  0 14:29 ?        00:00:00 [xfsdatad/15]
root       645     1  0 14:29 ?        00:00:00 [xfsdatad/16]
root       646     1  0 14:29 ?        00:00:00 [xfsdatad/17]
root       647     1  0 14:29 ?        00:00:00 [xfsdatad/18]
root       648     1  0 14:29 ?        00:00:00 [xfsdatad/19]
root       649     1  0 14:29 ?        00:00:00 [xfsdatad/20]
root       650     1  0 14:29 ?        00:00:00 [xfsdatad/21]
root       651     1  0 14:29 ?        00:00:00 [xfsdatad/22]
root       652     1  0 14:29 ?        00:00:00 [xfsdatad/23]
root       653     1  0 14:29 ?        00:00:00 [xfsdatad/24]
root       654     1  0 14:29 ?        00:00:00 [xfsdatad/25]
root       655     1  0 14:29 ?        00:00:00 [xfsdatad/26]
root       656     1  0 14:29 ?        00:00:00 [xfsdatad/27]
root       657     1  0 14:29 ?        00:00:00 [xfsdatad/28]
root       658     1  0 14:29 ?        00:00:00 [xfsdatad/29]
root       659     1  0 14:29 ?        00:00:00 [xfsdatad/30]
root       660     1  0 14:29 ?        00:00:00 [xfsdatad/31]
root       661     1  0 14:29 ?        00:00:00 [xfsdatad/32]
root       662     1  0 14:29 ?        00:00:00 [xfsdatad/33]
root       663     1  0 14:29 ?        00:00:00 [xfsdatad/34]
root       664     1  0 14:29 ?        00:00:00 [xfsdatad/35]
root       665     1  0 14:29 ?        00:00:00 [xfsdatad/36]
root       666     1  0 14:29 ?        00:00:00 [xfsdatad/37]
root       667     1  0 14:29 ?        00:00:00 [xfsdatad/38]
root       668     1  0 14:29 ?        00:00:00 [xfsdatad/39]
root       669     1  0 14:29 ?        00:00:00 [xfsdatad/40]
root       670     1  0 14:29 ?        00:00:00 [xfsdatad/41]
root       671     1  0 14:29 ?        00:00:00 [xfsdatad/42]
root       672     1  0 14:29 ?        00:00:00 [xfsdatad/43]
root       673     1  0 14:29 ?        00:00:00 [xfsdatad/44]
root       674     1  0 14:29 ?        00:00:00 [xfsdatad/45]
root       675     1  0 14:29 ?        00:00:00 [xfsdatad/46]
root       676     1  0 14:29 ?        00:00:00 [xfsdatad/47]
root       677     1  0 14:29 ?        00:00:00 [xfsdatad/48]
root       678     1  0 14:29 ?        00:00:00 [xfsdatad/49]
root       679     1  0 14:29 ?        00:00:00 [xfsdatad/50]
root       680     1  0 14:29 ?        00:00:00 [xfsdatad/51]
root       681     1  0 14:29 ?        00:00:00 [xfsdatad/52]
root       682     1  0 14:29 ?        00:00:00 [xfsdatad/53]
root       683     1  0 14:29 ?        00:00:00 [xfsdatad/54]
root       684     1  0 14:29 ?        00:00:00 [xfsdatad/55]
root       685     1  0 14:29 ?        00:00:00 [xfsdatad/56]
root       686     1  0 14:29 ?        00:00:00 [xfsdatad/57]
root       687     1  0 14:29 ?        00:00:00 [xfsdatad/58]
root       688     1  0 14:29 ?        00:00:00 [xfsdatad/59]
root       689     1  0 14:29 ?        00:00:00 [xfsdatad/60]
root       690     1  0 14:29 ?        00:00:00 [xfsdatad/61]
root       691     1  0 14:29 ?        00:00:00 [xfsdatad/62]
root       692     1  0 14:29 ?        00:00:00 [xfsdatad/63]
root       693     1  0 14:29 ?        00:00:00 [xfsdatad/64]
root       694     1  0 14:29 ?        00:00:00 [xfsdatad/65]
root       695     1  0 14:29 ?        00:00:00 [xfsdatad/66]
root       696     1  0 14:29 ?        00:00:00 [xfsdatad/67]
root       697     1  0 14:29 ?        00:00:00 [xfsdatad/68]
root       698     1  0 14:29 ?        00:00:00 [xfsdatad/69]
root       699     1  0 14:29 ?        00:00:00 [xfsdatad/70]
root       700     1  0 14:29 ?        00:00:00 [xfsdatad/71]
root       701     1  0 14:29 ?        00:00:00 [xfsdatad/72]
root       702     1  0 14:29 ?        00:00:00 [xfsdatad/73]
root       703     1  0 14:29 ?        00:00:00 [xfsdatad/74]
root       704     1  0 14:29 ?        00:00:00 [xfsdatad/75]
root       705     1  0 14:29 ?        00:00:00 [xfsdatad/76]
root       706     1  0 14:29 ?        00:00:00 [xfsdatad/77]
root       707     1  0 14:29 ?        00:00:00 [xfsdatad/78]
root       708     1  0 14:29 ?        00:00:00 [xfsdatad/79]
root       709     1  0 14:29 ?        00:00:00 [xfsdatad/80]
root       710     1  0 14:29 ?        00:00:00 [xfsdatad/81]
root       711     1  0 14:29 ?        00:00:00 [xfsdatad/82]
root       712     1  0 14:29 ?        00:00:00 [xfsdatad/83]
root       713     1  0 14:29 ?        00:00:00 [xfsdatad/84]
root       714     1  0 14:29 ?        00:00:00 [xfsdatad/85]
root       715     1  0 14:29 ?        00:00:00 [xfsdatad/86]
root       716     1  0 14:29 ?        00:00:00 [xfsdatad/87]
root       717     1  0 14:29 ?        00:00:00 [xfsdatad/88]
root       718     1  0 14:29 ?        00:00:00 [xfsdatad/89]
root       719     1  0 14:29 ?        00:00:00 [xfsdatad/90]
root       720     1  0 14:29 ?        00:00:00 [xfsdatad/91]
root       721     1  0 14:29 ?        00:00:00 [xfsdatad/92]
root       722     1  0 14:29 ?        00:00:00 [xfsdatad/93]
root       723     1  0 14:29 ?        00:00:00 [xfsdatad/94]
root       724     1  0 14:29 ?        00:00:00 [xfsdatad/95]
root       725     1  0 14:29 ?        00:00:00 [pagebufd]
root       726     1  0 14:29 ?        00:00:00 [scsi_eh_0]
root       727     1  0 14:29 ?        00:00:00 [scsi_eh_1]
root       728     1  0 14:29 ?        00:00:00 [kseriod]
root       729     1  0 14:29 ?        00:00:00 [xfs_syncd]
root      1173     1  0 14:30 ?        00:00:00 /sbin/dhcpcd -n eth0
root      1757     1  0 14:30 ?        00:00:00 syslogd -m 0
root      1762     1  0 14:30 ?        00:00:00 klogd -2
rpc       1782     1  0 14:30 ?        00:00:00 portmap
root      1804     1  0 14:30 ?        00:00:00 rpc.statd
root      1883     1  0 14:30 ?        00:00:00 [rpciod]
root      1884     1  0 14:30 ?        00:00:00 [lockd]
root      1910     1  0 14:30 ?        00:00:00 ypbind
root      1911  1910  0 14:30 ?        00:00:00 ypbind
root      1912  1911  0 14:30 ?        00:00:00 ypbind
root      1913  1911  0 14:30 ?        00:00:00 ypbind
root      1961     1  0 14:30 ?        00:00:00 /usr/sbin/sshd
root      1994     1  0 14:30 ?        00:00:00 xinetd -stayalive -pidfile /var/run/xinetd.pid
ntp       2015     1  0 14:30 ?        00:00:00 ntpd -U ntp
root      2047     1  0 14:30 ?        00:00:00 /usr/sbin/amd -F /etc/amd.conf
root      2074     1  0 14:30 ?        00:00:00 sendmail: accepting connections
root      2105     1  0 14:30 ?        00:00:00 crond
xfs       2175     1  0 14:30 ?        00:00:00 xfs -droppriv -daemon
daemon    2229     1  0 14:30 ?        00:00:00 /usr/sbin/atd
root      2304     1  1 14:30 ?        00:00:07 /usr/share/pcp/bin/pmcd
root      2333     1  0 14:30 ?        00:00:00 login -- root     
root      2334  2304  0 14:30 ?        00:00:00 /var/pcp/pmdas/snia/pmdasnia -d 63
root      2420  2333  0 14:30 ttyS0    00:00:00 -bash
root      2505  1994  0 14:35 ?        00:00:00 in.telnetd: spamtin.engr.sgi.com
root      2506  2505  0 14:35 ?        00:00:00 login -- root                        
root      2507  2506  0 14:35 pts/0    00:00:00 -bash
root      2586     1  1 14:37 ?        00:00:01 [pdflush]
root      2607  2420  0 14:39 ttyS0    00:00:00 ps -ef

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

* [DMESG] cpumask_t in action
@ 2003-11-05 22:22 Jesse Barnes
  2003-11-05 22:49 ` Jesse Barnes
  2003-11-06 16:51 ` Matthew Wilcox
  0 siblings, 2 replies; 18+ messages in thread
From: Jesse Barnes @ 2003-11-05 22:22 UTC (permalink / raw)
  To: linux-kernel, linux-ia64

At the kernel summit, Andrew asked if we really needed cpumask_t in the
kernel to support > BITS_PER_LONG CPUs.  We've sent out patches to fix
issues we've seen with large systems, but I realized that we had never
sent the dmesg of such a system booting up.  Some customers have much
larger systems than the I used here, so don't be lulled into thinking
that 2*BITS_PER_LONG is sufficient :).

I'm Cc'ing linux-ia64 because I think we have a lot of boot messages to
cleanup in arch/ia64...

Thanks,
Jesse

Linux version 2.6.0-test9 (jbarnes@tomahawk.engr.sgi.com) (gcc version 3.3.2) #1 SMP Wed Nov 5 14:05:25 PST 2003
EFI v1.02 by SGI: SALsystab=0x3004721d70 ACPI 2.0=0x3004721e40
ACPI: RSDP (v002    SGI                                    ) @ 0x0000003004721e40
ACPI: XSDT (v001    SGI  XSDTSN2 0x00010001 \x01 0x00000001) @ 0x0000003004722820
ACPI: MADT (v001    SGI  APICSN2 0x00010001 \x01 0x00000001) @ 0x0000003004722880
ACPI: SRAT (v001    SGI  SRATSN2 0x00010001 \x01 0x00000001) @ 0x0000003004722d40
ACPI: SLIT (v001    SGI  SLITSN2 0x00010001 \x01 0x00000001) @ 0x0000003004723b00
ACPI: FADT (v003    SGI  FACPSN2 0x00030001 \x01 0x00000001) @ 0x00000030047244d0
ACPI: DSDT (v001    SGI  DSDTSN2 0x00010001 \x01 0x00000001) @ 0x0000003004724490
ACPI:  (v000                 0x00000000  0x00000000) @ 0x0000000000000000
ACPI: SRAT revision 0
ACPI: SRAT Processor (id[0x00] eid[0x00]) in proximity domain 0 enabled
ACPI: SRAT Processor (id[0x20] eid[0x00]) in proximity domain 0 enabled
ACPI: SRAT Processor (id[0x00] eid[0x02]) in proximity domain 1 enabled
ACPI: SRAT Processor (id[0x20] eid[0x02]) in proximity domain 1 enabled
ACPI: SRAT Processor (id[0x00] eid[0x04]) in proximity domain 2 enabled
ACPI: SRAT Processor (id[0x20] eid[0x04]) in proximity domain 2 enabled
ACPI: SRAT Processor (id[0x00] eid[0x06]) in proximity domain 3 enabled
ACPI: SRAT Processor (id[0x20] eid[0x06]) in proximity domain 3 enabled
ACPI: SRAT Processor (id[0x00] eid[0x08]) in proximity domain 4 enabled
ACPI: SRAT Processor (id[0x20] eid[0x08]) in proximity domain 4 enabled
ACPI: SRAT Processor (id[0x00] eid[0x0a]) in proximity domain 5 enabled
ACPI: SRAT Processor (id[0x20] eid[0x0a]) in proximity domain 5 enabled
ACPI: SRAT Processor (id[0x00] eid[0x0c]) in proximity domain 6 enabled
ACPI: SRAT Processor (id[0x20] eid[0x0c]) in proximity domain 6 enabled
ACPI: SRAT Processor (id[0x00] eid[0x0e]) in proximity domain 7 enabled
ACPI: SRAT Processor (id[0x20] eid[0x0e]) in proximity domain 7 enabled
ACPI: SRAT Processor (id[0x00] eid[0x10]) in proximity domain 8 enabled
ACPI: SRAT Processor (id[0x20] eid[0x10]) in proximity domain 8 enabled
ACPI: SRAT Processor (id[0x00] eid[0x12]) in proximity domain 9 enabled
ACPI: SRAT Processor (id[0x20] eid[0x12]) in proximity domain 9 enabled
ACPI: SRAT Processor (id[0x00] eid[0x14]) in proximity domain 10 enabled
ACPI: SRAT Processor (id[0x20] eid[0x14]) in proximity domain 10 enabled
ACPI: SRAT Processor (id[0x00] eid[0x16]) in proximity domain 11 enabled
ACPI: SRAT Processor (id[0x20] eid[0x16]) in proximity domain 11 enabled
ACPI: SRAT Processor (id[0x00] eid[0x18]) in proximity domain 12 enabled
ACPI: SRAT Processor (id[0x20] eid[0x18]) in proximity domain 12 enabled
ACPI: SRAT Processor (id[0x00] eid[0x1a]) in proximity domain 13 enabled
ACPI: SRAT Processor (id[0x20] eid[0x1a]) in proximity domain 13 enabled
ACPI: SRAT Processor (id[0x00] eid[0x1c]) in proximity domain 14 enabled
ACPI: SRAT Processor (id[0x20] eid[0x1c]) in proximity domain 14 enabled
ACPI: SRAT Processor (id[0x00] eid[0x1e]) in proximity domain 15 enabled
ACPI: SRAT Processor (id[0x20] eid[0x1e]) in proximity domain 15 enabled
ACPI: SRAT Processor (id[0x00] eid[0x20]) in proximity domain 16 enabled
ACPI: SRAT Processor (id[0x20] eid[0x20]) in proximity domain 16 enabled
ACPI: SRAT Processor (id[0x00] eid[0x22]) in proximity domain 17 enabled
ACPI: SRAT Processor (id[0x20] eid[0x22]) in proximity domain 17 enabled
ACPI: SRAT Processor (id[0x00] eid[0x24]) in proximity domain 18 enabled
ACPI: SRAT Processor (id[0x20] eid[0x24]) in proximity domain 18 enabled
ACPI: SRAT Processor (id[0x00] eid[0x26]) in proximity domain 19 enabled
ACPI: SRAT Processor (id[0x20] eid[0x26]) in proximity domain 19 enabled
ACPI: SRAT Processor (id[0x00] eid[0x28]) in proximity domain 20 enabled
ACPI: SRAT Processor (id[0x20] eid[0x28]) in proximity domain 20 enabled
ACPI: SRAT Processor (id[0x00] eid[0x2a]) in proximity domain 21 enabled
ACPI: SRAT Processor (id[0x20] eid[0x2a]) in proximity domain 21 enabled
ACPI: SRAT Processor (id[0x00] eid[0x2c]) in proximity domain 22 enabled
ACPI: SRAT Processor (id[0x20] eid[0x2c]) in proximity domain 22 enabled
ACPI: SRAT Processor (id[0x00] eid[0x2e]) in proximity domain 23 enabled
ACPI: SRAT Processor (id[0x20] eid[0x2e]) in proximity domain 23 enabled
ACPI: SRAT Processor (id[0x00] eid[0x30]) in proximity domain 24 enabled
ACPI: SRAT Processor (id[0x20] eid[0x30]) in proximity domain 24 enabled
ACPI: SRAT Processor (id[0x00] eid[0x32]) in proximity domain 25 enabled
ACPI: SRAT Processor (id[0x20] eid[0x32]) in proximity domain 25 enabled
ACPI: SRAT Processor (id[0x00] eid[0x34]) in proximity domain 26 enabled
ACPI: SRAT Processor (id[0x20] eid[0x34]) in proximity domain 26 enabled
ACPI: SRAT Processor (id[0x00] eid[0x36]) in proximity domain 27 enabled
ACPI: SRAT Processor (id[0x20] eid[0x36]) in proximity domain 27 enabled
ACPI: SRAT Processor (id[0x00] eid[0x38]) in proximity domain 28 enabled
ACPI: SRAT Processor (id[0x20] eid[0x38]) in proximity domain 28 enabled
ACPI: SRAT Processor (id[0x00] eid[0x3a]) in proximity domain 29 enabled
ACPI: SRAT Processor (id[0x20] eid[0x3a]) in proximity domain 29 enabled
ACPI: SRAT Processor (id[0x00] eid[0x3c]) in proximity domain 30 enabled
ACPI: SRAT Processor (id[0x20] eid[0x3c]) in proximity domain 30 enabled
ACPI: SRAT Processor (id[0x00] eid[0x3e]) in proximity domain 31 enabled
ACPI: SRAT Processor (id[0x20] eid[0x3e]) in proximity domain 31 enabled
ACPI: SRAT Processor (id[0x00] eid[0x40]) in proximity domain 32 enabled
ACPI: SRAT Processor (id[0x20] eid[0x40]) in proximity domain 32 enabled
ACPI: SRAT Processor (id[0x00] eid[0x42]) in proximity domain 33 enabled
ACPI: SRAT Processor (id[0x20] eid[0x42]) in proximity domain 33 enabled
ACPI: SRAT Processor (id[0x00] eid[0x44]) in proximity domain 34 enabled
ACPI: SRAT Processor (id[0x20] eid[0x44]) in proximity domain 34 enabled
ACPI: SRAT Processor (id[0x00] eid[0x46]) in proximity domain 35 enabled
ACPI: SRAT Processor (id[0x20] eid[0x46]) in proximity domain 35 enabled
ACPI: SRAT Processor (id[0x00] eid[0x48]) in proximity domain 36 enabled
ACPI: SRAT Processor (id[0x20] eid[0x48]) in proximity domain 36 enabled
ACPI: SRAT Processor (id[0x00] eid[0x4a]) in proximity domain 37 enabled
ACPI: SRAT Processor (id[0x20] eid[0x4a]) in proximity domain 37 enabled
ACPI: SRAT Processor (id[0x00] eid[0x4c]) in proximity domain 38 enabled
ACPI: SRAT Processor (id[0x20] eid[0x4c]) in proximity domain 38 enabled
ACPI: SRAT Processor (id[0x00] eid[0x4e]) in proximity domain 39 enabled
ACPI: SRAT Processor (id[0x20] eid[0x4e]) in proximity domain 39 enabled
ACPI: SRAT Processor (id[0x00] eid[0x50]) in proximity domain 40 enabled
ACPI: SRAT Processor (id[0x20] eid[0x50]) in proximity domain 40 enabled
ACPI: SRAT Processor (id[0x00] eid[0x52]) in proximity domain 41 enabled
ACPI: SRAT Processor (id[0x20] eid[0x52]) in proximity domain 41 enabled
ACPI: SRAT Processor (id[0x00] eid[0x54]) in proximity domain 42 enabled
ACPI: SRAT Processor (id[0x20] eid[0x54]) in proximity domain 42 enabled
ACPI: SRAT Processor (id[0x00] eid[0x56]) in proximity domain 43 enabled
ACPI: SRAT Processor (id[0x20] eid[0x56]) in proximity domain 43 enabled
ACPI: SRAT Processor (id[0x00] eid[0x58]) in proximity domain 44 enabled
ACPI: SRAT Processor (id[0x20] eid[0x58]) in proximity domain 44 enabled
ACPI: SRAT Processor (id[0x00] eid[0x5a]) in proximity domain 45 enabled
ACPI: SRAT Processor (id[0x20] eid[0x5a]) in proximity domain 45 enabled
ACPI: SRAT Processor (id[0x00] eid[0x5c]) in proximity domain 46 enabled
ACPI: SRAT Processor (id[0x20] eid[0x5c]) in proximity domain 46 enabled
ACPI: SRAT Processor (id[0x00] eid[0x5e]) in proximity domain 47 enabled
ACPI: SRAT Processor (id[0x20] eid[0x5e]) in proximity domain 47 enabled
ACPI: SRAT Memory (0x0000003000000000 length 0x0000001000000000 type 0x1) in proximity domain 0 enabled
ACPI: SRAT Memory (0x000000b000000000 length 0x0000001000000000 type 0x1) in proximity domain 1 enabled
ACPI: SRAT Memory (0x0000013000000000 length 0x0000001000000000 type 0x1) in proximity domain 2 enabled
ACPI: SRAT Memory (0x000001b000000000 length 0x0000001000000000 type 0x1) in proximity domain 3 enabled
ACPI: SRAT Memory (0x0000023000000000 length 0x0000001000000000 type 0x1) in proximity domain 4 enabled
ACPI: SRAT Memory (0x000002b000000000 length 0x0000001000000000 type 0x1) in proximity domain 5 enabled
ACPI: SRAT Memory (0x0000033000000000 length 0x0000001000000000 type 0x1) in proximity domain 6 enabled
ACPI: SRAT Memory (0x000003b000000000 length 0x0000001000000000 type 0x1) in proximity domain 7 enabled
ACPI: SRAT Memory (0x0000043000000000 length 0x0000001000000000 type 0x1) in proximity domain 8 enabled
ACPI: SRAT Memory (0x000004b000000000 length 0x0000001000000000 type 0x1) in proximity domain 9 enabled
ACPI: SRAT Memory (0x0000053000000000 length 0x0000001000000000 type 0x1) in proximity domain 10 enabled
ACPI: SRAT Memory (0x000005b000000000 length 0x0000001000000000 type 0x1) in proximity domain 11 enabled
ACPI: SRAT Memory (0x0000063000000000 length 0x0000001000000000 type 0x1) in proximity domain 12 enabled
ACPI: SRAT Memory (0x000006b000000000 length 0x0000001000000000 type 0x1) in proximity domain 13 enabled
ACPI: SRAT Memory (0x0000073000000000 length 0x0000001000000000 type 0x1) in proximity domain 14 enabled
ACPI: SRAT Memory (0x000007b000000000 length 0x0000001000000000 type 0x1) in proximity domain 15 enabled
ACPI: SRAT Memory (0x0000083000000000 length 0x0000001000000000 type 0x1) in proximity domain 16 enabled
ACPI: SRAT Memory (0x000008b000000000 length 0x0000001000000000 type 0x1) in proximity domain 17 enabled
ACPI: SRAT Memory (0x0000093000000000 length 0x0000001000000000 type 0x1) in proximity domain 18 enabled
ACPI: SRAT Memory (0x000009b000000000 length 0x0000001000000000 type 0x1) in proximity domain 19 enabled
ACPI: SRAT Memory (0x00000a3000000000 length 0x0000001000000000 type 0x1) in proximity domain 20 enabled
ACPI: SRAT Memory (0x00000ab000000000 length 0x0000001000000000 type 0x1) in proximity domain 21 enabled
ACPI: SRAT Memory (0x00000b3000000000 length 0x0000001000000000 type 0x1) in proximity domain 22 enabled
ACPI: SRAT Memory (0x00000bb000000000 length 0x0000001000000000 type 0x1) in proximity domain 23 enabled
ACPI: SRAT Memory (0x00000c3000000000 length 0x0000001000000000 type 0x1) in proximity domain 24 enabled
ACPI: SRAT Memory (0x00000cb000000000 length 0x0000001000000000 type 0x1) in proximity domain 25 enabled
ACPI: SRAT Memory (0x00000d3000000000 length 0x0000001000000000 type 0x1) in proximity domain 26 enabled
ACPI: SRAT Memory (0x00000db000000000 length 0x0000001000000000 type 0x1) in proximity domain 27 enabled
ACPI: SRAT Memory (0x00000e3000000000 length 0x0000001000000000 type 0x1) in proximity domain 28 enabled
ACPI: SRAT Memory (0x00000eb000000000 length 0x0000001000000000 type 0x1) in proximity domain 29 enabled
ACPI: SRAT Memory (0x00000f3000000000 length 0x0000001000000000 type 0x1) in proximity domain 30 enabled
ACPI: SRAT Memory (0x00000fb000000000 length 0x0000001000000000 type 0x1) in proximity domain 31 enabled
ACPI: SRAT Memory (0x0000103000000000 length 0x0000001000000000 type 0x1) in proximity domain 32 enabled
ACPI: SRAT Memory (0x000010b000000000 length 0x0000001000000000 type 0x1) in proximity domain 33 enabled
ACPI: SRAT Memory (0x0000113000000000 length 0x0000001000000000 type 0x1) in proximity domain 34 enabled
ACPI: SRAT Memory (0x000011b000000000 length 0x0000001000000000 type 0x1) in proximity domain 35 enabled
ACPI: SRAT Memory (0x0000123000000000 length 0x0000001000000000 type 0x1) in proximity domain 36 enabled
ACPI: SRAT Memory (0x000012b000000000 length 0x0000001000000000 type 0x1) in proximity domain 37 enabled
ACPI: SRAT Memory (0x0000133000000000 length 0x0000001000000000 type 0x1) in proximity domain 38 enabled
ACPI: SRAT Memory (0x000013b000000000 length 0x0000001000000000 type 0x1) in proximity domain 39 enabled
ACPI: SRAT Memory (0x0000143000000000 length 0x0000001000000000 type 0x1) in proximity domain 40 enabled
ACPI: SRAT Memory (0x000014b000000000 length 0x0000001000000000 type 0x1) in proximity domain 41 enabled
ACPI: SRAT Memory (0x0000153000000000 length 0x0000001000000000 type 0x1) in proximity domain 42 enabled
ACPI: SRAT Memory (0x000015b000000000 length 0x0000001000000000 type 0x1) in proximity domain 43 enabled
ACPI: SRAT Memory (0x0000163000000000 length 0x0000001000000000 type 0x1) in proximity domain 44 enabled
ACPI: SRAT Memory (0x000016b000000000 length 0x0000001000000000 type 0x1) in proximity domain 45 enabled
ACPI: SRAT Memory (0x0000173000000000 length 0x0000001000000000 type 0x1) in proximity domain 46 enabled
ACPI: SRAT Memory (0x000017b000000000 length 0x0000001000000000 type 0x1) in proximity domain 47 enabled
ACPI: SLIT localities 48x48
Number of logical nodes in system = 48
Number of memory chunks in system = 48
SAL v2.09: oem=SGI, product=SN2
SAL: entry: pal_proc=0xfff800, sal_proc=0xfffc00
SAL: Platform features ITC_Drift 
SAL: AP wakeup using external interrupt vector 0x12
CPU 0: 61 virtual and 50 physical address bits
ACPI: Local APIC address 0xc0000000fee00000
ACPI: LSAPIC (acpi_id[0x00] lsapic_id[0x00] lsapic_eid[0x00] enabled)
CPU 0 (0x0000) enabled (BSP)
ACPI: LSAPIC (acpi_id[0x01] lsapic_id[0x20] lsapic_eid[0x00] enabled)
CPU 1 (0x2000) enabled
ACPI: LSAPIC (acpi_id[0x02] lsapic_id[0x00] lsapic_eid[0x02] enabled)
CPU 2 (0x0002) enabled
ACPI: LSAPIC (acpi_id[0x03] lsapic_id[0x20] lsapic_eid[0x02] enabled)
CPU 3 (0x2002) enabled
ACPI: LSAPIC (acpi_id[0x04] lsapic_id[0x00] lsapic_eid[0x04] enabled)
CPU 4 (0x0004) enabled
ACPI: LSAPIC (acpi_id[0x05] lsapic_id[0x20] lsapic_eid[0x04] enabled)
CPU 5 (0x2004) enabled
ACPI: LSAPIC (acpi_id[0x06] lsapic_id[0x00] lsapic_eid[0x06] enabled)
CPU 6 (0x0006) enabled
ACPI: LSAPIC (acpi_id[0x07] lsapic_id[0x20] lsapic_eid[0x06] enabled)
CPU 7 (0x2006) enabled
ACPI: LSAPIC (acpi_id[0x08] lsapic_id[0x00] lsapic_eid[0x08] enabled)
CPU 8 (0x0008) enabled
ACPI: LSAPIC (acpi_id[0x09] lsapic_id[0x20] lsapic_eid[0x08] enabled)
CPU 9 (0x2008) enabled
ACPI: LSAPIC (acpi_id[0x0a] lsapic_id[0x00] lsapic_eid[0x0a] enabled)
CPU 10 (0x000a) enabled
ACPI: LSAPIC (acpi_id[0x0b] lsapic_id[0x20] lsapic_eid[0x0a] enabled)
CPU 11 (0x200a) enabled
ACPI: LSAPIC (acpi_id[0x0c] lsapic_id[0x00] lsapic_eid[0x0c] enabled)
CPU 12 (0x000c) enabled
ACPI: LSAPIC (acpi_id[0x0d] lsapic_id[0x20] lsapic_eid[0x0c] enabled)
CPU 13 (0x200c) enabled
ACPI: LSAPIC (acpi_id[0x0e] lsapic_id[0x00] lsapic_eid[0x0e] enabled)
CPU 14 (0x000e) enabled
ACPI: LSAPIC (acpi_id[0x0f] lsapic_id[0x20] lsapic_eid[0x0e] enabled)
CPU 15 (0x200e) enabled
ACPI: LSAPIC (acpi_id[0x10] lsapic_id[0x00] lsapic_eid[0x10] enabled)
CPU 16 (0x0010) enabled
ACPI: LSAPIC (acpi_id[0x11] lsapic_id[0x20] lsapic_eid[0x10] enabled)
CPU 17 (0x2010) enabled
ACPI: LSAPIC (acpi_id[0x12] lsapic_id[0x00] lsapic_eid[0x12] enabled)
CPU 18 (0x0012) enabled
ACPI: LSAPIC (acpi_id[0x13] lsapic_id[0x20] lsapic_eid[0x12] enabled)
CPU 19 (0x2012) enabled
ACPI: LSAPIC (acpi_id[0x14] lsapic_id[0x00] lsapic_eid[0x14] enabled)
CPU 20 (0x0014) enabled
ACPI: LSAPIC (acpi_id[0x15] lsapic_id[0x20] lsapic_eid[0x14] enabled)
CPU 21 (0x2014) enabled
ACPI: LSAPIC (acpi_id[0x16] lsapic_id[0x00] lsapic_eid[0x16] enabled)
CPU 22 (0x0016) enabled
ACPI: LSAPIC (acpi_id[0x17] lsapic_id[0x20] lsapic_eid[0x16] enabled)
CPU 23 (0x2016) enabled
ACPI: LSAPIC (acpi_id[0x18] lsapic_id[0x00] lsapic_eid[0x18] enabled)
CPU 24 (0x0018) enabled
ACPI: LSAPIC (acpi_id[0x19] lsapic_id[0x20] lsapic_eid[0x18] enabled)
CPU 25 (0x2018) enabled
ACPI: LSAPIC (acpi_id[0x1a] lsapic_id[0x00] lsapic_eid[0x1a] enabled)
CPU 26 (0x001a) enabled
ACPI: LSAPIC (acpi_id[0x1b] lsapic_id[0x20] lsapic_eid[0x1a] enabled)
CPU 27 (0x201a) enabled
ACPI: LSAPIC (acpi_id[0x1c] lsapic_id[0x00] lsapic_eid[0x1c] enabled)
CPU 28 (0x001c) enabled
ACPI: LSAPIC (acpi_id[0x1d] lsapic_id[0x20] lsapic_eid[0x1c] enabled)
CPU 29 (0x201c) enabled
ACPI: LSAPIC (acpi_id[0x1e] lsapic_id[0x00] lsapic_eid[0x1e] enabled)
CPU 30 (0x001e) enabled
ACPI: LSAPIC (acpi_id[0x1f] lsapic_id[0x20] lsapic_eid[0x1e] enabled)
CPU 31 (0x201e) enabled
ACPI: LSAPIC (acpi_id[0x20] lsapic_id[0x00] lsapic_eid[0x20] enabled)
CPU 32 (0x0020) enabled
ACPI: LSAPIC (acpi_id[0x21] lsapic_id[0x20] lsapic_eid[0x20] enabled)
CPU 33 (0x2020) enabled
ACPI: LSAPIC (acpi_id[0x22] lsapic_id[0x00] lsapic_eid[0x22] enabled)
CPU 34 (0x0022) enabled
ACPI: LSAPIC (acpi_id[0x23] lsapic_id[0x20] lsapic_eid[0x22] enabled)
CPU 35 (0x2022) enabled
ACPI: LSAPIC (acpi_id[0x24] lsapic_id[0x00] lsapic_eid[0x24] enabled)
CPU 36 (0x0024) enabled
ACPI: LSAPIC (acpi_id[0x25] lsapic_id[0x20] lsapic_eid[0x24] enabled)
CPU 37 (0x2024) enabled
ACPI: LSAPIC (acpi_id[0x26] lsapic_id[0x00] lsapic_eid[0x26] enabled)
CPU 38 (0x0026) enabled
ACPI: LSAPIC (acpi_id[0x27] lsapic_id[0x20] lsapic_eid[0x26] enabled)
CPU 39 (0x2026) enabled
ACPI: LSAPIC (acpi_id[0x28] lsapic_id[0x00] lsapic_eid[0x28] enabled)
CPU 40 (0x0028) enabled
ACPI: LSAPIC (acpi_id[0x29] lsapic_id[0x20] lsapic_eid[0x28] enabled)
CPU 41 (0x2028) enabled
ACPI: LSAPIC (acpi_id[0x2a] lsapic_id[0x00] lsapic_eid[0x2a] enabled)
CPU 42 (0x002a) enabled
ACPI: LSAPIC (acpi_id[0x2b] lsapic_id[0x20] lsapic_eid[0x2a] enabled)
CPU 43 (0x202a) enabled
ACPI: LSAPIC (acpi_id[0x2c] lsapic_id[0x00] lsapic_eid[0x2c] enabled)
CPU 44 (0x002c) enabled
ACPI: LSAPIC (acpi_id[0x2d] lsapic_id[0x20] lsapic_eid[0x2c] enabled)
CPU 45 (0x202c) enabled
ACPI: LSAPIC (acpi_id[0x2e] lsapic_id[0x00] lsapic_eid[0x2e] enabled)
CPU 46 (0x002e) enabled
ACPI: LSAPIC (acpi_id[0x2f] lsapic_id[0x20] lsapic_eid[0x2e] enabled)
CPU 47 (0x202e) enabled
ACPI: LSAPIC (acpi_id[0x30] lsapic_id[0x00] lsapic_eid[0x30] enabled)
CPU 48 (0x0030) enabled
ACPI: LSAPIC (acpi_id[0x31] lsapic_id[0x20] lsapic_eid[0x30] enabled)
CPU 49 (0x2030) enabled
ACPI: LSAPIC (acpi_id[0x32] lsapic_id[0x00] lsapic_eid[0x32] enabled)
CPU 50 (0x0032) enabled
ACPI: LSAPIC (acpi_id[0x33] lsapic_id[0x20] lsapic_eid[0x32] enabled)
CPU 51 (0x2032) enabled
ACPI: LSAPIC (acpi_id[0x34] lsapic_id[0x00] lsapic_eid[0x34] enabled)
CPU 52 (0x0034) enabled
ACPI: LSAPIC (acpi_id[0x35] lsapic_id[0x20] lsapic_eid[0x34] enabled)
CPU 53 (0x2034) enabled
ACPI: LSAPIC (acpi_id[0x36] lsapic_id[0x00] lsapic_eid[0x36] enabled)
CPU 54 (0x0036) enabled
ACPI: LSAPIC (acpi_id[0x37] lsapic_id[0x20] lsapic_eid[0x36] enabled)
CPU 55 (0x2036) enabled
ACPI: LSAPIC (acpi_id[0x38] lsapic_id[0x00] lsapic_eid[0x38] enabled)
CPU 56 (0x0038) enabled
ACPI: LSAPIC (acpi_id[0x39] lsapic_id[0x20] lsapic_eid[0x38] enabled)
CPU 57 (0x2038) enabled
ACPI: LSAPIC (acpi_id[0x3a] lsapic_id[0x00] lsapic_eid[0x3a] enabled)
CPU 58 (0x003a) enabled
ACPI: LSAPIC (acpi_id[0x3b] lsapic_id[0x20] lsapic_eid[0x3a] enabled)
CPU 59 (0x203a) enabled
ACPI: LSAPIC (acpi_id[0x3c] lsapic_id[0x00] lsapic_eid[0x3c] enabled)
CPU 60 (0x003c) enabled
ACPI: LSAPIC (acpi_id[0x3d] lsapic_id[0x20] lsapic_eid[0x3c] enabled)
CPU 61 (0x203c) enabled
ACPI: LSAPIC (acpi_id[0x3e] lsapic_id[0x00] lsapic_eid[0x3e] enabled)
CPU 62 (0x003e) enabled
ACPI: LSAPIC (acpi_id[0x3f] lsapic_id[0x20] lsapic_eid[0x3e] enabled)
CPU 63 (0x203e) enabled
ACPI: LSAPIC (acpi_id[0x40] lsapic_id[0x00] lsapic_eid[0x40] enabled)
CPU 64 (0x0040) enabled
ACPI: LSAPIC (acpi_id[0x41] lsapic_id[0x20] lsapic_eid[0x40] enabled)
CPU 65 (0x2040) enabled
ACPI: LSAPIC (acpi_id[0x42] lsapic_id[0x00] lsapic_eid[0x42] enabled)
CPU 66 (0x0042) enabled
ACPI: LSAPIC (acpi_id[0x43] lsapic_id[0x20] lsapic_eid[0x42] enabled)
CPU 67 (0x2042) enabled
ACPI: LSAPIC (acpi_id[0x44] lsapic_id[0x00] lsapic_eid[0x44] enabled)
CPU 68 (0x0044) enabled
ACPI: LSAPIC (acpi_id[0x45] lsapic_id[0x20] lsapic_eid[0x44] enabled)
CPU 69 (0x2044) enabled
ACPI: LSAPIC (acpi_id[0x46] lsapic_id[0x00] lsapic_eid[0x46] enabled)
CPU 70 (0x0046) enabled
ACPI: LSAPIC (acpi_id[0x47] lsapic_id[0x20] lsapic_eid[0x46] enabled)
CPU 71 (0x2046) enabled
ACPI: LSAPIC (acpi_id[0x48] lsapic_id[0x00] lsapic_eid[0x48] enabled)
CPU 72 (0x0048) enabled
ACPI: LSAPIC (acpi_id[0x49] lsapic_id[0x20] lsapic_eid[0x48] enabled)
CPU 73 (0x2048) enabled
ACPI: LSAPIC (acpi_id[0x4a] lsapic_id[0x00] lsapic_eid[0x4a] enabled)
CPU 74 (0x004a) enabled
ACPI: LSAPIC (acpi_id[0x4b] lsapic_id[0x20] lsapic_eid[0x4a] enabled)
CPU 75 (0x204a) enabled
ACPI: LSAPIC (acpi_id[0x4c] lsapic_id[0x00] lsapic_eid[0x4c] enabled)
CPU 76 (0x004c) enabled
ACPI: LSAPIC (acpi_id[0x4d] lsapic_id[0x20] lsapic_eid[0x4c] enabled)
CPU 77 (0x204c) enabled
ACPI: LSAPIC (acpi_id[0x4e] lsapic_id[0x00] lsapic_eid[0x4e] enabled)
CPU 78 (0x004e) enabled
ACPI: LSAPIC (acpi_id[0x4f] lsapic_id[0x20] lsapic_eid[0x4e] enabled)
CPU 79 (0x204e) enabled
ACPI: LSAPIC (acpi_id[0x50] lsapic_id[0x00] lsapic_eid[0x50] enabled)
CPU 80 (0x0050) enabled
ACPI: LSAPIC (acpi_id[0x51] lsapic_id[0x20] lsapic_eid[0x50] enabled)
CPU 81 (0x2050) enabled
ACPI: LSAPIC (acpi_id[0x52] lsapic_id[0x00] lsapic_eid[0x52] enabled)
CPU 82 (0x0052) enabled
ACPI: LSAPIC (acpi_id[0x53] lsapic_id[0x20] lsapic_eid[0x52] enabled)
CPU 83 (0x2052) enabled
ACPI: LSAPIC (acpi_id[0x54] lsapic_id[0x00] lsapic_eid[0x54] enabled)
CPU 84 (0x0054) enabled
ACPI: LSAPIC (acpi_id[0x55] lsapic_id[0x20] lsapic_eid[0x54] enabled)
CPU 85 (0x2054) enabled
ACPI: LSAPIC (acpi_id[0x56] lsapic_id[0x00] lsapic_eid[0x56] enabled)
CPU 86 (0x0056) enabled
ACPI: LSAPIC (acpi_id[0x57] lsapic_id[0x20] lsapic_eid[0x56] enabled)
CPU 87 (0x2056) enabled
ACPI: LSAPIC (acpi_id[0x58] lsapic_id[0x00] lsapic_eid[0x58] enabled)
CPU 88 (0x0058) enabled
ACPI: LSAPIC (acpi_id[0x59] lsapic_id[0x20] lsapic_eid[0x58] enabled)
CPU 89 (0x2058) enabled
ACPI: LSAPIC (acpi_id[0x5a] lsapic_id[0x00] lsapic_eid[0x5a] enabled)
CPU 90 (0x005a) enabled
ACPI: LSAPIC (acpi_id[0x5b] lsapic_id[0x20] lsapic_eid[0x5a] enabled)
CPU 91 (0x205a) enabled
ACPI: LSAPIC (acpi_id[0x5c] lsapic_id[0x00] lsapic_eid[0x5c] enabled)
CPU 92 (0x005c) enabled
ACPI: LSAPIC (acpi_id[0x5d] lsapic_id[0x20] lsapic_eid[0x5c] enabled)
CPU 93 (0x205c) enabled
ACPI: LSAPIC (acpi_id[0x5e] lsapic_id[0x00] lsapic_eid[0x5e] enabled)
CPU 94 (0x005e) enabled
ACPI: LSAPIC (acpi_id[0x5f] lsapic_id[0x20] lsapic_eid[0x5e] enabled)
CPU 95 (0x205e) enabled
ACPI: Error parsing MADT - no IOSAPIC entries
register_intr: No IOSAPIC for GSI 0x0
GSI 0x0(low,level) -> CPU 0x0000 vector 48
96 CPUs available, 96 CPUs total
ia64_mca_init: Failed to register rendezvous interrupt with SAL.  rc = -2
SGI SAL version 3.01
CPU 0: nasid 0, slice 0, cnode 0
Virtual mem_map starts at 0xa0007fe263650000
On node 0 totalpages: 502233
  DMA zone: 502233 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 1 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 2 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 3 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 4 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 5 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 6 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 7 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 8 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 9 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 10 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 11 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 12 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 13 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 14 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 15 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 16 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 17 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 18 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 19 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 20 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 21 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 22 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 23 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 24 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 25 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 26 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 27 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 28 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 29 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 30 totalpages: 502783
  DMA zone: 502783 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 31 totalpages: 502784
  DMA zone: 502784 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 32 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 33 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 34 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 35 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 36 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 37 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 38 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 39 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 40 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 41 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 42 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 43 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 44 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 45 totalpages: 121855
  DMA zone: 121855 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 46 totalpages: 121856
  DMA zone: 121856 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
On node 47 totalpages: 121742
  DMA zone: 121742 pages, LIFO batch:4
  Normal zone: 0 pages, LIFO batch:1
  HighMem zone: 0 pages, LIFO batch:1
Building zonelist for node : 0
Building zonelist for node : 1
Building zonelist for node : 2
Building zonelist for node : 3
Building zonelist for node : 4
Building zonelist for node : 5
Building zonelist for node : 6
Building zonelist for node : 7
Building zonelist for node : 8
Building zonelist for node : 9
Building zonelist for node : 10
Building zonelist for node : 11
Building zonelist for node : 12
Building zonelist for node : 13
Building zonelist for node : 14
Building zonelist for node : 15
Building zonelist for node : 16
Building zonelist for node : 17
Building zonelist for node : 18
Building zonelist for node : 19
Building zonelist for node : 20
Building zonelist for node : 21
Building zonelist for node : 22
Building zonelist for node : 23
Building zonelist for node : 24
Building zonelist for node : 25
Building zonelist for node : 26
Building zonelist for node : 27
Building zonelist for node : 28
Building zonelist for node : 29
Building zonelist for node : 30
Building zonelist for node : 31
Building zonelist for node : 32
Building zonelist for node : 33
Building zonelist for node : 34
Building zonelist for node : 35
Building zonelist for node : 36
Building zonelist for node : 37
Building zonelist for node : 38
Building zonelist for node : 39
Building zonelist for node : 40
Building zonelist for node : 41
Building zonelist for node : 42
Building zonelist for node : 43
Building zonelist for node : 44
Building zonelist for node : 45
Building zonelist for node : 46
Building zonelist for node : 47
Kernel command line: BOOT_IMAGE=scsi0:\efi\sgi\vmlinuz.jb root=/dev/sda3 console=ttyS0
fpswa interface at 17b07be02010 (rev 1.18)
PID hash table entries: 4096 (order 12: 65536 bytes)
CPU 0: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Console: colour dummy device 80x25
Memory: 286351744k/288609776k available (5245k code, 2249424k reserved, 1965k data, 192k init)
McKinley Errata 9 workaround not needed; disabling it
Calibrating delay loop... 2241.08 BogoMIPS
Dentry cache hash table entries: 33554432 (order: 14, 268435456 bytes)
Inode-cache hash table entries: 33554432 (order: 14, 268435456 bytes)
Mount-cache hash table entries: 1024 (order: 0, 16384 bytes)
POSIX conformance testing by UNIFIX
Boot processor id 0x0/0x0
task migration cache decay timeout: 10 msecs.
Starting migration thread for cpu 0
Bringing up 1
Processor 8192/1 is spinning up...
CPU 1: 61 virtual and 50 physical address bits
CPU 1: nasid 0, slice 2, cnode 0
CPU 1: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2232.84 BogoMIPS
CPU1: CPU has booted.
Processor 1 has spun up...
CPU 1 IS NOW UP!
Starting migration thread for cpu 1
Bringing up 2
Processor 2/2 is spinning up...
CPU 2: 61 virtual and 50 physical address bits
CPU 2: nasid 2, slice 0, cnode 1
CPU 2: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU2: CPU has booted.
Processor 2 has spun up...
CPU 2 IS NOW UP!
Starting migration thread for cpu 2
Bringing up 3
Processor 8194/3 is spinning up...
CPU 3: 61 virtual and 50 physical address bits
CPU 3: nasid 2, slice 2, cnode 1
CPU 3: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU3: CPU has booted.
Processor 3 has spun up...
CPU 3 IS NOW UP!
Starting migration thread for cpu 3
Bringing up 4
Processor 4/4 is spinning up...
CPU 4: 61 virtual and 50 physical address bits
CPU 4: nasid 4, slice 0, cnode 2
CPU 4: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU4: CPU has booted.
Processor 4 has spun up...
CPU 4 IS NOW UP!
Starting migration thread for cpu 4
Bringing up 5
Processor 8196/5 is spinning up...
CPU 5: 61 virtual and 50 physical address bits
CPU 5: nasid 4, slice 2, cnode 2
CPU 5: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU5: CPU has booted.
Processor 5 has spun up...
CPU 5 IS NOW UP!
Starting migration thread for cpu 5
Bringing up 6
Processor 6/6 is spinning up...
CPU 6: 61 virtual and 50 physical address bits
CPU 6: nasid 6, slice 0, cnode 3
CPU 6: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU6: CPU has booted.
Processor 6 has spun up...
CPU 6 IS NOW UP!
Starting migration thread for cpu 6
Bringing up 7
Processor 8198/7 is spinning up...
CPU 7: 61 virtual and 50 physical address bits
CPU 7: nasid 6, slice 2, cnode 3
CPU 7: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU7: CPU has booted.
Processor 7 has spun up...
CPU 7 IS NOW UP!
Starting migration thread for cpu 7
Bringing up 8
Processor 8/8 is spinning up...
CPU 8: 61 virtual and 50 physical address bits
CPU 8: nasid 8, slice 0, cnode 4
CPU 8: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU8: CPU has booted.
Processor 8 has spun up...
CPU 8 IS NOW UP!
Starting migration thread for cpu 8
Bringing up 9
Processor 8200/9 is spinning up...
CPU 9: 61 virtual and 50 physical address bits
CPU 9: nasid 8, slice 2, cnode 4
CPU 9: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU9: CPU has booted.
Processor 9 has spun up...
CPU 9 IS NOW UP!
Starting migration thread for cpu 9
Bringing up 10
Processor 10/10 is spinning up...
CPU 10: 61 virtual and 50 physical address bits
CPU 10: nasid 10, slice 0, cnode 5
CPU 10: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU10: CPU has booted.
Processor 10 has spun up...
CPU 10 IS NOW UP!
Starting migration thread for cpu 10
Bringing up 11
Processor 8202/11 is spinning up...
CPU 11: 61 virtual and 50 physical address bits
CPU 11: nasid 10, slice 2, cnode 5
CPU 11: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU11: CPU has booted.
Processor 11 has spun up...
CPU 11 IS NOW UP!
Starting migration thread for cpu 11
Bringing up 12
Processor 12/12 is spinning up...
CPU 12: 61 virtual and 50 physical address bits
CPU 12: nasid 12, slice 0, cnode 6
CPU 12: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU12: CPU has booted.
Processor 12 has spun up...
CPU 12 IS NOW UP!
Starting migration thread for cpu 12
Bringing up 13
Processor 8204/13 is spinning up...
CPU 13: 61 virtual and 50 physical address bits
CPU 13: nasid 12, slice 2, cnode 6
CPU 13: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU13: CPU has booted.
Processor 13 has spun up...
CPU 13 IS NOW UP!
Starting migration thread for cpu 13
Bringing up 14
Processor 14/14 is spinning up...
CPU 14: 61 virtual and 50 physical address bits
CPU 14: nasid 14, slice 0, cnode 7
CPU 14: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU14: CPU has booted.
Processor 14 has spun up...
CPU 14 IS NOW UP!
Starting migration thread for cpu 14
Bringing up 15
Processor 8206/15 is spinning up...
CPU 15: 61 virtual and 50 physical address bits
CPU 15: nasid 14, slice 2, cnode 7
CPU 15: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU15: CPU has booted.
Processor 15 has spun up...
CPU 15 IS NOW UP!
Starting migration thread for cpu 15
Bringing up 16
Processor 16/16 is spinning up...
CPU 16: 61 virtual and 50 physical address bits
CPU 16: nasid 16, slice 0, cnode 8
CPU 16: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU16: CPU has booted.
Processor 16 has spun up...
CPU 16 IS NOW UP!
Starting migration thread for cpu 16
Bringing up 17
Processor 8208/17 is spinning up...
CPU 17: 61 virtual and 50 physical address bits
CPU 17: nasid 16, slice 2, cnode 8
CPU 17: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU17: CPU has booted.
Processor 17 has spun up...
CPU 17 IS NOW UP!
Starting migration thread for cpu 17
Bringing up 18
Processor 18/18 is spinning up...
CPU 18: 61 virtual and 50 physical address bits
CPU 18: nasid 18, slice 0, cnode 9
CPU 18: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU18: CPU has booted.
Processor 18 has spun up...
CPU 18 IS NOW UP!
Starting migration thread for cpu 18
Bringing up 19
Processor 8210/19 is spinning up...
CPU 19: 61 virtual and 50 physical address bits
CPU 19: nasid 18, slice 2, cnode 9
CPU 19: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU19: CPU has booted.
Processor 19 has spun up...
CPU 19 IS NOW UP!
Starting migration thread for cpu 19
Bringing up 20
Processor 20/20 is spinning up...
CPU 20: 61 virtual and 50 physical address bits
CPU 20: nasid 20, slice 0, cnode 10
CPU 20: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU20: CPU has booted.
Processor 20 has spun up...
CPU 20 IS NOW UP!
Starting migration thread for cpu 20
Bringing up 21
Processor 8212/21 is spinning up...
CPU 21: 61 virtual and 50 physical address bits
CPU 21: nasid 20, slice 2, cnode 10
CPU 21: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU21: CPU has booted.
Processor 21 has spun up...
CPU 21 IS NOW UP!
Starting migration thread for cpu 21
Bringing up 22
Processor 22/22 is spinning up...
CPU 22: 61 virtual and 50 physical address bits
CPU 22: nasid 22, slice 0, cnode 11
CPU 22: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU22: CPU has booted.
Processor 22 has spun up...
CPU 22 IS NOW UP!
Starting migration thread for cpu 22
Bringing up 23
Processor 8214/23 is spinning up...
CPU 23: 61 virtual and 50 physical address bits
CPU 23: nasid 22, slice 2, cnode 11
CPU 23: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU23: CPU has booted.
Processor 23 has spun up...
CPU 23 IS NOW UP!
Starting migration thread for cpu 23
Bringing up 24
Processor 24/24 is spinning up...
CPU 24: 61 virtual and 50 physical address bits
CPU 24: nasid 24, slice 0, cnode 12
CPU 24: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU24: CPU has booted.
Processor 24 has spun up...
CPU 24 IS NOW UP!
Starting migration thread for cpu 24
Bringing up 25
Processor 8216/25 is spinning up...
CPU 25: 61 virtual and 50 physical address bits
CPU 25: nasid 24, slice 2, cnode 12
CPU 25: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU25: CPU has booted.
Processor 25 has spun up...
CPU 25 IS NOW UP!
Starting migration thread for cpu 25
Bringing up 26
Processor 26/26 is spinning up...
CPU 26: 61 virtual and 50 physical address bits
CPU 26: nasid 26, slice 0, cnode 13
CPU 26: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU26: CPU has booted.
Processor 26 has spun up...
CPU 26 IS NOW UP!
Starting migration thread for cpu 26
Bringing up 27
Processor 8218/27 is spinning up...
CPU 27: 61 virtual and 50 physical address bits
CPU 27: nasid 26, slice 2, cnode 13
CPU 27: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU27: CPU has booted.
Processor 27 has spun up...
CPU 27 IS NOW UP!
Starting migration thread for cpu 27
Bringing up 28
Processor 28/28 is spinning up...
CPU 28: 61 virtual and 50 physical address bits
CPU 28: nasid 28, slice 0, cnode 14
CPU 28: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU28: CPU has booted.
Processor 28 has spun up...
CPU 28 IS NOW UP!
Starting migration thread for cpu 28
Bringing up 29
Processor 8220/29 is spinning up...
CPU 29: 61 virtual and 50 physical address bits
CPU 29: nasid 28, slice 2, cnode 14
CPU 29: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU29: CPU has booted.
Processor 29 has spun up...
CPU 29 IS NOW UP!
Starting migration thread for cpu 29
Bringing up 30
Processor 30/30 is spinning up...
CPU 30: 61 virtual and 50 physical address bits
CPU 30: nasid 30, slice 0, cnode 15
CPU 30: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU30: CPU has booted.
Processor 30 has spun up...
CPU 30 IS NOW UP!
Starting migration thread for cpu 30
Bringing up 31
Processor 8222/31 is spinning up...
CPU 31: 61 virtual and 50 physical address bits
CPU 31: nasid 30, slice 2, cnode 15
CPU 31: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU31: CPU has booted.
Processor 31 has spun up...
CPU 31 IS NOW UP!
Starting migration thread for cpu 31
Bringing up 32
Processor 32/32 is spinning up...
CPU 32: 61 virtual and 50 physical address bits
CPU 32: nasid 32, slice 0, cnode 16
CPU 32: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU32: CPU has booted.
Processor 32 has spun up...
CPU 32 IS NOW UP!
Starting migration thread for cpu 32
Bringing up 33
Processor 8224/33 is spinning up...
CPU 33: 61 virtual and 50 physical address bits
CPU 33: nasid 32, slice 2, cnode 16
CPU 33: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU33: CPU has booted.
Processor 33 has spun up...
CPU 33 IS NOW UP!
Starting migration thread for cpu 33
Bringing up 34
Processor 34/34 is spinning up...
CPU 34: 61 virtual and 50 physical address bits
CPU 34: nasid 34, slice 0, cnode 17
CPU 34: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU34: CPU has booted.
Processor 34 has spun up...
CPU 34 IS NOW UP!
Starting migration thread for cpu 34
Bringing up 35
Processor 8226/35 is spinning up...
CPU 35: 61 virtual and 50 physical address bits
CPU 35: nasid 34, slice 2, cnode 17
CPU 35: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU35: CPU has booted.
Processor 35 has spun up...
CPU 35 IS NOW UP!
Starting migration thread for cpu 35
Bringing up 36
Processor 36/36 is spinning up...
CPU 36: 61 virtual and 50 physical address bits
CPU 36: nasid 36, slice 0, cnode 18
CPU 36: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU36: CPU has booted.
Processor 36 has spun up...
CPU 36 IS NOW UP!
Starting migration thread for cpu 36
Bringing up 37
Processor 8228/37 is spinning up...
CPU 37: 61 virtual and 50 physical address bits
CPU 37: nasid 36, slice 2, cnode 18
CPU 37: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2249.32 BogoMIPS
CPU37: CPU has booted.
Processor 37 has spun up...
CPU 37 IS NOW UP!
Starting migration thread for cpu 37
Bringing up 38
Processor 38/38 is spinning up...
CPU 38: 61 virtual and 50 physical address bits
CPU 38: nasid 38, slice 0, cnode 19
CPU 38: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2232.84 BogoMIPS
CPU38: CPU has booted.
Processor 38 has spun up...
CPU 38 IS NOW UP!
Starting migration thread for cpu 38
Bringing up 39
Processor 8230/39 is spinning up...
CPU 39: 61 virtual and 50 physical address bits
CPU 39: nasid 38, slice 2, cnode 19
CPU 39: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2232.84 BogoMIPS
CPU39: CPU has booted.
Processor 39 has spun up...
CPU 39 IS NOW UP!
Starting migration thread for cpu 39
Bringing up 40
Processor 40/40 is spinning up...
CPU 40: 61 virtual and 50 physical address bits
CPU 40: nasid 40, slice 0, cnode 20
CPU 40: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU40: CPU has booted.
Processor 40 has spun up...
CPU 40 IS NOW UP!
Starting migration thread for cpu 40
Bringing up 41
Processor 8232/41 is spinning up...
CPU 41: 61 virtual and 50 physical address bits
CPU 41: nasid 40, slice 2, cnode 20
CPU 41: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU41: CPU has booted.
Processor 41 has spun up...
CPU 41 IS NOW UP!
Starting migration thread for cpu 41
Bringing up 42
Processor 42/42 is spinning up...
CPU 42: 61 virtual and 50 physical address bits
CPU 42: nasid 42, slice 0, cnode 21
CPU 42: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU42: CPU has booted.
Processor 42 has spun up...
CPU 42 IS NOW UP!
Starting migration thread for cpu 42
Bringing up 43
Processor 8234/43 is spinning up...
CPU 43: 61 virtual and 50 physical address bits
CPU 43: nasid 42, slice 2, cnode 21
CPU 43: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU43: CPU has booted.
Processor 43 has spun up...
CPU 43 IS NOW UP!
Starting migration thread for cpu 43
Bringing up 44
Processor 44/44 is spinning up...
CPU 44: 61 virtual and 50 physical address bits
CPU 44: nasid 44, slice 0, cnode 22
CPU 44: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU44: CPU has booted.
Processor 44 has spun up...
CPU 44 IS NOW UP!
Starting migration thread for cpu 44
Bringing up 45
Processor 8236/45 is spinning up...
CPU 45: 61 virtual and 50 physical address bits
CPU 45: nasid 44, slice 2, cnode 22
CPU 45: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU45: CPU has booted.
Processor 45 has spun up...
CPU 45 IS NOW UP!
Starting migration thread for cpu 45
Bringing up 46
Processor 46/46 is spinning up...
CPU 46: 61 virtual and 50 physical address bits
CPU 46: nasid 46, slice 0, cnode 23
CPU 46: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU46: CPU has booted.
Processor 46 has spun up...
CPU 46 IS NOW UP!
Starting migration thread for cpu 46
Bringing up 47
Processor 8238/47 is spinning up...
CPU 47: 61 virtual and 50 physical address bits
CPU 47: nasid 46, slice 2, cnode 23
CPU 47: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU47: CPU has booted.
Processor 47 has spun up...
CPU 47 IS NOW UP!
Starting migration thread for cpu 47
Bringing up 48
Processor 48/48 is spinning up...
CPU 48: 61 virtual and 50 physical address bits
CPU 48: nasid 48, slice 0, cnode 24
CPU 48: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU48: CPU has booted.
Processor 48 has spun up...
CPU 48 IS NOW UP!
Starting migration thread for cpu 48
Bringing up 49
Processor 8240/49 is spinning up...
CPU 49: 61 virtual and 50 physical address bits
CPU 49: nasid 48, slice 2, cnode 24
CPU 49: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU49: CPU has booted.
Processor 49 has spun up...
CPU 49 IS NOW UP!
Starting migration thread for cpu 49
Bringing up 50
Processor 50/50 is spinning up...
CPU 50: 61 virtual and 50 physical address bits
CPU 50: nasid 50, slice 0, cnode 25
CPU 50: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU50: CPU has booted.
Processor 50 has spun up...
CPU 50 IS NOW UP!
Starting migration thread for cpu 50
Bringing up 51
Processor 8242/51 is spinning up...
CPU 51: 61 virtual and 50 physical address bits
CPU 51: nasid 50, slice 2, cnode 25
CPU 51: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU51: CPU has booted.
Processor 51 has spun up...
CPU 51 IS NOW UP!
Starting migration thread for cpu 51
Bringing up 52
Processor 52/52 is spinning up...
CPU 52: 61 virtual and 50 physical address bits
CPU 52: nasid 52, slice 0, cnode 26
CPU 52: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU52: CPU has booted.
Processor 52 has spun up...
CPU 52 IS NOW UP!
Starting migration thread for cpu 52
Bringing up 53
Processor 8244/53 is spinning up...
CPU 53: 61 virtual and 50 physical address bits
CPU 53: nasid 52, slice 2, cnode 26
CPU 53: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU53: CPU has booted.
Processor 53 has spun up...
CPU 53 IS NOW UP!
Starting migration thread for cpu 53
Bringing up 54
Processor 54/54 is spinning up...
CPU 54: 61 virtual and 50 physical address bits
CPU 54: nasid 54, slice 0, cnode 27
CPU 54: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU54: CPU has booted.
Processor 54 has spun up...
CPU 54 IS NOW UP!
Starting migration thread for cpu 54
Bringing up 55
Processor 8246/55 is spinning up...
CPU 55: 61 virtual and 50 physical address bits
CPU 55: nasid 54, slice 2, cnode 27
CPU 55: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU55: CPU has booted.
Processor 55 has spun up...
CPU 55 IS NOW UP!
Starting migration thread for cpu 55
Bringing up 56
Processor 56/56 is spinning up...
CPU 56: 61 virtual and 50 physical address bits
CPU 56: nasid 56, slice 0, cnode 28
CPU 56: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU56: CPU has booted.
Processor 56 has spun up...
CPU 56 IS NOW UP!
Starting migration thread for cpu 56
Bringing up 57
Processor 8248/57 is spinning up...
CPU 57: 61 virtual and 50 physical address bits
CPU 57: nasid 56, slice 2, cnode 28
CPU 57: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU57: CPU has booted.
Processor 57 has spun up...
CPU 57 IS NOW UP!
Starting migration thread for cpu 57
Bringing up 58
Processor 58/58 is spinning up...
CPU 58: 61 virtual and 50 physical address bits
CPU 58: nasid 58, slice 0, cnode 29
CPU 58: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU58: CPU has booted.
Processor 58 has spun up...
CPU 58 IS NOW UP!
Starting migration thread for cpu 58
Bringing up 59
Processor 8250/59 is spinning up...
CPU 59: 61 virtual and 50 physical address bits
CPU 59: nasid 58, slice 2, cnode 29
CPU 59: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU59: CPU has booted.
Processor 59 has spun up...
CPU 59 IS NOW UP!
Starting migration thread for cpu 59
Bringing up 60
Processor 60/60 is spinning up...
CPU 60: 61 virtual and 50 physical address bits
CPU 60: nasid 60, slice 0, cnode 30
CPU 60: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU60: CPU has booted.
Processor 60 has spun up...
CPU 60 IS NOW UP!
Starting migration thread for cpu 60
Bringing up 61
Processor 8252/61 is spinning up...
CPU 61: 61 virtual and 50 physical address bits
CPU 61: nasid 60, slice 2, cnode 30
CPU 61: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU61: CPU has booted.
Processor 61 has spun up...
CPU 61 IS NOW UP!
Starting migration thread for cpu 61
Bringing up 62
Processor 62/62 is spinning up...
CPU 62: 61 virtual and 50 physical address bits
CPU 62: nasid 62, slice 0, cnode 31
CPU 62: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU62: CPU has booted.
Processor 62 has spun up...
CPU 62 IS NOW UP!
Starting migration thread for cpu 62
Bringing up 63
Processor 8254/63 is spinning up...
CPU 63: 61 virtual and 50 physical address bits
CPU 63: nasid 62, slice 2, cnode 31
CPU 63: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU63: CPU has booted.
Processor 63 has spun up...
CPU 63 IS NOW UP!
Starting migration thread for cpu 63
Bringing up 64
Processor 64/64 is spinning up...
CPU 64: 61 virtual and 50 physical address bits
CPU 64: nasid 64, slice 0, cnode 32
CPU 64: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU64: CPU has booted.
Processor 64 has spun up...
CPU 64 IS NOW UP!
Starting migration thread for cpu 64
Bringing up 65
Processor 8256/65 is spinning up...
CPU 65: 61 virtual and 50 physical address bits
CPU 65: nasid 64, slice 2, cnode 32
CPU 65: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU65: CPU has booted.
Processor 65 has spun up...
CPU 65 IS NOW UP!
Starting migration thread for cpu 65
Bringing up 66
Processor 66/66 is spinning up...
CPU 66: 61 virtual and 50 physical address bits
CPU 66: nasid 66, slice 0, cnode 33
CPU 66: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU66: CPU has booted.
Processor 66 has spun up...
CPU 66 IS NOW UP!
Starting migration thread for cpu 66
Bringing up 67
Processor 8258/67 is spinning up...
CPU 67: 61 virtual and 50 physical address bits
CPU 67: nasid 66, slice 2, cnode 33
CPU 67: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU67: CPU has booted.
Processor 67 has spun up...
CPU 67 IS NOW UP!
Starting migration thread for cpu 67
Bringing up 68
Processor 68/68 is spinning up...
CPU 68: 61 virtual and 50 physical address bits
CPU 68: nasid 68, slice 0, cnode 34
CPU 68: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU68: CPU has booted.
Processor 68 has spun up...
CPU 68 IS NOW UP!
Starting migration thread for cpu 68
Bringing up 69
Processor 8260/69 is spinning up...
CPU 69: 61 virtual and 50 physical address bits
CPU 69: nasid 68, slice 2, cnode 34
CPU 69: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU69: CPU has booted.
Processor 69 has spun up...
CPU 69 IS NOW UP!
Starting migration thread for cpu 69
Bringing up 70
Processor 70/70 is spinning up...
CPU 70: 61 virtual and 50 physical address bits
CPU 70: nasid 70, slice 0, cnode 35
CPU 70: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU70: CPU has booted.
Processor 70 has spun up...
CPU 70 IS NOW UP!
Starting migration thread for cpu 70
Bringing up 71
Processor 8262/71 is spinning up...
CPU 71: 61 virtual and 50 physical address bits
CPU 71: nasid 70, slice 2, cnode 35
CPU 71: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU71: CPU has booted.
Processor 71 has spun up...
CPU 71 IS NOW UP!
Starting migration thread for cpu 71
Bringing up 72
Processor 72/72 is spinning up...
CPU 72: 61 virtual and 50 physical address bits
CPU 72: nasid 72, slice 0, cnode 36
CPU 72: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU72: CPU has booted.
Processor 72 has spun up...
CPU 72 IS NOW UP!
Starting migration thread for cpu 72
Bringing up 73
Processor 8264/73 is spinning up...
CPU 73: 61 virtual and 50 physical address bits
CPU 73: nasid 72, slice 2, cnode 36
CPU 73: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU73: CPU has booted.
Processor 73 has spun up...
CPU 73 IS NOW UP!
Starting migration thread for cpu 73
Bringing up 74
Processor 74/74 is spinning up...
CPU 74: 61 virtual and 50 physical address bits
CPU 74: nasid 74, slice 0, cnode 37
CPU 74: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU74: CPU has booted.
Processor 74 has spun up...
CPU 74 IS NOW UP!
Starting migration thread for cpu 74
Bringing up 75
Processor 8266/75 is spinning up...
CPU 75: 61 virtual and 50 physical address bits
CPU 75: nasid 74, slice 2, cnode 37
CPU 75: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2232.84 BogoMIPS
CPU75: CPU has booted.
Processor 75 has spun up...
CPU 75 IS NOW UP!
Starting migration thread for cpu 75
Bringing up 76
Processor 76/76 is spinning up...
CPU 76: 61 virtual and 50 physical address bits
CPU 76: nasid 76, slice 0, cnode 38
CPU 76: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2232.84 BogoMIPS
CPU76: CPU has booted.
Processor 76 has spun up...
CPU 76 IS NOW UP!
Starting migration thread for cpu 76
Bringing up 77
Processor 8268/77 is spinning up...
CPU 77: 61 virtual and 50 physical address bits
CPU 77: nasid 76, slice 2, cnode 38
CPU 77: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU77: CPU has booted.
Processor 77 has spun up...
CPU 77 IS NOW UP!
Starting migration thread for cpu 77
Bringing up 78
Processor 78/78 is spinning up...
CPU 78: 61 virtual and 50 physical address bits
CPU 78: nasid 78, slice 0, cnode 39
CPU 78: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2232.84 BogoMIPS
CPU78: CPU has booted.
Processor 78 has spun up...
CPU 78 IS NOW UP!
Starting migration thread for cpu 78
Bringing up 79
Processor 8270/79 is spinning up...
CPU 79: 61 virtual and 50 physical address bits
CPU 79: nasid 78, slice 2, cnode 39
CPU 79: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2241.08 BogoMIPS
CPU79: CPU has booted.
Processor 79 has spun up...
CPU 79 IS NOW UP!
Starting migration thread for cpu 79
Bringing up 80
Processor 80/80 is spinning up...
CPU 80: 61 virtual and 50 physical address bits
CPU 80: nasid 80, slice 0, cnode 40
CPU 80: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU80: CPU has booted.
Processor 80 has spun up...
CPU 80 IS NOW UP!
Starting migration thread for cpu 80
Bringing up 81
Processor 8272/81 is spinning up...
CPU 81: 61 virtual and 50 physical address bits
CPU 81: nasid 80, slice 2, cnode 40
CPU 81: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU81: CPU has booted.
Processor 81 has spun up...
CPU 81 IS NOW UP!
Starting migration thread for cpu 81
Bringing up 82
Processor 82/82 is spinning up...
CPU 82: 61 virtual and 50 physical address bits
CPU 82: nasid 82, slice 0, cnode 41
CPU 82: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU82: CPU has booted.
Processor 82 has spun up...
CPU 82 IS NOW UP!
Starting migration thread for cpu 82
Bringing up 83
Processor 8274/83 is spinning up...
CPU 83: 61 virtual and 50 physical address bits
CPU 83: nasid 82, slice 2, cnode 41
CPU 83: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU83: CPU has booted.
Processor 83 has spun up...
CPU 83 IS NOW UP!
Starting migration thread for cpu 83
Bringing up 84
Processor 84/84 is spinning up...
CPU 84: 61 virtual and 50 physical address bits
CPU 84: nasid 84, slice 0, cnode 42
CPU 84: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU84: CPU has booted.
Processor 84 has spun up...
CPU 84 IS NOW UP!
Starting migration thread for cpu 84
Bringing up 85
Processor 8276/85 is spinning up...
CPU 85: 61 virtual and 50 physical address bits
CPU 85: nasid 84, slice 2, cnode 42
CPU 85: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU85: CPU has booted.
Processor 85 has spun up...
CPU 85 IS NOW UP!
Starting migration thread for cpu 85
Bringing up 86
Processor 86/86 is spinning up...
CPU 86: 61 virtual and 50 physical address bits
CPU 86: nasid 86, slice 0, cnode 43
CPU 86: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU86: CPU has booted.
Processor 86 has spun up...
CPU 86 IS NOW UP!
Starting migration thread for cpu 86
Bringing up 87
Processor 8278/87 is spinning up...
CPU 87: 61 virtual and 50 physical address bits
CPU 87: nasid 86, slice 2, cnode 43
CPU 87: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU87: CPU has booted.
Processor 87 has spun up...
CPU 87 IS NOW UP!
Starting migration thread for cpu 87
Bringing up 88
Processor 88/88 is spinning up...
CPU 88: 61 virtual and 50 physical address bits
CPU 88: nasid 88, slice 0, cnode 44
CPU 88: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU88: CPU has booted.
Processor 88 has spun up...
CPU 88 IS NOW UP!
Starting migration thread for cpu 88
Bringing up 89
Processor 8280/89 is spinning up...
CPU 89: 61 virtual and 50 physical address bits
CPU 89: nasid 88, slice 2, cnode 44
CPU 89: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU89: CPU has booted.
Processor 89 has spun up...
CPU 89 IS NOW UP!
Starting migration thread for cpu 89
Bringing up 90
Processor 90/90 is spinning up...
CPU 90: 61 virtual and 50 physical address bits
CPU 90: nasid 90, slice 0, cnode 45
CPU 90: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU90: CPU has booted.
Processor 90 has spun up...
CPU 90 IS NOW UP!
Starting migration thread for cpu 90
Bringing up 91
Processor 8282/91 is spinning up...
CPU 91: 61 virtual and 50 physical address bits
CPU 91: nasid 90, slice 2, cnode 45
CPU 91: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU91: CPU has booted.
Processor 91 has spun up...
CPU 91 IS NOW UP!
Starting migration thread for cpu 91
Bringing up 92
Processor 92/92 is spinning up...
CPU 92: 61 virtual and 50 physical address bits
CPU 92: nasid 92, slice 0, cnode 46
CPU 92: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU92: CPU has booted.
Processor 92 has spun up...
CPU 92 IS NOW UP!
Starting migration thread for cpu 92
Bringing up 93
Processor 8284/93 is spinning up...
CPU 93: 61 virtual and 50 physical address bits
CPU 93: nasid 92, slice 2, cnode 46
CPU 93: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU93: CPU has booted.
Processor 93 has spun up...
CPU 93 IS NOW UP!
Starting migration thread for cpu 93
Bringing up 94
Processor 94/94 is spinning up...
CPU 94: 61 virtual and 50 physical address bits
CPU 94: nasid 94, slice 0, cnode 47
CPU 94: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU94: CPU has booted.
Processor 94 has spun up...
CPU 94 IS NOW UP!
Starting migration thread for cpu 94
Bringing up 95
Processor 8286/95 is spinning up...
CPU 95: 61 virtual and 50 physical address bits
CPU 95: nasid 94, slice 2, cnode 47
CPU 95: base freq=200.000MHz, ITC ratio=15/2, ITC freq=1500.000MHz+/--1ppm
Calibrating delay loop... 2224.60 BogoMIPS
CPU95: CPU has booted.
Processor 95 has spun up...
CPU 95 IS NOW UP!
Starting migration thread for cpu 95
CPUS done 128
Total of 96 processors activated (213739.60 BogoMIPS).
NET: Registered protocol family 16
ACPI: Subsystem revision 20031002
    ACPI-0077: *** Warning: Invalid FADT value PM1_EVT_LEN=0 at offset 58 FADT=e00000300e5d0480
    ACPI-0077: *** Warning: Invalid FADT value PM1_CNT_LEN=0 at offset 59 FADT=e00000300e5d0480
    ACPI-0077: *** Warning: Invalid FADT value X_PM1a_EVT_BLK=0 at offset 98 FADT=e00000300e5d0480
    ACPI-0077: *** Warning: Invalid FADT value X_PM1a_CNT_BLK=0 at offset B0 FADT=e00000300e5d0480
    ACPI-0077: *** Warning: Invalid FADT value X_PM_TMR_BLK=0 at offset D4 FADT=e00000300e5d0480
    ACPI-0077: *** Warning: Invalid FADT value PM_TM_LEN=0 at offset 5B FADT=e00000300e5d0480
    ACPI-0888: *** Info: There are no GPE blocks defined in the FADT
ACPI: SCI (IRQ-1) allocation failed
    ACPI-0133: *** Error: Unable to install System Control Interrupt Handler, AE_NOT_ACQUIRED
ACPI: Unable to start the ACPI Interpreter
Trying to free free IRQ0
SCSI subsystem initialized
ACPI: ACPI tables contain no PCI IRQ routing entries
PCI: Invalid ACPI-PCI IRQ routing table
perfmon: version 2.0 IRQ 238
perfmon: Itanium 2 PMU detected, 16 PMCs, 18 PMDs, 4 counters (47 bits)
PAL Information Facility v0.5
perfmon: added sampling format default_format
perfmon_default_smpl: default_format v2.0 registered
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
SGI XFS for Linux with large block/inode numbers, no debug enabled
pty: 256 Unix98 ptys configured
sn_serial: sn_sal_module_init
EFI Time Services Driver v0.4
loop: loaded (max 8 devices)
tg3.c:v2.2 (August 24, 2003)
PCI: Found IRQ 54 for device 0000:01:04.0
ACPI: No IRQ known for interrupt pin A of device 0000:01:04.0 - using IRQ 54
eth0: Tigon3 [partno(030-1771-000) rev 0105 PHY(5701)] (PCI:66MHz:64-bit) 10/100/1000BaseT Ethernet 08:00:69:13:e6:a7
PCI: Found IRQ 66 for device 0000:11:04.0
ACPI: No IRQ known for interrupt pin A of device 0000:11:04.0 - using IRQ 66
eth1: Tigon3 [partno(030-1771-000) rev 0105 PHY(5701)] (PCI:66MHz:64-bit) 10/100/1000BaseT Ethernet 08:00:69:13:e4:a4
PCI: Found IRQ 53 for device 0000:01:03.0
ACPI: No IRQ known for interrupt pin A of device 0000:01:03.0 - using IRQ 53
qla1280: QLA12160 found on PCI bus 1, dev 3
scsi(0): Enabling SN2 PCI DMA dual channel lockup workaround
scsi(0): Enabling SN2 PCI DMA workaround
scsi(0:0): Resetting SCSI BUS
scsi(0:1): Resetting SCSI BUS
PCI: Found IRQ 65 for device 0000:11:03.0
ACPI: No IRQ known for interrupt pin A of device 0000:11:03.0 - using IRQ 65
qla1280: QLA12160 found on PCI bus 17, dev 3
scsi(1): Enabling SN2 PCI DMA dual channel lockup workaround
scsi(1): Enabling SN2 PCI DMA workaround
scsi(1:0): Resetting SCSI BUS
scsi(1:1): Resetting SCSI BUS
scsi0 : QLogic QLA12160 PCI to SCSI Host Adapter: bus 1 device 3 irq 53
       Firmware version: 10.04.32, Driver version 3.23.37
Using anticipatory io scheduler
  Vendor: SGI       Model: ST336753LC        Rev: 2741
  Type:   Direct-Access                      ANSI SCSI revision: 03
scsi(0:0:1:0): Sync: period 9, offset 14, Wide, DT, Tagged queuing: depth 255
  Vendor: SGI       Model: ST336753LC        Rev: 2741
  Type:   Direct-Access                      ANSI SCSI revision: 03
scsi(0:0:2:0): Sync: period 9, offset 14, Wide, DT, Tagged queuing: depth 255
scsi1 : QLogic QLA12160 PCI to SCSI Host Adapter: bus 17 device 3 irq 65
       Firmware version: 10.04.32, Driver version 3.23.37
  Vendor: SGI       Model: ST336753LC        Rev: 2741
  Type:   Direct-Access                      ANSI SCSI revision: 03
scsi(1:0:1:0): Sync: period 9, offset 14, Wide, DT, Tagged queuing: depth 255
  Vendor: SGI       Model: ST336753LC        Rev: 2741
  Type:   Direct-Access                      ANSI SCSI revision: 03
scsi(1:0:2:0): Sync: period 9, offset 14, Wide, DT, Tagged queuing: depth 255
SCSI device sda: 71687372 512-byte hdwr sectors (36704 MB)
SCSI device sda: drive cache: write through
 sda: sda1 sda2 sda3
Attached scsi disk sda at scsi0, channel 0, id 1, lun 0
SCSI device sdb: 71687372 512-byte hdwr sectors (36704 MB)
SCSI device sdb: drive cache: write through
 sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8
Attached scsi disk sdb at scsi0, channel 0, id 2, lun 0
SCSI device sdc: 71687372 512-byte hdwr sectors (36704 MB)
SCSI device sdc: drive cache: write through
 sdc: sdc1 sdc2 sdc3
Attached scsi disk sdc at scsi1, channel 0, id 1, lun 0
SCSI device sdd: 71687372 512-byte hdwr sectors (36704 MB)
SCSI device sdd: drive cache: write through
 sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6 sdd7 sdd8
Attached scsi disk sdd at scsi1, channel 0, id 2, lun 0
mice: PS/2 mouse device common for all mice
NET: Registered protocol family 2
IP: routing cache hash table of 8388608 buckets, 131072Kbytes
swapper: page allocation failure. order:17, mode:0x20
TCP: Hash tables configured (established 67108864 bind 65536)
NET: Registered protocol family 1
NET: Registered protocol family 17
XFS mounting filesystem sda3
Ending clean XFS mount for filesystem: sda3
VFS: Mounted root (xfs filesystem) readonly.
Freeing unused kernel memory: 192kB freed
XFS mounting filesystem sdb6

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

end of thread, other threads:[~2003-11-10  8:26 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-05 23:18 [DMESG] cpumask_t in action Chen, Kenneth W
2003-11-05 23:24 ` Jesse Barnes
2003-11-05 23:42   ` Antonio Vargas
2003-11-06  4:36     ` Jesse Barnes
  -- strict thread matches above, loose matches on Subject: below --
2003-11-06 18:56 Luck, Tony
2003-11-06 20:31 ` Robin Holt
2003-11-07  2:06   ` Paul Jackson
2003-11-06 17:09 Daniel Blueman
2003-11-05 22:22 Jesse Barnes
2003-11-05 22:49 ` Jesse Barnes
2003-11-05 23:56   ` Peter Chubb
2003-11-06 16:51 ` Matthew Wilcox
2003-11-06 17:20   ` Jesse Barnes
2003-11-06 17:23   ` Jesse Barnes
2003-11-06 20:11   ` Jes Sorensen
2003-11-07  8:13   ` Sylvain Jeaugey
2003-11-07 17:24     ` Matthew Wilcox
2003-11-10  8:26     ` Jes Sorensen

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