System hangs at shutdown with rt73usb module [SOLVED]

Since upgrading to the latest kernel (via standard Arch repos - not testing!) my system now hangs with a general protection fault error when shutting down, or though infrequent, randomly when browsing. Through some searching I have discovered this error is related to the use of the rt73usb module, and am able to reproduce the error by removing it (modprobe -r rt73usb).
I have seen that others have experienced the same problem, and in some cases reverted to the legacy rt73 drivers, an option I have tried by compiling and installing from AUR source. However, whilst the new module is 'hang free' and able to pick up my dongle, getting a network connection with a WPA encrypted key is not something I have achieved with either wicd or netcfg, in the first instance getting a 'bad password error' and in the latter an "ioctl[SIOCSIWENCODEEXT]: Operation not permitted"; each of these tools use the wext driver to 'talk' to the rt73 module, which I think is where things fall down.
Before upgrading to the 3.0 kernel (coming from a CD install), the rt73usb and kernel were harmonious, but I had bigger problems in random x-server closures, so downgrading is not a remedy.
What therefore  is my best solution in terms of (a) getting a connection with the rt73 module, or (b) getting stable rt73usb modules?
Last edited by Skipper_the_eye_child (2011-11-12 04:11:00)

I've not investigated the issue within the last few days, but only got so far with rutilit: as before rt73's rausb0 interface was picked up, but no connection was made. Frustratingly, Rultilt gave me nothing in the way of error reporting : all i've so far is an excerpt from /var/log/message:
[stuart@myhost ~]$ sudo cat /var/log/messages.log* | grep rutilt
Password:
Sep 19 16:08:08 myhost kernel: [ 60.675310] rutilt[819]: segfault at 84 ip 00007effa9ac1c64 sp 00007fffa0728660 error 4 in libgdk-x11-2.0.so.0.2400.6[7effa9a53000+ad000]
libgdk-x11-2.0.so.0 is provided by the GTK2 package, so I am not convinced this error is related to my connection, or lack thereof. This however is all I have.
If you are wanting to try out  rutilt w/ the rt73 module for your own exploration, to save you some time...
Rutilt can be got here:
(snapshots exist at later dates)
http://arm.konnichi.com/2009/11/01/community/os/ 
The patched rt73 module can be compiled and installed with yaourt. If you receive an 'smp_lock.h error' at compilation then creating a null file at /usr/include/linux should resolve this:
http://idratherhack.blogspot.com/2011/0 … lockh.html

