Chinaunix首页 | 论坛 | 博客

TGL

  • 博客访问: 44233
  • 博文数量: 12
  • 博客积分: 490
  • 博客等级: 下士
  • 技术积分: 160
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-12 17:07
文章分类
文章存档

2010年(2)

2009年(10)

我的朋友

分类: LINUX

2009-11-11 15:48:22

Linux内核启动信息分析

Linux version 2.6.31 (root@localhost.localdomain) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-44)) #1 SMP Thu Nov 5 11:43:38 EST 2009

1.
KERNEL supported cpus:
  Intel GenuineIntel
  AMD AuthenticAMD
  NSC Geode by NSC
  Cyrix CyrixInstead
  Centaur CentaurHauls
  Transmeta GenuineTMx86
  Transmeta TransmetaCPU
  UMC UMC UMC UMC

arch/x86/kernel/cpu/common.c
:printk(KERN_INFO "KERNEL supported cpus:\n");
L663
early_cpu_init()

2.
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
 BIOS-e820: 0000000000100000 - 00000000cfb50000 (usable)
 BIOS-e820: 00000000cfb50000 - 00000000cfb66000 (reserved)
 BIOS-e820: 00000000cfb66000 - 00000000cfb85c00 (ACPI data)
 BIOS-e820: 00000000cfb85c00 - 00000000d0000000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fe000000 - 0000000100000000 (reserved)
 BIOS-e820: 0000000100000000 - 0000000130000000 (usable)

arch/x86/kernel/e820.c
:printk(KERN_INFO "BIOS-provided physical RAM map:\n");
L1481
setup_memory_map()
e820_print_map()

什么是e820?(from wiki)
e820 is shorthand to refer to the facility by which the BIOS of x86-based computer systems reports the memory map to the operating system or boot loader.
e820是涉及通过基于x86的机器的BIOS向操作系统或引导加载程序报告内存映射的设备的一个缩写。
It is accessed via the int 15h call, by setting the AX register to value E820 in hexadecimal. It reports which memory address ranges are usable and which are reserved for use by the BIOS.
它设置AX寄存器为十六进制值E820,通过15号中断调用进入。它报告了哪些内存地址区域是可以使用的,哪些是预留给BIOS使用的。
You will often see BIOS-e820 as the first thing reported by a Linux kernel booting, and it can also be seen with the dmesg command.
你通常会在linux内核引导报告的第一项中看到BIOS-e820信息,也可以通过dmesg命令查看BIOS-e820信息。
Sometimes the BIOS is buggy and incorrectly reports the reserved memory. This can cause memory testing software, like Memtest, to report errors.
有时由于BIOS的BUG而报告了不正确的预留内存,这会引起向Memtest这样的内存测试软件报告错误。

3.
DMI 2.5 present.

