10.04 on a desktop with SIS900 Onboard Ethernet Controller doesn't connect to network

Asked by SL

I downloaded 10.04 release on a 9.x Ubuntu desktop. After configuring and rebooting, the network connection is not working.

dmesg output:
       media link on
       media link off [repeats]

ifconfig -a
      shows me eth0, lo

tried: ifdown eth0, ifup eth0, dhclient eth0 - all works but no response from DHCPREQUEST

dmesg - still shows me media link on & media link off (as a response to ifdown, ifup)

tried adding dhcp for eth0 in /etc/network/interfaces

lsmod | grep sis [does show sis900 module as loaded]

tried the following sequence:
modprobe -r sis900
modprobe sis900
/etc/init.d/networking restart

with no success.

lshw -C network: Shows me that I have SIS900 driver loaded, 10MB/half duplex link

Not sure what else I can do to kick this to work. I might say, it is very frustrating. I googled endlessly with out finding a concrete solution.

Last thing I want to do is to blow away all I have and go back to Windows 7 --- I am hopeful that I don't have to do that.

PLEASE HELP - I NEED THIS DESKTOP TO WORK !!!!!!!!!!!!!!!!!!

Question information

Language:
English Edit question
Status:
Answered
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:

This question was reopened

  • by SL
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

Can you reboot (make sure the wired connection is complete) and give the output of:

sudo lshw -C network; ifconfig

Thanks

Revision history for this message
SL (rcsl) said :
#2

Thanks for your response...
I have to type it manually as I can't mail from that machine (NO NETWORK :)). Rebooted and came in fresh....

lshw -C network; ifconfig (gives the following output)
-------------------------------------------------------------------
*-network DISABLED
     description: Ethernet Interface
     product: SiS900 PCI Fast Ethernet
     vendor: Silicon Integrated Systems [SiS]
     physical id: 4
     bus info: pci@0000:00:04.0
     logical name: eth0
     version: 90
     serial: 00:0a:e6:38:d8:09
     width: 32bits
     clock: 33MHZ
     capabilities: bus_master cap_list rom ethernet physical
     configuration: broadcast=yes driver=sis900 driverversion=v1.08.10 Apr. 2 2006 latency=64 maxlatency=11 mingnt=52 multicast=yes
     resource: irq:5 ioport:b400(size=256) memory:dffeb000-dffebfff memory:dffc0000-dffdffff(prefetchable)

lo Link encap:Local Loopback
     inet addr:127.0.0.1 Mask:255.0.0.0
     inet6 addr: ::1/128 Scope:Host
     UP LOOPBACK RUNNING MTU:16436 Metric:1
     RX packets:80 errors:0 dropped:0 overruns:0 frame:0
     TX packets:80 errors:0 dropped:0 overruns:0 carrier:0
     collisions:0 txqueuelen:0
     RX bytes:9434 (9.4KB) TX bytes: 9434 (9.4KB)

So, I did manually enabled eth0 .... then I got the following:

lshw -C network; ifconfig (gives the following output)
-------------------------------------------------------------------
*-network
     description: Ethernet Interface
     product: SiS900 PCI Fast Ethernet
     vendor: Silicon Integrated Systems [SiS]
     physical id: 4
     bus info: pci@0000:00:04.0
     logical name: eth0
     version: 90
     serial: 00:0a:e6:38:d8:09
     size: 10MB/s
     capacity: 100MB/s
     width: 32bits
     clock: 33MHZ
     capabilities: pm bus_master cap_list rom ethernet physical tp mii 10bit 10bt-fd 100bt 100bt-fd autonegotiation
     configuration: autonegotiation=on broadcast=yes driver=sis900 driverversion=v1.08.10 Apr. 2 2006 duplex=half latency=64 link=no maxlatency=11 mingnt=52 multicast=yes port=MII speed=10MB/s
     resources: irq:5 ioport:b400(size=256) memory:dffeb000-dffebfff memory:dffc0000-dffdffff(prefetchable)

eth0 Link encap:Ethernet HWaddr 00:0a:e6:38:d8:09
     inet6 addr: fe80::20a:e6ff:fe38:d809/64 Scope:Link
     UP BROADCAST LOOPBACK RUNNING MTU:1500 Metric:1
     RX packets:0 errors:0 dropped:0 overruns:0 frame:0
     TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
     collisions:0 txqueuelen:1000
     RX bytes:0 (0.0 B) TX bytes: 168 (168.0 B)
     Interrupt: 5 Base address: 0xb400

lo Link encap:Local Loopback
     inet addr:127.0.0.1 Mask:255.0.0.0
     inet6 addr: ::1/128 Scope:Host
     UP LOOPBACK RUNNING MTU:16436 Metric:1
     RX packets:80 errors:0 dropped:0 overruns:0 frame:0
     TX packets:80 errors:0 dropped:0 overruns:0 carrier:0
     collisions:0 txqueuelen:0
     RX bytes:9434 (9.4KB) TX bytes: 9434 (9.4KB)

Appreciate any help.

Revision history for this message
SL (rcsl) said :
#3

OOOh.... I just had an aha moment....

I tried the following because Capacity is 100MB/s and dmesg tells me that it supports Full Duplex. What was configured was 10MB/S and HALF Duplex.

ethtool -s eth0 speed 100 duplex full

then I did the /etc/init.d/networking restart

Viola' it retrieved the DHCP address. I am back online.

Thank you very much.

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#4

Thanks for the share. Hopefully this will help others.

Glad you got the gold

Revision history for this message
SL (rcsl) said :
#5

Hmmm... I rebooted the system again and the problem repeats. I tried the above solution I thought would work but this time no luck. How can I reboot the system and make this work with out fiddling for hours together?

Please help.

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#6

gksudo gedit /etc/rc.local

add these 2 lines ABOVE the "exit 0" line:

