LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   samba is changing mount points? (https://www.linuxquestions.org/questions/linux-software-2/samba-is-changing-mount-points-658343/)

Clemente 08-03-2008 10:41 AM

That's strange. Your netio report does show some network trouble, the connection between low network speed and changing device files direct towards some sata trouble.

Due to your observations, I do prefer latter.

I found this dug report: Bug 224969. It describes your observations quite well.

To start somewhere - can you please post or mail the output of dmesg (could be quite large) in low-performance and high-performance mode?

What mainboard do you use in your server?
Are your disks really sata disks?
Do you use onboard controller or some pci o.s. extensions?
Does your BIOS offer any options concerning sata - e.g. mapping some devices to ide port 0 or 1 or similar? If yes, what configuration is in use currently?

You might guess - it's a kind of needle haystack thing for me... If any hardware freak reading this thread - err - assistance is very welcome. ;-)

Greet-o-mente

ThunderRd 08-03-2008 11:32 AM

Quote:

Originally Posted by Clemente (Post 3235190)
To start somewhere - can you please post or mail the output of dmesg (could be quite large) in low-performance and high-performance mode?

dmesg_normal is attached. Will post dmesg_slow when available.

Quote:

Originally Posted by Clemente (Post 3235190)
What mainboard do you use in your server?

ASUS A8N32-SLI mainboard.


Quote:

Originally Posted by Clemente (Post 3235190)
Are your disks really sata disks?

The two storage disks are; the disk for Linux, and the disk for XP, are not. The two disks for the OSes are on the IDE primary channel. The two storage drives are on SATA 1 and SATA 2 ports.

Quote:

Originally Posted by Clemente (Post 3235190)
Do you use onboard controller or some pci o.s. extensions?

Onboard.

Quote:

Originally Posted by Clemente (Post 3235190)
Does your BIOS offer any options concerning sata - e.g. mapping some devices to ide port 0 or 1 or similar? If yes, what configuration is in use currently?

Can't find any options of that type.

You've been a great help. It's not a major problem now that I know what to look for...it's more a matter of convenience-and a bit of knowledge that I'm after ;)

jiml8 08-03-2008 12:08 PM

Your mounting problem is a strange one. I have never seen this happen, and won't offer any opinion on WHY it happens. Probably a race condition in your hardware and sometimes HAL picks up one controller first, sometimes the other one.

However the fact that it DOES happen seems to somehow be at the root of your problem.

Seems to be time for a patch to fix it, even if it isn't a fundamental solution.

If you make yourself a table of desired device name (eg /dev/sdnn) mapped to the matching UUID, then you could write a script or program ( I would probably do it in either perl or C depending on my mood) that could be run from your init scripts right after udev runs to look at the assignments and, if necessary, change them.

If it is not mounted, you can change the assignment between two drives like this:

mv /dev/sda /dev/sdz
mv /dev/sdb /dev/sda
mv /dev/sdz /dev/sdb

Do that with all drives/partitions, then let them mount. Alternatively, at the end of the startup (but before starting samba) run this check and if necessary dismount everything, change it, and remount.

You also should store a copy of your desired fstab; I will bet that your fstab is being regenerated on each boot and when the configuration is wrong so is the fstab.

edit: After reading the ubuntu bug report, another idea occurs to me. I know this can be done, though I don't know offhand HOW it can be done, but you can specify driver dependencies.

Your problem clearly has to do with the order that device drivers are being loaded in the kernel, and usually this order will be on a first-come, first-serve basis for devices. So what would happen if you specify a dependency for the controller driver that you want loaded last, such that it can't load until the driver you want loaded first is loaded?

ThunderRd 08-04-2008 12:33 AM

Quote:

Originally Posted by jiml8 (Post 3235265)
Your problem clearly has to do with the order that device drivers are being loaded in the kernel, and usually this order will be on a first-come, first-serve basis for devices. So what would happen if you specify a dependency for the controller driver that you want loaded last, such that it can't load until the driver you want loaded first is loaded?

I have already reckoned that the load sequence is involved somehow, but can't seem to reliably reproduce the problem. It just simply isn't predictable, at least as far as I can see. It's hit or miss.

This sounds like a more elegant solution than the script; I'll do some homework and see what I can come up with. The first thing to investigate would be which controller I want to load first. I'd think it would be the IDE controller, followed by the SATA controller, no?

Does anyone out there have any more thoughts on this, and how to implement it?

ThunderRd 08-04-2008 06:04 AM

I forgot to attach dmesg before. Here is first part of 2

Code:

