You are not logged in.

#1 2009-03-05 05:20:10

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

ID for drive in pci adapter(Solved with dual pci-e adapter)

When installing a drive in a pci to IDE adapter, the drive is seen in two X88-64 usb boot drives as an sd device....that is to say...boot usb 20GB drive or boot 120GB usb drive..each ID's the pci connected drive as an sd device.

However, when booting from a 40GB usb drive in x86-64 ext4 the pci connected drive is ID'ed as hdc.

All boot drives have been upgraded to latest this date.

What causes the difference?

Last edited by lilsirecho (2009-03-07 02:17:17)


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#2 2009-03-05 11:40:16

byte
Member
From: Düsseldorf (DE)
Registered: 2006-05-01
Posts: 2,046

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Have a look at the mkinitcpio.conf files on each of the boot drives. If one contains the "ide" hook (instead or before "pata") it will use the old hda scheme.


1000

Offline

#3 2009-03-05 15:23:56

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Byte;

The ext4 drive has the following hooks:

HOOKS="base udev autodetect pata scsi sata usb  filesystems"

I have to boot in other drive to copy.

Cul.///


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#4 2009-03-05 15:32:03

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

The 20GB drive has the following hooks:

HOOKS="base udev autodetect pata scsi sata usb usbinput keymap filesystems"

Perhaps I should change the ext4 40GB to these hooks?


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#5 2009-03-05 16:42:11

byte
Member
From: Düsseldorf (DE)
Registered: 2006-05-01
Posts: 2,046

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

usbinput and keymap have nothing to do with disks. Hm, what about the kernels, are all the same Arch kernel26? Any differences in the grub menu.lst?


1000

Offline

#6 2009-03-05 16:58:32

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Kernel in 40GB ext4 is:

kernel26 2.6.28.7-1

The other two drives were loaded with latest kernel yesterday.

I will have to reboot to get that info.

Grub menu list:

# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst

# DEVICE NAME CONVERSIONS 
#
#  Linux           Grub
# -------------------------
#  /dev/fd0        (fd0)
#  /dev/sda        (hd0)
#  /dev/sdb2       (hd1,1)
#  /dev/sda3       (hd0,2)
#

#  FRAMEBUFFER RESOLUTION SETTINGS
#     +-------------------------------------------------+
#          | 640x480    800x600    1024x768   1280x1024
#      ----+--------------------------------------------
#      256 | 0x301=769  0x303=771  0x305=773   0x307=775
#      32K | 0x310=784  0x313=787  0x316=790   0x319=793
#      64K | 0x311=785  0x314=788  0x317=791   0x31A=794
#      16M | 0x312=786  0x315=789  0x318=792   0x31B=795
#     +-------------------------------------------------+
#  for more details and different resolutions see
#  http://wiki.archlinux.org/index.php/GRUB#Framebuffer_Resolution 

# general configuration:
timeout   5
default   0
color light-blue/black light-cyan/blue

# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*

# (0) Arch Linux
title  Arch Linux
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/7f0fb559-05ab-40f7-8a5b-22b4c46bc897 ro
initrd /kernel26.img

# (1) Arch Linux
title  Arch Linux Fallback
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/7f0fb559-05ab-40f7-8a5b-22b4c46bc897 ro
initrd /kernel26-fallback.img

# (2) Windows
#title Windows
#rootnoverify (hd0,0)
#makeactive
#chainloader +1

This for the ext4 40GB drive.

I will reboot for the other drive 120GB x86-64.
EDIT:kernel in 120GB drive is

kernel26 2.6.28.7-1

The grub menu list:

# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst

# DEVICE NAME CONVERSIONS 
#
#  Linux           Grub
# -------------------------
#  /dev/fd0        (fd0)
#  /dev/sda        (hd0)
#  /dev/sdb2       (hd1,1)
#  /dev/sda3       (hd0,2)
#

#  FRAMEBUFFER RESOLUTION SETTINGS
#     +-------------------------------------------------+
#          | 640x480    800x600    1024x768   1280x1024
#      ----+--------------------------------------------
#      256 | 0x301=769  0x303=771  0x305=773   0x307=775
#      32K | 0x310=784  0x313=787  0x316=790   0x319=793
#      64K | 0x311=785  0x314=788  0x317=791   0x31A=794
#      16M | 0x312=786  0x315=789  0x318=792   0x31B=795
#     +-------------------------------------------------+
#  for more details and different resolutions see
#  http://wiki.archlinux.org/index.php/GRUB#Framebuffer_Resolution 

# general configuration:
timeout   5
default   0
color light-blue/black light-cyan/blue

# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*

# (0) Arch Linux
title  Arch Linux
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/ef079576-09da-4f0d-8fe8-580ea2fd7b9c ro
initrd /kernel26.img

# (1) Arch Linux
title  Arch Linux Fallback
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/ef079576-09da-4f0d-8fe8-580ea2fd7b9c ro
initrd /kernel26-fallback.img

# (1) Windows
#title Windows
#rootnoverify (hd0,0)
#makeactive
#chainloader +1

This is same for the other 20GB x86-64 drive in ext3 also.

Last edited by lilsirecho (2009-03-05 17:06:35)


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#7 2009-03-05 17:25:47

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Edited previous post to include all responses on same page.......


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#8 2009-03-05 17:44:41

byte
Member
From: Düsseldorf (DE)
Registered: 2006-05-01
Posts: 2,046

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

So the kernels are the same, the initrds and configs too, but one boot disk always labels the hard disk on the PCI controller as hdc? Very weird.
I got no real clue so far but the last thing you could do is to compare the module-related configs (MODULES in rc.conf, /etc/modprobe.conf and stuff in /etc/modprobe.d/) and to pastebin the different dmesg outputs.


1000

Offline

#9 2009-03-05 18:07:29

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Dmesg 120GB ext3 drive x86-64:

bash-3.2# dmesg |grep sd           
Driver 'sd' needs updating - please use bus_type methods
sd 1:0:0:0: [sda] 15924384 512-byte hardware sectors: (8.15 GB/7.59 GiB)
sd 1:0:0:0: [sda] Write Protect is off                                  
sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00                               
sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
sd 1:0:0:0: [sda] 15924384 512-byte hardware sectors: (8.15 GB/7.59 GiB)                
sd 1:0:0:0: [sda] Write Protect is off                                                  
sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00                                               
sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
 sda: unknown partition table                                                           