ethtool -s eth0 speed 100 duplex full
/etc/init.d/networking restart

Save the new file and close gedit, test by rebooting.

Revision history for this message
SL (rcsl) said :
#7

Yes ... I tried that and rebooted. Still no luck...

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#8

ok then run:

gksudo gedit /usr/bin/lanfix; sudo chmod +x /usr/bin/lanfix

add these 3 lines of code to the file:

#!/bin/bash
ethtool -s eth0 speed 100 duplex full
/etc/init.d/networking restart

Save the file and close gedit, now under system -> preferences -> startup items

add a new item to run /usr/bin/lanfix

The name and comment can be anything you like. This will make the script run at logon ;)

Revision history for this message
SL (rcsl) said :
#9

What you are trying to do is to make a script run when the machine reboots. I tried before by putting the right /etc/rc scripts as well but the problem I am reporting now is that even if I manually type those after rebooting the machine the networking is not working.

There is something else that's making it not work. I don't know what it is. Thanks.

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#10

Very interesting. I'd log a bug.

Can you give the output of:

dmesg > ~/dmesg.txt; gedit ~/dmesg.txt; rm ~/dmesg.txt

Thanks

Revision history for this message
SL (rcsl) said :
#11

I am not sure if I understand that command... if you are asking me to write the contents of dmesg.txt then I am attaching below. Otherwise, your command as it says above will create a file in the home directory and edits and when exits out of the editor removes the file.... just missing some clarity.

Thanks
---- (dmesg command output is given below) ----