drivers/firmware/dmi_scan.c
:printk(KERN_INFO "DMI %d.%d present.\n",
L359
dmi_present()

4.
last_pfn = 0xcfb50 max_arch_pfn = 0x100000

arch/x86/kernel/e820.c
:printk(KERN_INFO "last_pfn = %#lx max_arch_pfn = %#lx\n",
L1141
e820_end_pfn()

5.
MTRR default type: uncachable
MTRR fixed ranges enabled:
  00000-9FFFF write-back
  A0000-BFFFF uncachable
  C0000-D3FFF write-protect
  D4000-EBFFF uncachable
  EC000-FFFFF write-protect
MTRR variable ranges enabled:
  0 base 0000000000 mask 3F80000000 write-back
  1 base 0080000000 mask 3FC0000000 write-back
  2 base 00C0000000 mask 3FF0000000 write-back
  3 base 0100000000 mask 3FE0000000 write-back
  4 base 0120000000 mask 3FF0000000 write-back
  5 base 00CFC00000 mask 3FFFC00000 uncachable
  6 disabled
  7 disabled

arch/x86/kernel/cpu/mtrr/generic.c
:printk(KERN_DEBUG "MTRR default type: %s\n",
L262
print_mtrr_state()

什么是MTRR?
MTRR是Memory Type Range Register的缩写,可翻译为存储区域类型寄存器,它规定了读写某段范围物理内存的策略,用于优化CPU数据传送性能。例如可将MTTR设为在显存的地址范围上使用
“write-combining”策略,CPU能够在PCI/AGP总线上,将许多次少量的数据写入集合成一次大的数据写入,这样能获得2.5倍以上图像传送速度的提升。

6.
e820 update range: 00000000cfc00000 - 0000000100000000 (usable) ==> (reserved)

arch/x86/kernel/e820.c
:printk(KERN_DEBUG "e820 update range: %016Lx - %016Lx ",
L446
__e820_update_range()

7.
initial memory mapped : 0 - 00c00000

arch/x86/kernel/setup.c
:printk(KERN_DEBUG "initial memory mapped : 0 - %08lx\n",
L896
setup_arch()

8.
init_memory_mapping: 0000000000000000-00000000377fe000
 0000000000 - 0000400000 page 4k
 0000400000 - 0037400000 page 2M
 0037400000 - 00377fe000 page 4k
kernel direct mapping tables up to 377fe000 @ 7000-c000

arch/x86/mm/init.c
:printk(KERN_INFO "init_memory_mapping: %016lx-%016lx\n", start, end);
L198
init_memory_mapping()
find_early_table_space()

9.
RAMDISK: 37e67000 - 37feff96
Allocated new RAMDISK: 00100000 - 00288f96
Move RAMDISK from 0000000037e67000 - 0000000037feff95 to 00100000 - 00288f95

arch/x86/kernel/setup.c
:printk(KERN_INFO "RAMDISK: %08llx - %08llx\n", ramdisk_image,
L401
reserve_initrd()
relocate_initrd()

10.
ACPI: RSDP 000f2160 00024 (v02 DELL  )
ACPI: XSDT 000f21fc 00084 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: FACP cfb83524 000F4 (v03 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: DSDT cfb66000 04996 (v01 DELL   PE_SC3   00000001 INTL 20050624)
ACPI: FACS cfb85c00 00040
ACPI: APIC cfb83078 00092 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: SPCR cfb83130 00050 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: HPET cfb83184 00038 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: MCFG cfb831c0 0003C (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: WD__ cfb83200 00134 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: SLIC cfb83338 00024 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: ERST cfb6ab18 00210 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: HEST cfb6ad28 0027C (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: BERT cfb6a998 00030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: EINJ cfb6a9c8 00150 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: TCPA cfb834bc 00064 (v01 DELL   PE_SC3   00000001 DELL 00000001)
ACPI: Local APIC address 0xfee00000

什么是ACPI?
ACPI就是Advanced Configuration and Power Interface的缩写,意思是“高级配置与电源接口”。这是英特尔、微软和东芝共同开发的一种电源管理标准。

11.
2435MB HIGHMEM available.
887MB LOWMEM available.
  mapped low ram: 0 - 377fe000
  low ram: 0 - 377fe000
  node 0 low ram: 00000000 - 377fe000
  node 0 bootmap 00008000 - 0000ef00
(9 early reservations) ==> bootmem [0000000000 - 00377fe000]
  #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
  #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
  #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
  #3 [0000400000 - 00008ed5a4]    TEXT DATA BSS ==> [0000400000 - 00008ed5a4]
  #4 [000009f000 - 0000100000]    BIOS reserved ==> [000009f000 - 0000100000]
  #5 [00008ee000 - 00008f1239]              BRK ==> [00008ee000 - 00008f1239]
  #6 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
  #7 [0000100000 - 0000288f96]      NEW RAMDISK ==> [0000100000 - 0000288f96]
  #8 [0000008000 - 000000f000]          BOOTMAP ==> [0000008000 - 000000f000]

arch/x86/mm/init_32.c
:printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
L715
initmem_init()
pages_to_mb()

12.
found SMP MP-table at [c00fe710] fe710

arch/x86/kernel/mpparse.c
:printk(KERN_INFO "found SMP MP-table at [%p] %llx\n",
L730
smp_scan_config()

13.
Zone PFN ranges:
  DMA      0x00000000 -> 0x00001000
  Normal   0x00001000 -> 0x000377fe
  HighMem  0x000377fe -> 0x000cfb50
Movable zone start PFN for each node
early_node_map[2] active PFN ranges
    0: 0x00000000 -> 0x000000a0
    0: 0x00000100 -> 0x000cfb50

mm/page_alloc.c
:printk("Zone PFN ranges:\n");
L4242
free_area_init_nodes()

14.
On node 0 totalpages: 850672

mm/page_alloc.c
:printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id,
L3569
calculate_node_totalpages()

15.
free_area_init_node: node 0, pgdat c0804720, node_mem_map c1000000
  DMA zone: 32 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 3968 pages, LIFO batch:0
  Normal zone: 1744 pages used for memmap
  Normal zone: 221486 pages, LIFO batch:31
  HighMem zone: 4871 pages used for memmap
  HighMem zone: 618571 pages, LIFO batch:31

mm/page_alloc.c
:printk(KERN_DEBUG "free_area_init_node: node %d, pgdat %08lx, node_mem_map %08lx\n",
L3796
free_area_init_node()
free_area_init_core()

16.
Using APIC driver default

arch/x86/kernel/apic/probe_32.c
:printk(KERN_INFO "Using APIC driver %s\n", apic->name);
L229
generic_apic_probe()

17.
ACPI: PM-Timer IO Port: 0x808
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] enabled)
ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Enabling APIC mode:  Flat.  Using 1 I/O APICs
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
SMP: Allowing 8 CPUs, 0 hotplug CPUs
nr_irqs_gsi: 24
Allocating PCI resources starting at d0000000 (gap: d0000000:10000000)
NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
PERCPU: Embedded 13 pages at c2a08000, static data 31356 bytes
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 844025

16.
Kernel command line: ro root=LABEL=/ rhgb quiet

init/main.c
:printk(KERN_NOTICE "Kernel command line: %s\n", boot_command_line);

PID hash table entries: 4096 (order: 12, 16384 bytes)
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.

17.
Initializing CPU#0

arch/x86/kernel/cpu/common.c
:printk(KERN_INFO "Initializing CPU#%d\n", cpu);
L1202
cpu_init()

xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
Initializing HighMem for node 0 (000377fe:000cfb50)
Memory: 3367236k/3403072k available (2500k kernel code, 34536k reserved, 1643k data, 340k init, 2493768k highmem)
virtual kernel memory layout:
    fixmap  : 0xffe7f000 - 0xfffff000   (1536 kB)
    pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
    lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
      .init : 0xc080d000 - 0xc0862000   ( 340 kB)
      .data : 0xc06710a7 - 0xc080c018   (1643 kB)
      .text : 0xc0400000 - 0xc06710a7   (2500 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
NR_IRQS:512
Extended CMOS year: 2000
Fast TSC calibration using PIT
Detected 1995.038 MHz processor.
Console: colour VGA+ 80x25
console [tty0] enabled
hpet clockevent registered
HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.07 BogoMIPS (lpj=1995038)
Security Framework initialized
SELinux:  Initializing.
SELinux:  Starting in permissive mode
Mount-cache hash table entries: 512
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
mce: CPU supports 6 MCE banks
CPU0: Thermal monitoring enabled (TM1)
using mwait in idle threads.
Performance Counters: Core2 events, Intel PMU driver.
... version:                 2
... bit width:               40
... generic counters:        2
... value mask:              000000ffffffffff
... max period:              000000007fffffff
... fixed-purpose counters:  3
... counter mask:            0000000700000003
Checking 'hlt' instruction... OK.
ACPI: Core revision 20090521
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a

Booting processor 1 APIC 0x4 ip 0x6000

Initializing CPU#1
Calibrating delay using timer specific routine.. 3990.02 BogoMIPS (lpj=1995010)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 1
CPU: Processor Core ID: 0
mce: CPU supports 6 MCE banks
CPU1: Thermal monitoring enabled (TM2)
CPU1: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#1]: passed.

Booting processor 2 APIC 0x2 ip 0x6000

Initializing CPU#2
Calibrating delay using timer specific routine.. 3990.01 BogoMIPS (lpj=1995007)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 2
mce: CPU supports 6 MCE banks
CPU2: Thermal monitoring enabled (TM2)
CPU2: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#2]: passed.

Booting processor 3 APIC 0x6 ip 0x6000

Initializing CPU#3
Calibrating delay using timer specific routine.. 3990.02 BogoMIPS (lpj=1995013)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 1
CPU: Processor Core ID: 2
mce: CPU supports 6 MCE banks
CPU3: Thermal monitoring enabled (TM2)
CPU3: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#3]: passed.

Booting processor 4 APIC 0x1 ip 0x6000

Initializing CPU#4
Calibrating delay using timer specific routine.. 3990.04 BogoMIPS (lpj=1995020)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
mce: CPU supports 6 MCE banks
CPU4: Thermal monitoring enabled (TM2)
CPU4: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#4]: passed.

Booting processor 5 APIC 0x5 ip 0x6000

Initializing CPU#5
Calibrating delay using timer specific routine.. 3990.02 BogoMIPS (lpj=1995011)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 1
CPU: Processor Core ID: 1
mce: CPU supports 6 MCE banks
CPU5: Thermal monitoring enabled (TM2)
CPU5: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#5]: passed.

Booting processor 6 APIC 0x3 ip 0x6000

Initializing CPU#6
Calibrating delay using timer specific routine.. 3990.01 BogoMIPS (lpj=1995007)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 3
mce: CPU supports 6 MCE banks
CPU6: Thermal monitoring enabled (TM2)
CPU6: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#6]: passed.

Booting processor 7 APIC 0x7 ip 0x6000

Initializing CPU#7
Calibrating delay using timer specific routine.. 3990.02 BogoMIPS (lpj=1995010)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 6144K
CPU: Physical Processor ID: 1
CPU: Processor Core ID: 3
mce: CPU supports 6 MCE banks
CPU7: Thermal monitoring enabled (TM2)
CPU7: Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz stepping 0a
checking TSC synchronization [CPU#0 -> CPU#7]: passed.

Brought up 8 CPUs
Total of 8 processors activated (31920.23 BogoMIPS).
CPU0 attaching sched-domain:
 domain 0: span 0,4 level MC
  groups: 0 4
  domain 1: span 0-7 level CPU
   groups: 0,4 1,5 2,6 3,7
CPU1 attaching sched-domain:
 domain 0: span 1,5 level MC
  groups: 1 5
  domain 1: span 0-7 level CPU
   groups: 1,5 2,6 3,7 0,4
CPU2 attaching sched-domain:
 domain 0: span 2,6 level MC
  groups: 2 6
  domain 1: span 0-7 level CPU
   groups: 2,6 3,7 0,4 1,5
CPU3 attaching sched-domain:
 domain 0: span 3,7 level MC
  groups: 3 7
  domain 1: span 0-7 level CPU
   groups: 3,7 0,4 1,5 2,6
CPU4 attaching sched-domain:
 domain 0: span 0,4 level MC
  groups: 4 0
  domain 1: span 0-7 level CPU
   groups: 0,4 1,5 2,6 3,7
CPU5 attaching sched-domain:
 domain 0: span 1,5 level MC
  groups: 5 1
  domain 1: span 0-7 level CPU
   groups: 1,5 2,6 3,7 0,4
CPU6 attaching sched-domain:
 domain 0: span 2,6 level MC
  groups: 6 2
  domain 1: span 0-7 level CPU
   groups: 2,6 3,7 0,4 1,5
CPU7 attaching sched-domain:
 domain 0: span 3,7 level MC
  groups: 7 3
  domain 1: span 0-7 level CPU
   groups: 3,7 0,4 1,5 2,6
khelper used greatest stack depth: 7272 bytes left
NET: Registered protocol family 16
ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
ACPI: bus type pci registered
PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
PCI: MCFG area at e0000000 reserved in E820
PCI: Using MMCONFIG for extended config space
PCI: Using configuration type 1 for base access
PCI: Dell PowerEdge 2950 detected, enabling pci=bfsort.
khelper used greatest stack depth: 7236 bytes left
bio: create slab at 0
ACPI: EC: Look up EC in DSDT
ACPI: BIOS _OSI(Linux) query ignored
ACPI: Interpreter enabled
ACPI: (supports S0 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: No dock devices found.
ACPI: PCI Root Bridge [PCI0] (0000:00)
pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
pci 0000:00:00.0: PME# disabled
pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
pci 0000:00:02.0: PME# disabled
pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
pci 0000:00:03.0: PME# disabled
pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
pci 0000:00:04.0: PME# disabled
pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
pci 0000:00:05.0: PME# disabled
pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
pci 0000:00:06.0: PME# disabled
pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
pci 0000:00:07.0: PME# disabled
pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.0: PME# disabled
pci 0000:00:1d.0: reg 20 io port: [0xcce0-0xccff]
pci 0000:00:1d.1: reg 20 io port: [0xccc0-0xccdf]
pci 0000:00:1d.2: reg 20 io port: [0xcca0-0xccbf]
pci 0000:00:1d.3: reg 20 io port: [0xcc80-0xcc9f]
pci 0000:00:1d.7: reg 10 32bit mmio: [0xfc500400-0xfc5007ff]
pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1d.7: PME# disabled
pci 0000:00:1f.2: reg 10 io port: [0xcc78-0xcc7f]
pci 0000:00:1f.2: reg 14 io port: [0xcc70-0xcc73]
pci 0000:00:1f.2: reg 18 io port: [0xcc60-0xcc67]
pci 0000:00:1f.2: reg 1c io port: [0xcc58-0xcc5b]
pci 0000:00:1f.2: reg 20 io port: [0xcc40-0xcc4f]
pci 0000:00:1f.2: reg 24 32bit mmio: [0xfc500000-0xfc5003ff]
pci 0000:00:1f.2: PME# supported from D3hot
pci 0000:00:1f.2: PME# disabled
pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
pci 0000:04:00.0: PME# disabled
pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
pci 0000:04:00.3: PME# disabled
pci 0000:00:02.0: bridge 32bit mmio: [0xf2000000-0xf7ffffff]
pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
pci 0000:05:00.0: PME# disabled
pci 0000:05:01.0: PME# supported from D0 D3hot D3cold
pci 0000:05:01.0: PME# disabled
pci 0000:04:00.0: bridge 32bit mmio: [0xf4000000-0xf7ffffff]
pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
pci 0000:06:00.0: PME# disabled
pci 0000:05:00.0: bridge 32bit mmio: [0xf4000000-0xf7ffffff]
pci 0000:07:00.0: reg 10 64bit mmio: [0xf4000000-0xf5ffffff]
pci 0000:07:00.0: PME# supported from D3hot D3cold
pci 0000:07:00.0: PME# disabled
pci 0000:06:00.0: bridge 32bit mmio: [0xf4000000-0xf7ffffff]
pci 0000:01:00.0: reg 10 64bit mmio: [0xfc480000-0xfc4bffff]
pci 0000:01:00.0: reg 18 io port: [0xec00-0xecff]
pci 0000:01:00.0: reg 1c 64bit mmio: [0xfc440000-0xfc47ffff]
pci 0000:01:00.0: reg 30 32bit mmio: [0xfc300000-0xfc307fff]
pci 0000:01:00.0: supports D1
pci 0000:00:03.0: bridge io port: [0xe000-0xefff]
pci 0000:00:03.0: bridge 32bit mmio: [0xfc300000-0xfc4fffff]
pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
pci 0000:02:00.0: PME# disabled
pci 0000:00:1c.0: bridge 32bit mmio: [0xf8000000-0xfbffffff]
pci 0000:03:00.0: reg 10 64bit mmio: [0xf8000000-0xf9ffffff]
pci 0000:03:00.0: PME# supported from D3hot D3cold
pci 0000:03:00.0: PME# disabled
pci 0000:02:00.0: bridge 32bit mmio: [0xf8000000-0xfbffffff]
pci 0000:0e:0d.0: reg 10 32bit mmio: [0xd8000000-0xdfffffff]
pci 0000:0e:0d.0: reg 14 io port: [0xdc00-0xdcff]
pci 0000:0e:0d.0: reg 18 32bit mmio: [0xfc2d0000-0xfc2dffff]
pci 0000:0e:0d.0: reg 30 32bit mmio: [0x000000-0x01ffff]
pci 0000:0e:0d.0: supports D1 D2
pci 0000:00:1e.0: transparent bridge
pci 0000:00:1e.0: bridge io port: [0xd000-0xdfff]
pci 0000:00:1e.0: bridge 32bit mmio: [0xfc100000-0xfc2fffff]
pci 0000:00:1e.0: bridge 64bit mmio pref: [0xd8000000-0xdfffffff]
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2.UPST._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2.UPST.DWN1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2.UPST.DWN2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3.PE2P._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX6._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.SBEX._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.COMP._PRT]
ACPI: PCI Interrupt Link [LK00] (IRQs 3 4 5 6 7 *10 11 12)
ACPI: PCI Interrupt Link [LK01] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LK02] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LK03] (IRQs 3 4 5 *6 7 10 11 12)
ACPI: PCI Interrupt Link [LK04] (IRQs 3 4 5 6 7 10 11 12) *14
ACPI: PCI Interrupt Link [LK05] (IRQs 3 4 5 6 7 10 11 12) *15
ACPI: PCI Interrupt Link [LK06] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LK07] (IRQs 3 4 5 6 7 10 *11 12)
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
hpet0: 3 comparators, 64-bit 14.318180 MHz counter
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
system 00:08: ioport range 0x800-0x87f has been reserved
system 00:08: ioport range 0x880-0x8bf has been reserved
system 00:08: ioport range 0x8c0-0x8df has been reserved
system 00:08: ioport range 0x8e0-0x8e3 has been reserved
system 00:08: ioport range 0x900-0x900 has been reserved
system 00:08: ioport range 0xc00-0xc7f has been reserved
system 00:08: ioport range 0xca0-0xca7 has been reserved
system 00:08: ioport range 0xca9-0xcab has been reserved
system 00:08: ioport range 0xcad-0xcaf has been reserved
system 00:09: ioport range 0xca8-0xca8 has been reserved
system 00:09: ioport range 0xcac-0xcac has been reserved
system 00:0a: iomem range 0xe0000000-0xefffffff has been reserved
pci 0000:06:00.0: PCI bridge, secondary bus 0000:07
pci 0000:06:00.0:   IO window: disabled
pci 0000:06:00.0:   MEM window: 0xf4000000-0xf7ffffff
pci 0000:06:00.0:   PREFETCH window: disabled
pci 0000:05:00.0: PCI bridge, secondary bus 0000:06
pci 0000:05:00.0:   IO window: disabled
pci 0000:05:00.0:   MEM window: 0xf4000000-0xf7ffffff
pci 0000:05:00.0:   PREFETCH window: disabled
pci 0000:05:01.0: PCI bridge, secondary bus 0000:08
pci 0000:05:01.0:   IO window: disabled
pci 0000:05:01.0:   MEM window: disabled
pci 0000:05:01.0:   PREFETCH window: disabled
pci 0000:04:00.0: PCI bridge, secondary bus 0000:05
pci 0000:04:00.0:   IO window: disabled
pci 0000:04:00.0:   MEM window: 0xf4000000-0xf7ffffff
pci 0000:04:00.0:   PREFETCH window: disabled
pci 0000:04:00.3: PCI bridge, secondary bus 0000:09
pci 0000:04:00.3:   IO window: disabled
pci 0000:04:00.3:   MEM window: disabled
pci 0000:04:00.3:   PREFETCH window: disabled
pci 0000:00:02.0: PCI bridge, secondary bus 0000:04
pci 0000:00:02.0:   IO window: disabled
pci 0000:00:02.0:   MEM window: 0xf2000000-0xf7ffffff
pci 0000:00:02.0:   PREFETCH window: disabled
pci 0000:00:03.0: PCI bridge, secondary bus 0000:01
pci 0000:00:03.0:   IO window: 0xe000-0xefff
pci 0000:00:03.0:   MEM window: 0xfc300000-0xfc4fffff
pci 0000:00:03.0:   PREFETCH window: disabled
pci 0000:00:04.0: PCI bridge, secondary bus 0000:0a
pci 0000:00:04.0:   IO window: disabled
pci 0000:00:04.0:   MEM window: disabled
pci 0000:00:04.0:   PREFETCH window: disabled
pci 0000:00:05.0: PCI bridge, secondary bus 0000:0b
pci 0000:00:05.0:   IO window: disabled
pci 0000:00:05.0:   MEM window: disabled
pci 0000:00:05.0:   PREFETCH window: disabled
pci 0000:00:06.0: PCI bridge, secondary bus 0000:0c
pci 0000:00:06.0:   IO window: disabled
pci 0000:00:06.0:   MEM window: disabled
pci 0000:00:06.0:   PREFETCH window: disabled
pci 0000:00:07.0: PCI bridge, secondary bus 0000:0d
pci 0000:00:07.0:   IO window: disabled
pci 0000:00:07.0:   MEM window: disabled
pci 0000:00:07.0:   PREFETCH window: disabled
pci 0000:02:00.0: PCI bridge, secondary bus 0000:03
pci 0000:02:00.0:   IO window: disabled
pci 0000:02:00.0:   MEM window: 0xf8000000-0xfbffffff
pci 0000:02:00.0:   PREFETCH window: disabled
pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
pci 0000:00:1c.0:   IO window: disabled
pci 0000:00:1c.0:   MEM window: 0xf8000000-0xfbffffff
pci 0000:00:1c.0:   PREFETCH window: disabled
pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0e
pci 0000:00:1e.0:   IO window: 0xd000-0xdfff
pci 0000:00:1e.0:   MEM window: 0xfc100000-0xfc2fffff
pci 0000:00:1e.0:   PREFETCH window: 0x000000d8000000-0x000000dfffffff
pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:02.0: setting latency timer to 64
pci 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:04:00.0: setting latency timer to 64
pci 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:05:00.0: setting latency timer to 64
pci 0000:06:00.0: setting latency timer to 64
pci 0000:05:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:05:01.0: setting latency timer to 64
pci 0000:04:00.3: setting latency timer to 64
pci 0000:00:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:03.0: setting latency timer to 64
pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:04.0: setting latency timer to 64
pci 0000:00:05.0: setting latency timer to 64
pci 0000:00:06.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:06.0: setting latency timer to 64
pci 0000:00:07.0: setting latency timer to 64
pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:1c.0: setting latency timer to 64
pci 0000:02:00.0: setting latency timer to 64
pci 0000:00:1e.0: setting latency timer to 64
pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
pci_bus 0000:04: resource 1 mem: [0xf2000000-0xf7ffffff]
pci_bus 0000:05: resource 1 mem: [0xf4000000-0xf7ffffff]
pci_bus 0000:06: resource 1 mem: [0xf4000000-0xf7ffffff]
pci_bus 0000:07: resource 1 mem: [0xf4000000-0xf7ffffff]
pci_bus 0000:01: resource 0 io:  [0xe000-0xefff]
pci_bus 0000:01: resource 1 mem: [0xfc300000-0xfc4fffff]
pci_bus 0000:02: resource 1 mem: [0xf8000000-0xfbffffff]
pci_bus 0000:03: resource 1 mem: [0xf8000000-0xfbffffff]
pci_bus 0000:0e: resource 0 io:  [0xd000-0xdfff]
pci_bus 0000:0e: resource 1 mem: [0xfc100000-0xfc2fffff]
pci_bus 0000:0e: resource 2 pref mem [0xd8000000-0xdfffffff]
pci_bus 0000:0e: resource 3 io:  [0x00-0xffff]
pci_bus 0000:0e: resource 4 mem: [0x000000-0xffffffff]

NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered

NET: Registered protocol family 1
Trying to unpack rootfs image as initramfs...
Freeing initrd memory: 1571k freed
apm: BIOS not found.
audit: initializing netlink socket (disabled)
type=2000 audit(1257439929.696:1): initialized
highmem bounce pool size: 64 pages
HugeTLB registered 4 MB page size, pre-allocated 0 pages

20.
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)

fs/quota/dquot.c
:printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__);
L2577
dquot_init()

msgmni has been set to 1710
SELinux:  Registering netfilter hooks
cryptomgr_test used greatest stack depth: 7136 bytes left
alg: No test for stdrng (krng)

22.
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered (default)
io scheduler cfq registered

block/elevator.c
:printk(KERN_INFO "io scheduler %s registered%s\n", e->elevator_name,
L960
elv_register()

pci 0000:0e:0d.0: Boot video device
pcieport-driver 0000:00:02.0: irq 24 for MSI/MSI-X
pcieport-driver 0000:00:02.0: setting latency timer to 64
pcieport-driver 0000:00:03.0: irq 25 for MSI/MSI-X
pcieport-driver 0000:00:03.0: setting latency timer to 64
pcieport-driver 0000:00:04.0: irq 26 for MSI/MSI-X
pcieport-driver 0000:00:04.0: setting latency timer to 64
pcieport-driver 0000:00:05.0: irq 27 for MSI/MSI-X
pcieport-driver 0000:00:05.0: setting latency timer to 64
pcieport-driver 0000:00:06.0: irq 28 for MSI/MSI-X
pcieport-driver 0000:00:06.0: setting latency timer to 64
pcieport-driver 0000:00:07.0: irq 29 for MSI/MSI-X
pcieport-driver 0000:00:07.0: setting latency timer to 64
pcieport-driver 0000:00:1c.0: irq 30 for MSI/MSI-X
pcieport-driver 0000:00:1c.0: setting latency timer to 64
pcieport-driver 0000:04:00.0: setting latency timer to 64
pcieport-driver 0000:05:00.0: irq 31 for MSI/MSI-X
pcieport-driver 0000:05:00.0: setting latency timer to 64
pcieport-driver 0000:05:01.0: irq 32 for MSI/MSI-X
pcieport-driver 0000:05:01.0: setting latency timer to 64
aer 0000:00:02.0:pcie02: service driver aer loaded
aer 0000:00:03.0:pcie02: service driver aer loaded
aer 0000:00:04.0:pcie02: service driver aer loaded
aer 0000:00:05.0:pcie02: service driver aer loaded
aer 0000:00:06.0:pcie02: service driver aer loaded
aer 0000:00:07.0:pcie02: service driver aer loaded
aer 0000:04:00.0:pcie12: service driver aer loaded
aer 0000:05:00.0:pcie22: service driver aer loaded
aer 0000:05:01.0:pcie22: service driver aer loaded
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
processor LNXCPU:00: registered as cooling_device0
processor LNXCPU:01: registered as cooling_device1
processor LNXCPU:02: registered as cooling_device2
processor LNXCPU:03: registered as cooling_device3
processor LNXCPU:04: registered as cooling_device4
processor LNXCPU:05: registered as cooling_device5
processor LNXCPU:06: registered as cooling_device6
processor LNXCPU:07: registered as cooling_device7
Non-volatile memory driver v1.3
Linux agpgart interface v0.103
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:07: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
brd: module loaded

25.
Uniform Multi-Platform E-IDE driver

drivers/ide/ide.c
:printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
L372
ide_init()

26.
ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports

drivers/ide/ide-generic.c
:printk(KERN_INFO DRV_NAME ": please use \"probe_mask=0x3f\" "
L96
ide_generic_init()

27.
Probing IDE interface ide0...
ide0: no devices on the port
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
ide1: no devices on the port
ide1 at 0x170-0x177,0x376 on irq 15
ide-gd driver 1.18
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
cpuidle: using governor ladder
usbcore: registered new interface driver hiddev
usbcore: registered new interface driver usbhid
usbhid: v2.6:USB HID core driver
TCP bic registered
Initializing XFRM netlink socket
NET: Registered protocol family 17
Using IPI No-Shortcut mode
registered taskstats version 1
Freeing unused kernel memory: 340k freed
Write protecting the kernel text: 2504k
Write protecting the kernel read-only data: 1348k
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21
ehci_hcd 0000:00:1d.7: setting latency timer to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1d.7: debug port 1
ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
ehci_hcd 0000:00:1d.7: irq 21, io mem 0xfc500400
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
insmod used greatest stack depth: 6900 bytes left
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
uhci_hcd: USB Universal Host Controller Interface driver
uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
uhci_hcd 0000:00:1d.0: setting latency timer to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000cce0
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1d.1: setting latency timer to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1d.1: irq 20, io base 0x0000ccc0
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 21 (level, low) -> IRQ 21
uhci_hcd 0000:00:1d.2: setting latency timer to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1d.2: irq 21, io base 0x0000cca0
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1d.3: setting latency timer to 64
uhci_hcd 0000:00:1d.3: UHCI Host Controller
uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1d.3: irq 20, io base 0x0000cc80
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
insmod used greatest stack depth: 6884 bytes left

27.
SCSI subsystem initialized

drivers/scsi/scsi.c
:printk(KERN_NOTICE "SCSI subsystem initialized\n");
L1338
init_scsi()

28.
megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008

drivers/scsi/megaraid/megaraid_sas.c
:printk(KERN_INFO "megasas: %s %s\n", MEGASAS_VERSION,
L3468
megasas_init()

29.
megasas: 0x1000:0x0060:0x1028:0x1f0c: bus 1:slot 0:func 0

drivers/scsi/megaraid/megaraid_sas.c
:printk(KERN_INFO "megasas: %#4.04x:%#4.04x:%#4.04x:%#4.04x: ",
L2530
megasas_probe_one()

30.
megaraid_sas 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
megaraid_sas 0000:01:00.0: setting latency timer to 64
megasas: FW now in Ready state


scsi0 : LSI SAS based MegaRAID driver
scsi 0:0:0:0: Direct-Access     SEAGATE  ST3146356SS      HS0C PQ: 0 ANSI: 5
scsi 0:0:32:0: Enclosure         DP       BACKPLANE        1.05 PQ: 0 ANSI: 5
scsi 0:2:0:0: Direct-Access     DELL     PERC 6/i         1.21 PQ: 0 ANSI: 5
sd 0:2:0:0: [sda] 285474816 512-byte logical blocks: (146 GB/136 GiB)
sd 0:2:0:0: [sda] Write Protect is off
sd 0:2:0:0: [sda] Mode Sense: 1f 00 10 08
sd 0:2:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
 sda: sda1 sda2
sd 0:2:0:0: [sda] Attached SCSI disk
insmod used greatest stack depth: 6572 bytes left

33.
libata version 3.00 loaded.

drivers/ata/libata-core.c
:printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
L6591
ata_init()

ata_piix 0000:00:1f.2: version 2.13
ata_piix 0000:00:1f.2: PCI INT C -> GSI 23 (level, low) -> IRQ 23
ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
usb 1-5: new high speed USB device using ehci_hcd and address 3
ata_piix 0000:00:1f.2: setting latency timer to 64

scsi1 : ata_piix

scsi2 : ata_piix
ata1: SATA max UDMA/133 cmd 0xcc78 ctl 0xcc70 bmdma 0xcc40 irq 23
ata2: SATA max UDMA/133 cmd 0xcc60 ctl 0xcc58 bmdma 0xcc48 irq 23
usb 1-5: configuration #1 chosen from 1 choice
hub 1-5:1.0: USB hub found
hub 1-5:1.0: 4 ports detected
ata2.01: NODEV after polling detection
ata2.00: ATAPI: TSSTcorpDVD-ROM TS-L333A, D250, max UDMA/33
ata2.00: configured for UDMA/33
scsi 2:0:0:0: CD-ROM            TSSTcorp DVD-ROM TS-L333A D250 PQ: 0 ANSI: 5

usb 3-1: new low speed USB device using uhci_hcd and address 2
usb 3-1: configuration #1 chosen from 1 choice
input: Tripplite B015-000 R0.74 USB to PS2 adapter. as /class/input/input0
generic-usb 0003:09AE:0002.0001: input: USB HID v1.10 Keyboard [Tripplite B015-000 R0.74 USB to PS2 adapter.] on usb-0000:00:1d.1-1/input0
input: Tripplite B015-000 R0.74 USB to PS2 adapter. as /class/input/input1
generic-usb 0003:09AE:0002.0002: input: USB HID v1.10 Mouse [Tripplite B015-000 R0.74 USB to PS2 adapter.] on usb-0000:00:1d.1-1/input1

40.
kjournald starting.  Commit interval 5 seconds

fs/jbd/journal.c
:printk(KERN_INFO "kjournald starting.  Commit interval %ld seconds\n",
L130
kjournald()

41.
EXT3-fs: mounted filesystem with writeback data mode.

fs/ext3/super.c
:printk (KERN_INFO "EXT3-fs: mounted filesystem with %s data mode.\n",
L1989
ext3_fill_super()

42.
SELinux:  Disabled at runtime.

security/selinux/hooks.c
:printk(KERN_INFO "SELinux:  Disabled at runtime.\n");
L5689
selinux_disable()

43.
SELinux:  Unregistering netfilter hooks

security/selinux/hooks.c
:printk(KERN_DEBUG "SELinux:  Unregistering netfilter hooks\n");
L5655
selinux_nf_ip_exit()

type=1404 audit(1257439951.333:2): selinux=0 auid=4294967295 ses=4294967295
mount used greatest stack depth: 6484 bytes left
udevd used greatest stack depth: 6236 bytes left
input: PC Speaker as /class/input/input2
intel_rng: FWH not detected
input: Power Button as /class/input/input3
ACPI: Power Button [PWRF]
dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
rtc_cmos 00:04: RTC can wake from S4
rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
sr0: scsi3-mmc drive: 4x/24x cd/rw xa/form2 cdda tray

Uniform CD-ROM driver Revision: 3.20
sr 2:0:0:0: Attached scsi CD-ROM sr0

Broadcom NetXtreme II Gigabit Ethernet Driver bnx2 v2.0.1 (May 6, 2009)
bnx2 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
bnx2 0000:03:00.0: firmware: requesting bnx2/bnx2-mips-06-4.6.16.fw
scsi 0:0:32:0: Attached scsi generic sg0 type 13
sd 0:2:0:0: Attached scsi generic sg1 type 0
sr 2:0:0:0: Attached scsi generic sg2 type 5
bnx2 0000:03:00.0: firmware: requesting bnx2/bnx2-rv2p-06-4.6.16.fw

eth0: Broadcom NetXtreme II BCM5708 1000Base-T (B2) PCI-X 64-bit 133MHz found at mem f8000000, IRQ 16, node addr 00:24:e8:4c:58:80
bnx2 0000:07:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
bnx2 0000:07:00.0: firmware: requesting bnx2/bnx2-mips-06-4.6.16.fw
bnx2 0000:07:00.0: firmware: requesting bnx2/bnx2-rv2p-06-4.6.16.fw

eth1: Broadcom NetXtreme II BCM5708 1000Base-T (B2) PCI-X 64-bit 133MHz found at mem f4000000, IRQ 16, node addr 00:24:e8:4c:58:82
floppy0: no floppy controllers found
floppy0: no floppy controllers found
floppy0: no floppy controllers found

lp: driver loaded but no devices found
NET: Registered protocol family 10

lo: Disabled Privacy Extensions
md: Autodetecting RAID arrays.
md: Scanned 0 and added 0 devices.
md: autorun ...
md: ... autorun DONE.

device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
device-mapper: multipath: version 1.1.0 loaded

EXT3 FS on sda1, internal journal

Adding 3461996k swap on /dev/sda2.  Priority:-1 extents:1 across:3461996k

microcode: CPU0 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU1 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU2 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU3 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU4 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU5 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU6 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
microcode: CPU7 sig=0x1067a, pf=0x40, revision=0xa07
platform microcode: firmware: requesting intel-ucode/06-17-0a
Microcode Update Driver: v2.00 , Peter Oruba
Microcode Update Driver: v2.00 removed.
warning: process `kudzu' used the deprecated sysctl system call with 1.23.
bnx2 0000:03:00.0: irq 33 for MSI/MSI-X
bnx2: eth0: using MSI

ADDRCONF(NETDEV_UP): eth0: link is not ready
bnx2: eth0 NIC Copper Link is Up, 100 Mbps full duplex, receive & transmit flow control ON
ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
ipcalc used greatest stack depth: 6176 bytes left
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
warning: `dbus-daemon' uses 32-bit capabilities (legacy support in use)
Bluetooth: Core ver 2.15
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP ver 2.13
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
i2c /dev entries driver
Bridge firewalling registered
virbr0: starting userspace STP failed, starting kernel STP
ip_tables: (C) 2000-2006 Netfilter Core Team
Xorg used greatest stack depth: 5916 bytes left
eth0: no IPv6 routers present

---------------------------------------------------------------end of setup log.
阅读(6545) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~