thunderrd@OPTERON-185:~$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.24-19-generic (buildd@king) (gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)) #1 SMP Fri Jul 11 21:01:46 UTC 2008 (Ubuntu 2.6.24-19.36-generic)
[    0.000000] Command line: root=UUID=e4e7a3e8-1a47-434d-89b9-27791d79be88 ro splash
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009bc00 (usable)
[    0.000000]  BIOS-e820: 000000000009bc00 - 000000000009c000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e9b90 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007ffb0000 (usable)
[    0.000000]  BIOS-e820: 000000007ffb0000 - 000000007ffbe000 (ACPI data)
[    0.000000]  BIOS-e820: 000000007ffbe000 - 000000007ffe0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007ffe0000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff700000 - 0000000100000000 (reserved)
[    0.000000] Entering add_active_range(0, 0, 155) 0 entries of 3200 used
[    0.000000] Entering add_active_range(0, 256, 524208) 1 entries of 3200 used
[    0.000000] end_pfn_map = 1048576
[    0.000000] DMI 2.3 present.
[    0.000000] ACPI: RSDP signature @ 0xFFFF8100000FB520 checksum 0
[    0.000000] ACPI: RSDP 000FB520, 0024 (r2 ACPIAM)
[    0.000000] ACPI: XSDT 7FFB0100, 0044 (r1 A_M_I_ OEMXSDT  1000708 MSFT      97)
[    0.000000] ACPI: FACP 7FFB0290, 00F4 (r3 A_M_I_ OEMFACP  1000708 MSFT      97)
[    0.000000] ACPI: DSDT 7FFB0440, 6A82 (r1  A0371 A0371001        1 INTL  2002026)
[    0.000000] ACPI: FACS 7FFBE000, 0040
[    0.000000] ACPI: APIC 7FFB0390, 0070 (r1 A_M_I_ OEMAPIC  1000708 MSFT      97)
[    0.000000] ACPI: MCFG 7FFB0400, 003C (r1 A_M_I_ OEMMCFG  1000708 MSFT      97)
[    0.000000] ACPI: OEMB 7FFBE040, 0056 (r1 A_M_I_ AMI_OEM  1000708 MSFT      97)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] CPU has 2 num_cores
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-000000007ffb0000
[    0.000000] Entering add_active_range(0, 0, 155) 0 entries of 3200 used
[    0.000000] Entering add_active_range(0, 256, 524208) 1 entries of 3200 used
[    0.000000] Bootmem setup node 0 0000000000000000-000000007ffb0000
[    0.000000] Zone PFN ranges:
[    0.000000]  DMA            0 ->    4096
[    0.000000]  DMA32        4096 ->  1048576
[    0.000000]  Normal    1048576 ->  1048576
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]    0:        0 ->      155
[    0.000000]    0:      256 ->  524208
[    0.000000] On node 0 totalpages: 524107
[    0.000000]  DMA zone: 56 pages used for memmap
[    0.000000]  DMA zone: 1220 pages reserved
[    0.000000]  DMA zone: 2719 pages, LIFO batch:0
[    0.000000]  DMA32 zone: 7110 pages used for memmap
[    0.000000]  DMA32 zone: 513002 pages, LIFO batch:31
[    0.000000]  Normal zone: 0 pages used for memmap
[    0.000000]  Movable zone: 0 pages used for memmap
[    0.000000] Nvidia board detected. Ignoring ACPI timer override.
[    0.000000] If you got timer trouble try acpi_use_timer_override
[    0.000000] ACPI: PM-Timer IO Port: 0x508
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] Processor #0 (Bootup-CPU)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] Processor #1
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Setting APIC routing to flat
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] swsusp: Registered nosave memory region: 000000000009b000 - 000000000009c000
[    0.000000] swsusp: Registered nosave memory region: 000000000009c000 - 00000000000ea000
[    0.000000] swsusp: Registered nosave memory region: 00000000000ea000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 88000000 (gap: 80000000:7ec00000)
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] PERCPU: Allocating 34656 bytes of per cpu data
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 515721
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: root=UUID=e4e7a3e8-1a47-434d-89b9-27791d79be88 ro splash
[    0.000000] Initializing CPU#0
[    0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[    0.000000] Extended CMOS year: 2000
[    0.000000] TSC calibrated against PM_TIMER
[  15.873513] Marking TSC unstable due to TSCs unsynchronized
[  15.873514] time.c: Detected 2952.132 MHz processor.
[  15.875603] Console: colour VGA+ 80x25
[  15.875605] console [tty0] enabled
[  15.879158] Checking aperture...
[  15.879208] CPU 0: aperture @ ce78000000 size 32 MB
[  15.879258] Aperture too small (32 MB)
[  15.884944] No AGP bridge found
[  15.906541] Memory: 2054852k/2096832k available (2489k kernel code, 41576k reserved, 1318k data, 320k init)
[  15.906638] SLUB: Genslabs=12, HWalign=64, Order=0-1, MinObjects=4, CPUs=2, Nodes=1
[  15.983231] Calibrating delay using timer specific routine.. 5908.05 BogoMIPS (lpj=11816112)
[  15.983357] Security Framework initialized
[  15.983410] SELinux:  Disabled at boot.
[  15.983470] AppArmor: AppArmor initialized
[  15.983521] Failure registering capabilities with primary security module.
[  15.983689] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[  15.985330] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[  15.986123] Mount-cache hash table entries: 256
[  15.986291] Initializing cgroup subsys ns
[  15.986343] Initializing cgroup subsys cpuacct
[  15.986402] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[  15.986456] CPU: L2 Cache: 1024K (64 bytes/line)
[  15.986506] CPU 0/0 -> Node 0
[  15.986555] CPU: Physical Processor ID: 0
[  15.986604] CPU: Processor Core ID: 0
[  15.986668] SMP alternatives: switching to UP code
[  15.987174] Early unpacking initramfs... done
[  16.203638] ACPI: Core revision 20070126
[  16.203736] ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
[  16.246210] Using local APIC timer interrupts.
[  16.280051] APIC timer calibration result 15375677
[  16.280052] Detected 15.375 MHz APIC timer.
[  16.280175] SMP alternatives: switching to SMP code
[  16.280593] Booting processor 1/2 APIC 0x1
[  16.291128] Initializing CPU#1
[  16.368160] Calibrating delay using timer specific routine.. 5904.26 BogoMIPS (lpj=11808529)
[  16.368165] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[  16.368166] CPU: L2 Cache: 1024K (64 bytes/line)
[  16.368168] CPU 1/1 -> Node 0
[  16.368169] CPU: Physical Processor ID: 0
[  16.368170] CPU: Processor Core ID: 1
[  16.368255] Dual Core AMD Opteron(tm) Processor 185 stepping 02
[  16.368082] Brought up 2 CPUs
[  16.368614] CPU0 attaching sched-domain:
[  16.368616]  domain 0: span 03
[  16.368617]  groups: 01 02
[  16.368619]  domain 1: span 03
[  16.368620]    groups: 03
[  16.368621] CPU1 attaching sched-domain:
[  16.368622]  domain 0: span 03
[  16.368623]  groups: 02 01
[  16.368624]  domain 1: span 03
[  16.368625]    groups: 03
[  16.368776] net_namespace: 120 bytes
[  16.369110] Time: 15:50:08  Date: 08/02/08
[  16.369181] NET: Registered protocol family 16
[  16.369364] ACPI: bus type pci registered
[  16.369461] PCI: Using configuration type 1
[  16.371329] ACPI: EC: Look up EC in DSDT
[  16.376101] ACPI: Interpreter enabled
[  16.376151] ACPI: (supports S0 S1 S3 S4 S5)
[  16.376381] ACPI: Using IOAPIC for interrupt routing
[  16.383664] ACPI: PCI Root Bridge [PCI0] (0000:00)
[  16.384435] PCI: Transparent bridge - 0000:00:12.0
[  16.384588] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[  16.384762] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB2P._PRT]
[  16.384857] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE0._PRT]
[  16.384918] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE1._PRT]
[  16.384981] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
[  16.385042] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE3._PRT]
[  16.385104] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE4._PRT]
[  16.392813] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *10
[  16.393237] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled.
[  16.393695] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
[  16.394152] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *0, disabled.
[  16.394612] ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *10
[  16.395034] ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *10
[  16.395456] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *10
[  16.395879] ACPI: PCI Interrupt Link [LACI] (IRQs 20 21 22 23) *10
[  16.396302] ACPI: PCI Interrupt Link [LMC9] (IRQs 20 21 22 23) *0, disabled.
[  16.396758] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *10
[  16.397181] ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *11
[  16.397607] ACPI: PCI Interrupt Link [LSA1] (IRQs 20 21 22 23) *11
[  16.398059] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
[  16.398467] ACPI Warning (tbutils-0217): Incorrect checksum in table [OEMB] -  EB, should be BE [20070126]
[  16.398604] Linux Plug and Play Support v0.97 (c) Adam Belay
[  16.398674] pnp: PnP ACPI init
[  16.398727] ACPI: bus type pnp registered
[  16.403545] pnp: PnP ACPI: found 15 devices
[  16.403595] ACPI: ACPI bus type pnp unregistered
[  16.403803] PCI: Using ACPI for IRQ routing
[  16.403854] PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
[  16.415790] NET: Registered protocol family 8
[  16.415840] NET: Registered protocol family 20
[  16.415972] AppArmor: AppArmor Filesystem Enabled
[  16.427765] system 00:08: ioport range 0x4d0-0x4d1 has been reserved
[  16.427818] system 00:08: ioport range 0x800-0x80f has been reserved
[  16.427871] system 00:08: ioport range 0x500-0x57f has been reserved
[  16.427924] system 00:08: ioport range 0x580-0x5ff has been reserved
[  16.427977] system 00:08: ioport range 0x800-0x87f could not be reserved
[  16.428030] system 00:08: ioport range 0x880-0x8ff has been reserved
[  16.428083] system 00:08: ioport range 0x900-0x97f has been reserved
[  16.428136] system 00:08: ioport range 0x980-0x9ff has been reserved
[  16.428189] system 00:08: iomem range 0xfee01000-0xfeefffff has been reserved
[  16.428243] system 00:08: iomem range 0xfefff000-0xfeffffff has been reserved
[  16.428296] system 00:08: iomem range 0xffb00000-0xfffeffff could not be reserved
[  16.428360] system 00:08: iomem range 0xfff00000-0xffffffff could not be reserved
[  16.428426] system 00:09: iomem range 0xfec00000-0xfec00fff could not be reserved
[  16.428490] system 00:09: iomem range 0xfee00000-0xfee00fff could not be reserved
[  16.428556] system 00:0c: ioport range 0xc00-0xc0f has been reserved
[  16.428609] system 00:0c: ioport range 0xd00-0xd0f has been reserved
[  16.428662] system 00:0c: ioport range 0xa20-0xa2f has been reserved
[  16.428715] system 00:0c: ioport range 0xa30-0xa3f has been reserved
[  16.428769] system 00:0d: iomem range 0xe0000000-0xefffffff has been reserved
[  16.428825] system 00:0e: iomem range 0x0-0x9ffff could not be reserved
[  16.428879] system 00:0e: iomem range 0xc0000-0xcffff has been reserved
[  16.428932] system 00:0e: iomem range 0xe0000-0xfffff could not be reserved
[  16.428985] system 00:0e: iomem range 0x100000-0x7fffffff could not be reserved
[  16.429049] system 00:0e: iomem range 0x0-0x0 could not be reserved
[  16.429345] PCI: Bridge: 0000:00:02.0
[  16.429394]  IO window: disabled.
[  16.429444]  MEM window: disabled.
[  16.429493]  PREFETCH window: disabled.
[  16.429543] PCI: Bridge: 0000:00:03.0
[  16.429591]  IO window: disabled.
[  16.429640]  MEM window: disabled.
[  16.429689]  PREFETCH window: disabled.
[  16.431163] PCI: Bridge: 0000:00:04.0
[  16.431212]  IO window: disabled.
[  16.431261]  MEM window: ddf00000-dfffffff
[  16.431311]  PREFE c0TCH window:000000-cfffffff
[  16.431362] PCI: Bridge: 0000:00:12.0
[  16.431411]  IO window: disabled.
[  16.431460]  MEM window: disabled.
[  16.431510]  PREFETCH window: disabled.
[  16.431560] PCI: Bridge: 0000:00:16.0
[  16.431608]  IO window: disabled.
[  16.431658]  MEM window: disabled.
[  16.431707]  PREFETCH window: disabled.
[  16.431759] Time: acpi_pm clocksource has been installed.
[  16.431822] Switched to high resolution mode on CPU 0
[  16.431826] PCI: Bridge: 0000:00:17.0
[  16.432121] Switched to high resolution mode on CPU 1
[  16.431878]  IO window: disabled.
[  16.431927]  MEM window: disabled.
[  16.431976]  PREFETCH window: disabled.