Similar Messages

  • IMac G5 system hang - 2 bad 1GB memory modules?

    I am experiencing intermittent system hangs, requiring power off / on to recover. Applications run fine for hours, then everything freezes; a few seconds later the fans spool up full bore. There seems to be no logic to the failure. It happens on many different applications, including Disk Utility. No new software has been added recently (other than Apple software updates). This has been occuring for several weeks.
    I repair permissions & run disk verify. When disk utility runs completely without hanging (on verify), everything is ok.
    Applecare had me trash the ~/Library/Caches & system caches. No joy. They recommended archive & install beginning with Panther. Reinstall went ok until downloading updates for 10.4.8, then hang (might this suggest a hardware prob?).
    Rebooted in target firewire mode the cloned drive, then zero'ed the G5 HDD and restored from clone (SuperDuper!). Everything appeared ok for several days, then the same system hang reappeared. I should mention that in the course of sudying this one, I discovered Virex 7.5 was sucking the processing life from the G5; used the uninstaller to get rid of it & the iMac is quiet again!
    I have run the Applecare version of Techtools and the Hardware Test Disk, everything passes.
    I could do a clean install of Tiger, then use migration assistant to move data from the clone...if I felt it had a chance to solve it. On the other hand, maybe its a flaky hardware gremlin and I'm wasting my time doing reinstalls, and I should hustle it over to the local Apple store.
    Update - took iMac for service at Apple store where it failed under stress test with my 2 GB of memory but ran for an extended period with Apple memory. In an attempt to isolate which of the two 1 GB modules was bad, removed one module. Identical failure after 24 hrs. Howver, swapping out that failing module with the second module, identical hand. That suggests either both 1 GB modules are bad (unikely), or some other hardware issue is the problem.
    Problem seems to occur most often when starting playing iTunes, or running Disk Utility (repair permissions).
    I suppose the next step is to buy 1 GB of memory from Apple and make it fail again. Any suggestions?

    Thank you for your posts, I appreciate it.
    Skip - I tried a spare keyboard & mouse. Still failed.
    MGW - all software is up to date.
    DaddyPaycheck - I downloaded memtestosx. It fails testing each 1GB memory module separately (in different sockets). I'm running in multiuser mode and when it fails the entire iMac freezes up (just like it always does), requiring power off / power on. Is this normal behavior when the memtestosx test fails?
    I will plan to test in single user mode as the supplied doc states that if the onboard cache is failing it would pass singleuser (cache apparently disabled in singleuser mode) but fail multiuser. Maybe the onboard cache is bad?
    Thanks.

  • System hanging on shutdown

    The home directories on my system are on NFS.
    Most of the times, when users log out of their graphical session, some of their processes keep running (for instance /usr/bin/nepomukserver for KDE users and some processes related to pulse or to chromium).
    When shutting down the system, arch scripts first try unmounting network filesystems, and this fails, since /home is busy; then they send a SIGTERM to processes, and this fails as well (I believe it's because the network has been halted but /home hasn't been mounted), then the system hangs while unmounting non-API filesystems.
    If, before shutting down, I manually kill the user processes (nepomukserver, pulse, chromium, ...), arch is able to shutdown as expected.
    Am I the only one affected by this problem?
    How am I supposed to solve it?
    I'm thinking about writing a script to terminate (`kill` and then `kill -9`) any process using /home (`lsof /home`), but this looks like a terrible hack...

    So, since I couldn't find any other solution, decided to write a script (an init script to add to the DAEMONS array) that kills the processes using /home while halting the machine...
    If anybody will ever need it, here it is:
    /etc/rc.d/pathliberator
    #!/bin/bash
    # Path Liberator
    # kills processes that are using a given path
    DAEMON=pathliberator
    . /etc/rc.conf
    . /etc/rc.d/functions
    [ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON
    case "$1" in
    start)
    stat_busy "Starting path liberator"
    add_daemon $DAEMON
    stat_done
    stop)
    success=true
    for path in ${PATHS_TO_LIBERATE[@]}
    do
    pids=$( lsof -Fp $path | sed -rs "s/^.(.*)$/\1/g" )
    if [ "$pids" == "" ]
    then
    status "$path was already free" true
    continue
    fi
    # kill -TERM
    stat_busy "Liberating $path"
    kill -15 ${pids[@]} &>/dev/null
    pids=$( lsof -Fp $path | sed -rs "s/^.(.*)$/\1/g" )
    if [ "$pids" == "" ]; then
    stat_done
    continue
    fi
    stat_fail
    pids=$( lsof -Fp $path | sed -rs "s/^.(.*)$/\1/g" )
    # kill -KILL
    stat_busy "Liberating $path with SIGKILL"
    kill -9 ${pids[@]} &>/dev/null
    pids=$( lsof -Fp $path | sed -rs "s/^.(.*)$/\1/g" )
    if [ "$pids" == "" ]; then
    stat_done
    continue
    fi
    stat_fail
    success=false
    done
    status "Paths liberated" $success
    if [ $success ]
    then
    rm_daemon $DAEMON
    fi
    restart)
    $0 stop
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0
    /etc/conf.d/pathliberator
    # Parameters to be passed to pathliberator
    PATHS_TO_LIBERATE=(/home/)
    It seems to be working, although didn't deeply test it...
    My DAEMONS array now looks like this:
    DAEMONS=(hwclock syslog-ng cpufreq network crond nscd dbus rpcbind nfs-common netfs pathliberator gpm sshd @ntpdate alsa fuse gdm avahi-daemon)
    Last edited by peoro (2012-06-13 11:23:17)

  • System hangs on shutdown

    First, the source of the problem was the startupitem for mysql.
    I removed all system startup items then rebooted fine, after that I eliminated all the options by placing them back 1 by 1.
    What I find strange was that I moved the mysql startup item to the startup folder, set the permissions right and reboot.... And the system immediatly hung... Why is this (called) a startup item if it affects shutdown?
    And how can it affect a shutdown like that.... How exactly are the startupitems used during shutdown?
    MacBook Mac OS X (10.4.8)

    How can something that isnt started, refuse to shut down?
    I dragged the mysql startup item to the startup folder and the system hang at the next reboot..... So it couldnt have been started right?

  • System hangs during shutdown, blue screen with gear spinning.

    My MBP gets stuck during shutdown/restart process.
    The system acts like it is shutting down, exits the the desktop, goes to a blue screen with a spining gear then never turns off.  It seems the screen falls aslep if you leave it awhile but the system itself won't actually shutdown. If you move the mouse the screen lights back up. but still shos the "death gear"! happens on both shutdowns or restarts.  System must be turned off by holding the power switch for 10 secs.
    Please help!
    Chris

    Seems like a odd thing. If youve downloaded torrents of hacked programs or things like that may have been the cause by the uploader hacking and doinng this. I would bring the Macbook Pro to the apple store and see what they can do. If they cant do anything about it I would backup all the important programs and get rid of anything that seems suspicious. Then upload the stuff back onto the computer after you restore it. Thats the best solution.

  • System updates = no internet with konqueror only[solved]

    Could not start process Unable to create io-slave:
    klauncher said: Error loading 'kio_http'.
    I get this error after a few recents updates. I still have internet connection with firefox and other system services.
    heres what I've just updated:
    [03/15/05 17:52] upgraded atk (1.9.0-1 -> 1.9.1-1)
    [03/15/05 17:52] upgraded db (4.2.52.2-2 -> 4.3.27-2)
    [03/15/05 17:52] upgraded kernel26 (2.6.10-3 -> 2.6.11.3-1)
    [03/15/05 17:52] upgraded librsvg (2.8.1-3 -> 2.9.5-1)
    [03/15/05 17:52] upgraded openldap (2.2.23-1 -> 2.2.23-2)
    [03/15/05 17:52] upgraded pam (0.78-3 -> 0.78-4)
    [03/15/05 17:52] upgraded pango (1.8.0-1 -> 1.8.1-1)
    [03/15/05 17:52] upgraded perl (5.8.6-1 -> 5.8.6-2)
    [03/15/05 17:52] upgraded python (2.4-2 -> 2.4-3)
    [03/15/05 17:53] upgraded qt (3.3.4-3 -> 3.3.4-5)
    [03/15/05 17:53] upgraded ruby (1.8.2-3 -> 1.8.2-4)
    [03/15/05 17:53] upgraded startup-notification (0.7-1 -> 0.8-1)
    ...I got a hotplug error saying:
    ...can't load module shpchp
    missing kernel or user mode module shpchp
    tried reinstalling the old kernel, it got rid of the warning but I still got the network problems with konqueror.

    The 'kio_http' error is caused by  db. Downgrade db and it should work.
    You can add shpchp to /etc/hotplug/blacklist so hotplug won't try to load it.

  • Cannot unmount /mnt after installation & system hangs on shutdown.

    Once I exit chroot and run 'umount /mnt' as per the beginner's guide, I get the message:
    umount: /mnt: target is busy.
    (In some cases useful info about processes that use
    the device is found by lsof(8) or fuser(1))
    I am fairly new to Arch and Linux in general. I've installed Arch in 2 other machines with no such problem.
    The root of this whole issue is that my laptop hangs when I shutdown. It hangs on either one of these lines:
    kvm: exiting hardware virtualization
    or
    sd 0:0:0:0: [sda] Synchronizing SCSI cache
    I can't find anything by googling so I am pretty much clueless. I thought the issue stemmed from my not unmounting /mnt properly after the installation.
    Last edited by Synek (2013-09-17 00:11:37)

    2ManyDogs wrote:
    Synek wrote:The two mounted on /mnt (after having run 'umount /mnt/{boot,home,}') are /dev/sda3 (my /home) on /mnt, and udev on /mnt/dev.
    I'm not sure why your /home is mounted at /mnt (that's where your root partition should have been mounted, with your /home then mounted at /mnt/home), but you should not have anything left on /mnt at the end of the installation. The Beginners' Guide tells you to run this command:
    umount -R /mnt
    This should unmount everthing on /mnt.
    I did mount /home at /mnt/home, my mistake.
    Running
    umount -R /mnt
    gives the same result as in the OP.
    BUR wrote:Does it keep giving you errors if you try to unmount everything by using /dev/sda* instead of mountpoints? Start from the end (root partition should be touched only after everything else).
    Do you mean
    umount /dev/sdxy
    I ran
    umount /dev/sdb3
    (this is /home) and it is not mounted. I ran
    umount /dev/sda3
    (this is /) and I get the same error.
    According to
    mount
    , /dev/sda3 is still mounted on /mnt and udev is still mounted on /mnt/dev. That's the only things still mounted on /mnt.

  • System hangs while working with Adobe forms in Eclipse

    Hi,
    I am new to SAP ABAP and ABAP in Eclipse. So far we were using SAP GUI, but now we are moving towards Eclipse for ABAP.
    I am creating adobe forms  in eclipse using Open with SAP GUI option. I am able to create and execute in eclipse  but it always hangs when I try opening the layout and then closing it. Once it hangs, I need to kill Eclipse process from task manager. Can anybody help me?
    Thanks in advance.

    Hello Hemika,
    What is the version of Adobe LiveCycle designer on your PC ?
    Looks like the  Adobe LiveCycle Designer and NWDS  versions are  incompatible .
      1055911 - Creating ZCI based interactive Forms in Web Dynpro for Java
    1090464 - Interactive Forms-Web Dynpro Java-Limitations/Recommendation
    Regards
    Sandy

  • Itunes 10.5 is making my system hang when syncing with ipod(never crosses stage 1-backing up)

    I updated my itunes 10.1 to the latest version 10.5 and since then every time i try to sync my ipod touch it takes a long time to verify it and then then freezes at stage 1-backing up.I tried cancelling the sync but even that is not happening and i have to go to task manager and end the process.Can someone help please!

    I ran Repair Permissions on my MBP hard drive and this corrected the problem.  My iPhone now syncs perfectly with iTunes. I was about to, at the suggestion of Apple Support, remove iTunes and reinstall the program.  But I thought I would try the old "standby" Apple cure (Repair Permissions) first.  And it worked!! Hope this helps others with similar problems. 
    And, oh, BTW, if your iPhone 3GS battery dies, try charging it up with the AC adapter firstI think this whole problem started when I plugged in my dead iPhone into my MBP with iTunes running and iTunes, and/or the Mac didn't like it.  FYI.

  • System hangs with radeon card and vgaswitcheroo

    I have an HP Envy 17-3200 with an integrated HD4000 (i915) and an ATI M7850 (radeon).  These modules are both included in the kernel via mkinitcpio.  I am using systemd but have enabled the rc-local service to run at boot (rc.local is run).  This turns off the discrete card via vgaswitcheroo.  Given this configuration, the system boots normally into gdm.  However, when I attempt to switch graphics cards via:
    $ echo DDIS > /sys/kernel/debug/vgaswitcheroo/switch
    $ sudo systemctl restart gdm.service
    The system hangs (I have to force a reset).  This happens regardless of whether I echo OFF into vgaswitcheroo.  This does not happen if I restart gdm without switching cards.
    I know the radeon driver is loaded and associated with my card as:
    $ lspci -k
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    Subsystem: Hewlett-Packard Company Device 1853
    Kernel driver in use: i915
    01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Device 6827 (rev ff)
    Kernel driver in use: radeon
    I'm not even sure of what log to look in to narrow down the problem.
    NOTE:  This seems to be related to this post.  That problem was at boot time and mine was not, though.  In addition, no one replied to that post, so I thought I might make a new one.

    https://bugs.freedesktop.org/show_bug.cgi?id=37528
    I am not 100% sure, but I think that is the answer to your question.  Not very satisfying, but I have the same problem.  It's impossible to get it working.
    Maybe Wayland will solve the issue, someday... when we've already bought new laptops... which by that time won't be supported by Wayland. ;-)

  • Odd System Hangs [SOLVED]

    I have a cleanly installed Arch (x86) system on a Dell Vostro 1500
    Intel 2.5 GHz Core 2
    Braodcom Wireless (ndiswrapper)
    4GB Ram
    250 GB Western Digital HDD (sata)
    nvidia 8400 GS 256 MB
    1650x1080 Resolution
    Built in UVC web cam
    I seem to be having these completely random and odd system hangs.
    It prevents me from using my computer for more than a few minutes at a time.
    When it hangs, its usually what ever process im in gets stuck, i cant kill it completely all the time. Sometimes i can using top as root and sometimes i can using kill -kill but sometimes i cant at all and that is usually when the PPID is 1.
    When I try to shutdown or reboot either from in gnome or one of the virtual consoles, it always says something about either the root or home partition unable to be unmounted, that they are still busy.
    my partition layout is such:
    sda1    NTFS    Vista (I have to have it because of stupid itunes/iphone)
    sda2    ext2     boot
    sda3    xfs       root
    extended:
    sda5    xfs       home
    sda6   swap     swap
    my ntfs partition is about 50GB and when i boot into vista i dont get the same hangs, so i don't think its a hard drive issue (but could be an partition issue)
    boot partition is something like 300MB
    root is something like 12 GB
    Home is something like 70 gb
    and swap is about 2gb
    It does not matter whether or not im in gnome since if at log in screen, ill hit ctrl+alt+f1 and switch to a consol and do something as simple as like update the computer and ill cause it to hang sometimes (but not every time its too unpredictable)
    When in gnome however, most applications refuse to launch and sometimes even close. The gnome-panel and some (like the system monitor) lock up but things like cpu freq scaling continues to work as does log out and the menu.
    i have also had issues with the latest (-3) nvidia driver and can only get 1680x1050 resolution using the open source nv drivers (haven't had a chance to build from aur the beta drivers yet since there is an issue with the nvidia-utils-beta package) but i don't think this is causing it.
    i used the western digital tool to do a hard drive scan, and it didn't find anything in the quick scan but it is still running the full scan.
    I suspect it might be due to some package upgrade, i was running arch before the reformat and it was causing me to have the same issues.
    i have kicked my personal Ubuntun (and derivatives) additional because of Arch's rolling release cycle so that's why i would rather put up with it for another week to figure this out!
    Let me know if there is any log files i should post or anything that way i can get this fixed! And thanks in advanced (even to those of you who will probably only comment to make fun of vista, it still will keep my thread alive! )
    Last edited by scubanator87 (2008-08-28 16:19:41)

    Here is the dmseg output:
    Linux version 2.6.26-ARCH (root@T-POWA-LX) (gcc version 4.3.1 20080724 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Aug 10 12:29:20 UTC 2008
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000efe6d800 (usable)
    BIOS-e820: 00000000efe6d800 - 00000000f4000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved)
    BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved)
    BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)
    BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    BIOS-e820: 0000000100002000 - 0000000110000000 (usable)
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Warning only 4GB will be used.
    Use a HIGHMEM64G enabled kernel.
    3200MB HIGHMEM available.
    896MB LOWMEM available.
    Entering add_active_range(0, 0, 1048576) 0 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    Normal 4096 -> 229376
    HighMem 229376 -> 1048576
    Movable zone start PFN for each node
    early_node_map[1] active PFN ranges
    0: 0 -> 1048576
    On node 0 totalpages: 1048576
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 4064 pages, LIFO batch:0
    Normal zone: 1760 pages used for memmap
    Normal zone: 223520 pages, LIFO batch:31
    HighMem zone: 6400 pages used for memmap
    HighMem zone: 812800 pages, LIFO batch:31
    Movable zone: 0 pages used for memmap
    DMI 2.4 present.
    ACPI: RSDP 000FBBF0, 0024 (r2 DELL )
    ACPI: XSDT EFE6F200, 005C (r1 DELL M08 27D80203 ASL 61)
    ACPI: FACP EFE6F09C, 00F4 (r4 DELL M08 27D80203 ASL 61)
    ACPI: DSDT EFE6F800, 5658 (r2 INT430 SYSFexxx 1001 INTL 20050624)
    ACPI: FACS EFE7E000, 0040
    ACPI: HPET EFE6F300, 0038 (r1 DELL M08 1 ASL 61)
    ACPI: APIC EFE6F400, 0068 (r1 DELL M08 27D80203 ASL 47)
    ACPI: MCFG EFE6F3C0, 003E (r16 DELL M08 27D80203 ASL 61)
    ACPI: SLIC EFE6F49C, 0176 (r1 DELL M08 27D80203 ASL 61)
    ACPI: BOOT EFE6EFC0, 0028 (r1 DELL M08 27D80203 ASL 61)
    ACPI: SSDT EFE6D97A, 04CC (r1 PmRef CpuPm 3000 INTL 20050624)
    ACPI: PM-Timer IO Port: 0x1008
    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] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Using ACPI (MADT) for SMP configuration information
    Allocating PCI resources starting at f5000000 (gap: f4000000:0ac00000)
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    PERCPU: Allocating 39464 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 2
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1040384
    Kernel command line: root=/dev/disk/by-uuid/1556dc58-8b8c-44dd-87d9-7640a2dff1d6 ro vga=795
    mapped APIC to ffffb000 (fee00000)
    mapped IOAPIC to ffffa000 (fec00000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Extended CMOS year: 2000
    Detected 2493.858 MHz processor.
    Console: colour dummy device 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Memory: 3890736k/4194304k available (2105k kernel code, 38512k reserved, 738k data, 264k init, 3013044k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee4000 - 0xfffff000 (1132 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf8800000 - 0xff7fe000 ( 111 MB)
    lowmem : 0xc0000000 - 0xf8000000 ( 896 MB)
    .init : 0xc03cd000 - 0xc040f000 ( 264 kB)
    .data : 0xc030e78e - 0xc03c7380 ( 738 kB)
    .text : 0xc0100000 - 0xc030e78e (2105 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    hpet clockevent registered
    Calibrating delay using timer specific routine.. 4994.04 BogoMIPS (lpj=8320071)
    Security Framework initialized
    Capability LSM initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 6144K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    using mwait in idle threads.
    Checking 'hlt' instruction... OK.
    ACPI: Core revision 20080321
    ACPI: Checking initramfs for custom DSDT
    ENABLING IO-APIC IRQs
    ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Core(TM)2 Duo CPU T9300 @ 2.50GHz stepping 06
    Booting processor 1/1 ip 6000
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 4989.28 BogoMIPS (lpj=8312455)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 6144K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#1.
    x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
    CPU1: Intel(R) Core(TM)2 Duo CPU T9300 @ 2.50GHz stepping 06
    checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Brought up 2 CPUs
    Total of 2 processors activated (9983.32 BogoMIPS).
    net_namespace: 652 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
    PCI: MCFG area at f0000000 reserved in E820
    PCI: Using MMCONFIG for extended config space
    PCI: Using configuration type 1 for base access
    Setting up standard PCI resources
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
    pci 0000:00:1f.0: quirk: region 1080-10bf claimed by ICH6 GPIO
    PCI: Transparent bridge - 0000:00:1e.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 11) *7
    ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *10
    ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *4
    ACPI: PCI Interrupt Link [LNKD] (IRQs *5 7 9 10 11)
    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)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 12 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:05: ioport range 0xc80-0xcff could not be reserved
    system 00:08: iomem range 0xfed00000-0xfed003ff has been reserved
    system 00:09: ioport range 0x900-0x97f has been reserved
    system 00:09: ioport range 0x4d0-0x4d1 has been reserved
    system 00:09: ioport range 0x1000-0x1005 has been reserved
    system 00:09: ioport range 0x1008-0x100f has been reserved
    system 00:0a: ioport range 0xf400-0xf4fe has been reserved
    system 00:0a: ioport range 0x1006-0x1007 has been reserved
    system 00:0a: ioport range 0x100a-0x1059 could not be reserved
    system 00:0a: ioport range 0x1060-0x107f has been reserved
    system 00:0a: ioport range 0x1080-0x10bf has been reserved
    system 00:0a: ioport range 0x10c0-0x10df has been reserved
    system 00:0a: ioport range 0x1010-0x102f has been reserved
    system 00:0a: ioport range 0x809-0x809 has been reserved
    system 00:0b: iomem range 0x0-0x9efff could not be reserved
    system 00:0b: iomem range 0x9f000-0x9ffff could not be reserved
    system 00:0b: iomem range 0xc0000-0xcffff could not be reserved
    system 00:0b: iomem range 0xe0000-0xfffff could not be reserved
    system 00:0b: iomem range 0x100000-0xefe6d7ff could not be reserved
    system 00:0b: iomem range 0xefe6d800-0xefefffff could not be reserved
    system 00:0b: iomem range 0xeff00000-0xefffffff could not be reserved
    system 00:0b: iomem range 0xeff00000-0xf06fffff could not be reserved
    system 00:0b: iomem range 0xfff00000-0xffffffff could not be reserved
    system 00:0b: iomem range 0xffa00000-0xffafffff has been reserved
    system 00:0b: iomem range 0xfec00000-0xfec0ffff could not be reserved
    system 00:0b: iomem range 0xfee00000-0xfee0ffff could not be reserved
    system 00:0b: iomem range 0xfed20000-0xfed8ffff could not be reserved
    system 00:0b: iomem range 0xfeda0000-0xfeda3fff could not be reserved
    system 00:0b: iomem range 0xfeda4000-0xfeda4fff could not be reserved
    system 00:0b: iomem range 0xfeda5000-0xfeda5fff could not be reserved
    system 00:0b: iomem range 0xfeda6000-0xfeda6fff has been reserved
    system 00:0b: iomem range 0xfed18000-0xfed1bfff could not be reserved
    system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
    PCI: Bridge: 0000:00:01.0
    IO window: d000-dfff
    MEM window: 0xfa000000-0xfeafffff
    PREFETCH window: 0x00000000f4000000-0x00000000f7ffffff
    PCI: Bridge: 0000:00:1c.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1c.1
    IO window: disabled.
    MEM window: 0xf9f00000-0xf9ffffff
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1c.3
    IO window: c000-cfff
    MEM window: 0xf9c00000-0xf9efffff
    PREFETCH window: 0x00000000f8000000-0x00000000f81fffff
    PCI: Bridge: 0000:00:1e.0
    IO window: disabled.
    MEM window: 0xf9b00000-0xf9bfffff
    PREFETCH window: disabled.
    ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    ACPI: PCI Interrupt 0000:00:1c.1[b] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:00:1c.1 to 64
    ACPI: PCI Interrupt 0000:00:1c.3[D] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1c.3 to 64
    PCI: Setting latency timer of device 0000:00:1e.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 781k freed
    Simple Boot Flag at 0x79 set to 0x1
    apm: BIOS not found.
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1717
    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:01:00.0: Boot video device
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:01.0:pcie00]
    Allocate Port Service[0000:00:01.0:pcie02]
    Allocate Port Service[0000:00:01.0:pcie03]
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.0:pcie00]
    Allocate Port Service[0000:00:1c.0:pcie02]
    Allocate Port Service[0000:00:1c.0:pcie03]
    PCI: Setting latency timer of device 0000:00:1c.1 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.1:pcie00]
    Allocate Port Service[0000:00:1c.1:pcie02]
    Allocate Port Service[0000:00:1c.1:pcie03]
    PCI: Setting latency timer of device 0000:00:1c.3 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.3:pcie00]
    Allocate Port Service[0000:00:1c.3:pcie02]
    Allocate Port Service[0000:00:1c.3:pcie03]
    vesafb: framebuffer at 0xfb000000, mapped to 0xf8880000, using 10240k, total 14336k
    vesafb: mode is 1280x1024x32, linelength=5120, pages=1
    vesafb: protected mode interface info at c000:b650
    vesafb: pmi: set display start = c00cb6b3, set palette = c00cb70e
    vesafb: pmi: ports = 3b4 3b5 3ba 3c0 3c1 3c4 3c5 3c6 3c7 3c8 3c9 3cc 3ce 3cf 3d0 3d1 3d2 3d3 3d4 3d5 3da
    vesafb: scrolling: redraw
    vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Switched to high resolution mode on CPU 1
    Switched to high resolution mode on CPU 0
    Console: switching to colour frame buffer device 160x64
    fb0: VESA VGA frame buffer device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    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
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 264k freed
    input: AT Translated Set 2 keyboard as /class/input/input1
    No dock devices found.
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1f.1 to 64
    ACPI: PCI interrupt for device 0000:00:1f.1 disabled
    ACPI: PCI Interrupt 0000:00:1f.2[b] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    ACPI: PCI interrupt for device 0000:00:1f.2 disabled
    ata_piix 0000:00:1f.1: version 2.12
    ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1f.1 to 64
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x6fa0 irq 14
    ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6fa8 irq 15
    ata1.00: ATAPI: HL-DT-ST DVD+/-RW GSA-T21N, A102, max UDMA/33
    ata1.00: configured for UDMA/33
    ata2: port disabled. ignoring.
    scsi 0:0:0:0: CD-ROM HL-DT-ST DVD+-RW GSA-T21N A102 PQ: 0 ANSI: 5
    ACPI: PCI Interrupt 0000:00:1f.2[b] -> GSI 17 (level, low) -> IRQ 17
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    scsi2 : ata_piix
    scsi3 : ata_piix
    ata3: SATA max UDMA/133 cmd 0x6eb0 ctl 0x6eb8 bmdma 0x6ee0 irq 17
    ata4: SATA max UDMA/133 cmd 0x6ec0 ctl 0x6ec8 bmdma 0x6ee8 irq 17
    ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata3.00: ATA-8: WDC WD2500BEVS-75UST0, 01.01A01, max UDMA/133
    ata3.00: 488397168 sectors, multi 8: LBA48 NCQ (depth 0/32)
    ata3.00: configured for UDMA/133
    ata4: SATA link down (SStatus 0 SControl 0)
    scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEVS-7 01.0 PQ: 0 ANSI: 5
    Driver 'sr' needs updating - please use bus_type methods
    Driver 'sd' needs updating - please use bus_type methods
    sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 0:0:0:0: Attached scsi CD-ROM sr0
    sd 2:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
    sd 2:0:0:0: [sda] Write Protect is off
    sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 2:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
    sd 2:0:0:0: [sda] Write Protect is off
    sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    sd 2:0:0:0: [sda] Attached SCSI disk
    SGI XFS with ACLs, security attributes, realtime, large block numbers, no debug enabled
    SGI XFS Quota Management subsystem
    XFS mounting filesystem sda3
    Ending clean XFS mount for filesystem: sda3
    rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k
    ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 17 (level, low) -> IRQ 17
    ssb: Sonics Silicon Backplane found on PCI device 0000:03:00.0
    b44.c:v2.0
    eth0: Broadcom 44xx/47xx 10/100BaseT Ethernet 00:1d:09:d2:f2:e9
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ndiswrapper version 1.53 loaded (smp=yes, preempt=yes)
    ndiswrapper: driver bcmwl5 (Broadcom,09/20/2007, 4.170.25.12) loaded
    ACPI: PCI Interrupt 0000:0c:00.0[A] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:0c:00.0 to 64
    ndiswrapper: using IRQ 17
    wlan0: ethernet device 00:16:44:b5:93:db using NDIS driver: bcmwl5, version: 0x4aa190c, NDIS version: 0x501, vendor: 'NDIS Network Adapter', 14E4:4315.5.conf
    wlan0: encryption modes supported: WEP; TKIP with WPA, WPA2, WPA2PSK; AES/CCMP with WPA, WPA2, WPA2PSK
    usbcore: registered new interface driver ndiswrapper
    ACPI: SSDT EFE6E4B0, 02C8 (r1 PmRef Cpu0Ist 3000 INTL 20050624)
    ACPI: SSDT EFE6DE46, 05E5 (r1 PmRef Cpu0Cst 3001 INTL 20050624)
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    ACPI: ACPI0007:00 is registered as cooling_device0
    ACPI: Processor [CPU0] (supports 8 throttling states)
    ACPI: SSDT EFE6E778, 00C4 (r1 PmRef Cpu1Ist 3000 INTL 20050624)
    ACPI: SSDT EFE6E42B, 0085 (r1 PmRef Cpu1Cst 3000 INTL 20050624)
    ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
    ACPI: ACPI0007:01 is registered as cooling_device1
    ACPI: Processor [CPU1] (supports 8 throttling states)
    Marking TSC unstable due to: TSC halts in idle.
    ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 21 (level, low) -> IRQ 21
    PCI: Setting latency timer of device 0000:00:1b.0 to 64
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery present)
    input: Lid Switch as /class/input/input2
    ACPI: Lid Switch [LID]
    input: Power Button (CM) as /class/input/input3
    ACPI: Power Button (CM) [PBTN]
    input: Sleep Button (CM) as /class/input/input4
    ACPI: Sleep Button (CM) [SBTN]
    ACPI: LNXTHERM:01 is registered as thermal_zone0
    ACPI: Thermal Zone [THM] (25 C)
    dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    sr 0:0:0:0: Attached scsi generic sg0 type 5
    sd 2:0:0:0: Attached scsi generic sg1 type 0
    USB Universal Host Controller Interface driver v3.0
    ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 20 (level, low) -> IRQ 20
    PCI: Setting latency timer of device 0000:00:1a.0 to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f20
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    ACPI: WMI: Mapper loaded
    Linux agpgart interface v0.103
    ACPI: PCI Interrupt 0000:00:1a.1[b] -> GSI 21 (level, low) -> IRQ 21
    PCI: Setting latency timer of device 0000:00:1a.1 to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f00
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1a.7[C] -> GSI 22 (level, low) -> IRQ 22
    PCI: Setting latency timer of device 0000:00:1a.7 to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 3
    ehci_hcd 0000:00:1a.7: debug port 1
    PCI: cache line size of 32 is not supported by device 0000:00:1a.7
    ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfed1c400
    ACPI: device:32 is registered as cooling_device2
    input: Video Bus as /class/input/input5
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 4 ports detected
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    ACPI: device:37 is registered as cooling_device3
    input: Video Bus as /class/input/input6
    ACPI: Video Device [VID1] (multi-head: yes rom: no post: no)
    input: Video Bus as /class/input/input7
    ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 20 (level, low) -> IRQ 20
    PCI: Setting latency timer of device 0000:00:1d.0 to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f80
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    ACPI: Video Device [VID2] (multi-head: yes rom: no post: no)
    ricoh-mmc: Ricoh MMC Controller disabling driver
    ricoh-mmc: Copyright(c) Philip Langdale
    ACPI: PCI Interrupt 0000:00:1d.1[b] -> GSI 21 (level, low) -> IRQ 21
    PCI: Setting latency timer of device 0000:00:1d.1 to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f60
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    input: PC Speaker as /class/input/input8
    sdhci: Secure Digital Host Controller Interface driver
    sdhci: Copyright(c) Pierre Ossman
    ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 22 (level, low) -> IRQ 22
    PCI: Setting latency timer of device 0000:00:1d.2 to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 20 (level, low) -> IRQ 20
    PCI: Setting latency timer of device 0000:00:1d.7 to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 7
    ehci_hcd 0000:00:1d.7: debug port 1
    PCI: cache line size of 32 is not supported by device 0000:00:1d.7
    ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfed1c000
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 6 ports detected
    ricoh-mmc: Ricoh MMC controller found at 0000:03:01.2 [1180:0843] (rev 12)
    ricoh-mmc: Controller is now disabled.
    ACPI: PCI Interrupt 0000:03:01.0[A] -> GSI 19 (level, low) -> IRQ 19
    ACPI: PCI Interrupt 0000:00:1f.3[b] -> GSI 17 (level, low) -> IRQ 17
    ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[19] MMIO=[f9bfd800-f9bfdfff] Max Packet=[2048] IR/IT contexts=[4/4]
    sdhci: SDHCI controller found at 0000:03:01.1 [1180:0822] (rev 22)
    ACPI: PCI Interrupt 0000:03:01.1[b] -> GSI 18 (level, low) -> IRQ 18
    mmc0: SDHCI at 0xf9bfd400 irq 18 DMA
    Clocksource tsc unstable (delta = -136278622 ns)
    usb 7-6: new high speed USB device using ehci_hcd and address 2
    Synaptics Touchpad, model: 1, fw: 6.3, id: 0x1a0b1, caps: 0xa04793/0x300000
    serio: Synaptics pass-through port at isa0060/serio1/input0
    usb 7-6: configuration #1 chosen from 1 choice
    input: SynPS/2 Synaptics TouchPad as /class/input/input9
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device Laptop Integrated Webcam (05a9:2640)
    uvcvideo: Failed to query (135) UVC control 1 (unit 0) : -32 (exp. 26).
    input: Laptop Integrated Webcam as /class/input/input10
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    XFS mounting filesystem sda5
    Ending clean XFS mount for filesystem: sda5
    ieee1394: Host added: ID:BUS[0-00:1023] GUID[444fc0001a3d01c1]
    Adding 2522164k swap on /dev/sda6. Priority:-1 extents:1 across:2522164k
    b44: eth0: Link is up at 100 Mbps, full duplex.
    b44: eth0: Flow control is off for TX and off for RX.
    fuse init (API version 7.9)
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    ADDRCONF(NETDEV_UP): wlan0: link is not ready
    eth0: no IPv6 routers present

  • IBM OS ISSUE: SYSTEM HANG WITH JFS2 AND HEAVY LOAD

    제품 : ORACLE SERVER
    작성날짜 : 2004-11-24
    IBM OS ISSUE: SYSTEM HANG WITH JFS2 AND HEAVY LOAD
    ==================================================
    PURPOSE
    이 문서는 IBM AIX5L OS 상에서 Arch Process가 online redo log
    를 release하지 못하고 OS의 kill 명령으로 kill조차 되지 않을 경우
    조치 방법이다.
    Problem Description
    이 문서는 다음 OS 정보와 Oracle version인 경우에 해당한다.
    Oracle Server - Enterprise Edition - Version: 9.2.0.5.0
    Oracle Server - Enterprise Edition - Version: 8.1.7.4.0
    AIX5L Based Systems (64-bit) or (32-bit)
    문제 발생 당시의 증상은 다음과 같다.
    - arch-process doesn't release redolog files
    - arch-process doesn't die after database shutdown
    - arch-process can't be killed
    genclntsh 수행 시 hang 상태이다.
    (sleeping...)28590: kwaitpid(0x2FF22470, -1, 4, 0x00000000, 0x00000000)
    또는 이 문제로 인하여 ORA-600[2103] 에러가 발생하기도 한다.
    이 에러가 발생하는 원인은 IBM AIX5L 64bit, 32bit OS 이슈에 있다.
    IBM OS issue: SYSTEM HANG WITH JFS2 AND HEAVY LOAD.
    Workaround
    none
    Solution Description
    OS AIX5L ML4.0(5.2.0.40)의 bos.up / bos.mp / bos.mp64 fileset level을
    갖는 JFS2 file system을 갖는 경우에 해당한다.
    AIX 5.3 APAR IY59387은 IY58143에 포함되어 있다.
    JFS2 file system에 Heavy I/O activity가 발생하면 database process에
    HANG 문제를 야기시킬 수 있다. 이 때 database process가 kill -9
    명령으로 kill되지 않는다. 데이타베이스를 SHUTDOWN하여도 Process가
    계속 살아 있게 된다.
    Process에게 SIGKILL 함수가 issue되었지만 영향을 주지 않게 된다.
    Process를 제거하는 유일한 방법은 OS를 reboot하는 것이다.
    문제를 예방하는 방법은 IBM APAR-FIX IY59082 를 적용하는 것이다.
    이 APAR는 bos.64bit 5.2.0.42에 포함되어 있다.
    Fix :
    Need to install the IBM APAR-FIX IY59082, this APAR is included on
    bos.64bit 5.2.0.42.
    (주) IBM 엔지니어에게 확인 결과 이 Patch 안에 AIX5L 32bit 용과 64bit
    용이 모두 포함되어 있는 것으로 확인됨.
    Reference Documents
    <Note:285158.1>

    b,
    The install was from my original Dell XP Pro-SP1 'Reinstallation' CD along with the complete MS XP-SP2 download that I burned to another CD. I also had all the latest Dell drivers from their website burned to a CD. Install went as follows:
    - Format HD
    - Install XP Pro SP1
    - Install SP2
    - Install Dell Drivers
    - Obtain any MS patches from their site
    - Install Office
    - Update Office from the MS website
    - Install iTunes
    - Tweak MS settings
    - Install many software programs
    - Make an interim Image of system and store to ExHD
    - Install other software programs (mostly security programs)
    - Make another 'complete' Image to ExHD
    - Restore backup data and music
    After additional testing last night, I determined that it is not iTunes at all (or to blame). I get intermittent hangs/freezes/pauses in other media players (WMP, etc.).
    Seems that something is causing the 'System' process to periodically jump up in CPU %age (though not more than 30-50%). Even this relatively small amount is enough to pause the playback of music or video, hang the mouse movement for a brief moment, or delay a menu opening. All very subtle - you have to be looking for it to notice (except with real-time audio-video, which is quite noticeable whenever this happens).
    I had this problem a year ago, which is why I reimaged then and stayed with SP1 on the advice of Dell and Webroot. I'm stumped as to where to look for the culprit. Every time I go back to the original HD with SP1, everything runs smoothly. Some sort of system call is generating this complete pause....
    I'll be limited in my Internet ability for the next several days, so I may be out of touch until Friday. I'll keep testing and playing with the limited equipment I take along....
    Any thought you or others want to toss out, I'll attempt when possible.
    Thanks!

  • System Hangs on X-kill, reboot, or shutdown [an fglrx problem].

    I'm pretty sure this is linked with my new monitor somehow. I got a new monitor, its hooked up with the DVI cable. Whenever I try to:
    exit openbox
    ctrl-alt-backspace to kill x
    restart (shutdown -r now)
    or shutdown (shutdown - now)
    my system hangs. My screen shuts off, and starts blinking the power button, and its not responding.
    Last edited by heleos (2007-06-16 18:03:04)

    heleos wrote:
    I'm pretty sure this is linked with my new monitor somehow. I got a new monitor, its hooked up with the DVI cable. Whenever I try to:
    exit openbox
    ctrl-alt-backspace to kill x
    restart (shutdown -r now)
    or shutdown (shutdown - now)
    my system hangs. My screen shuts off, and starts blinking the power button, and its not responding.
    I've no idea whether it's possible for a new monitor to somehow cause this... are you running ATI or nVidia drivers? Is direct rendering working, do you know?
    Try doing
    $ sudo chown -r yourNonRootUser /path/to/yourNonRootUsersHome
    and seeing whether that remedies the problem with exiting openbox.
    Also, look in /var/log/ for your Xorg.#.log files (I forget whether they're in a subdirectory in there... maybe under /var/log/x11/  ). See whether the most recent log file has any warnings or errors (EE or WW in brackets) that may indicate the source of the problem.

  • [SOLVED]System Hang in Arch Linux

    I have tried distributions like ubuntu and fedora in hope for finding a stable system . So I move on to Arch Linux
    But this problem also exist on Arch. While using my Arch Linux (including ubuntu and fedora) my system hangs with a black screen with something written on the whole screen which cannot be pasted here as my system hangs and I have to push power button to restart.
    So I check my errors.log file and found these errors
    Jul  8 22:59:24 localhost kernel: [    1.680013] ata3: softreset failed (device not ready)
    Jul  8 22:59:24 localhost kernel: [    7.298612] SP5100 TCO timer: mmio address 0xfec000f0 already in use
    Jul  8 22:59:31 localhost kdm_greet[792]: Cannot load /usr/share/apps/kdm/faces/.default.face: No such file or directory
    I have a HCL K21 pdc notebook
    Note: In Ubuntu my notebook start with ata1: softreset failed error at boot time
    Most often this error occur while watching videos or listening music with VLC
    Last edited by Manuj19 (2011-07-09 10:13:24)

    ewaller wrote:It might be better to just post the output of lspci -nn  It will tell us a great deal more about the hardware related to the PCI bus, including specific chip set identifiers.
    Thanks for suggestion
    Here is output of lspci -nn
    00:00.0 Host bridge [0600]: ATI Technologies Inc Device [1002:5a31] (rev 01)
    00:01.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a3f]
    00:04.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a36]
    00:05.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a37]
    00:06.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a38]
    00:07.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge [1002:5a39]
    00:12.0 SATA controller [0106]: ATI Technologies Inc SB600 Non-Raid-5 SATA [1002:4380]
    00:13.0 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI0) [1002:4387]
    00:13.1 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI1) [1002:4388]
    00:13.2 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI2) [1002:4389]
    00:13.3 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI3) [1002:438a]
    00:13.4 USB Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI4) [1002:438b]
    00:13.5 USB Controller [0c03]: ATI Technologies Inc SB600 USB Controller (EHCI) [1002:4386]
    00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385] (rev 13)
    00:14.1 IDE interface [0101]: ATI Technologies Inc SB600 IDE [1002:438c]
    00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA) [1002:4383]
    00:14.3 ISA bridge [0601]: ATI Technologies Inc SB600 PCI to LPC Bridge [1002:438d]
    00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge [1002:4384]
    01:05.0 VGA compatible controller [0300]: ATI Technologies Inc RC410 [Radeon Xpress 200M] [1002:5a62]
    02:00.0 Ethernet controller [0200]: Atheros Communications Inc. AR5001 Wireless Network Adapter [168c:001c] (rev 01)
    08:01.0 CardBus bridge [0607]: Ricoh Co Ltd RL5c476 II [1180:0476] (rev b3)
    08:01.1 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C552 IEEE 1394 Controller [1180:0552] (rev 08)
    08:01.2 SD Host controller [0805]: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter [1180:0822] (rev 17)
    08:01.3 System peripheral [0880]: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter [1180:0592] (rev 08)
    08:07.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ [10ec:8139] (rev 10)
    Last edited by Manuj19 (2011-07-09 07:20:08)

  • Random system hang-ups with Kernel 3.2.1-1 and catalyst 11.12

    Hello,
    i have a very strange problem for the last month or so (i'm afraid i cannot say, when it exactly happened the first time or if it was after a upgrade): My system just randomly crashes. I haven't yet found out when it exactly crashes and how to reproduce it. But it happens almost every 2-3 days.
    When the system hangs up, the last second of sound repeat over and over again. I can't move my mouse anymore as well as typing has no effect. I cannot change to another terminal. I cannot ssh into the laptop nor can i ping it.
    In /var/log/messages.log, there is nothing usefull.. It just ends with the old kernel messages and then the new ones, when the system restarts. No error or so.
    System runs on a Thinkpad X121e with AMD E-350 CPU. I have installed catalyst 11.12 with xorg-server 1.11.3. I will now compile catalyst 12.1 and see if it happens again.
    Does anyone have a clue why the system crashes? Has it anything to do with catalyst?
    Best regards,
    pyro

    isofluran wrote:Again, as I metioned before, the problem is likely not a hardware one but it is actually related to the kernel update (2.6.19)  or to an update which was performed at the same time.
    Can anyone give a proposal for a step by step procedure to isolate the problem?
    As I don't believe these crashes are related to anything but the kernel, one way of debugging your issues could be:
    * boot Knoppix
    * zcat /proc/config.gz | some non-volatile media
    * boot arch
    * get the current ABS
    * replace config in kernels/kernel26 with the one from Knoppix
    * makepkg
    * install and test
    When that kernel runs, try to diff the two configs and see what's changed in arch. Also comparing both kernel versions if no significant changes exist might hint on the kernel being the problem.

Maybe you are looking for