sd 1:0:0:0: [sda] Attached SCSI disk                                                    
sd 6:0:0:0: [sdb] 16088688 512-byte hardware sectors: (8.23 GB/7.67 GiB)                
sd 6:0:0:0: [sdb] Write Protect is off                                                  
sd 6:0:0:0: [sdb] Mode Sense: 00 3a 00 00                                               
sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
sd 6:0:0:0: [sdb] 16088688 512-byte hardware sectors: (8.23 GB/7.67 GiB)                
sd 6:0:0:0: [sdb] Write Protect is off                                                  
sd 6:0:0:0: [sdb] Mode Sense: 00 3a 00 00                                               
sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
 sdb:                                                                                   
sd 6:0:0:0: [sdb] Attached SCSI disk                                                    
sd 7:0:0:0: [sdc] 15662304 512-byte hardware sectors: (8.01 GB/7.46 GiB)
sd 7:0:0:0: [sdc] Write Protect is off
sd 7:0:0:0: [sdc] Mode Sense: 00 3a 00 00
sd 7:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
sd 7:0:0:0: [sdc] 15662304 512-byte hardware sectors: (8.01 GB/7.46 GiB)
sd 7:0:0:0: [sdc] Write Protect is off
sd 7:0:0:0: [sdc] Mode Sense: 00 3a 00 00
sd 7:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
 sdc: unknown partition table
sd 7:0:0:0: [sdc] Attached SCSI disk
sd 8:0:0:0: [sdd] 240121728 512-byte hardware sectors: (122 GB/114 GiB)
sd 8:0:0:0: [sdd] Write Protect is off
sd 8:0:0:0: [sdd] Mode Sense: 33 00 00 00
sd 8:0:0:0: [sdd] Assuming drive cache: write through
sd 8:0:0:0: [sdd] 240121728 512-byte hardware sectors: (122 GB/114 GiB)
sd 8:0:0:0: [sdd] Write Protect is off
sd 8:0:0:0: [sdd] Mode Sense: 33 00 00 00
sd 8:0:0:0: [sdd] Assuming drive cache: write through
 sdd: sdd1 sdd2 sdd3 sdd4
sd 8:0:0:0: [sdd] Attached SCSI disk
sd 1:0:0:0: Attached scsi generic sg0 type 0
sd 6:0:0:0: Attached scsi generic sg1 type 0
sd 7:0:0:0: Attached scsi generic sg2 type 0
sd 8:0:0:0: Attached scsi generic sg3 type 0
EXT3 FS on sdd3, internal journal
EXT3 FS on sdd4, internal journal
Adding 40152k swap on /dev/sdd2.  Priority:-1 extents:1 across:40152k
bash-3.2#

Also on the 120GB drive:

bash-3.2# dmesg |grep hd
bash-3.2#

No hd drives noted.

Will boot the other ext4 drive and inspect dmesg.

The following is the dmesg report for the ext4 drive:

bash-3.2# dmesg |grep sd
Driver 'sd' needs updating - please use bus_type methods
sd 0:0:0:0: [sda] 16088688 512-byte hardware sectors: (8.23 GB/7.67 GiB)
sd 0:0:0:0: [sda] Write Protect is off                                  
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00                               
sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: [sda] 16088688 512-byte hardware sectors: (8.23 GB/7.67 GiB)                
sd 0:0:0:0: [sda] Write Protect is off                                                  
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00                                               
sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
 sda:
sd 0:0:0:0: [sda] Attached SCSI disk
sd 5:0:0:0: [sdb] 15662304 512-byte hardware sectors: (8.01 GB/7.46 GiB)
sd 5:0:0:0: [sdb] Write Protect is off
sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 5:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
sd 5:0:0:0: [sdb] 15662304 512-byte hardware sectors: (8.01 GB/7.46 GiB)
sd 5:0:0:0: [sdb] Write Protect is off
sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 5:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
 sdb: unknown partition table
sd 5:0:0:0: [sdb] Attached SCSI disk
sd 6:0:0:0: [sdc] 60074784 512-byte hardware sectors: (30.7 GB/28.6 GiB)
sd 6:0:0:0: [sdc] Write Protect is off
sd 6:0:0:0: [sdc] Mode Sense: 33 00 00 00
sd 6:0:0:0: [sdc] Assuming drive cache: write through
sd 6:0:0:0: [sdc] 60074784 512-byte hardware sectors: (30.7 GB/28.6 GiB)
sd 6:0:0:0: [sdc] Write Protect is off
sd 6:0:0:0: [sdc] Mode Sense: 33 00 00 00
sd 6:0:0:0: [sdc] Assuming drive cache: write through
 sdc: sdc1 sdc2 sdc3 sdc4
sd 6:0:0:0: [sdc] Attached SCSI disk
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 5:0:0:0: Attached scsi generic sg1 type 0
sd 6:0:0:0: Attached scsi generic sg2 type 0
EXT4 FS on sdc3, internal journal on sdc3:8
EXT4 FS on sdc4, internal journal on sdc4:8
Adding 530136k swap on /dev/sdc2.  Priority:-1 extents:1 across:530136k
bash-3.2#

The dmesg for hd follows:
bash-3.2# dmesg |grep hd
hdc: CF 8GB, CFA DISK drive
hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO2
hdc: UDMA/66 mode selected
hdc: max request size: 64KiB
hdc: 15924384 sectors (8153 MB) w/1KiB Cache, CHS=15798/16/63
hdc: unknown partition table
bash-3.2#
I will now post the modules in rc.conf:

MODULES=(snd-usb-audio)

(ext4 drive)

Reboot into 120GB drive for data...........

Last edited by lilsirecho (2009-03-05 18:21:21)


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#10 2009-03-05 18:14:17

byte
Member
From: Düsseldorf (DE)
Registered: 2006-05-01
Posts: 2,046

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Please pastebin the whole files. You could use community/nopaste.


1000

Offline

#11 2009-03-05 18:27:59

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Not familiar with your requested pastebin nor community/nopaste?


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#12 2009-03-05 18:42:35

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Dmesg for ext4 drive with ID of hdc for scsi drive.....