ThunderRd 08-04-2008 06:05 AM

And the second part of 2:
Code:

[  16.432038] PCI: Setting latency timer of device 0000:00:03.0 to 64
[  16.432042] PCI: Setting latency timer of device 0000:00:04.0 to 64
[  16.432045] PCI: Setting latency timer of device 0000:00:12.0 to 64
[  16.432050] PCI: Setting latency timer of device 0000:00:16.0 to 64
[  16.432054] PCI: Setting latency timer of device 0000:00:17.0 to 64
[  16.432091] NET: Registered protocol family 2
[  16.471714] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[  16.472426] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[  16.475824] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[  16.476620] TCP: Hash tables configured (established 262144 bind 65536)
[  16.476676] TCP reno registered
[  16.487724] checking if image is initramfs... it is
[  16.909872] Freeing initrd memory: 7821k freed
[  16.915484] audit: initializing netlink socket (disabled)
[  16.915550] audit(1217692208.020:1): initialized
[  16.917111] VFS: Disk quotas dquot_6.5.1
[  16.917207] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[  16.917337] io scheduler noop registered
[  16.917386] io scheduler anticipatory registered
[  16.917437] io scheduler deadline registered
[  16.917559] io scheduler cfq registered (default)
[  16.917617] pci 0000:00:00.0: Enabling HT MSI Mapping
[  16.917689] pci 0000:00:02.0: Enabling HT MSI Mapping
[  16.917744] pci 0000:00:03.0: Enabling HT MSI Mapping
[  16.917800] pci 0000:00:04.0: Enabling HT MSI Mapping
[  16.917859] pci 0000:00:09.0: Enabling HT MSI Mapping
[  17.442905] pci 0000:00:16.0: Enabling HT MSI Mapping
[  17.442967] PCI: Found enabled HT MSI Mapping on 0000:00:16.0
[  17.443024] pci 0000:00:17.0: Enabling HT MSI Mapping
[  17.443079] PCI: Found enabled HT MSI Mapping on 0000:00:17.0
[  17.443139] Boot video device is 0000:03:00.0
[  17.443296] PCI: Setting latency timer of device 0000:00:02.0 to 64
[  17.443312] assign_interrupt_mode Found MSI capability
[  17.443376] Allocate Port Service[0000:00:02.0:pcie00]
[  17.443428] PCI: Setting latency timer of device 0000:00:03.0 to 64
[  17.443442] assign_interrupt_mode Found MSI capability
[  17.443503] Allocate Port Service[0000:00:03.0:pcie00]
[  17.443548] PCI: Setting latency timer of device 0000:00:04.0 to 64
[  17.443562] assign_interrupt_mode Found MSI capability
[  17.443623] Allocate Port Service[0000:00:04.0:pcie00]
[  17.443669] PCI: Setting latency timer of device 0000:00:16.0 to 64
[  17.443687] assign_interrupt_mode Found MSI capability
[  17.443749] Allocate Port Service[0000:00:16.0:pcie00]
[  17.443797] PCI: Setting latency timer of device 0000:00:17.0 to 64
[  17.443815] assign_interrupt_mode Found MSI capability
[  17.443877] Allocate Port Service[0000:00:17.0:pcie00]
[  17.463927] Real Time Clock Driver v1.12ac
[  17.464056] Linux agpgart interface v0.102
[  17.464106] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
[  17.464278] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[  17.464718] 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[  17.465337] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[  17.465750] input: Macintosh mouse button emulation as /devices/virtual/input/input0
[  17.465877] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[  17.465930] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[  17.466326] serio: i8042 KBD port at 0x60,0x64 irq 1
[  17.482423] mice: PS/2 mouse device common for all mice
[  17.482504] cpuidle: using governor ladder
[  17.482559] cpuidle: using governor menu
[  17.482712] NET: Registered protocol family 1
[  17.482841] registered taskstats version 1
[  17.483004]  Magic number: 4:539:840
[  17.483087]  hash matches device ptyu6
[  17.483169] /build/buildd/linux-2.6.24/drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[  17.483235] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[  17.483287] EDD information not available.
[  17.483347] Freeing unused kernel memory: 320k freed
[  17.518756] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[  18.650474] fuse init (API version 7.9)
[  18.675443] ACPI: Processor [CPU1] (supports 8 throttling states)
[  19.031763] usbcore: registered new interface driver usbfs
[  19.031784] usbcore: registered new interface driver hub
[  19.031954] SCSI subsystem initialized
[  19.034255] usbcore: registered new device driver usb
[  19.098557] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[  19.098794] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 23
[  19.098803] ACPI: PCI Interrupt 0000:00:13.0[A] -> Link [LMAC] -> GSI 23 (level, low) -> IRQ 23
[  19.098807] PCI: Setting latency timer of device 0000:00:13.0 to 64
[  19.106051] Floppy drive(s): fd0 is 1.44M
[  19.115663] libata version 3.00 loaded.
[  19.115929] ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
[  19.134937] FDC 0 is a post-1991 82077
[  19.617230] forcedeth 0000:00:13.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:07:9a:fc
[  19.617235] forcedeth 0000:00:13.0: highdma csum timirq gbit lnktim desc-v3
[  19.617582] ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 22
[  19.617590] ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUB0] -> GSI 22 (level, low) -> IRQ 22
[  19.617946] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[  19.617951] ohci_hcd 0000:00:0b.0: OHCI Host Controller
[  19.618185] ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 1
[  19.618203] ohci_hcd 0000:00:0b.0: irq 22, io mem 0xddefe000
[  19.673861] usb usb1: configuration #1 chosen from 1 choice
[  19.673878] hub 1-0:1.0: USB hub found
[  19.673883] hub 1-0:1.0: 10 ports detected
[  19.775883] ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 21
[  19.775891] ACPI: PCI Interrupt 0000:00:0b.1[B] -> Link [LUB2] -> GSI 21 (level, low) -> IRQ 21
[  19.776200] PCI: Setting latency timer of device 0000:00:0b.1 to 64
[  19.776205] ehci_hcd 0000:00:0b.1: EHCI Host Controller
[  19.776261] ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 2
[  19.776288] ehci_hcd 0000:00:0b.1: debug port 1
[  19.776290] PCI: cache line size of 64 is not supported by device 0000:00:0b.1
[  19.776300] ehci_hcd 0000:00:0b.1: irq 21, io mem 0xddeffc00
[  19.788473] ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[  19.788555] usb usb2: configuration #1 chosen from 1 choice
[  19.788571] hub 2-0:1.0: USB hub found
[  19.788574] hub 2-0:1.0: 10 ports detected
[  19.893281] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[  19.893527] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 20
[  19.893535] ACPI: PCI Interrupt 0000:00:10.0[A] -> Link [LSA0] -> GSI 20 (level, low) -> IRQ 20
[  19.893547] PCI: Setting latency timer of device 0000:00:10.0 to 64
[  19.893552] ACPI: PCI interrupt for device 0000:00:10.0 disabled
[  19.893742] ACPI: PCI Interrupt Link [LSA1] enabled at IRQ 23
[  19.893744] ACPI: PCI Interrupt 0000:00:11.0[A] -> Link [LSA1] -> GSI 23 (level, low) -> IRQ 23
[  19.893755] PCI: Setting latency timer of device 0000:00:11.0 to 64
[  19.893759] ACPI: PCI interrupt for device 0000:00:11.0 disabled
[  19.895487] pata_amd 0000:00:0f.0: version 0.3.10
[  19.895503] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[  19.898790] scsi0 : pata_amd
[  19.900969] scsi1 : pata_amd
[  19.901857] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[  19.901859] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[  20.238755] ata1.00: ATA-6: ST340014A, 3.04, max UDMA/100
[  20.238757] ata1.00: 78165360 sectors, multi 16: LBA48
[  20.239214] ata1.01: ATA-6: ST340014A, 3.04, max UDMA/100
[  20.239216] ata1.01: 78165360 sectors, multi 16: LBA48
[  20.254638] ata1.00: configured for UDMA/100
[  20.270580] ata1.01: configured for UDMA/100
[  20.422846] usb 1-3: new low speed USB device using ohci_hcd and address 2
[  20.636434] usb 1-3: configuration #1 chosen from 1 choice
[  20.646755] usbcore: registered new interface driver hiddev
[  20.652437] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:0b.0/usb1/1-3/1-3:1.0/input/input2
[  20.670236] input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:0b.0-3
[  20.670244] usbcore: registered new interface driver usbhid
[  20.670246] /build/buildd/linux-2.6.24/drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
[  20.936832] ata2.00: ATAPI: ASUS    DRW-1608P3S, 1.06, max UDMA/66
[  20.936845] ata2.01: ATAPI: LITE-ON DVDRW SHM-165P6S, MS0K, max UDMA/66
[  20.936852] ata2.01: limited to UDMA/33 due to 40-wire cable
[  21.109319] ata2.00: configured for UDMA/66
[  21.295801] ata2.01: configured for UDMA/33
[  21.295884] scsi 0:0:0:0: Direct-Access    ATA      ST340014A        3.04 PQ: 0 ANSI: 5
[  21.295948] scsi 0:0:1:0: Direct-Access    ATA      ST340014A        3.04 PQ: 0 ANSI: 5
[  21.302054] scsi 1:0:0:0: CD-ROM            ASUS    DRW-1608P3S      1.06 PQ: 0 ANSI: 5
[  21.303900] scsi 1:0:1:0: CD-ROM            LITE-ON  DVDRW SHM-165P6S MS0K PQ: 0 ANSI: 5
[  21.304033] sata_nv 0000:00:10.0: version 3.5
[  21.304043] ACPI: PCI Interrupt 0000:00:10.0[A] -> Link [LSA0] -> GSI 20 (level, low) -> IRQ 20
[  21.304046] sata_nv 0000:00:10.0: Using ADMA mode
[  21.304456] PCI: Setting latency timer of device 0000:00:10.0 to 64
[  21.304784] scsi2 : sata_nv
[  21.304836] scsi3 : sata_nv
[  21.304949] ata3: SATA max UDMA/133 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 20
[  21.304951] ata4: SATA max UDMA/133 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 20
[  21.308257] Driver 'sd' needs updating - please use bus_type methods
[  21.308327] sd 0:0:0:0: [sda] 78165360 512-byte hardware sectors (40021 MB)
[  21.308335] sd 0:0:0:0: [sda] Write Protect is off
[  21.308337] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[  21.308348] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  21.308381] sd 0:0:0:0: [sda] 78165360 512-byte hardware sectors (40021 MB)
[  21.308387] sd 0:0:0:0: [sda] Write Protect is off
[  21.308388] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[  21.308396] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  21.308399]  sda:<4>Driver 'sr' needs updating - please use bus_type methods
[  21.316967]  sda1 sda2
[  21.317021] sd 0:0:0:0: [sda] Attached SCSI disk
[  21.317070] sd 0:0:1:0: [sdb] 78165360 512-byte hardware sectors (40021 MB)
[  21.317079] sd 0:0:1:0: [sdb] Write Protect is off
[  21.317081] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[  21.317092] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  21.317128] sd 0:0:1:0: [sdb] 78165360 512-byte hardware sectors (40021 MB)
[  21.317134] sd 0:0:1:0: [sdb] Write Protect is off
[  21.317136] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[  21.317146] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  21.317148]  sdb: sdb1 sdb2 < sdb5 >
[  21.362747] sd 0:0:1:0: [sdb] Attached SCSI disk
[  21.365866] sd 0:0:0:0: Attached scsi generic sg0 type 0
[  21.365880] sd 0:0:1:0: Attached scsi generic sg1 type 0
[  21.365891] sr 1:0:0:0: Attached scsi generic sg2 type 5
[  21.365903] scsi 1:0:1:0: Attached scsi generic sg3 type 5
[  21.395939] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[  21.395944] Uniform CD-ROM driver Revision: 3.20
[  21.395989] sr 1:0:0:0: Attached scsi CD-ROM sr0
[  21.401707] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[  21.401732] sr 1:0:1:0: Attached scsi CD-ROM sr1
[  21.771397] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  21.811290] ata3.00: ATA-7: ST3160811AS, 3.AAE, max UDMA/133
[  21.811294] ata3.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32)
[  21.816674] Attempting manual resume
[  21.816677] swsusp: Resume From Partition 8:21
[  21.816679] PM: Checking swsusp image.
[  21.816859] PM: Resume from disk failed.
[  21.847999] kjournald starting.  Commit interval 5 seconds
[  21.848286] EXT3-fs: mounted filesystem with ordered data mode.
[  21.875745] ata3.00: configured for UDMA/133
[  22.341935] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  22.350080] ata4.00: ATA-7: ST3250310AS, 3.AAC, max UDMA/133
[  22.350082] ata4.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[  22.366035] ata4.00: configured for UDMA/133
[  22.366098] scsi 2:0:0:0: Direct-Access    ATA      ST3160811AS      3.AA PQ: 0 ANSI: 5
[  22.366103] ata3: bounce limit 0xFFFFFFFFFFFFFFFF, segment boundary 0xFFFFFFFF, hw segs 61
[  22.366153] sd 2:0:0:0: [sdc] 312581808 512-byte hardware sectors (160042 MB)
[  22.366161] sd 2:0:0:0: [sdc] Write Protect is off
[  22.366163] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[  22.366174] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  22.366206] sd 2:0:0:0: [sdc] 312581808 512-byte hardware sectors (160042 MB)
[  22.366212] sd 2:0:0:0: [sdc] Write Protect is off
[  22.366213] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[  22.366223] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  22.366225]  sdc: sdc1
[  22.388967] sd 2:0:0:0: [sdc] Attached SCSI disk
[  22.388986] sd 2:0:0:0: Attached scsi generic sg4 type 0
[  22.389034] scsi 3:0:0:0: Direct-Access    ATA      ST3250310AS      3.AA PQ: 0 ANSI: 5
[  22.389037] ata4: bounce limit 0xFFFFFFFFFFFFFFFF, segment boundary 0xFFFFFFFF, hw segs 61
[  22.389069] sd 3:0:0:0: [sdd] 488397168 512-byte hardware sectors (250059 MB)
[  22.389075] sd 3:0:0:0: [sdd] Write Protect is off
[  22.389076] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[  22.389085] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  22.389103] sd 3:0:0:0: [sdd] 488397168 512-byte hardware sectors (250059 MB)
[  22.389109] sd 3:0:0:0: [sdd] Write Protect is off
[  22.389110] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[  22.389119] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  22.389121]  sdd: sdd1
[  22.397282] sd 3:0:0:0: [sdd] Attached SCSI disk
[  22.397298] sd 3:0:0:0: Attached scsi generic sg5 type 0
[  22.397317] ACPI: PCI Interrupt 0000:00:11.0[A] -> Link [LSA1] -> GSI 23 (level, low) -> IRQ 23
[  22.397321] sata_nv 0000:00:11.0: Using ADMA mode
[  22.398068] PCI: Setting latency timer of device 0000:00:11.0 to 64
[  22.398449] scsi4 : sata_nv
[  22.398500] scsi5 : sata_nv
[  22.398610] ata5: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 23