[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.32-22-generic (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #33-Ubuntu SMP Wed Apr 28 13:27:30 UTC 2010 (Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Transmeta GenuineTMx86
[ 0.000000] Transmeta TransmetaCPU
[ 0.000000] UMC UMC UMC UMC
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fff0000 (usable)
[ 0.000000] BIOS-e820: 000000007fff0000 - 000000007fff8000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fff8000 - 0000000080000000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000ffee0000 - 00000000fff0ffff (reserved)
[ 0.000000] BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
[ 0.000000] DMI 2.3 present.
[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] last_pfn = 0x7fff0 max_arch_pfn = 0x100000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-C7FFF write-protect
[ 0.000000] C8000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 disabled
[ 0.000000] 2 disabled
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 base 0E0000000 mask FFC000000 write-combining
[ 0.000000] 7 base 0E0000000 mask FFC000000 write-combining
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] Scanning 0 areas for low memory corruption
[ 0.000000] modified physical RAM map:
[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved)
[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable)
[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] modified: 0000000000100000 - 000000007fff0000 (usable)
[ 0.000000] modified: 000000007fff0000 - 000000007fff8000 (ACPI data)
[ 0.000000] modified: 000000007fff8000 - 0000000080000000 (ACPI NVS)
[ 0.000000] modified: 00000000ffee0000 - 00000000fff0ffff (reserved)
[ 0.000000] modified: 00000000fffc0000 - 0000000100000000 (reserved)
[ 0.000000] initial memory mapped : 0 - 00c00000
[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[ 0.000000] Using x86 segment limits to approximate NX protection
[ 0.000000] 0000000000 - 0000400000 page 4k
[ 0.000000] 0000400000 - 0037400000 page 2M
[ 0.000000] 0037400000 - 00377fe000 page 4k
[ 0.000000] kernel direct mapping tables up to 377fe000 @ 10000-15000
[ 0.000000] RAMDISK: 37366000 - 37fef549
[ 0.000000] Allocated new RAMDISK: 008de000 - 01567549
[ 0.000000] Move RAMDISK from 0000000037366000 - 0000000037fef548 to 008de000 - 01567548
[ 0.000000] ACPI: RSDP 000fa2d0 00014 (v00 AMI )
[ 0.000000] ACPI: RSDT 7fff0000 00028 (v01 AMIINT SiS645XX 00000010 MSFT 0100000B)
[ 0.000000] ACPI: FACP 7fff0030 00081 (v02 AMIINT SiS645XX 00000011 MSFT 0100000B)
[ 0.000000] ACPI: DSDT 7fff00c0 03378 (v01 SiS 645 00001000 MSFT 0100000D)
[ 0.000000] ACPI: FACS 7fff8000 00040
[ 0.000000] 1159MB HIGHMEM available.
[ 0.000000] 887MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 377fe000
[ 0.000000] low ram: 0 - 377fe000
[ 0.000000] node 0 low ram: 00000000 - 377fe000
[ 0.000000] node 0 bootmap 00011000 - 00017f00
[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
[ 0.000000] #3 [0000100000 - 00008d9e98] TEXT DATA BSS ==> [0000100000 - 00008d9e98]
[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
[ 0.000000] #5 [00008da000 - 00008dd104] BRK ==> [00008da000 - 00008dd104]
[ 0.000000] #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000]
[ 0.000000] #7 [00008de000 - 0001567549] NEW RAMDISK ==> [00008de000 - 0001567549]
[ 0.000000] #8 [0000011000 - 0000018000] BOOTMAP ==> [0000011000 - 0000018000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000377fe
[ 0.000000] HighMem 0x000377fe -> 0x0007fff0
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0007fff0
[ 0.000000] On node 0 totalpages: 524159
[ 0.000000] free_area_init_node: node 0, pgdat c0798720, node_mem_map c1569200
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3951 pages, LIFO batch:0
[ 0.000000] Normal zone: 1744 pages used for memmap
[ 0.000000] Normal zone: 221486 pages, LIFO batch:31
[ 0.000000] HighMem zone: 2320 pages used for memmap
[ 0.000000] HighMem zone: 294626 pages, LIFO batch:31
[ 0.000000] Using APIC driver default
[ 0.000000] ACPI: PM-Timer IO Port: 0x808
[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
[ 0.000000] APIC: disable apic facility
[ 0.000000] nr_irqs_gsi: 16
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7fee0000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2800000 s36024 r0 d21320 u4194304
[ 0.000000] pcpu-alloc: s36024 r0 d21320 u4194304 alloc=1*4194304
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 520063
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-22-generic root=UUID=b454db76-aa32-4e29-b1d8-9d0f7898a265 ro quiet splash
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Enabling fast FPU save and restore... done.
[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
[ 0.000000] Initializing CPU#0
[ 0.000000] allocated 10485120 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Initializing HighMem for node 0 (000377fe:0007fff0)
[ 0.000000] Memory: 2047252k/2097088k available (4673k kernel code, 48436k reserved, 2121k data, 656k init, 1187784k highmem)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB)
[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
[ 0.000000] .init : 0xc07a3000 - 0xc0847000 ( 656 kB)
[ 0.000000] .data : 0xc0590653 - 0xc07a2e48 (2121 kB)
[ 0.000000] .text : 0xc0100000 - 0xc0590653 (4673 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] NR_IRQS:2304 nr_irqs:256
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 1792.782 MHz processor.
[ 0.004011] Calibrating delay loop (skipped), value calculated using timer frequency.. 3585.56 BogoMIPS (lpj=7171128)
[ 0.004055] Security Framework initialized
[ 0.004115] AppArmor: AppArmor initialized
[ 0.004132] Mount-cache hash table entries: 512
[ 0.004440] Initializing cgroup subsys ns
[ 0.004451] Initializing cgroup subsys cpuacct
[ 0.004461] Initializing cgroup subsys memory
[ 0.004482] Initializing cgroup subsys devices
[ 0.004488] Initializing cgroup subsys freezer
[ 0.004493] Initializing cgroup subsys net_cls
[ 0.004546] CPU: Trace cache: 12K uops, L1 D cache: 8K
[ 0.004553] CPU: L2 cache: 512K
[ 0.004558] CPU: Hyper-Threading is disabled
[ 0.004567] mce: CPU supports 4 MCE banks
[ 0.004607] Performance Events: no PMU driver, software events only.
[ 0.004623] Checking 'hlt' instruction... OK.
[ 0.021550] SMP alternatives: switching to UP code
[ 0.039461] Freeing SMP alternatives: 19k freed
[ 0.039508] ACPI: Core revision 20090903
[ 0.050511] ACPI: setting ELCR to 0200 (from 0820)
[ 0.052023] ftrace: converting mcount calls to 0f 1f 44 00 00
[ 0.052037] ftrace: allocating 21771 entries in 43 pages
[ 0.060155] Enabling APIC mode: Flat. Using 0 I/O APICs
[ 0.060163] weird, boot CPU (#0) not listed by the BIOS.
[ 0.060167] SMP motherboard not detected.
[ 0.060171] Local APIC not detected. Using dummy APIC emulation.
[ 0.060175] SMP disabled
[ 0.060519] Brought up 1 CPUs
[ 0.060525] Total of 1 processors activated (3585.56 BogoMIPS).
[ 0.061016] CPU0 attaching NULL sched-domain.
[ 0.061314] devtmpfs: initialized
[ 0.062005] regulator: core version 0.5
[ 0.062041] Time: 10:55:12 Date: 05/10/10
[ 0.062132] NET: Registered protocol family 16
[ 0.062358] EISA bus registered
[ 0.062378] ACPI: bus type pci registered
[ 0.066398] PCI: PCI BIOS revision 2.10 entry at 0xfdb01, last bus=2
[ 0.066403] PCI: Using configuration type 1 for base access
[ 0.068220] bio: create slab <bio-0> at 0
[ 0.069071] ACPI: EC: Look up EC in DSDT
[ 0.077570] ACPI: Interpreter enabled
[ 0.077584] ACPI: (supports S0 S1 S4 S5)
[ 0.077621] ACPI: Using PIC for interrupt routing
[ 0.086256] ACPI: Power Resource [URP1] (off)
[ 0.086310] ACPI: Power Resource [URP2] (off)
[ 0.086361] ACPI: Power Resource [FDDP] (off)
[ 0.086412] ACPI: Power Resource [LPTP] (off)
[ 0.086615] ACPI: No dock devices found.
[ 0.087364] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.087451] pci 0000:00:00.0: reg 10 32bit mmio: [0xe0000000-0xe3ffffff]
[ 0.087663] pci 0000:00:02.0: Enabling SiS 96x SMBus
[ 0.087732] pci 0000:00:02.1: reg 20 io port: [0xc00-0xc1f]
[ 0.087818] pci 0000:00:02.5: reg 20 io port: [0xff00-0xff0f]
[ 0.087890] pci 0000:00:02.6: reg 10 io port: [0xbc00-0xbcff]
[ 0.087901] pci 0000:00:02.6: reg 14 io port: [0xb800-0xb87f]
[ 0.087964] pci 0000:00:02.6: supports D1 D2
[ 0.087969] pci 0000:00:02.6: PME# supported from D3hot D3cold
[ 0.087976] pci 0000:00:02.6: PME# disabled
[ 0.088057] pci 0000:00:02.7: reg 10 io port: [0xc400-0xc4ff]
[ 0.088069] pci 0000:00:02.7: reg 14 io port: [0xc000-0xc07f]
[ 0.088131] pci 0000:00:02.7: supports D1 D2
[ 0.088135] pci 0000:00:02.7: PME# supported from D3hot D3cold
[ 0.088142] pci 0000:00:02.7: PME# disabled
[ 0.088178] pci 0000:00:03.0: reg 10 32bit mmio: [0xdffec000-0xdffecfff]
[ 0.088257] pci 0000:00:03.1: reg 10 32bit mmio: [0xdffed000-0xdffedfff]
[ 0.088335] pci 0000:00:03.2: reg 10 32bit mmio: [0xdffee000-0xdffeefff]
[ 0.088429] pci 0000:00:03.3: reg 10 32bit mmio: [0xdffef000-0xdffeffff]
[ 0.088496] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[ 0.088503] pci 0000:00:03.3: PME# disabled
[ 0.088562] pci 0000:00:04.0: reg 10 io port: [0xb400-0xb4ff]
[ 0.088574] pci 0000:00:04.0: reg 14 32bit mmio: [0xdffeb000-0xdffebfff]
[ 0.088612] pci 0000:00:04.0: reg 30 32bit mmio pref: [0xdffc0000-0xdffdffff]
[ 0.088641] pci 0000:00:04.0: supports D1 D2
[ 0.088644] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.088652] pci 0000:00:04.0: PME# disabled
[ 0.088713] pci 0000:00:09.0: reg 10 32bit mmio: [0xdffea800-0xdffeafff]
[ 0.088725] pci 0000:00:09.0: reg 14 io port: [0xb000-0xb07f]
[ 0.088787] pci 0000:00:09.0: supports D2
[ 0.088791] pci 0000:00:09.0: PME# supported from D2 D3hot D3cold
[ 0.088798] pci 0000:00:09.0: PME# disabled
[ 0.088850] pci 0000:00:0a.0: reg 10 io port: [0xdc00-0xdc0f]
[ 0.088862] pci 0000:00:0a.0: reg 14 io port: [0xd800-0xd80f]
[ 0.088873] pci 0000:00:0a.0: reg 18 io port: [0xd400-0xd40f]
[ 0.088884] pci 0000:00:0a.0: reg 1c io port: [0xd000-0xd00f]
[ 0.088895] pci 0000:00:0a.0: reg 20 io port: [0xcc00-0xcc1f]
[ 0.088906] pci 0000:00:0a.0: reg 24 io port: [0xc800-0xc8ff]
[ 0.088918] pci 0000:00:0a.0: reg 30 32bit mmio pref: [0xdfff0000-0xdfffffff]
[ 0.089056] pci 0000:01:00.0: reg 10 32bit mmio: [0xde000000-0xdeffffff]
[ 0.089067] pci 0000:01:00.0: reg 14 32bit mmio pref: [0xc0000000-0xcfffffff]
[ 0.089077] pci 0000:01:00.0: reg 18 32bit mmio: [0xdd000000-0xddffffff]
[ 0.089102] pci 0000:01:00.0: reg 30 32bit mmio pref: [0xdfee0000-0xdfefffff]
[ 0.089191] pci 0000:00:01.0: bridge 32bit mmio: [0xdbd00000-0xdfefffff]
[ 0.089200] pci 0000:00:01.0: bridge 32bit mmio pref: [0xbba00000-0xdbbfffff]
[ 0.089215] pci_bus 0000:00: on NUMA node 0
[ 0.089223] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.092556] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 7 10 11 12 14 15)
[ 0.092748] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 7 10 11 12 14 15)
[ 0.092935] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 7 10 11 12 14 15)
[ 0.093121] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 7 10 11 12 14 15)
[ 0.093306] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 *11 12 14 15)
[ 0.093492] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 7 10 11 12 14 15)
[ 0.093677] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 *11 12 14 15)
[ 0.093863] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 *11 12 14 15)
[ 0.094088] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.094093] vgaarb: loaded
[ 0.094362] SCSI subsystem initialized
[ 0.094527] libata version 3.00 loaded.
[ 0.094675] usbcore: registered new interface driver usbfs
[ 0.094701] usbcore: registered new interface driver hub
[ 0.094752] usbcore: registered new device driver usb
[ 0.095025] ACPI: WMI: Mapper loaded
[ 0.095030] PCI: Using ACPI for IRQ routing
[ 0.095344] NetLabel: Initializing
[ 0.095349] NetLabel: domain hash size = 128
[ 0.095352] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.095377] NetLabel: unlabeled traffic allowed by default
[ 0.095456] Switching to clocksource tsc
[ 0.096001] AppArmor: AppArmor Filesystem Enabled
[ 0.096001] pnp: PnP ACPI init
[ 0.096001] ACPI: bus type pnp registered
[ 0.102122] pnp: PnP ACPI: found 13 devices
[ 0.102128] ACPI: ACPI bus type pnp unregistered
[ 0.102137] PnPBIOS: Disabled by ACPI PNP
[ 0.137067] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.137072] pci 0000:00:01.0: IO window: disabled
[ 0.137083] pci 0000:00:01.0: MEM window: 0xdbd00000-0xdfefffff
[ 0.137092] pci 0000:00:01.0: PREFETCH window: 0xbba00000-0xdbbfffff
[ 0.137122] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.137127] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[ 0.137132] pci_bus 0000:01: resource 1 mem: [0xdbd00000-0xdfefffff]
[ 0.137137] pci_bus 0000:01: resource 2 pref mem [0xbba00000-0xdbbfffff]
[ 0.137213] NET: Registered protocol family 2
[ 0.137404] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.138125] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.139878] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.141081] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.141092] TCP reno registered
[ 0.141395] NET: Registered protocol family 1
[ 0.141544] pci 0000:01:00.0: Boot video device
[ 0.141922] cpufreq-nforce2: No nForce2 chipset.
[ 0.141978] Scanning for low memory corruption every 60 seconds
[ 0.142193] audit: initializing netlink socket (disabled)
[ 0.142220] type=2000 audit(1273488912.140:1): initialized
[ 0.155844] Trying to unpack rootfs image as initramfs...
[ 0.173090] highmem bounce pool size: 64 pages
[ 0.173103] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 0.175853] VFS: Disk quotas dquot_6.5.2
[ 0.175974] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.180822] fuse init (API version 7.13)
[ 0.181057] msgmni has been set to 1680
[ 0.181560] alg: No test for stdrng (krng)
[ 0.181696] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.181703] io scheduler noop registered
[ 0.181707] io scheduler anticipatory registered
[ 0.181710] io scheduler deadline registered
[ 0.181785] io scheduler cfq registered (default)
[ 0.182005] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.182052] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.182248] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.182257] ACPI: Power Button [PWRB]
[ 0.182361] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.182375] ACPI: Sleep Button [SLPB]
[ 0.182458] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.182463] ACPI: Power Button [PWRF]
[ 0.182761] processor LNXCPU:00: registered as cooling_device0
[ 0.193765] isapnp: Scanning for PnP cards...
[ 0.205291] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.205459] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 0.205621] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 0.206236] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 0.206462] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 0.206965] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 5
[ 0.206972] PCI: setting IRQ 5 as level-triggered
[ 0.206980] serial 0000:00:02.6: PCI INT C -> Link[LNKC] -> GSI 5 (level, low) -> IRQ 5
[ 0.206993] serial 0000:00:02.6: PCI INT C disabled
[ 0.208905] brd: module loaded
[ 0.209784] loop: module loaded
[ 0.209999] input: Macintosh mouse button emulation as /devices/virtual/input/input3
[ 0.210265] pata_sis 0000:00:02.5: version 0.5.2
[ 0.256994] scsi0 : pata_sis
[ 0.257290] scsi1 : pata_sis
[ 0.258590] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
[ 0.258597] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
[ 0.259300] Fixed MDIO Bus: probed
[ 0.259373] PPP generic driver version 2.4.2
[ 0.259517] tun: Universal TUN/TAP device driver, 1.6
[ 0.259521] tun: (C) 1999-2004 Max Krasnyansky <email address hidden>
[ 0.259716] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.260036] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
[ 0.260042] PCI: setting IRQ 11 as level-triggered
[ 0.260050] ehci_hcd 0000:00:03.3: PCI INT D -> Link[LNKH] -> GSI 11 (level, low) -> IRQ 11
[ 0.260084] ehci_hcd 0000:00:03.3: EHCI Host Controller
[ 0.260161] ehci_hcd 0000:00:03.3: new USB bus registered, assigned bus number 1
[ 0.260233] ehci_hcd 0000:00:03.3: cache line size of 128 is not supported
[ 0.260255] ehci_hcd 0000:00:03.3: irq 11, io mem 0xdffef000
[ 0.269142] ehci_hcd 0000:00:03.3: USB 2.0 started, EHCI 1.00
[ 0.269443] usb usb1: configuration #1 chosen from 1 choice
[ 0.269506] hub 1-0:1.0: USB hub found
[ 0.269529] hub 1-0:1.0: 6 ports detected
[ 0.269650] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.270023] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11
[ 0.270032] ohci_hcd 0000:00:03.0: PCI INT A -> Link[LNKE] -> GSI 11 (level, low) -> IRQ 11
[ 0.270065] ohci_hcd 0000:00:03.0: OHCI Host Controller
[ 0.270160] ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
[ 0.270198] ohci_hcd 0000:00:03.0: irq 11, io mem 0xdffec000
[ 0.350678] usb usb2: configuration #1 chosen from 1 choice
[ 0.350742] hub 2-0:1.0: USB hub found
[ 0.350770] hub 2-0:1.0: 2 ports detected
[ 0.351191] ACPI: PCI Interrupt Link [LNKF] enabled at IRQ 5
[ 0.351200] ohci_hcd 0000:00:03.1: PCI INT B -> Link[LNKF] -> GSI 5 (level, low) -> IRQ 5
[ 0.351236] ohci_hcd 0000:00:03.1: OHCI Host Controller
[ 0.351329] ohci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3
[ 0.351369] ohci_hcd 0000:00:03.1: irq 5, io mem 0xdffed000
[ 0.438523] usb usb3: configuration #1 chosen from 1 choice
[ 0.438589] hub 3-0:1.0: USB hub found
[ 0.438615] hub 3-0:1.0: 2 ports detected
[ 0.439038] ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 11
[ 0.439047] ohci_hcd 0000:00:03.2: PCI INT C -> Link[LNKG] -> GSI 11 (level, low) -> IRQ 11
[ 0.439085] ohci_hcd 0000:00:03.2: OHCI Host Controller
[ 0.439183] ohci_hcd 0000:00:03.2: new USB bus registered, assigned bus number 4
[ 0.439221] ohci_hcd 0000:00:03.2: irq 11, io mem 0xdffee000
[ 0.469945] ata1.00: ATA-7: Maxtor 6Y060L0, YAR41VW0, max UDMA/133
[ 0.469953] ata1.00: 120103200 sectors, multi 16: LBA
[ 0.470019] ata1.01: ATAPI: IOMEGA ZIP 100 ATAPI, 23.D, max PIO2, CDB intr
[ 0.528827] ata1.00: configured for UDMA/133
[ 0.531202] usb usb4: configuration #1 chosen from 1 choice
[ 0.531266] hub 4-0:1.0: USB hub found
[ 0.531292] hub 4-0:1.0: 2 ports detected
[ 0.531410] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.531617] PNP: PS/2 Controller [PNP030b:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 0.532053] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.532071] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.537461] mice: PS/2 mouse device common for all mice
[ 0.537760] rtc_cmos 00:02: RTC can wake from S4
[ 0.537862] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 0.537893] rtc0: alarms up to one month, 114 bytes nvram
[ 0.538131] device-mapper: uevent: version 1.0.3
[ 0.538394] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: <email address hidden>
[ 0.538502] device-mapper: multipath: version 1.1.0 loaded
[ 0.538508] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 0.540880] EISA: Probing bus 0 at eisa.0
[ 0.540929] EISA: Detected 0 cards.
[ 0.543212] cpuidle: using governor ladder
[ 0.543217] cpuidle: using governor menu
[ 0.544096] TCP cubic registered
[ 0.544337] NET: Registered protocol family 10
[ 0.545236] lo: Disabled Privacy Extensions
[ 0.545814] NET: Registered protocol family 17
[ 0.545949] Using IPI No-Shortcut mode
[ 0.546158] PM: Resume from disk failed.
[ 0.546186] registered taskstats version 1
[ 0.546559] Magic number: 10:693:931
[ 0.546714] rtc_cmos 00:02: setting system clock to 2010-05-10 10:55:13 UTC (1273488913)
[ 0.546721] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 0.546724] EDD information not available.
[ 0.552937] ata1.01: configured for PIO2
[ 0.563804] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 0.888417] isapnp: No Plug & Play device found
[ 0.888769] scsi 0:0:0:0: Direct-Access ATA Maxtor 6Y060L0 YAR4 PQ: 0 ANSI: 5
[ 0.889118] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.894009] scsi 0:0:1:0: Direct-Access IOMEGA ZIP 100 23.D PQ: 0 ANSI: 5
[ 0.894358] sd 0:0:1:0: Attached scsi generic sg1 type 0
[ 0.894700] sd 0:0:0:0: [sda] 120103200 512-byte logical blocks: (61.4 GB/57.2 GiB)
[ 0.894798] sd 0:0:0:0: [sda] Write Protect is off
[ 0.894803] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.894852] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.895143] sda: sda1 sda2 < sda5 sda6 sda7 >
[ 0.961833] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[ 0.962057] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.057093] ata2.00: ATAPI: Hewlett-Packard DVD Writer 100, 1.91, max UDMA/33
[ 1.068416] usb 2-1: new full speed USB device using ohci_hcd and address 2
[ 1.076687] ata2.00: configured for UDMA/33
[ 1.079964] scsi 1:0:0:0: CD-ROM HP DVD Writer 100j 1.91 PQ: 0 ANSI: 5
[ 1.084093] sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
[ 1.084105] Uniform CD-ROM driver Revision: 3.20
[ 1.084365] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1.084507] sr 1:0:0:0: Attached scsi generic sg2 type 5
[ 1.183020] Freeing initrd memory: 12837k freed
[ 1.207817] Freeing unused kernel memory: 656k freed
[ 1.209226] Write protecting the kernel text: 4676k
[ 1.209272] Write protecting the kernel read-only data: 1840k
[ 1.260724] udev: starting version 151
[ 1.299754] usb 2-1: configuration #1 chosen from 1 choice
[ 1.604134] usb 3-1: new full speed USB device using ohci_hcd and address 2
[ 1.682732] Floppy drive(s): fd0 is 1.44M
[ 1.704966] FDC 0 is a post-1991 82077
[ 1.760291] vga16fb: initializing
[ 1.760303] vga16fb: mapped to 0xc00a0000
[ 1.760547] fb0: VGA16 VGA frame buffer device
[ 1.760644] Linux agpgart interface v0.103
[ 1.785524] sata_via 0000:00:0a.0: version 2.4
[ 1.785566] sata_via 0000:00:0a.0: PCI INT A -> Link[LNKC] -> GSI 5 (level, low) -> IRQ 5
[ 1.785664] sata_via 0000:00:0a.0: routed to hard irq line 5
[ 1.795742] scsi2 : sata_via
[ 1.804472] scsi3 : sata_via
[ 1.811460] scsi4 : sata_via
[ 1.811598] ata3: SATA max UDMA/133 port i16@0xdc00 bmdma 0xcc00 irq 5
[ 1.811605] ata4: SATA max UDMA/133 port i16@0xd800 bmdma 0xcc08 irq 5
[ 1.811610] ata5: PATA max UDMA/133 port i16@0xd400 bmdma 0xcc10 irq 5
[ 1.817530] usb 3-1: configuration #1 chosen from 1 choice
[ 1.844188] agpgart-sis 0000:00:00.0: SiS chipset [1039/0650]
[ 1.850317] agpgart-sis 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
[ 2.128424] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[ 2.136305] ata3.00: ATAPI: HL-DT-ST DVDRAM GH22NS40, NL01, max UDMA/100
[ 2.152314] ata3.00: configured for UDMA/100
[ 2.162322] scsi 2:0:0:0: CD-ROM HL-DT-ST DVDRAM GH22NS40 NL01 PQ: 0 ANSI: 5
[ 2.184141] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.184727] sr 2:0:0:0: Attached scsi CD-ROM sr1
[ 2.185014] sr 2:0:0:0: Attached scsi generic sg3 type 5
[ 2.504077] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[ 2.512506] ata4.00: ATA-8: ST31000528AS, CC38, max UDMA/133
[ 2.512512] ata4.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 0/32)
[ 2.528528] ata4.00: configured for UDMA/133
[ 2.528753] scsi 3:0:0:0: Direct-Access ATA ST31000528AS CC38 PQ: 0 ANSI: 5
[ 2.529263] sd 3:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 2.529363] sd 3:0:0:0: [sdc] Write Protect is off
[ 2.529368] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 2.529420] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.529806] sd 3:0:0:0: Attached scsi generic sg4 type 0
[ 2.530395] sdc: sdc1 sdc2 sdc3
[ 2.569405] sd 3:0:0:0: [sdc] Attached SCSI disk
[ 2.714264] sis900.c: v1.08.10 Apr. 2 2006
[ 2.714683] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 5
[ 2.714692] sis900 0000:00:04.0: PCI INT A -> Link[LNKD] -> GSI 5 (level, low) -> IRQ 5
[ 2.716108] 0000:00:04.0: Realtek RTL8201 PHY transceiver found at address 1.
[ 2.729562] 0000:00:04.0: Using transceiver found at address 1 as default
[ 2.910759] eth0: SiS 900 PCI Fast Ethernet at 0xb400, IRQ 5, 00:0a:e6:38:d8:09
[ 2.911200] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 5
[ 2.911208] ohci1394 0000:00:09.0: PCI INT A -> Link[LNKB] -> GSI 5 (level, low) -> IRQ 5
[ 2.972973] Console: switching to colour frame buffer device 80x30
[ 2.980800] ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[5] MMIO=[dffea800-dffeafff] Max Packet=[2048] IR/IT contexts=[8/8]
[ 3.688588] EXT4-fs (sda1): mounted filesystem with ordered data mode
[ 4.260625] ieee1394: Host added: ID:BUS[0-00:1023] GUID[0011060000003347]
[ 9.145349] Adding 4385704k swap on /dev/sda7. Priority:-1 extents:1 across:4385704k
[ 9.209768] udev: starting version 151
[ 9.379549] sis96x_smbus 0000:00:02.1: SiS96x SMBus base address: 0x0c00
[ 9.379563] ACPI: resource 0000:00:02.1 [0xc00-0xc1f] conflicts with ACPI region SMRG [0xc00-0xc1f]
[ 9.379568] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 9.447146] lp: driver loaded but no devices found
[ 9.488466] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 9.971940] parport_pc 00:0a: reported by Plug and Play ACPI
[ 9.972088] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[ 10.136204] Linux video capture interface: v2.00
[ 10.158180] lp0: using parport0 (interrupt-driven).
[ 10.548141] type=1505 audit(1273488923.501:2): operation="profile_load" pid=572 name="/sbin/dhclient3"
[ 10.549166] type=1505 audit(1273488923.501:3): operation="profile_load" pid=572 name="/usr/lib/NetworkManager/nm-dhcp-client.action"
[ 10.549633] type=1505 audit(1273488923.501:4): operation="profile_load" pid=572 name="/usr/lib/connman/scripts/dhclient-script"
[ 10.898581] nvidia: module license 'NVIDIA' taints kernel.
[ 10.898591] Disabling lock debugging due to kernel taint
[ 11.758863] EXT4-fs (sda5): mounted filesystem with ordered data mode
[ 12.107785] usblp0: USB Bidirectional printer dev 2 if 0 alt 1 proto 2 vid 0x03F0 pid 0x1011
[ 12.107911] usbcore: registered new interface driver usblp
[ 12.129595] gspca: main v2.7.0 registered
[ 12.134721] ppdev: user-space parallel port driver
[ 12.182829] STV06xx: Probing for a stv06xx device
[ 12.182841] gspca: probing 046d:0870
[ 12.182849] STV06xx: Configuring camera
[ 12.212626] STV06xx: HDCS-1020 sensor detected
[ 12.212637] STV06xx: Initializing camera
[ 12.246756] gameport: NS558 PnP Gameport is pnp00:0b/gameport0, io 0x201, speed 552kHz
[ 12.345008] psmouse serio1: ID: 10 00 64
[ 12.543512] Intel ICH 0000:00:02.7: PCI INT C -> Link[LNKC] -> GSI 5 (level, low) -> IRQ 5
[ 12.550767] gspca: probe ok
[ 12.551098] usbcore: registered new interface driver STV06xx
[ 12.551106] STV06xx: registered
[ 12.795486] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5
[ 12.795497] nvidia 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5
[ 12.799832] NVRM: loading NVIDIA UNIX x86 Kernel Module 173.14.22 Sun Nov 8 20:26:31 PST 2009
[ 12.912235] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input5
[ 13.376052] intel8x0_measure_ac97_clock: measured 55327 usecs (2661 samples)
[ 13.376061] intel8x0: clocking to 48000
[ 13.697355] eth0: Media Link On 100mbps full-duplex
[ 14.696473] eth0: Media Link Off
[ 22.184030] eth0: no IPv6 routers present
[ 22.271272] EXT4-fs (sda6): mounted filesystem with ordered data mode
[ 23.848411] EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended
[ 24.355020] type=1505 audit(1273488937.305:5): operation="profile_load" pid=831 name="/usr/share/gdm/guest-session/Xsession"
[ 24.385226] type=1505 audit(1273488937.337:6): operation="profile_replace" pid=832 name="/sbin/dhclient3"
[ 24.386134] type=1505 audit(1273488937.337:7): operation="profile_replace" pid=832 name="/usr/lib/NetworkManager/nm-dhcp-client.action"
[ 24.386622] type=1505 audit(1273488937.337:8): operation="profile_replace" pid=832 name="/usr/lib/connman/scripts/dhclient-script"
[ 24.462360] type=1505 audit(1273488937.413:9): operation="profile_load" pid=834 name="/usr/bin/evince"
[ 24.542447] type=1505 audit(1273488937.493:10): operation="profile_load" pid=834 name="/usr/bin/evince-previewer"
[ 24.590938] type=1505 audit(1273488937.541:11): operation="profile_load" pid=834 name="/usr/bin/evince-thumbnailer"
[ 24.672111] type=1505 audit(1273488937.621:12): operation="profile_load" pid=908 name="/usr/bin/freshclam"
[ 24.732486] type=1505 audit(1273488937.685:13): operation="profile_load" pid=910 name="/usr/lib/cups/backend/cups-pdf"
[ 24.733522] type=1505 audit(1273488937.685:14): operation="profile_load" pid=910 name="/usr/sbin/cupsd"
[ 26.274902] agpgart-sis 0000:00:00.0: AGP 2.0 bridge
[ 26.274934] agpgart-sis 0000:00:00.0: putting AGP V2 device into 4x mode
[ 26.275013] nvidia 0000:01:00.0: putting AGP V2 device into 4x mode
[ 29.897357] usb 2-1: usbfs: interface 0 claimed by usblp while 'usb' sets config #1
[ 33.800488] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 38.797361] eth0: Media Link On 100mbps full-duplex
[ 49.799328] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 50.784081] end_request: I/O error, dev fd0, sector 0
[ 50.968100] end_request: I/O error, dev fd0, sector 0
[ 53.816090] ------------[ cut here ]------------
[ 53.816116] WARNING: at /build/buildd/linux-2.6.32/net/sched/sch_generic.c:261 dev_watchdog+0x1fe/0x210()
[ 53.816122] Hardware name: MS9327E Series
[ 53.816127] NETDEV WATCHDOG: eth0 (sis900): transmit queue 0 timed out
[ 53.816131] Modules linked in: binfmt_misc nls_iso8859_1 nls_cp437 vfat fat dm_crypt snd_wavefront snd_cs4236 snd_wss_lib snd_opl3_lib snd_hwdep snd_intel8x0 snd_mpu401 snd_mpu401_uart snd_ac97_codec ac97_bus snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device gspca_stv06xx ns558 psmouse ppdev gspca_main usblp snd serio_raw gameport nvidia(P) videodev v4l1_compat parport_pc soundcore snd_page_alloc shpchp i2c_sis96x lp parport fbcon tileblit font bitblit ohci1394 sis900 softcursor sis_agp mii ieee1394 sata_via vga16fb vgastate agpgart floppy
[ 53.816230] Pid: 1823, comm: notification-ar Tainted: P 2.6.32-22-generic #33-Ubuntu
[ 53.816236] Call Trace:
[ 53.816252] [<c014c3d2>] warn_slowpath_common+0x72/0xa0
[ 53.816259] [<c04d828e>] ? dev_watchdog+0x1fe/0x210
[ 53.816266] [<c04d828e>] ? dev_watchdog+0x1fe/0x210
[ 53.816272] [<c014c44b>] warn_slowpath_fmt+0x2b/0x30
[ 53.816279] [<c04d828e>] dev_watchdog+0x1fe/0x210
[ 53.816289] [<c0163980>] ? insert_work+0x60/0xb0
[ 53.816300] [<c012a438>] ? default_spin_lock_flags+0x8/0x10
[ 53.816309] [<c058b5ef>] ? _spin_lock_irqsave+0x2f/0x50
[ 53.816316] [<c0163c46>] ? __queue_work+0x36/0x50
[ 53.816323] [<c015b63e>] run_timer_softirq+0x13e/0x2c0
[ 53.816329] [<c04d8090>] ? dev_watchdog+0x0/0x210
[ 53.816336] [<c0153068>] __do_softirq+0x98/0x1b0
[ 53.816343] [<c012a438>] ? default_spin_lock_flags+0x8/0x10
[ 53.816349] [<c058b5ef>] ? _spin_lock_irqsave+0x2f/0x50
[ 53.816359] [<c0106c87>] ? enable_8259A_irq+0x47/0x70
[ 53.816365] [<c01531c5>] do_softirq+0x45/0x50
[ 53.816370] [<c0153315>] irq_exit+0x65/0x70
[ 53.816378] [<c058fa65>] do_IRQ+0x55/0xc0
[ 53.816385] [<c0103a30>] common_interrupt+0x30/0x40
[ 53.816390] ---[ end trace 4e27492cdb0cb847 ]---
[ 53.816399] eth0: Transmit timeout, status 00000004 00000000
[ 54.797366] eth0: Media Link On 100mbps full-duplex
[ 55.796504] eth0: Media Link Off
[ 59.657392] __ratelimit: 6 callbacks suppressed
[ 59.657404] metacity[1781]: segfault at 38 ip 0805882b sp bfdb4460 error 6 in metacity[8048000+76000]
[ 60.040049] eth0: no IPv6 routers present
[ 94.816043] eth0: Transmit timeout, status 00000004 00000000
[ 95.797326] eth0: Media Link On 100mbps full-duplex
[ 96.796521] eth0: Media Link Off
[ 138.797338] eth0: Media Link On 100mbps full-duplex
[ 139.796511] eth0: Media Link Off
[ 176.797331] eth0: Media Link On 100mbps full-duplex
[ 177.796480] eth0: Media Link Off
[ 214.797348] eth0: Media Link On 100mbps full-duplex
[ 215.796468] eth0: Media Link Off
[ 219.137948] eth0: Corrupted packet received, buffer status = 0x960001f8/504.
[ 249.816032] eth0: Transmit timeout, status 00000004 00000000
[ 250.797340] eth0: Media Link On 100mbps full-duplex
[ 251.796471] eth0: Media Link Off
[ 280.237579] eth0: Media Link Off
[ 280.238032] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 296.239282] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 301.237327] eth0: Media Link On 100mbps full-duplex
[ 302.236468] eth0: Media Link Off
[ 306.536043] eth0: no IPv6 routers present
[ 329.237332] eth0: Media Link On 100mbps full-duplex
[ 330.236474] eth0: Media Link Off
[ 367.237327] eth0: Media Link On 100mbps full-duplex
[ 368.236469] eth0: Media Link Off
[ 403.237421] eth0: Media Link On 100mbps full-duplex
[ 404.236553] eth0: Media Link Off
[ 446.237326] eth0: Media Link On 100mbps full-duplex
[ 447.236492] eth0: Media Link Off
[ 469.237326] eth0: Media Link On 100mbps full-duplex
[ 470.236467] eth0: Media Link Off
[ 487.237325] eth0: Media Link On 100mbps full-duplex
[ 488.236467] eth0: Media Link Off

Revision history for this message
SL (rcsl) said :
#12

Another small question I have on top of this is: I have another PCI Ethernet Card from (3Com) --- which is not even recognized by UBuntu. No mention of it in dmesg.txt above. It will be nice to also get some help on that as well.

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#13
Revision history for this message
SL (rcsl) said :
#14

They both seem to be open bugs ?

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#15

Indeed so you should comment on both to say you have te same issue and that you had your 2 steps which made stuff work. It may move things along

Can you help with this problem?

Provide an answer of your own, or ask SL for more information if necessary.

To post a message you must log in.