bash-3.2# dmesg
BIOS EBDA/lowmem at: 0009f800/0009f400
Linux version 2.6.28-ARCH (root@T-POWA-LX) (gcc version 4.3.3 (GCC) ) #1 SMP PREEMPT Sun Feb 22 11:00:30 CET 2009                                                                                                 
Command line: root=/dev/disk/by-uuid/7f0fb559-05ab-40f7-8a5b-22b4c46bc897 ro                             
KERNEL supported cpus:                                                                                   
  Intel GenuineIntel                                                                                     
  AMD AuthenticAMD                                                                                       
  Centaur CentaurHauls                                                                                   
BIOS-provided physical RAM map:                                                                         
BIOS-e820: 0000000000000000 - 000000000009f400 (usable)                                                 
BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)                                               
BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)                                               
BIOS-e820: 0000000000100000 - 00000000cf7f0000 (usable)                                                 
BIOS-e820: 00000000cf7f0000 - 00000000cf7f3000 (ACPI NVS)                                               
BIOS-e820: 00000000cf7f3000 - 00000000cf800000 (ACPI data)                                             
BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)                                               
BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)                                               
DMI 2.4 present.                                                                                         
last_pfn = 0xcf7f0 max_arch_pfn = 0x3ffffffff                                                           
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106                                         
Scanning 2 areas for low memory corruption                                                               
modified physical RAM map:                                                                               
modified: 0000000000000000 - 0000000000001000 (usable)                                                 
modified: 0000000000001000 - 0000000000006000 (reserved)                                               
modified: 0000000000006000 - 0000000000008000 (usable)                                                 
modified: 0000000000008000 - 0000000000010000 (reserved)                                               
modified: 0000000000010000 - 0000000000092400 (usable)                                                 
modified: 000000000009f800 - 00000000000a0000 (reserved)                                               
modified: 00000000000f0000 - 0000000000100000 (reserved)                                               
modified: 0000000000100000 - 00000000cf7f0000 (usable)                                                 
modified: 00000000cf7f0000 - 00000000cf7f3000 (ACPI NVS)                                               
modified: 00000000cf7f3000 - 00000000cf800000 (ACPI data)                                               
modified: 00000000f0000000 - 00000000f4000000 (reserved)                                               
modified: 00000000fec00000 - 0000000100000000 (reserved)                                               
init_memory_mapping: 0000000000000000-00000000cf7f0000                                                   
0000000000 - 00cf600000 page 2M                                                                         
00cf600000 - 00cf7f0000 page 4k                                                                         
kernel direct mapping tables up to cf7f0000 @ 10000-16000                                               
last_map_addr: cf7f0000 end: cf7f0000                                                                   
RAMDISK: 37f20000 - 37fef2b7                                                                             
ACPI: RSDP 000F6540, 0014 (r0 GBT   )                                                                   
ACPI: RSDT CF7F3040, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)                                   
ACPI: FACP CF7F30C0, 0074 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)                                   
ACPI: DSDT CF7F3180, 3844 (r1 GBT    GBTUACPI     1000 MSFT  100000C)                                   
ACPI: FACS CF7F0000, 0040                                                                               
ACPI: HPET CF7F6B00, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU       98)                                   
ACPI: MCFG CF7F6B80, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)                                   
ACPI: APIC CF7F6A40, 0068 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)                                   
ACPI: SSDT CF7F6C00, 015C (r1  PmRef  Cpu0Ist     3000 INTL 20040311)                                   
ACPI: SSDT CF7F7090, 0167 (r1  PmRef    CpuPm     3000 INTL 20040311)                                   
ACPI: Local APIC address 0xfee00000                                                                     
(6 early reservations) ==> bootmem [0000000000 - 00cf7f0000]                                             
  #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]                           
  #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]                           
  #2 [0000200000 - 0000734c0c]    TEXT DATA BSS ==> [0000200000 - 0000734c0c]                           
  #3 [0037f20000 - 0037fef2b7]          RAMDISK ==> [0037f20000 - 0037fef2b7]                           
  #4 [000009f400 - 0000100000]    BIOS reserved ==> [000009f400 - 0000100000]                           
  #5 [0000010000 - 0000014000]          PGTABLE ==> [0000010000 - 0000014000]                           
found SMP MP-table at [ffff8800000f4c00] 000f4c00                                                       
[ffffe20000000000-ffffe20002dfffff] PMD -> [ffff880001200000-ffff880003ffffff] on node 0               
Zone PFN ranges:                                                                                         
  DMA      0x00000000 -> 0x00001000                                                                     
  DMA32    0x00001000 -> 0x00100000                                                                     
  Normal   0x00100000 -> 0x00100000                                                                     
Movable zone start PFN for each node                                                                     
early_node_map[4] active PFN ranges                                                                     
    0: 0x00000000 -> 0x00000001                                                                         
    0: 0x00000006 -> 0x00000008                                                                         
    0: 0x00000010 -> 0x00000092                                                                         
    0: 0x00000100 -> 0x000cf7f0                                                                         
On node 0 totalpages: 849781                                                                             
  DMA zone: 56 pages used for memmap                                                                     
  DMA zone: 1437 pages reserved                                                                         
  DMA zone: 2480 pages, LIFO batch:0                                                                     
  DMA32 zone: 11564 pages used for memmap                                                               
  DMA32 zone: 834244 pages, LIFO batch:31                                                               
  Normal zone: 0 pages used for memmap                                                                   
  Movable zone: 0 pages used for memmap                                                                 