[  22.398613] ata6: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 23
[  22.707715] ata5: SATA link down (SStatus 0 SControl 300)
[  23.018917] ata6: SATA link down (SStatus 0 SControl 300)
[  31.386382] input: PC Speaker as /devices/platform/pcspkr/input/input3
[  31.590467] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[  31.614137] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[  31.658769] parport_pc 00:06: reported by Plug and Play ACPI
[  31.658827] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[  31.723888] input: Power Button (FF) as /devices/virtual/input/input4
[  31.771872] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x600
[  31.771886] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x700
[  31.782309] ACPI: Power Button (FF) [PWRF]
[  31.782369] input: Power Button (CM) as /devices/virtual/input/input5
[  31.841708] ACPI: Power Button (CM) [PWRB]
[  32.212962] nvidia: module license 'NVIDIA' taints kernel.
[  32.568673] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 19
[  32.568683] ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LNKA] -> GSI 19 (level, low) -> IRQ 19
[  32.568690] PCI: Setting latency timer of device 0000:03:00.0 to 64
[  32.568807] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  169.12  Thu Feb 14 17:51:09 PST 2008
[  32.903590] ACPI: PCI Interrupt Link [LACI] enabled at IRQ 22
[  32.903595] ACPI: PCI Interrupt 0000:00:0d.0[A] -> Link [LACI] -> GSI 22 (level, low) -> IRQ 22
[  32.904055] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[  33.013584] NET: Registered protocol family 10
[  33.013742] lo: Disabled Privacy Extensions
[  33.228794] intel8x0_measure_ac97_clock: measured 54734 usecs
[  33.228798] intel8x0: clocking to 46915
[  34.355524] loop: module loaded
[  34.386169] lp0: using parport0 (interrupt-driven).
[  34.424249] it87: Found IT8712F chip at 0xd00, revision 7
[  34.424259] it87: in3 is VCC (+5V)
[  34.424260] it87: in7 is VCCH (+5V Stand-By)
[  34.718407] Adding 1646620k swap on /dev/sdb5.  Priority:-1 extents:1 across:1646620k
[  35.289524] EXT3 FS on sdb1, internal journal
[  36.788948] ip_tables: (C) 2000-2006 Netfilter Core Team
[  37.493855] No dock devices found.
[  37.796219] powernow-k8: Found 1 Dual Core AMD Opteron(tm) Processor 185 processors (2 cpu cores) (version 2.20.00)
[  37.796020] powernow-k8: MP systems not supported by PSB BIOS structure
[  37.796252] powernow-k8: MP systems not supported by PSB BIOS structure
[  43.059937] eth0: no IPv6 routers present
[  44.987462] ppdev: user-space parallel port driver
[  45.220919] audit(1217667036.994:2): type=1503 operation="inode_permission" requested_mask="a::" denied_mask="a::" name="/dev/tty" pid=5683 profile="/usr/sbin/cupsd" namespace="default"
[26608.427477] Clocksource tsc unstable (delta = 4686814015 ns)
[32003.688856] totem[14942]: segfault at 4da3fe rip 7fcdb9c0e19e rsp 7fffc82bc950 error 6
[32547.329250] totem[22725]: segfault at 7fc25817e000 rip 7fc26639cab0 rsp 43d3ea48 error 4



All times are GMT -5. The time now is 05:44 PM.