ACPI: PM-Timer IO Port: 0x408                                                                           
ACPI: Local APIC address 0xfee00000                                                                     
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)                                                       
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)                                                       
ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])                                                       
ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])                                                       
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])                                                 
IOAPIC[0]: apic_id 2, version 0, 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.                                                                             
ACPI: HPET id: 0x8086a201 base: 0xfed00000                                                               
Using ACPI (MADT) for SMP configuration information                                                     
SMP: Allowing 2 CPUs, 0 hotplug CPUs                                                                     
PM: Registered nosave memory: 0000000000001000 - 0000000000006000                                       
PM: Registered nosave memory: 0000000000008000 - 0000000000010000                                       
PM: Registered nosave memory: 0000000000092000 - 00000000000a0000                                       
PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000                                       
PM: Registered nosave memory: 00000000000f0000 - 0000000000100000                                       
Allocating PCI resources starting at d0000000 (gap: cf800000:20800000)                                   
PERCPU: Allocating 49152 bytes of per cpu data                                                           
NR_CPUS: 16, nr_cpu_ids: 2, nr_node_ids 1                                                               
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 836724                             
Kernel command line: root=/dev/disk/by-uuid/7f0fb559-05ab-40f7-8a5b-22b4c46bc897 ro                     
Initializing CPU#0                                                                                       
PID hash table entries: 4096 (order: 12, 32768 bytes)                                                   
Fast TSC calibration using PIT                                                                           
Detected 2800.097 MHz processor.                                                                         
Console: colour VGA+ 80x25                                                                               
console [tty0] enabled                                                                                   
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)                                       
Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)                                         
Scanning for low memory corruption every 60 seconds                                                     
Checking aperture...                                                                                     
No AGP bridge found                                                                                     
Calgary: detecting Calgary via BIOS EBDA area                                                           
Calgary: Unable to locate Rio Grande table in EBDA - bailing!                                           
Memory: 3338772k/3399616k available (2608k kernel code, 492k absent, 59716k reserved, 1184k data, 372k init)                                                                                                     
SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1                                 
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.. 5602.53 BogoMIPS (lpj=9333656)
Security Framework initialized                                                                           
Mount-cache hash table entries: 256                                                                     
CPU: Trace cache: 12K uops, L1 D cache: 16K                                                             
CPU: L2 cache: 2048K                                                                                     
CPU: Physical Processor ID: 0                                                                           
CPU: Processor Core ID: 0                                                                               
CPU0: Thermal monitoring enabled (TM1)                                                                   
using mwait in idle threads.                                                                             
ACPI: Core revision 20080926                                                                             
ACPI: Checking initramfs for custom DSDT                                                                 
Setting APIC routing to flat                                                                             
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1                                                     
CPU0: Intel(R) Pentium(R) D CPU 2.80GHz stepping 04                                                     
Booting processor 1 APIC 0x1 ip 0x6000                                                                   
Initializing CPU#1                                                                                       
Calibrating delay using timer specific routine.. 5602.40 BogoMIPS (lpj=9333442)                         
CPU: Trace cache: 12K uops, L1 D cache: 16K                                                             
CPU: L2 cache: 2048K                                                                                     
CPU: Physical Processor ID: 0                                                                           
CPU: Processor Core ID: 1                                                                               
CPU1: Thermal monitoring enabled (TM1)                                                                   
x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106                                         
CPU1: Intel(R) Pentium(R) D CPU 2.80GHz stepping 04                                                     
checking TSC synchronization [CPU#0 -> CPU#1]: passed.                                                   
Brought up 2 CPUs                                                                                       
Total of 2 processors activated (11204.93 BogoMIPS).                                                     
net_namespace: 1384 bytes                                                                               
Booting paravirtualized kernel on bare hardware                                                         
NET: Registered protocol family 16                                                                       
ACPI: bus type pci registered                                                                           
PCI: Found Intel Corporation 945G/GZ/P/PL Express Memory Controller Hub without MMCONFIG support.       
PCI: Using configuration type 1 for base access                                                         
ACPI: EC: Look up EC in DSDT                                                                             
ACPI: Interpreter enabled                                                                               
ACPI: (supports S0 S1 S4 S5)                                                                             
ACPI: Using IOAPIC for interrupt routing                                                                 
ACPI: No dock devices found.                                                                             
ACPI: PCI Root Bridge [PCI0] (0000:00)                                                                   
pci 0000:00:01.0: PME# supported from D0 D3hot D3cold                                                   
pci 0000:00:01.0: PME# disabled                                                                         
pci 0000:00:02.0: reg 10 32bit mmio: [0xe4200000-0xe427ffff]                                             
pci 0000:00:02.0: reg 14 io port: [0xc000-0xc007]                                                       
pci 0000:00:02.0: reg 18 32bit mmio: [0xd0000000-0xdfffffff]                                             
pci 0000:00:02.0: reg 1c 32bit mmio: [0xe4280000-0xe42bffff]                                             
pci 0000:00:1b.0: reg 10 64bit mmio: [0xe42c0000-0xe42c3fff]                                             
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold                                                   
pci 0000:00:1b.0: PME# disabled                                                                         
pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold                                                   
pci 0000:00:1c.0: PME# disabled                                                                         
pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold                                                   
pci 0000:00:1c.1: PME# disabled                                                                         
pci 0000:00:1d.0: reg 20 io port: [0xb000-0xb01f]                                                       
pci 0000:00:1d.1: reg 20 io port: [0xb400-0xb41f]                                                       
pci 0000:00:1d.2: reg 20 io port: [0xb800-0xb81f]                                                       
pci 0000:00:1d.3: reg 20 io port: [0xbc00-0xbc1f]                                                       
pci 0000:00:1d.7: reg 10 32bit mmio: [0xe42c4000-0xe42c43ff]                                             
pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO                                 
pci 0000:00:1f.0: quirk: region 0480-04bf claimed by ICH6 GPIO                                           
pci 0000:00:1f.1: reg 10 io port: [0x00-0x07]                                                           
pci 0000:00:1f.1: reg 14 io port: [0x00-0x03]                                                           
pci 0000:00:1f.1: reg 18 io port: [0x00-0x07]                                                           
pci 0000:00:1f.1: reg 1c io port: [0x00-0x03]                                                           
pci 0000:00:1f.1: reg 20 io port: [0xf000-0xf00f]                                                       
pci 0000:00:1f.2: reg 10 io port: [0xd400-0xd407]                                                       
pci 0000:00:1f.2: reg 14 io port: [0xd800-0xd803]                                                       
pci 0000:00:1f.2: reg 18 io port: [0xdc00-0xdc07]                                                       
pci 0000:00:1f.2: reg 1c io port: [0xe000-0xe003]                                                       
pci 0000:00:1f.2: reg 20 io port: [0xe400-0xe40f]                                                       
pci 0000:00:1f.2: PME# supported from D3hot                                                             
pci 0000:00:1f.2: PME# disabled                                                                         
pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f]                                                         
pci 0000:01:00.0: reg 10 io port: [0x4000-0x4007]                                                       
pci 0000:01:00.0: reg 14 io port: [0x4400-0x4403]                                                       
pci 0000:01:00.0: reg 18 io port: [0x4800-0x4807]                                                       
pci 0000:01:00.0: reg 1c io port: [0x4c00-0x4c03]                                                       
pci 0000:01:00.0: reg 20 io port: [0x5000-0x500f]                                                       
pci 0000:01:00.0: reg 24 32bit mmio: [0xe4000000-0xe4001fff]                                             
pci 0000:01:00.0: PME# supported from D3hot                                                             
pci 0000:01:00.0: PME# disabled                                                                         
pci 0000:00:01.0: bridge io port: [0x4000-0x5fff]                                                       
pci 0000:00:01.0: bridge 32bit mmio: [0xe4000000-0xe40fffff]                                             
pci 0000:02:00.0: reg 10 io port: [0x6000-0x6007]                                                       
pci 0000:02:00.0: reg 14 io port: [0x6400-0x6403]                                                       
pci 0000:02:00.0: reg 18 io port: [0x6800-0x6807]                                                       
pci 0000:02:00.0: reg 1c io port: [0x6c00-0x6c03]                                                       
pci 0000:02:00.0: reg 20 io port: [0x7000-0x700f]                                                       
pci 0000:02:00.0: reg 24 32bit mmio: [0xe4100000-0xe4101fff]                                             
pci 0000:02:00.0: PME# supported from D3hot                                                             
pci 0000:02:00.0: PME# disabled                                                                         
pci 0000:00:1c.0: bridge io port: [0x6000-0x7fff]                                                       
pci 0000:00:1c.0: bridge 32bit mmio: [0xe4100000-0xe41fffff]                                             
pci 0000:03:00.0: reg 10 io port: [0x8000-0x80ff]                                                       
pci 0000:03:00.0: reg 18 64bit mmio: [0xe1000000-0xe1000fff]                                             
pci 0000:03:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]                                                 
pci 0000:03:00.0: supports D1 D2                                                                         
pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold                                                 
pci 0000:03:00.0: PME# disabled                                                                         
pci 0000:00:1c.1: bridge io port: [0x8000-0x8fff]                                                       
pci 0000:00:1c.1: bridge 32bit mmio: [0xe0000000-0xe1ffffff]                                             
pci 0000:04:00.0: reg 10 io port: [0x9000-0x9007]                                                       
pci 0000:04:00.0: reg 14 io port: [0x9400-0x9403]                                                       
pci 0000:04:00.0: reg 18 io port: [0x9800-0x9807]                                                       
pci 0000:04:00.0: reg 1c io port: [0x9c00-0x9c03]                                                       
pci 0000:04:00.0: reg 20 io port: [0xa000-0xa00f]                                                       
pci 0000:04:00.0: reg 24 32bit mmio: [0xe3000000-0xe30000ff]                                             
pci 0000:04:00.0: reg 30 32bit mmio: [0x000000-0x07ffff]                                                 
pci 0000:04:00.0: supports D1 D2                                                                         
pci 0000:00:1e.0: transparent bridge                                                                     
pci 0000:00:1e.0: bridge io port: [0x9000-0xafff]                                                       
pci 0000:00:1e.0: bridge 32bit mmio: [0xe2000000-0xe3ffffff]                                             
bus 00 -> node 0                                                                                         
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]                                                     
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]                                                 
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]                                                 
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]                                                 
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)                                       
ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 7 9 10 11 12 14 15)                                       
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)                                       
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)                                       
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)                                       
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.                         
ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.                         
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)                                       
PCI: Using ACPI for IRQ routing                                                                         
NetLabel: Initializing                                                                                   
NetLabel:  domain hash size = 128                                                                       
NetLabel:  protocols = UNLABELED CIPSOv4                                                                 
NetLabel:  unlabeled traffic allowed by default                                                         
pnp: PnP ACPI init                                                                                       
ACPI: bus type pnp registered                                                                           
pnp: PnP ACPI: found 13 devices                                                                         
ACPI: ACPI bus type pnp unregistered                                                                     
system 00:01: ioport range 0x4d0-0x4d1 has been reserved                                                 
system 00:01: ioport range 0x290-0x29f has been reserved                                                 
system 00:01: ioport range 0x800-0x87f has been reserved                                                 
system 00:01: ioport range 0x290-0x294 has been reserved                                                 
system 00:01: ioport range 0x880-0x88f has been reserved                                                 
system 00:09: ioport range 0x400-0x4bf could not be reserved                                             
system 00:0a: iomem range 0xf0000000-0xf3ffffff has been reserved                                       
system 00:0b: iomem range 0xd8200-0xdbfff has been reserved                                             
system 00:0b: iomem range 0xf0000-0xf7fff could not be reserved                                         
system 00:0b: iomem range 0xf8000-0xfbfff could not be reserved                                         
system 00:0b: iomem range 0xfc000-0xfffff could not be reserved                                         
system 00:0b: iomem range 0xcf7f0000-0xcf7fffff could not be reserved                                   
system 00:0b: iomem range 0x0-0x9ffff could not be reserved                                             
system 00:0b: iomem range 0x100000-0xcf7effff could not be reserved                                     
system 00:0b: iomem range 0xfec00000-0xfec00fff has been reserved                                       
system 00:0b: iomem range 0xfed13000-0xfed1dfff has been reserved                                       
system 00:0b: iomem range 0xfed20000-0xfed8ffff has been reserved                                       
system 00:0b: iomem range 0xfee00000-0xfee00fff has been reserved                                       
system 00:0b: iomem range 0xffb00000-0xffb7ffff has been reserved                                       
system 00:0b: iomem range 0xfff00000-0xffffffff has been reserved                                       
system 00:0b: iomem range 0xe0000-0xeffff has been reserved                                             
pci 0000:00:01.0: PCI bridge, secondary bus 0000:01                                                     
pci 0000:00:01.0:   IO window: 0x4000-0x5fff                                                             
pci 0000:00:01.0:   MEM window: 0xe4000000-0xe40fffff                                                   
pci 0000:00:01.0:   PREFETCH window: disabled                                                           
pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02                                                     
pci 0000:00:1c.0:   IO window: 0x6000-0x7fff                                                             
pci 0000:00:1c.0:   MEM window: 0xe4100000-0xe41fffff                                                   
pci 0000:00:1c.0:   PREFETCH window: disabled                                                           
pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03                                                     
pci 0000:00:1c.1:   IO window: 0x8000-0x8fff                                                             
pci 0000:00:1c.1:   MEM window: 0xe0000000-0xe1ffffff                                                   
pci 0000:00:1c.1:   PREFETCH window: 0x000000e4300000-0x000000e43fffff                                   
pci 0000:00:1e.0: PCI bridge, secondary bus 0000:04                                                     
pci 0000:00:1e.0:   IO window: 0x9000-0xafff                                                             
pci 0000:00:1e.0:   MEM window: 0xe2000000-0xe3ffffff                                                   
pci 0000:00:1e.0:   PREFETCH window: 0x000000e4400000-0x000000e44fffff                                   
pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16                                             
pci 0000:00:01.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:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17                                             
pci 0000:00:1c.1: setting latency timer to 64                                                           
pci 0000:00:1e.0: setting latency timer to 64                                                           
bus: 00 index 0 io port: [0x00-0xffff]                                                                   
bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff]                                                     
bus: 01 index 0 io port: [0x4000-0x5fff]                                                                 
bus: 01 index 1 mmio: [0xe4000000-0xe40fffff]                                                           
bus: 01 index 2 mmio: [0x0-0x0]                                                                         
bus: 01 index 3 mmio: [0x0-0x0]                                                                         
bus: 02 index 0 io port: [0x6000-0x7fff]                                                                 
bus: 02 index 1 mmio: [0xe4100000-0xe41fffff]                                                           
bus: 02 index 2 mmio: [0x0-0x0]                                                                         
bus: 02 index 3 mmio: [0x0-0x0]                                                                         
bus: 03 index 0 io port: [0x8000-0x8fff]                                                                 
bus: 03 index 1 mmio: [0xe0000000-0xe1ffffff]                                                           
bus: 03 index 2 mmio: [0xe4300000-0xe43fffff]                                                           
bus: 03 index 3 mmio: [0x0-0x0]                                                                         
bus: 04 index 0 io port: [0x9000-0xafff]                                                                 
bus: 04 index 1 mmio: [0xe2000000-0xe3ffffff]                                                           
bus: 04 index 2 mmio: [0xe4400000-0xe44fffff]                                                           
bus: 04 index 3 io port: [0x00-0xffff]                                                                   
bus: 04 index 4 mmio: [0x000000-0xffffffffffffffff]                                                     
NET: Registered protocol family 2                                                                       
IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)                                     
TCP established hash table entries: 262144 (order: 10, 4194304 bytes)                                   
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)                                             
TCP: Hash tables configured (established 262144 bind 65536)                                             
TCP reno registered                                                                                     
NET: Registered protocol family 1                                                                       
Unpacking initramfs... done                                                                             
Freeing initrd memory: 828k freed                                                                       
VFS: Disk quotas dquot_6.5.1                                                                             
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)                                               
msgmni has been set to 6523                                                                             
alg: No test for stdrng (krng)                                                                           
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)                                     
io scheduler noop registered                                                                             
io scheduler anticipatory registered                                                                     
io scheduler deadline registered                                                                         
io scheduler cfq registered (default)                                                                   
pci 0000:00:02.0: Boot video device                                                                     
pcieport-driver 0000:00:01.0: setting latency timer to 64                                               
pcieport-driver 0000:00:01.0: found MSI capability                                                       
pcieport-driver 0000:00:01.0: irq 767 for MSI/MSI-X                                                     
pci_express 0000:00:01.0:pcie00: allocate port service                                                   
pcieport-driver 0000:00:1c.0: setting latency timer to 64                                               
pcieport-driver 0000:00:1c.0: found MSI capability                                                       
pcieport-driver 0000:00:1c.0: irq 766 for MSI/MSI-X                                                     
pci_express 0000:00:1c.0:pcie00: allocate port service                                                   
pci_express 0000:00:1c.0:pcie02: allocate port service                                                   
pcieport-driver 0000:00:1c.1: setting latency timer to 64                                               
pcieport-driver 0000:00:1c.1: found MSI capability                                                       
pcieport-driver 0000:00:1c.1: irq 765 for MSI/MSI-X                                                     
pci_express 0000:00:1c.1:pcie00: allocate port service                                                   
pci_express 0000:00:1c.1:pcie02: allocate port service                                                   
Linux agpgart interface v0.103                                                                           
Serial: 8250/16550 driver4 ports, IRQ sharing disabled                                                   
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A                                                     
00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A                                                         
input: Macintosh mouse button emulation as /class/input/input0                                           
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                                                                           
cpuidle: using governor menu                                                                             
TCP cubic registered                                                                                     
NET: Registered protocol family 17                                                                       
registered taskstats version 1                                                                           
Freeing unused kernel memory: 372k freed                                                                 
SCSI subsystem initialized                                                                               
Switched to high resolution mode on CPU 1                                                               
Switched to high resolution mode on CPU 0                                                               
libata version 3.00 loaded.                                                                             
ahci 0000:01:00.0: version 3.0                                                                           
ahci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16                                           
ahci 0000:01:00.0: AHCI 0001.0000 32 slots 1 ports 3 Gbps 0x1 impl SATA mode                             
ahci 0000:01:00.0: flags: 64bit ncq pm led clo pmp pio slum part                                         
ahci 0000:01:00.0: setting latency timer to 64                                                           
scsi0 : ahci                                                                                             
ata1: SATA max UDMA/133 abar m8192@0xe4000000 port 0xe4000100 irq 16                                     
usbcore: registered new interface driver usbfs                                                           
usbcore: registered new interface driver hub                                                             
usbcore: registered new device driver usb                                                               
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver                                               
ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23                                       
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: cache line size of 128 is not supported                                           
ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe42c4000                                                         
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                                                                           
ata_piix 0000:00:1f.1: version 2.12                                                                     
ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18                                       
ata_piix 0000:00:1f.1: setting latency timer to 64                                                       
uhci_hcd: USB Universal Host Controller Interface driver                                                 
scsi1 : ata_piix                                                                                         
scsi2 : ata_piix                                                                                         
ata2: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14                                         
ata3: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15                                         
ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)                                                   
ata3: port disabled. ignoring.                                                                           
ata1.00: CFA: , 20070308, max UDMA/66                                                                   
ata1.00: 16088688 sectors, multi 0: LBA                                                                 
ata1.00: applying bridge limits                                                                         
ata1.00: configured for UDMA/66                                                                         
uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23                                       
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 23, io base 0x0000b000                                                       
usb usb2: configuration #1 chosen from 1 choice                                                         
hub 2-0:1.0: USB hub found                                                                               
hub 2-0:1.0: 2 ports detected                                                                           
ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19                                       
ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]                                                               
ata_piix 0000:00:1f.2: setting latency timer to 64                                                       
scsi 0:0:0:0: Direct-Access     ATA                       2007 PQ: 0 ANSI: 5                             
ahci 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16                                           
scsi3 : ata_piix                                                                                         
scsi4 : ata_piix                                                                                         
ata4: SATA max UDMA/133 cmd 0xd400 ctl 0xd800 bmdma 0xe400 irq 19                                       
ata5: SATA max UDMA/133 cmd 0xdc00 ctl 0xe000 bmdma 0xe408 irq 19                                       
ahci 0000:02:00.0: AHCI 0001.0000 32 slots 1 ports 3 Gbps 0x1 impl SATA mode                             
ahci 0000:02:00.0: flags: 64bit ncq pm led clo pmp pio slum part                                         
ahci 0000:02:00.0: setting latency timer to 64                                                           
scsi5 : ahci                                                                                             
ata6: SATA max UDMA/133 abar m8192@0xe4100000 port 0xe4100100 irq 16                                     
usb 1-5: new high speed USB device using ehci_hcd and address 2                                         
usb 1-5: configuration #1 chosen from 1 choice                                                           
Initializing USB Mass Storage driver...                                                                 
scsi6 : SCSI emulation for USB Mass Storage devices                                                     
usb-storage: device found at 2                                                                           
usb-storage: waiting for device to settle before scanning                                               
usbcore: registered new interface driver usb-storage                                                     
USB Mass Storage support registered.                                                                     
uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19                                       
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 19, io base 0x0000b400                                                       
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 18 (level, low) -> IRQ 18                                       
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 18, io base 0x0000b800                                                       
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 16 (level, low) -> IRQ 16                                       
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 16, io base 0x0000bc00                                                       
usb usb5: configuration #1 chosen from 1 choice                                                         
hub 5-0:1.0: USB hub found                                                                               
hub 5-0:1.0: 2 ports detected                                                                           
usb 1-6: new high speed USB device using ehci_hcd and address 3                                         
usb 1-6: configuration #1 chosen from 1 choice                                                           
hub 1-6:1.0: USB hub found                                                                               
hub 1-6:1.0: 4 ports detected                                                                           
ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)                                                   
ata6.00: CFA: , 20070831, max UDMA/133                                                                   
ata6.00: 15662304 sectors, multi 0: LBA                                                                 
ata6.00: applying bridge limits                                                                         
ata6.00: configured for UDMA/100                                                                         
ata6.00: configured for UDMA/100                                                                         
ata6: EH complete                                                                                       
scsi 5:0:0:0: Direct-Access     ATA                       2007 PQ: 0 ANSI: 5                             
Driver 'sd' needs updating - please use bus_type methods                                                 
sd 0:0:0:0: [sda] 16088688 512-byte hardware sectors: (8.23 GB/7.67 GiB)                                 
sd 0:0:0:0: [sda] Write Protect is off                                                                   
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00                                                               
sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA                 
sd 0:0:0:0: [sda] 16088688 512-byte hardware sectors: (8.23 GB/7.67 GiB)                                 
sd 0:0:0:0: [sda] Write Protect is off                                                                   
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00                                                               
sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA                 
sda:                                                                                                   
sd 0:0:0:0: [sda] Attached SCSI disk                                                                     
sd 5:0:0:0: [sdb] 15662304 512-byte hardware sectors: (8.01 GB/7.46 GiB)                                 
sd 5:0:0:0: [sdb] Write Protect is off                                                                   
sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00                                                               
sd 5:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA                 
sd 5:0:0:0: [sdb] 15662304 512-byte hardware sectors: (8.01 GB/7.46 GiB)                                 
sd 5:0:0:0: [sdb] Write Protect is off                                                                   
sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00                                                               
sd 5:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA                 
sdb: unknown partition table                                                                           
sd 5:0:0:0: [sdb] Attached SCSI disk                                                                     
usb 1-6.1: new low speed USB device using ehci_hcd and address 4                                         
usb 1-6.1: configuration #1 chosen from 1 choice                                                         
usb 1-6.2: new full speed USB device using ehci_hcd and address 5                                       
usb 1-6.2: configuration #1 chosen from 1 choice                                                         
usb 1-6.3: new low speed USB device using ehci_hcd and address 6                                         
usb 1-6.3: configuration #1 chosen from 1 choice                                                         
isa bounce pool size: 16 pages                                                                           
scsi 6:0:0:0: Direct-Access     WDC WD30 7AA-00BAA0            PQ: 0 ANSI: 0                             
sd 6:0:0:0: [sdc] 60074784 512-byte hardware sectors: (30.7 GB/28.6 GiB)                                 
sd 6:0:0:0: [sdc] Write Protect is off                                                                   
sd 6:0:0:0: [sdc] Mode Sense: 33 00 00 00                                                               
sd 6:0:0:0: [sdc] Assuming drive cache: write through                                                   
sd 6:0:0:0: [sdc] 60074784 512-byte hardware sectors: (30.7 GB/28.6 GiB)                                 
sd 6:0:0:0: [sdc] Write Protect is off                                                                   
sd 6:0:0:0: [sdc] Mode Sense: 33 00 00 00                                                               
sd 6:0:0:0: [sdc] Assuming drive cache: write through                                                   
sdc: sdc1 sdc2 sdc3 sdc4                                                                               
sd 6:0:0:0: [sdc] Attached SCSI disk                                                                     
usb-storage: device scan complete                                                                       
EXT4-fs: barriers enabled                                                                               
kjournald2 starting.  Commit interval 5 seconds                                                         
EXT4-fs: delayed allocation enabled                                                                     
EXT4-fs: file extents enabled                                                                           
EXT4-fs: mballoc enabled                                                                                 
EXT4-fs: mounted filesystem with ordered data mode.                                                     
rtc_cmos 00:03: RTC can wake from S4                                                                     
rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0                                                   
rtc0: alarms up to one month, 242 bytes nvram, hpet irqs                                                 
usbcore: registered new interface driver snd-usb-audio                                                   
input: Power Button (FF) as /class/input/input1                                                         
ACPI: Power Button (FF) [PWRF]                                                                           
input: Power Button (CM) as /class/input/input2                                                         
ACPI: Power Button (CM) [PWRB]                                                                           
processor ACPI_CPU:00: registered as cooling_device0                                                     
ACPI: Processor [CPU0] (supports 8 throttling states)                                                   
ACPI: SSDT CF7F7000, 0087 (r1  PmRef  Cpu1Ist     3000 INTL 20040311)                                   
processor ACPI_CPU:01: registered as cooling_device1                                                     
ACPI: Processor [CPU1] (supports 8 throttling states)                                                   
sd 0:0:0:0: Attached scsi generic sg0 type 0                                                             
sd 5:0:0:0: Attached scsi generic sg1 type 0                                                             
sd 6:0:0:0: Attached scsi generic sg2 type 0                                                             
IT8718 SuperIO detected.                                                                                 
parport_pc 00:08: reported by Plug and Play ACPI                                                         
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]                                                     
PPP generic driver version 2.4.2                                                                         
ppdev: user-space parallel port driver                                                                   
lp0: using parport0 (interrupt-driven).                                                                 
input: PC Speaker as /class/input/input3                                                                 
agpgart-intel 0000:00:00.0: Intel 945G Chipset                                                           
agpgart-intel 0000:00:00.0: detected 7932K stolen memory                                                 
agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000                                           
intel_rng: FWH not detected                                                                             
Uniform Multi-Platform E-IDE driver                                                                     
SiI_IDE 0000:04:00.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20                                         
siimage 0000:04:00.0: IDE controller (0x1095:0x0680 rev 0x02)                                           
siimage 0000:04:00.0: BASE CLOCK == 133                                                                 
siimage 0000:04:00.0: 100% native mode on irq 20                                                         
    ide0: MMIO-DMA                                                                                       
    ide1: MMIO-DMA                                                                                       
Probing IDE interface ide0...                                                                           
Error: Driver 'pcspkr' is already registered, aborting...                                               
HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16                                       
HDA Intel 0000:00:1b.0: setting latency timer to 64                                                     
usbcore: registered new interface driver hiddev                                                         
input: Chicony Saitek Eclipse II Keyboard as /class/input/input4                                         
r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded                                                         
r8169 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17                                           
r8169 0000:03:00.0: setting latency timer to 64                                                         
r8169 0000:03:00.0: irq 764 for MSI/MSI-X                                                               
eth0: RTL8101e at 0xffffc20000032000, 00:1d:7d:c1:af:ac, XID 34000000 IRQ 764                           
i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19                                     
generic-usb 0003:06A3:8021.0001: input,hidraw0: USB HID v1.11 Keyboard [Chicony Saitek Eclipse II Keyboard] on usb-0000:00:1d.7-6.1/input0                                                                       
iTCO_vendor_support: vendor-support=0                                                                   
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05                                                         
iTCO_wdt: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0460)                                   
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)                                                     
input: Chicony Saitek Eclipse II Keyboard as /class/input/input5                                         
generic-usb 0003:06A3:8021.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Chicony Saitek Eclipse II Keyboard] on usb-0000:00:1d.7-6.1/input1                                                                 
input: USB Audio as /class/input/input6                                                                 
generic-usb 0003:0C45:17C8.0003: input,hidraw2: USB HID v1.00 Device [USB Audio] on usb-0000:00:1d.7-6.2/input2                                                                                                   
input: Logitech USB-PS/2 Optical Mouse as /class/input/input7                                           
generic-usb 0003:046D:C00E.0004: input,hidraw3: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.7-6.3/input0                                                                             
usbcore: registered new interface driver usbhid                                                         
usbhid: v2.6:USB HID core driver                                                                         
Probing IDE interface ide1...                                                                           
hdc: CF 8GB, CFA DISK drive                                                                             
hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO2                                               
hdc: UDMA/66 mode selected                                                                               
ide0 at 0xffffc2000006e080-0xffffc2000006e087,0xffffc2000006e08a on irq 20
ide1 at 0xffffc2000006e0c0-0xffffc2000006e0c7,0xffffc2000006e0ca on irq 20
ide-gd driver 1.18
hdc: max request size: 64KiB
hdc: 15924384 sectors (8153 MB) w/1KiB Cache, CHS=15798/16/63
hdc: unknown partition table
EXT4 FS on sdc3, internal journal on sdc3:8
EXT4-fs: barriers enabled
kjournald2 starting.  Commit interval 5 seconds
EXT4 FS on sdc4, internal journal on sdc4:8
EXT4-fs: delayed allocation enabled
EXT4-fs: file extents enabled
EXT4-fs: mballoc enabled
EXT4-fs: mounted filesystem with ordered data mode.
Adding 530136k swap on /dev/sdc2.  Priority:-1 extents:1 across:530136k
r8169: eth0: link up
r8169: eth0: link up
[drm] Initialized drm 1.1.0 20060810
pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:02.0: setting latency timer to 64
[drm] Initialized i915 1.6.0 20080730 on minor 0
X:2455 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus
reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining
X:2455 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus
reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining
X:2481 freeing invalid memtype d0000000-e0000000
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
eth0: no IPv6 routers present
bash-3.2#


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#13 2009-03-05 23:47:53

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

My oops, the 40 GB drive is actually a 30GB drive with ext4.


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#14 2009-03-07 01:51:07

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: ID for drive in pci adapter(Solved with dual pci-e adapter)

Solution was to enable the pci-e slots to run the raid0 drives by installing a dual SATAII SIIG pci-e card in pci-e 16x slot.  A third port is supplied by a jmb360 card in the pci-e 1x slot

This enabled the system to properly recognize the three SATAII drives since they are controlled by the same clock.

Previous connections were to a pci slot via an IDE adapter which produced varied results in ID for the raid0 drives probably due to the delays in the IDE adapter which translates the 33mhz clock for pci to 133mhz max.

The two pci-e slots have the same 100mhz clock.

The ID for the drives is consistent in all boots with this new arrangement.

Thanks to byte for his comments and it seems it is now solved.


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

Board footer

Powered by FluxBB