ZFS Import Hangs Forever

I have an iscsi zpool mirror I am trying to import but it just hangs.
sparky:/root> iscsiadm modify discovery --static enable
sparky:/root> iscsiadm modify discovery --sendtargets disable
sparky:/root> ping 11.11.11.12
11.11.11.12 is alive
sparky:/root> iscsiadm add discovery-address 11.11.11.12:3260
sparky:/root> iscsiadm list discovery-address
Discovery Address: 11.11.11.12:3260
sparky:/root> iscsiadm list discovery-address -v 11.11.11.12
Discovery Address: 11.11.11.12:3260
Target name: iqn.2004-04.com.qnap:ts-210:iscsi.qnas.c270fa
Target address: 11.11.11.12:3260, 1
sparky:/root> iscsiadm list static-config
sparky:/root> iscsiadm add static-config iqn.2004-04.com.qnap:ts-210:iscsi.qnas.c270fa,11.11.11.12:3260
sparky:/root> iscsiadm list static-config
Static Configuration Target: iqn.2004-04.com.qnap:ts-210:iscsi.qnas.c270fa,11.11.11.12:3260
sparky:/root> devfsadm -i iscsi
sparky:/root> format
Searching for disks...done
AVAILABLE DISK SELECTIONS:
0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
/pci@780/pci@0/pci@9/scsi@0/sd@0,0
1. c0t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
/pci@780/pci@0/pci@9/scsi@0/sd@1,0
2. c0t2d0 <HITACHI-HUC101473CSS300-C4C2-68.37GB>
/pci@780/pci@0/pci@9/scsi@0/sd@2,0
3. c0t3d0 <FUJITSU-MAY2073RCSUN72G-0401-68.37GB>
/pci@780/pci@0/pci@9/scsi@0/sd@3,0
4. c2t600140576F64982DCEEFD4B31DB197DDd0 <QNAP-iSCSI Storage-3.1-1.79TB>
/scsi_vhci/ssd@g600140576f64982dceefd4b31db197dd
5. c2t600140559674C9CD1F27D4A18D8397D6d0 <QNAP-iSCSI Storage-3.1-1.79TB>
/scsi_vhci/ssd@g600140559674c9cd1f27d4a18d8397d6
Specify disk (enter its number): ^C
sparky:/root> zpool import -f
pool: data
id: 5976159847315029669
state: ONLINE
action: The pool can be imported using its name or numeric identifier.
config:
data ONLINE
mirror-0 ONLINE
c2t600140576F64982DCEEFD4B31DB197DDd0 ONLINE
c2t600140559674C9CD1F27D4A18D8397D6d0 ONLINE
sparky:/root> zpool import -f data
I am at a loss on how to proceed from here.

Before I ran the "zpool import -f triceps", the "zpool import" gave me the correct output i.e. it was what I expected. Now the command hangs as well.

Similar Messages

  • Importing eex hangs forever

    Hello,
    I'm attempting to import an eex file and it gets to stage 3 of import and just hangs forever. I don't see any error logs on the admin side or the database side. Any ideas? Thanks in advance for any and all responses.
    Kelly

    You know ... this rings a bell ... and old one, but a bell.
    I seem to remember that it goes through all it's rigamarole (sp?) it checks the joins, etc. but doesn't actually bring in the data until the last stage.
    I seem to remember that when there was a conflict of some kind - or a warning message it was going to send me - it looked like it locked up the machine, but I THINK there might have been another window open with a message, or something similar.
    In otherwords, up to stage 4, it hadn't actually gone and brought in the actual data but was just checking for conflicts.
    When you get to that stage where it stops, can you minimize the current window for Disco Admin and see if there's another window hidden below (this happens in installing Oracle products as well so it's not unusual).
    Russ

  • Redeployment hangs forever on weblogic 8.1 SP1

    When i do a partial redeployment of application ear, intermittenly i see that redeployment hangs forever and does not finish. There are no errors reported during this time.
    Any suggestions?
    Thanks,
    Sandeep

    Thanks for the reply. The points you mentioned do not apply at my end. To add more to this problem detail i noticed in logs that weblogic notifications were through namely "preparing,prepared,activating,activated", but important to note that DeploymentTaskRuntimeMBean.isRunning() is still true and notifications state that deployment was complete which is contradictory.
    Can anybody provide some ideas on this?
    Thanks,
    Sandeep

  • OpenConnection() hangs forever

    Hello,
    I have a problem opening connections to https-webservers on my Linux server. I am using the mini-program below to hunt down the problem.
    Essentially, the program hangs forever (waited several minutes) when trying to open any https-URL. Normal http-URLs work as they should.
    The odd thing is, this program just doesn't seem to work on one particular Debian Linux server, even when connecting to SSL Servers in the same network segment. On a local Windows machine, or on other Linuxes, this works without a problem.
    There is JDK 1.4.2_10 installed there, but this didn't work with an earlier build, I think 1.4.2_06 had the same problem already. That was the reason why I did this update...
    Can anybody help, or does anyone have the same problem? Do SSL certificates somewhere get cached or something like that, so that some file might be broken I'm currently not thinking of?
    All help is much appreciated.
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.URL;
    import java.net.URLConnection;
    public class SSLTest {
      public static void main(String[] args) {
        try {
          String urlString = "https://www.web.de";
          if (args.length >= 1) {
            urlString = args[0];
          URL url = new URL(urlString);
          System.out.println("Getting connection to " + urlString);
          // hangs forever with https-URLs
          URLConnection conn = url.openConnection();
          System.out.println("Opening " + conn.toString());
          InputStream in = conn.getInputStream();
          BufferedReader d = new BufferedReader(new InputStreamReader(in));
          String s = null;
          while ((s = d.readLine()) != null) {
            System.out.println(s);
        catch (Exception ex) {
          System.err.println(ex.getMessage());
          ex.printStackTrace();
    }

    I managed to find a solution.
    What I didn't know is, that it is possible to activate SSL-debugging by adding the command line option -Djavax.net.debug=ssl (or setting the property some other way).
    My code actually hung after the message "trigger seeding of SecureRandom". With that I easily found a solution in the forum:
    http://forum.java.sun.com/thread.jspa?threadID=362175&tstart=75
    It was also our /dev/random device not giving away any data...

  • Bug Report: Import Hangs Indefinitely

    I've tried several times to get import working, but it always hangs.  I have about 40k pictures (jpg, cr2, dng, a few movies)  on an external drive.  Different amounts get imported each time I try before the hang.  The most I've been able to import is about 3k.
    Windows 7 x64, 16GB, i7
    I have 3.6 installed, so this is with a clean/new catalog.
    I've tried synchronizing after killing the process with no luck.
    Once it hangs, LR is responsive, and I can close it, but the process sticks around.
    I'm not sure what other info would help here, please let me know if there are other details I can provide.

    I've seen this happening too, but with less photos, about 500, import takes forever compared with 3.6, if it does the import at all...  Windows 7 64, an HP Z800 with 24 GB or RAM and a Quadro 5800 and 16 cores.

  • Upgrade make my X server hang forever

    Hi all
    after my last upgrade from kernel 29 to 30 I cannot get into my linux system as my X will not load - it doesn't give me the console login and it won't allow me to use any other ALT+Fn
    I managed to get into into the logs and this is what I found
    Aug 1 12:59:34 ocivodul kernel: Linux version 2.6.30-ARCH (root@T-POWA-LX) (gcc version 4.4.1 (GCC) ) #1 SMP PREEMPT Fri Jul 31 07:30:28 CEST 2009
    Aug 1 12:59:34 ocivodul kernel: Command line: root=/dev/sda6 ro intel-wireless noapic
    Aug 1 12:59:34 ocivodul kernel: KERNEL supported cpus:
    Aug 1 12:59:34 ocivodul kernel: Intel GenuineIntel
    Aug 1 12:59:34 ocivodul kernel: AMD AuthenticAMD
    Aug 1 12:59:34 ocivodul kernel: Centaur CentaurHauls
    Aug 1 12:59:34 ocivodul kernel: BIOS-provided physical RAM map:
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 0000000000100000 - 000000007fe5b800 (usable)
    Aug 1 12:59:34 ocivodul syslog-ng[2256]: syslog-ng starting up; version='3.0.3'
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 000000007fe5b800 - 0000000080000000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000f4000000 - 00000000f8000000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: DMI 2.4 present.
    Aug 1 12:59:34 ocivodul kernel: last_pfn = 0x7fe5b max_arch_pfn = 0x100000000
    Aug 1 12:59:34 ocivodul kernel: MTRR default type: uncachable
    Aug 1 12:59:34 ocivodul kernel: MTRR fixed ranges enabled:
    Aug 1 12:59:34 ocivodul kernel: 00000-9FFFF write-back
    Aug 1 12:59:34 ocivodul kernel: A0000-BFFFF uncachable
    Aug 1 12:59:34 ocivodul kernel: C0000-CFFFF write-protect
    Aug 1 12:59:34 ocivodul kernel: D0000-EFFFF uncachable
    Aug 1 12:59:34 ocivodul kernel: F0000-FFFFF write-protect
    Aug 1 12:59:34 ocivodul kernel: MTRR variable ranges enabled:
    Aug 1 12:59:34 ocivodul kernel: 0 base 000000000 mask F80000000 write-back
    Aug 1 12:59:34 ocivodul kernel: 1 base 07FF00000 mask FFFF00000 uncachable
    Aug 1 12:59:34 ocivodul kernel: 2 disabled
    Aug 1 12:59:34 ocivodul kernel: 3 disabled
    Aug 1 12:59:34 ocivodul kernel: 4 disabled
    Aug 1 12:59:34 ocivodul kernel: 5 disabled
    Aug 1 12:59:34 ocivodul kernel: 6 disabled
    Aug 1 12:59:34 ocivodul kernel: 7 disabled
    Aug 1 12:59:34 ocivodul kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Aug 1 12:59:34 ocivodul kernel: e820 update range: 0000000000001000 - 0000000000006000 (usable) ==> (reserved)
    Aug 1 12:59:34 ocivodul kernel: Scanning 1 areas for low memory corruption
    Aug 1 12:59:34 ocivodul kernel: modified physical RAM map:
    Aug 1 12:59:34 ocivodul kernel: modified: 0000000000000000 - 0000000000001000 (usable)
    Aug 1 12:59:34 ocivodul kernel: modified: 0000000000001000 - 0000000000006000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 0000000000006000 - 000000000009f000 (usable)
    Aug 1 12:59:34 ocivodul kernel: modified: 000000000009f000 - 00000000000a0000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 0000000000100000 - 000000007fe5b800 (usable)
    Aug 1 12:59:34 ocivodul kernel: modified: 000000007fe5b800 - 0000000080000000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000f4000000 - 00000000f8000000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000fec00000 - 00000000fec10000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000fed18000 - 00000000fed1c000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000fed20000 - 00000000fed90000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000feda0000 - 00000000feda6000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000fee00000 - 00000000fee10000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: modified: 00000000ffe00000 - 0000000100000000 (reserved)
    Aug 1 12:59:34 ocivodul kernel: init_memory_mapping: 0000000000000000-000000007fe5b000
    Aug 1 12:59:34 ocivodul kernel: 0000000000 - 007fe00000 page 2M
    Aug 1 12:59:34 ocivodul kernel: 007fe00000 - 007fe5b000 page 4k
    Aug 1 12:59:34 ocivodul kernel: kernel direct mapping tables up to 7fe5b000 @ 8000-c000
    Aug 1 12:59:34 ocivodul kernel: RAMDISK: 37f50000 - 37fef045
    Aug 1 12:59:34 ocivodul kernel: ACPI: RSDP 00000000000fbb00 00024 (v02 DELL )
    Aug 1 12:59:34 ocivodul kernel: ACPI: XSDT 000000007fe5d200 00064 (v01 DELL M08 27D80514 ASL 00000061)
    Aug 1 12:59:34 ocivodul kernel: ACPI: FACP 000000007fe5d09c 000F4 (v04 DELL M08 27D80514 ASL 00000061)
    Aug 1 12:59:34 ocivodul kernel: ACPI: DSDT 000000007fe5d800 063EA (v02 INT430 SYSFexxx 00001001 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: ACPI: FACS 000000007fe6c000 00040
    Aug 1 12:59:34 ocivodul kernel: ACPI: HPET 000000007fe5d300 00038 (v01 DELL M08 00000001 ASL 00000061)
    Aug 1 12:59:34 ocivodul kernel: ACPI: APIC 000000007fe5d400 00068 (v01 DELL M08 27D80514 ASL 00000047)
    Aug 1 12:59:34 ocivodul kernel: ACPI: ASF! 000000007fe5d000 0007E (v32 DELL M08 27D80514 ASL 00000061)
    Aug 1 12:59:34 ocivodul kernel: ACPI: MCFG 000000007fe5d3c0 0003E (v16 DELL M08 27D80514 ASL 00000061)
    Aug 1 12:59:34 ocivodul kernel: ACPI: TCPA 000000007fe5d700 00032 (v01 00000000 ASL 00000000)
    Aug 1 12:59:34 ocivodul kernel: ACPI: SLIC 000000007fe5d49c 00176 (v01 DELL M08 27D80514 ASL 00000061)
    Aug 1 12:59:34 ocivodul kernel: ACPI: SSDT 000000007fe5b9c0 004CC (v01 PmRef CpuPm 00003000 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: ACPI: Local APIC address 0xfee00000
    Aug 1 12:59:34 ocivodul kernel: (7 early reservations) ==> bootmem [0000000000 - 007fe5b000]
    Aug 1 12:59:34 ocivodul kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    Aug 1 12:59:34 ocivodul kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
    Aug 1 12:59:34 ocivodul kernel: #2 [0000200000 - 000082d0d0] TEXT DATA BSS ==> [0000200000 - 000082d0d0]
    Aug 1 12:59:34 ocivodul kernel: #3 [0037f50000 - 0037fef045] RAMDISK ==> [0037f50000 - 0037fef045]
    Aug 1 12:59:34 ocivodul kernel: #4 [000009f000 - 0000100000] BIOS reserved ==> [000009f000 - 0000100000]
    Aug 1 12:59:34 ocivodul kernel: #5 [000082e000 - 000082e1ec] BRK ==> [000082e000 - 000082e1ec]
    Aug 1 12:59:34 ocivodul kernel: #6 [0000008000 - 000000a000] PGTABLE ==> [0000008000 - 000000a000]
    Aug 1 12:59:34 ocivodul kernel: [ffffe20000000000-ffffe20001bfffff] PMD -> [ffff880001200000-ffff880002dfffff] on node 0
    Aug 1 12:59:34 ocivodul kernel: Zone PFN ranges:
    Aug 1 12:59:34 ocivodul kernel: DMA 0x00000000 -> 0x00001000
    Aug 1 12:59:34 ocivodul kernel: DMA32 0x00001000 -> 0x00100000
    Aug 1 12:59:34 ocivodul kernel: Normal 0x00100000 -> 0x00100000
    Aug 1 12:59:34 ocivodul kernel: Movable zone start PFN for each node
    Aug 1 12:59:34 ocivodul kernel: early_node_map[3] active PFN ranges
    Aug 1 12:59:34 ocivodul kernel: 0: 0x00000000 -> 0x00000001
    Aug 1 12:59:34 ocivodul kernel: 0: 0x00000006 -> 0x0000009f
    Aug 1 12:59:34 ocivodul kernel: 0: 0x00000100 -> 0x0007fe5b
    Aug 1 12:59:34 ocivodul kernel: On node 0 totalpages: 523765
    Aug 1 12:59:34 ocivodul kernel: DMA zone: 56 pages used for memmap
    Aug 1 12:59:34 ocivodul kernel: DMA zone: 1683 pages reserved
    Aug 1 12:59:34 ocivodul kernel: DMA zone: 2255 pages, LIFO batch:0
    Aug 1 12:59:34 ocivodul kernel: DMA32 zone: 7107 pages used for memmap
    Aug 1 12:59:34 ocivodul kernel: DMA32 zone: 512664 pages, LIFO batch:31
    Aug 1 12:59:34 ocivodul kernel: ACPI: PM-Timer IO Port: 0x1008
    Aug 1 12:59:34 ocivodul kernel: ACPI: Local APIC address 0xfee00000
    Aug 1 12:59:34 ocivodul kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Aug 1 12:59:34 ocivodul kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Aug 1 12:59:34 ocivodul kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Aug 1 12:59:34 ocivodul kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Aug 1 12:59:34 ocivodul kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
    Aug 1 12:59:34 ocivodul kernel: Using ACPI for processor (LAPIC) configuration information
    Aug 1 12:59:34 ocivodul kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Aug 1 12:59:34 ocivodul kernel: SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Aug 1 12:59:34 ocivodul kernel: nr_irqs_gsi: 16
    Aug 1 12:59:34 ocivodul kernel: PM: Registered nosave memory: 0000000000001000 - 0000000000006000
    Aug 1 12:59:34 ocivodul kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Aug 1 12:59:34 ocivodul kernel: PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    Aug 1 12:59:34 ocivodul kernel: Allocating PCI resources starting at 88000000 (gap: 80000000:74000000)
    Aug 1 12:59:34 ocivodul kernel: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:2 nr_node_ids:1
    Aug 1 12:59:34 ocivodul kernel: PERCPU: Embedded 25 pages at ffff880001010000, static data 72352 bytes
    Aug 1 12:59:34 ocivodul kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514919
    Aug 1 12:59:34 ocivodul kernel: Kernel command line: root=/dev/sda6 ro intel-wireless noapic
    Aug 1 12:59:34 ocivodul kernel: Initializing CPU#0
    Aug 1 12:59:34 ocivodul kernel: NR_IRQS:768
    Aug 1 12:59:34 ocivodul kernel: PID hash table entries: 4096 (order: 12, 32768 bytes)
    Aug 1 12:59:34 ocivodul kernel: Extended CMOS year: 2000
    Aug 1 12:59:34 ocivodul kernel: Fast TSC calibration using PIT
    Aug 1 12:59:34 ocivodul kernel: Detected 2194.077 MHz processor.
    Aug 1 12:59:34 ocivodul kernel: Console: colour VGA+ 80x25
    Aug 1 12:59:34 ocivodul kernel: console [tty0] enabled
    Aug 1 12:59:34 ocivodul kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Aug 1 12:59:34 ocivodul kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Aug 1 12:59:34 ocivodul kernel: Checking aperture...
    Aug 1 12:59:34 ocivodul kernel: No AGP bridge found
    Aug 1 12:59:34 ocivodul kernel: Calgary: detecting Calgary via BIOS EBDA area
    Aug 1 12:59:34 ocivodul kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Aug 1 12:59:34 ocivodul kernel: Memory: 2055304k/2095468k available (3409k kernel code, 408k absent, 39068k reserved, 1239k data, 464k init)
    Aug 1 12:59:34 ocivodul kernel: SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Aug 1 12:59:34 ocivodul kernel: hpet clockevent registered
    Aug 1 12:59:34 ocivodul kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Aug 1 12:59:34 ocivodul kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4389.99 BogoMIPS (lpj=7313590)
    Aug 1 12:59:34 ocivodul kernel: Security Framework initialized
    Aug 1 12:59:34 ocivodul kernel: Mount-cache hash table entries: 256
    Aug 1 12:59:34 ocivodul kernel: CPU: L1 I cache: 32K, L1 D cache: 32K
    Aug 1 12:59:34 ocivodul kernel: CPU: L2 cache: 4096K
    Aug 1 12:59:34 ocivodul kernel: CPU: Physical Processor ID: 0
    Aug 1 12:59:34 ocivodul kernel: CPU: Processor Core ID: 0
    Aug 1 12:59:34 ocivodul kernel: CPU0: Thermal monitoring enabled (TM2)
    Aug 1 12:59:34 ocivodul kernel: using mwait in idle threads.
    Aug 1 12:59:34 ocivodul kernel: ACPI: Core revision 20090320
    Aug 1 12:59:34 ocivodul kernel: ACPI: setting ELCR to 0200 (from 0e28)
    Aug 1 12:59:34 ocivodul kernel: Setting APIC routing to flat
    Aug 1 12:59:34 ocivodul kernel: CPU0: Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz stepping 0b
    Aug 1 12:59:34 ocivodul kernel: Booting processor 1 APIC 0x1 ip 0x6000
    Aug 1 12:59:34 ocivodul kernel: Initializing CPU#1
    Aug 1 12:59:34 ocivodul kernel: Calibrating delay using timer specific routine.. 4389.54 BogoMIPS (lpj=7312874)
    Aug 1 12:59:34 ocivodul kernel: CPU: L1 I cache: 32K, L1 D cache: 32K
    Aug 1 12:59:34 ocivodul kernel: CPU: L2 cache: 4096K
    Aug 1 12:59:34 ocivodul kernel: CPU: Physical Processor ID: 0
    Aug 1 12:59:34 ocivodul kernel: CPU: Processor Core ID: 1
    Aug 1 12:59:34 ocivodul kernel: CPU1: Thermal monitoring enabled (TM2)
    Aug 1 12:59:34 ocivodul kernel: x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
    Aug 1 12:59:34 ocivodul kernel: CPU1: Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz stepping 0b
    Aug 1 12:59:34 ocivodul kernel: checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Aug 1 12:59:34 ocivodul kernel: Brought up 2 CPUs
    Aug 1 12:59:34 ocivodul kernel: Total of 2 processors activated (8779.54 BogoMIPS).
    Aug 1 12:59:34 ocivodul kernel: CPU0 attaching sched-domain:
    Aug 1 12:59:34 ocivodul kernel: domain 0: span 0-1 level MC
    Aug 1 12:59:34 ocivodul kernel: groups: 0 1
    Aug 1 12:59:34 ocivodul kernel: CPU1 attaching sched-domain:
    Aug 1 12:59:34 ocivodul kernel: domain 0: span 0-1 level MC
    Aug 1 12:59:34 ocivodul kernel: groups: 1 0
    Aug 1 12:59:34 ocivodul kernel: net_namespace: 1888 bytes
    Aug 1 12:59:34 ocivodul kernel: Booting paravirtualized kernel on bare hardware
    Aug 1 12:59:34 ocivodul kernel: NET: Registered protocol family 16
    Aug 1 12:59:34 ocivodul kernel: ACPI: bus type pci registered
    Aug 1 12:59:34 ocivodul kernel: PCI: MCFG configuration 0: base f4000000 segment 0 buses 0 - 63
    Aug 1 12:59:34 ocivodul kernel: PCI: MCFG area at f4000000 reserved in E820
    Aug 1 12:59:34 ocivodul kernel: PCI: Using MMCONFIG at f4000000 - f7ffffff
    Aug 1 12:59:34 ocivodul kernel: PCI: Using configuration type 1 for base access
    Aug 1 12:59:34 ocivodul kernel: bio: create slab <bio-0> at 0
    Aug 1 12:59:34 ocivodul kernel: ACPI: EC: Look up EC in DSDT
    Aug 1 12:59:34 ocivodul kernel: ACPI: BIOS _OSI(Linux) query ignored
    Aug 1 12:59:34 ocivodul kernel: ACPI: SSDT 000000007fe6c080 00043 (v01 LMPWR DELLLOM 00001001 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: ACPI: Interpreter enabled
    Aug 1 12:59:34 ocivodul kernel: ACPI: (supports S0 S3 S4 S5)
    Aug 1 12:59:34 ocivodul kernel: ACPI: Using PIC for interrupt routing
    Aug 1 12:59:34 ocivodul kernel: ACPI: ACPI Dock Station Driver: 3 docks/bays found
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1a.0: reg 20 io port: [0x6f20-0x6f3f]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1a.1: reg 20 io port: [0x6f00-0x6f1f]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1a.7: reg 10 32bit mmio: [0xfed1c400-0xfed1c7ff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1a.7: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1b.0: reg 10 64bit mmio: [0xfebfc000-0xfebfffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1b.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1d.0: reg 20 io port: [0x6f80-0x6f9f]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1d.1: reg 20 io port: [0x6f60-0x6f7f]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1d.2: reg 20 io port: [0x6f40-0x6f5f]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1d.7: reg 10 32bit mmio: [0xfed1c000-0xfed1c3ff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1d.7: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.0: quirk: region 1080-10bf claimed by ICH6 GPIO
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0900 (mask 007f)
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0c80 (mask 003f)
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.1: reg 10 io port: [0x1f0-0x1f7]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.1: reg 14 io port: [0x3f4-0x3f7]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.1: reg 18 io port: [0x170-0x177]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.1: reg 1c io port: [0x374-0x377]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.1: reg 20 io port: [0x6fa0-0x6faf]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: reg 10 io port: [0x6eb0-0x6eb7]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: reg 14 io port: [0x6eb8-0x6ebb]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: reg 18 io port: [0x6ec0-0x6ec7]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: reg 1c io port: [0x6ec8-0x6ecb]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: reg 20 io port: [0x6ee0-0x6eef]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: reg 24 io port: [0xeff0-0xefff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.2: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.3: reg 10 32bit mmio: [0xfebfbf00-0xfebfbfff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1f.3: reg 20 io port: [0x10c0-0x10df]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:01:00.0: reg 10 32bit mmio: [0xfd000000-0xfdffffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:01:00.0: reg 14 64bit mmio: [0xe0000000-0xefffffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:01:00.0: reg 1c 64bit mmio: [0xfa000000-0xfbffffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:01:00.0: reg 24 io port: [0xdf00-0xdf7f]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: bridge io port: [0xd000-0xdfff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: bridge 32bit mmio: [0xfa000000-0xfeafffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: bridge 64bit mmio pref: [0xe0000000-0xefffffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:0c:00.0: reg 10 32bit mmio: [0xf9fff000-0xf9ffffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:0c:00.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: bridge 32bit mmio: [0xf9f00000-0xf9ffffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: bridge io port: [0xc000-0xcfff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: bridge 32bit mmio: [0xf9c00000-0xf9efffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: bridge 64bit mmio pref: [0xf0000000-0xf01fffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:09:00.0: reg 10 64bit mmio: [0xf9bf0000-0xf9bfffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:09:00.0: PME# supported from D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:09:00.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: bridge 32bit mmio: [0xf9b00000-0xf9bfffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: reg 10 32bit mmio: [0x000000-0x000fff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: supports D1 D2
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.4: reg 10 32bit mmio: [0xf9aff000-0xf9afffff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.4: reg 14 32bit mmio: [0xf9afe800-0xf9afefff]
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.4: supports D1 D2
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.4: PME# supported from D0 D1 D2 D3hot D3cold
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.4: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: transparent bridge
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: bridge 32bit mmio: [0xf9a00000-0xf9afffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:00: on NUMA node 0
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 11) *5
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *10
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *0, disabled.
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 11) *3
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    Aug 1 12:59:34 ocivodul kernel: PCI: Using ACPI for IRQ routing
    Aug 1 12:59:34 ocivodul kernel: NetLabel: Initializing
    Aug 1 12:59:34 ocivodul kernel: NetLabel: domain hash size = 128
    Aug 1 12:59:34 ocivodul kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Aug 1 12:59:34 ocivodul kernel: NetLabel: unlabeled traffic allowed by default
    Aug 1 12:59:34 ocivodul kernel: pnp: PnP ACPI init
    Aug 1 12:59:34 ocivodul kernel: ACPI: bus type pnp registered
    Aug 1 12:59:34 ocivodul kernel: pnp 00:0b: io resource (0x1000-0x1005) overlaps 0000:00:1f.0 BAR 13 (0x1000-0x107f), disabling
    Aug 1 12:59:34 ocivodul kernel: pnp 00:0b: io resource (0x1008-0x100f) overlaps 0000:00:1f.0 BAR 13 (0x1000-0x107f), disabling
    Aug 1 12:59:34 ocivodul kernel: pnp 00:0c: io resource (0x1006-0x1007) overlaps 0000:00:1f.0 BAR 13 (0x1000-0x107f), disabling
    Aug 1 12:59:34 ocivodul kernel: pnp 00:0c: io resource (0x100a-0x1059) overlaps 0000:00:1f.0 BAR 13 (0x1000-0x107f), disabling
    Aug 1 12:59:34 ocivodul kernel: pnp 00:0c: io resource (0x1060-0x107f) overlaps 0000:00:1f.0 BAR 13 (0x1000-0x107f), disabling
    Aug 1 12:59:34 ocivodul kernel: pnp 00:0c: io resource (0x1010-0x102f) overlaps 0000:00:1f.0 BAR 13 (0x1000-0x107f), disabling
    Aug 1 12:59:34 ocivodul kernel: pnp: PnP ACPI: found 14 devices
    Aug 1 12:59:34 ocivodul kernel: ACPI: ACPI bus type pnp unregistered
    Aug 1 12:59:34 ocivodul kernel: system 00:05: ioport range 0xc80-0xcaf has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:05: ioport range 0xcc0-0xcff could not be reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:08: iomem range 0xfed00000-0xfed003ff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0a: ioport range 0xcb0-0xcbb has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0a: iomem range 0xfed40000-0xfed44fff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0b: ioport range 0x900-0x97f has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0b: ioport range 0x4d0-0x4d1 has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0c: ioport range 0xf400-0xf4fe has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0c: ioport range 0x1080-0x10bf has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0c: ioport range 0x10c0-0x10df has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0c: ioport range 0x809-0x809 has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0x0-0x9efff could not be reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0x9f000-0x9ffff could not be reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xc0000-0xcffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xe0000-0xfffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0x100000-0x7fe5b7ff could not be reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0x7fe5b800-0x7fefffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0x7ff00000-0x7fffffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0x7ff00000-0x806fffff could not be reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xffe00000-0xffffffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xffa00000-0xffbfffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfec00000-0xfec0ffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfee00000-0xfee0ffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfed20000-0xfed3ffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfed45000-0xfed8ffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfeda0000-0xfeda3fff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfeda4000-0xfeda4fff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfeda5000-0xfeda5fff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfeda6000-0xfeda6fff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xfed18000-0xfed1bfff has been reserved
    Aug 1 12:59:34 ocivodul kernel: system 00:0d: iomem range 0xf4000000-0xf7ffffff has been reserved
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: IO window: 0xd000-0xdfff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: MEM window: 0xfa000000-0xfeafffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: PREFETCH window: 0x000000e0000000-0x000000efffffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: PCI bridge, secondary bus 0000:0b
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: IO window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: MEM window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: PREFETCH window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: PCI bridge, secondary bus 0000:0c
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: IO window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: MEM window: 0xf9f00000-0xf9ffffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: PREFETCH window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: PCI bridge, secondary bus 0000:0d
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: IO window: 0xc000-0xcfff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: MEM window: 0xf9c00000-0xf9efffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: PREFETCH window: 0x000000f0000000-0x000000f01fffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: PCI bridge, secondary bus 0000:09
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: IO window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: MEM window: 0xf9b00000-0xf9bfffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: PREFETCH window: disabled
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: CardBus bridge, secondary bus 0000:04
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: IO window: 0x002000-0x0020ff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: IO window: 0x002400-0x0024ff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: PREFETCH window: 0x88000000-0x8bffffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: MEM window: 0x8c000000-0x8fffffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: IO window: 0x2000-0x2fff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: MEM window: 0xf9a00000-0xf9afffff
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: PREFETCH window: 0x00000088000000-0x0000008bffffff
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    Aug 1 12:59:34 ocivodul kernel: PCI: setting IRQ 11 as level-triggered
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:01.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 7
    Aug 1 12:59:34 ocivodul kernel: PCI: setting IRQ 7 as level-triggered
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: PCI INT B -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.1: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10
    Aug 1 12:59:34 ocivodul kernel: PCI: setting IRQ 10 as level-triggered
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: PCI INT D -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.3: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: PCI INT B -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1c.5: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pci 0000:00:1e.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: enabling device (0000 -> 0003)
    Aug 1 12:59:34 ocivodul kernel: pci 0000:03:01.0: PCI INT A -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:00: resource 0 io: [0x00-0xffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:01: resource 0 io: [0xd000-0xdfff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:01: resource 1 mem: [0xfa000000-0xfeafffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:01: resource 2 pref mem [0xe0000000-0xefffffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:0c: resource 1 mem: [0xf9f00000-0xf9ffffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:0d: resource 0 io: [0xc000-0xcfff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:0d: resource 1 mem: [0xf9c00000-0xf9efffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:0d: resource 2 pref mem [0xf0000000-0xf01fffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:09: resource 1 mem: [0xf9b00000-0xf9bfffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:03: resource 0 io: [0x2000-0x2fff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:03: resource 1 mem: [0xf9a00000-0xf9afffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:03: resource 2 pref mem [0x88000000-0x8bffffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:03: resource 3 io: [0x00-0xffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffffffffffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:04: resource 0 io: [0x2000-0x20ff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:04: resource 1 io: [0x2400-0x24ff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:04: resource 2 pref mem [0x88000000-0x8bffffff]
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:04: resource 3 mem: [0x8c000000-0x8fffffff]
    Aug 1 12:59:34 ocivodul kernel: NET: Registered protocol family 2
    Aug 1 12:59:34 ocivodul kernel: IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    Aug 1 12:59:34 ocivodul kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    Aug 1 12:59:34 ocivodul kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Aug 1 12:59:34 ocivodul kernel: TCP: Hash tables configured (established 262144 bind 65536)
    Aug 1 12:59:34 ocivodul kernel: TCP reno registered
    Aug 1 12:59:34 ocivodul kernel: NET: Registered protocol family 1
    Aug 1 12:59:34 ocivodul kernel: Unpacking initramfs...
    Aug 1 12:59:34 ocivodul kernel: Freeing initrd memory: 636k freed
    Aug 1 12:59:34 ocivodul kernel: Scanning for low memory corruption every 60 seconds
    Aug 1 12:59:34 ocivodul kernel: audit: initializing netlink socket (disabled)
    Aug 1 12:59:34 ocivodul kernel: type=2000 audit(1249131559.453:1): initialized
    Aug 1 12:59:34 ocivodul kernel: VFS: Disk quotas dquot_6.5.2
    Aug 1 12:59:34 ocivodul kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Aug 1 12:59:34 ocivodul kernel: msgmni has been set to 4016
    Aug 1 12:59:34 ocivodul kernel: alg: No test for stdrng (krng)
    Aug 1 12:59:34 ocivodul kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Aug 1 12:59:34 ocivodul kernel: io scheduler noop registered
    Aug 1 12:59:34 ocivodul kernel: io scheduler anticipatory registered
    Aug 1 12:59:34 ocivodul kernel: io scheduler deadline registered
    Aug 1 12:59:34 ocivodul kernel: io scheduler cfq registered (default)
    Aug 1 12:59:34 ocivodul kernel: pci 0000:01:00.0: Boot video device
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:01.0: irq 16 for MSI/MSI-X
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:01.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.0: irq 17 for MSI/MSI-X
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.1: irq 18 for MSI/MSI-X
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.1: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.3: irq 19 for MSI/MSI-X
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.3: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.5: irq 20 for MSI/MSI-X
    Aug 1 12:59:34 ocivodul kernel: pcieport-driver 0000:00:1c.5: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: Linux agpgart interface v0.103
    Aug 1 12:59:34 ocivodul kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Aug 1 12:59:34 ocivodul kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    Aug 1 12:59:34 ocivodul kernel: 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    Aug 1 12:59:34 ocivodul kernel: input: Macintosh mouse button emulation as /devices/virtual/input/input0
    Aug 1 12:59:34 ocivodul kernel: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Aug 1 12:59:34 ocivodul kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Aug 1 12:59:34 ocivodul kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Aug 1 12:59:34 ocivodul kernel: mice: PS/2 mouse device common for all mice
    Aug 1 12:59:34 ocivodul kernel: cpuidle: using governor ladder
    Aug 1 12:59:34 ocivodul kernel: cpuidle: using governor menu
    Aug 1 12:59:34 ocivodul kernel: TCP cubic registered
    Aug 1 12:59:34 ocivodul kernel: NET: Registered protocol family 17
    Aug 1 12:59:34 ocivodul kernel: registered taskstats version 1
    Aug 1 12:59:34 ocivodul kernel: Initalizing network drop monitor service
    Aug 1 12:59:34 ocivodul kernel: Freeing unused kernel memory: 464k freed
    Aug 1 12:59:34 ocivodul kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    Aug 1 12:59:34 ocivodul kernel: Switched to high resolution mode on CPU 1
    Aug 1 12:59:34 ocivodul kernel: Switched to high resolution mode on CPU 0
    Aug 1 12:59:34 ocivodul kernel: SCSI subsystem initialized
    Aug 1 12:59:34 ocivodul kernel: libata version 3.00 loaded.
    Aug 1 12:59:34 ocivodul kernel: ata_piix 0000:00:1f.1: version 2.13
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
    Aug 1 12:59:34 ocivodul kernel: ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: ata_piix 0000:00:1f.1: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: scsi0 : ata_piix
    Aug 1 12:59:34 ocivodul kernel: scsi1 : ata_piix
    Aug 1 12:59:34 ocivodul kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x6fa0 irq 14
    Aug 1 12:59:34 ocivodul kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6fa8 irq 15
    Aug 1 12:59:34 ocivodul kernel: ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    Aug 1 12:59:34 ocivodul kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    Aug 1 12:59:34 ocivodul kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: scsi2 : ata_piix
    Aug 1 12:59:34 ocivodul kernel: scsi3 : ata_piix
    Aug 1 12:59:34 ocivodul kernel: ata3: SATA max UDMA/133 cmd 0x6eb0 ctl 0x6eb8 bmdma 0x6ee0 irq 7
    Aug 1 12:59:34 ocivodul kernel: ata4: SATA max UDMA/133 cmd 0x6ec0 ctl 0x6ec8 bmdma 0x6ee8 irq 7
    Aug 1 12:59:34 ocivodul kernel: ata1.00: ATAPI: Optiarc DVD+/-RW AD-5560A, DD11, max UDMA/33
    Aug 1 12:59:34 ocivodul kernel: ata1.00: configured for UDMA/33
    Aug 1 12:59:34 ocivodul kernel: scsi 0:0:0:0: CD-ROM Optiarc DVD+-RW AD-5560A DD11 PQ: 0 ANSI: 5
    Aug 1 12:59:34 ocivodul kernel: ata2: port disabled. ignoring.
    Aug 1 12:59:34 ocivodul kernel: ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Aug 1 12:59:34 ocivodul kernel: ata3.01: SATA link down (SStatus 0 SControl 300)
    Aug 1 12:59:34 ocivodul kernel: ata3.00: ATA-8: FUJITSU MHW2120BJ G2, 0085001A, max UDMA/100
    Aug 1 12:59:34 ocivodul kernel: ata3.00: 234441648 sectors, multi 8: LBA48 NCQ (depth 0/32)
    Aug 1 12:59:34 ocivodul kernel: ata3.00: configured for UDMA/100
    Aug 1 12:59:34 ocivodul kernel: scsi 2:0:0:0: Direct-Access ATA FUJITSU MHW2120B 0085 PQ: 0 ANSI: 5
    Aug 1 12:59:34 ocivodul kernel: ata4.00: SATA link down (SStatus 0 SControl 300)
    Aug 1 12:59:34 ocivodul kernel: ata4.01: SATA link down (SStatus 0 SControl 0)
    Aug 1 12:59:34 ocivodul kernel: Driver 'sd' needs updating - please use bus_type methods
    Aug 1 12:59:34 ocivodul kernel: sd 2:0:0:0: [sda] 234441648 512-byte hardware sectors: (120 GB/111 GiB)
    Aug 1 12:59:34 ocivodul kernel: sd 2:0:0:0: [sda] Write Protect is off
    Aug 1 12:59:34 ocivodul kernel: sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Aug 1 12:59:34 ocivodul kernel: sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Aug 1 12:59:34 ocivodul kernel: sda:<4>Driver 'sr' needs updating - please use bus_type methods
    Aug 1 12:59:34 ocivodul kernel: sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    Aug 1 12:59:34 ocivodul kernel: Uniform CD-ROM driver Revision: 3.20
    Aug 1 12:59:34 ocivodul kernel: sr 0:0:0:0: Attached scsi CD-ROM sr0
    Aug 1 12:59:34 ocivodul kernel: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 sda9 >
    Aug 1 12:59:34 ocivodul kernel: sd 2:0:0:0: [sda] Attached SCSI disk
    Aug 1 12:59:34 ocivodul kernel: EXT3-fs: INFO: recovery required on readonly filesystem.
    Aug 1 12:59:34 ocivodul kernel: EXT3-fs: write access will be enabled during recovery.
    Aug 1 12:59:34 ocivodul kernel: EXT3-fs: recovery complete.
    Aug 1 12:59:34 ocivodul kernel: kjournald starting. Commit interval 5 seconds
    Aug 1 12:59:34 ocivodul kernel: EXT3-fs: mounted filesystem with writeback data mode.
    Aug 1 12:59:34 ocivodul kernel: rtc_cmos 00:03: RTC can wake from S4
    Aug 1 12:59:34 ocivodul kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Aug 1 12:59:34 ocivodul kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Aug 1 12:59:34 ocivodul kernel: udev: starting version 141
    Aug 1 12:59:34 ocivodul kernel: ACPI: SSDT 000000007fe5c4f6 00286 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: ACPI: SSDT 000000007fe5be8c 005E5 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: Monitor-Mwait will be used to enter C-1 state
    Aug 1 12:59:34 ocivodul kernel: Monitor-Mwait will be used to enter C-2 state
    Aug 1 12:59:34 ocivodul kernel: Monitor-Mwait will be used to enter C-3 state
    Aug 1 12:59:34 ocivodul kernel: Marking TSC unstable due to TSC halts in idle
    Aug 1 12:59:34 ocivodul kernel: ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    Aug 1 12:59:34 ocivodul kernel: processor ACPI_CPU:00: registered as cooling_device0
    Aug 1 12:59:34 ocivodul kernel: ACPI: Processor [CPU0] (supports 8 throttling states)
    Aug 1 12:59:34 ocivodul kernel: ACPI: SSDT 000000007fe5c77c 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: ACPI: SSDT 000000007fe5c471 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    Aug 1 12:59:34 ocivodul kernel: ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
    Aug 1 12:59:34 ocivodul kernel: processor ACPI_CPU:01: registered as cooling_device1
    Aug 1 12:59:34 ocivodul kernel: ACPI: Processor [CPU1] (supports 8 throttling states)
    Aug 1 12:59:34 ocivodul kernel: i8k: unable to get SMM BIOS version
    Aug 1 12:59:34 ocivodul kernel: Dell laptop SMM driver v1.14 21/02/2005 Massimo Dal Zotto ([email protected])
    Aug 1 12:59:34 ocivodul kernel: tun: Universal TUN/TAP device driver, 1.6
    Aug 1 12:59:34 ocivodul kernel: tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
    Aug 1 12:59:34 ocivodul kernel: tg3.c:v3.98 (February 25, 2009)
    Aug 1 12:59:34 ocivodul kernel: tg3 0000:09:00.0: PCI INT A -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    Aug 1 12:59:34 ocivodul kernel: tg3 0000:09:00.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: tg3 0000:09:00.0: PME# disabled
    Aug 1 12:59:34 ocivodul kernel: eth0: Tigon3 [partno(BCM95755m) rev a002] (PCI Express) MAC address 00:1d:09:aa:3c:73
    Aug 1 12:59:34 ocivodul kernel: eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1])
    Aug 1 12:59:34 ocivodul kernel: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    Aug 1 12:59:34 ocivodul kernel: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    Aug 1 12:59:34 ocivodul kernel: cfg80211: Calling CRDA to update world regulatory domain
    Aug 1 12:59:34 ocivodul kernel: iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.26ks
    Aug 1 12:59:34 ocivodul kernel: iwl3945: Copyright(c) 2003-2009 Intel Corporation
    Aug 1 12:59:34 ocivodul kernel: iwl3945 0000:0c:00.0: PCI INT A -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    Aug 1 12:59:34 ocivodul kernel: iwl3945 0000:0c:00.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: iwl3945 0000:0c:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
    Aug 1 12:59:34 ocivodul kernel: iwl3945 0000:0c:00.0: Detected Intel Wireless WiFi Link 3945ABG
    Aug 1 12:59:34 ocivodul kernel: iwl3945 0000:0c:00.0: irq 21 for MSI/MSI-X
    Aug 1 12:59:34 ocivodul kernel: phy0: Selected rate control algorithm 'iwl-3945-rs'
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKF] enabled at IRQ 10
    Aug 1 12:59:34 ocivodul kernel: HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKF] -> GSI 10 (level, low) -> IRQ 10
    Aug 1 12:59:34 ocivodul kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input2
    Aug 1 12:59:34 ocivodul kernel: input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input3
    Aug 1 12:59:34 ocivodul kernel: input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input4
    Aug 1 12:59:34 ocivodul kernel: ACPI: AC Adapter [AC] (on-line)
    Aug 1 12:59:34 ocivodul kernel: ACPI: Battery Slot [BAT0] (battery absent)
    Aug 1 12:59:34 ocivodul kernel: ACPI: Battery Slot [BAT1] (battery absent)
    Aug 1 12:59:34 ocivodul kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input5
    Aug 1 12:59:34 ocivodul kernel: ACPI: Lid Switch [LID]
    Aug 1 12:59:34 ocivodul kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input6
    Aug 1 12:59:34 ocivodul kernel: ACPI: Power Button [PBTN]
    Aug 1 12:59:34 ocivodul kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7
    Aug 1 12:59:34 ocivodul kernel: ACPI: Sleep Button [SBTN]
    Aug 1 12:59:34 ocivodul kernel: thermal LNXTHERM:01: registered as thermal_zone0
    Aug 1 12:59:34 ocivodul kernel: ACPI: Thermal Zone [THM] (58 C)
    Aug 1 12:59:34 ocivodul kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
    Aug 1 12:59:34 ocivodul kernel: usbcore: registered new interface driver usbfs
    Aug 1 12:59:34 ocivodul kernel: usbcore: registered new interface driver hub
    Aug 1 12:59:34 ocivodul kernel: iTCO_vendor_support: vendor-support=0
    Aug 1 12:59:34 ocivodul kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    Aug 1 12:59:34 ocivodul kernel: iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060)
    Aug 1 12:59:34 ocivodul kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Aug 1 12:59:34 ocivodul kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    Aug 1 12:59:34 ocivodul kernel: usbcore: registered new device driver usb
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 9
    Aug 1 12:59:34 ocivodul kernel: PCI: setting IRQ 9 as level-triggered
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: PCI INT C -> Link[LNKG] -> GSI 9 (level, low) -> IRQ 9
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: debug port 1
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: irq 9, io mem 0xfed1c400
    Aug 1 12:59:34 ocivodul kernel: ACPI: WMI: Mapper loaded
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Aug 1 12:59:34 ocivodul kernel: usb usb1: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 1-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 1-0:1.0: 4 ports detected
    Aug 1 12:59:34 ocivodul kernel: ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKE] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: irq 11, io mem 0xfed1c000
    Aug 1 12:59:34 ocivodul kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Aug 1 12:59:34 ocivodul kernel: usb usb2: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 2-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 2-0:1.0: 6 ports detected
    Aug 1 12:59:34 ocivodul kernel: nvidia: module license 'NVIDIA' taints kernel.
    Aug 1 12:59:34 ocivodul kernel: Disabling lock debugging due to kernel taint
    Aug 1 12:59:34 ocivodul kernel: i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    Aug 1 12:59:34 ocivodul kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:31/device:32/input/input9
    Aug 1 12:59:34 ocivodul kernel: ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> Link[LNKE] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.0: irq 11, io base 0x00006f20
    Aug 1 12:59:34 ocivodul kernel: usb usb3: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 3-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 3-0:1.0: 2 ports detected
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> Link[LNKF] -> GSI 10 (level, low) -> IRQ 10
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1a.1: irq 10, io base 0x00006f00
    Aug 1 12:59:34 ocivodul kernel: usb usb4: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 4-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 4-0:1.0: 2 ports detected
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKE] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.0: irq 11, io base 0x00006f80
    Aug 1 12:59:34 ocivodul kernel: usb usb5: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 5-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 5-0:1.0: 2 ports detected
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKF] -> GSI 10 (level, low) -> IRQ 10
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.1: irq 10, io base 0x00006f60
    Aug 1 12:59:34 ocivodul kernel: usb usb6: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 6-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 6-0:1.0: 2 ports detected
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKG] -> GSI 9 (level, low) -> IRQ 9
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Aug 1 12:59:34 ocivodul kernel: uhci_hcd 0000:00:1d.2: irq 9, io base 0x00006f40
    Aug 1 12:59:34 ocivodul kernel: usb usb7: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 7-0:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 7-0:1.0: 2 ports detected
    Aug 1 12:59:34 ocivodul kernel: sr 0:0:0:0: Attached scsi generic sg0 type 5
    Aug 1 12:59:34 ocivodul kernel: sd 2:0:0:0: Attached scsi generic sg1 type 0
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: CardBus bridge found [1028:01fe]
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: O2: res at 0x94/0xD4: 00/ea
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: O2: enabling read prefetch/write burst
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: ISA IRQ mask 0x0038, PCI irq 10
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: Socket status: 30000006
    Aug 1 12:59:34 ocivodul kernel: pci_bus 0000:03: Raising subordinate bus# of parent bus (#03) from #04 to #07
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge I/O window: 0x2000 - 0x2fff
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge Memory window: 0xf9a00000 - 0xf9afffff
    Aug 1 12:59:34 ocivodul kernel: yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge Memory window: 0x88000000 - 0x8bffffff
    Aug 1 12:59:34 ocivodul kernel: ohci1394 0000:03:01.4: PCI INT A -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    Aug 1 12:59:34 ocivodul kernel: nvidia 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    Aug 1 12:59:34 ocivodul kernel: nvidia 0000:01:00.0: setting latency timer to 64
    Aug 1 12:59:34 ocivodul kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 185.18.31 Tue Jul 28 17:52:27 PDT 2009
    Aug 1 12:59:34 ocivodul kernel: ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[10] MMIO=[f9aff000-f9aff7ff] Max Packet=[2048] IR/IT contexts=[8/8]
    Aug 1 12:59:34 ocivodul kernel: usb 3-2: new full speed USB device using uhci_hcd and address 2
    Aug 1 12:59:34 ocivodul kernel: usb 3-2: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input10
    Aug 1 12:59:34 ocivodul kernel: input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input11
    Aug 1 12:59:34 ocivodul kernel: usb 5-2: new full speed USB device using uhci_hcd and address 2
    Aug 1 12:59:34 ocivodul kernel: usb 5-2: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: Bluetooth: Core ver 2.15
    Aug 1 12:59:34 ocivodul kernel: NET: Registered protocol family 31
    Aug 1 12:59:34 ocivodul kernel: Bluetooth: HCI device and connection manager initialized
    Aug 1 12:59:34 ocivodul kernel: Bluetooth: HCI socket layer initialized
    Aug 1 12:59:34 ocivodul kernel: Bluetooth: Generic Bluetooth USB driver ver 0.5
    Aug 1 12:59:34 ocivodul kernel: usbcore: registered new interface driver btusb
    Aug 1 12:59:34 ocivodul kernel: usbcore: registered new interface driver hiddev
    Aug 1 12:59:34 ocivodul kernel: input: Logitech USB Gaming Mouse as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/input/input12
    Aug 1 12:59:34 ocivodul kernel: generic-usb 0003:046D:C041.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Gaming Mouse] on usb-0000:00:1d.0-2/input0
    Aug 1 12:59:34 ocivodul kernel: generic-usb 0003:046D:C041.0002: hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Gaming Mouse] on usb-0000:00:1d.0-2/input1
    Aug 1 12:59:34 ocivodul kernel: usbcore: registered new interface driver usbhid
    Aug 1 12:59:34 ocivodul kernel: usbhid: v2.6:USB HID core driver
    Aug 1 12:59:34 ocivodul kernel: usb 7-1: new full speed USB device using uhci_hcd and address 2
    Aug 1 12:59:34 ocivodul kernel: usb 7-1: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: hub 7-1:1.0: USB hub found
    Aug 1 12:59:34 ocivodul kernel: hub 7-1:1.0: 4 ports detected
    Aug 1 12:59:34 ocivodul kernel: Clocksource tsc unstable (delta = -83140974 ns)
    Aug 1 12:59:34 ocivodul kernel: usb 7-1.2: new full speed USB device using uhci_hcd and address 3
    Aug 1 12:59:34 ocivodul kernel: usb 7-1.2: configuration #1 chosen from 1 choice
    Aug 1 12:59:34 ocivodul kernel: ieee1394: Host added: ID:BUS[0-00:1023] GUID[324fc000112591a1]
    Aug 1 12:59:34 ocivodul kernel: CE: hpet increasing min_delta_ns to 15000 nsec
    Aug 1 12:59:34 ocivodul kernel: EXT3 FS on sda6, internal journal
    Aug 1 12:59:34 ocivodul kernel: kjournald starting. Commit interval 5 seconds
    Aug 1 12:59:34 ocivodul kernel: EXT3 FS on sda7, internal journal
    Aug 1 12:59:34 ocivodul kernel: EXT3-fs: mounted filesystem with writeback data mode.
    Aug 1 12:59:34 ocivodul kernel: kjournald starting. Commit interval 5 seconds
    Aug 1 12:59:34 ocivodul kernel: EXT3 FS on sda8, internal journal
    Aug 1 12:59:34 ocivodul kernel: EXT3-fs: mounted filesystem with journal data mode.
    Aug 1 12:59:34 ocivodul kernel: Adding 2096440k swap on /dev/sda9. Priority:-1 extents:1 across:2096440k
    Aug 1 12:59:34 ocivodul acpid: starting up
    Aug 1 12:59:34 ocivodul acpid: 1 rule loaded
    Aug 1 12:59:35 ocivodul acpid: waiting for events: event logging is off
    Aug 1 12:59:36 ocivodul acpid: client connected from 2441[82:82]
    Aug 1 12:59:36 ocivodul acpid: 1 client rule loaded
    Aug 1 12:59:33 ocivodul init: Entering runlevel: 5
    Aug 1 12:59:37 ocivodul kernel: NET: Registered protocol family 10
    Aug 1 12:59:37 ocivodul kernel: lo: Disabled Privacy Extensions
    Aug 1 12:59:38 ocivodul acpid: client connected from 2500[0:0]
    Aug 1 12:59:38 ocivodul acpid: 1 client rule loaded
    Aug 1 12:59:42 ocivodul acpid: client connected from 2500[0:0]
    Aug 1 12:59:42 ocivodul acpid: 1 client rule loaded
    Aug 1 12:59:42 ocivodul kernel: BUG: unable to handle kernel NULL pointer dereference at (null)
    Aug 1 12:59:42 ocivodul kernel: IP: [<(null)>] (null)
    Aug 1 12:59:42 ocivodul kernel: PGD 7ede8067 PUD 7b3dd067 PMD 0
    Aug 1 12:59:42 ocivodul kernel: Oops: 0010 [#1] PREEMPT SMP
    Aug 1 12:59:42 ocivodul kernel: last sysfs file: /sys/devices/platform/dock.0/docked
    Aug 1 12:59:42 ocivodul kernel: CPU 0
    Aug 1 12:59:42 ocivodul kernel: Modules linked in: ipv6 ext2 usbhid hid btusb bluetooth joydev pcmcia ohci1394 yenta_socket rsrc_nonstatic sg uhci_hcd ieee1394 pcmcia_core video output i2c_i801 psmouse nvidia(P) wmi serio_raw ehci_hcd dell_laptop dcdbas i2c_core iTCO_wdt iTCO_vendor_support usbcore pcspkr intel_agp thermal fan button battery ac evdev snd_hda_codec_idt snd_hda_intel snd_hda_codec snd_seq_dummy snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device snd_hwdep snd_pcm_oss snd_pcm snd_timer snd_page_alloc snd_mixer_oss snd soundcore arc4 ecb iwl3945 iwlcore rfkill mac80211 led_class cfg80211 tg3 libphy slhc tun i8k cpufreq_powersave cpufreq_ondemand acpi_cpufreq freq_table processor rtc_cmos rtc_core rtc_lib ext3 jbd mbcache sr_mod sd_mod cdrom pata_acpi ata_generic ata_piix libata scsi_mod
    Aug 1 12:59:42 ocivodul kernel: Pid: 2500, comm: X Tainted: P 2.6.30-ARCH #1 Latitude D830
    Aug 1 12:59:42 ocivodul kernel: RIP: 0010:[<0000000000000000>] [<(null)>] (null)
    Aug 1 12:59:42 ocivodul kernel: RSP: 0018:ffff88007bc8dcc0 EFLAGS: 00010296
    Aug 1 12:59:42 ocivodul kernel: RAX: ffff88007b37e000 RBX: ffff88007eceafa8 RCX: 0000000000000001
    Aug 1 12:59:42 ocivodul kernel: RDX: ffff88007e5df7a4 RSI: ffff88007b37e000 RDI: ffff88007e77b000
    Aug 1 12:59:42 ocivodul kernel: RBP: ffff88007eceaf60 R08: ffff88007e77b000 R09: ffff88007eceafe8
    Aug 1 12:59:42 ocivodul kernel: R10: 0000000000000001 R11: 0000000000003202 R12: ffff88007e5df7a0
    Aug 1 12:59:42 ocivodul kernel: R13: ffff88007e77b000 R14: 00007fff6f3b5d50 R15: 0000000000000000
    Aug 1 12:59:42 ocivodul kernel: FS: 00007f530a4b56f0(0000) GS:ffff880001010000(0000) knlGS:0000000000000000
    Aug 1 12:59:42 ocivodul kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    Aug 1 12:59:42 ocivodul kernel: CR2: 0000000000000000 CR3: 000000007e4d1000 CR4: 00000000000006e0
    Aug 1 12:59:42 ocivodul kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
    Aug 1 12:59:42 ocivodul kernel: DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
    Aug 1 12:59:42 ocivodul kernel: Process X (pid: 2500, threadinfo ffff88007bc8c000, task ffff88007edb0ca0)
    Aug 1 12:59:42 ocivodul kernel: Stack:
    Aug 1 12:59:42 ocivodul kernel: ffffffffa0411577 ffff88007eceafa8 00000000c1d00001 000000000000000c
    Aug 1 12:59:42 ocivodul kernel: 00007fff6f3b5d50 0000000000000110 ffffffffa04132da 0000000000000020
    Aug 1 12:59:42 ocivodul kernel: ffffffffa080d6d1 0000000000000110 ffffffffa080d2d9 0000000000000110
    Aug 1 12:59:42 ocivodul kernel: Call Trace:
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa0411577>] ? _nv007272rm+0xaa/0x314 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa04132da>] ? _nv019651rm+0x16/0x1c [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa080d6d1>] ? _nv003836rm+0x9/0xe [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa080d2d9>] ? _nv003802rm+0x179/0x1c2 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa080d616>] ? _nv003838rm+0x98/0x13e [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa074123e>] ? _nv007070rm+0x19/0x25 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa054f0a6>] ? _nv003698rm+0x576/0x5b4 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa07c6181>] ? rm_ioctl+0x2f/0x67 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa089d235>] ? nv_kern_ioctl+0x145/0x4b0 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffffa089d61c>] ? nv_kern_unlocked_ioctl+0x2c/0x50 [nvidia]
    Aug 1 12:59:42 ocivodul kernel: [<ffffffff8030d86d>] ? vfs_ioctl+0x2d/0xd0
    Aug 1 12:59:42 ocivodul kernel: [<ffffffff8030d9b0>] ? do_vfs_ioctl+0xa0/0x580
    Aug 1 12:59:42 ocivodul kernel: [<ffffffff802fc861>] ? vfs_read+0xe1/0x1b0
    Aug 1 12:59:42 ocivodul kernel: [<ffffffff8030df30>] ? sys_ioctl+0xa0/0xc0
    Aug 1 12:59:42 ocivodul kernel: [<ffffffff8020c442>] ? system_call_fastpath+0x16/0x1b
    Aug 1 12:59:42 ocivodul kernel: Code: Bad RIP value.
    Aug 1 12:59:42 ocivodul kernel: RIP [<(null)>] (null)
    Aug 1 12:59:42 ocivodul kernel: RSP <ffff88007bc8dcc0>
    Aug 1 12:59:42 ocivodul kernel: CR2: 0000000000000000
    Aug 1 12:59:42 ocivodul kernel: ---[ end trace c57873a6f98ca7cc ]---
    Aug 1 12:59:53 ocivodul kdm[2498]: X server startup timeout, terminating
    Aug 1 13:00:08 ocivodul kdm[2498]: X server termination timeout, killing
    Aug 1 13:00:18 ocivodul kdm[2498]: X server is stuck in D state; leaving it alone
    Aug 1 13:00:18 ocivodul kdm[2498]: X server for display :0 can't be started, session disabled
    Aug 1 13:20:18 ocivodul -- MARK --
    Aug 1 13:40:18 ocivodul -- MARK --
    Aug 1 14:00:18 ocivodul -- MARK --
    Aug 1 14:20:18 ocivodul -- MARK --
    Aug 1 14:40:18 ocivodul -- MARK --
    Aug 1 15:00:18 ocivodul -- MARK --
    there seems to be a problem with X if I am not mistaken
    Also I don't like the Bad RIP value output even though I have no idea of what it means
    Can anybody help a bit here???

    Same thing happened to me with a cataylst driver on my laptop.  Hangs forever.  I had just updated my system about a day before I applied this update, and the kernel upgrade definitely wasn't the culprit.  I get a console login on my laptop, but whenever I startx it'll just hang forever and not respond to any input other than holding down the power button.  Everything was working fine with the kernel, but then the last update, which included
    *libxcb
    *xcb-proto
    *xcb-util
    *mlocate
    *libx11
    *xorg-server
    *xf86-input-evdev
    *flac
    *hal-info
    Shared between my two systems (one of which is my desktop, with a nvidia graphics chip and the nvidia proprietary drivers).
    I tried downgrading x-server and all the libs that were related to X, but that only broke dbus.
    I'm afraid to reboot my desktop now...
    Last edited by Subject-17 (2009-08-02 09:01:18)

  • Import hangs when "Do not import duplicates" is selected

    I am using iPhoto 6 with a Canon XTi camera. I import pictures directly from the camera via a USB connection. I prefer not to erase photos from the camera's CF card until I need space, as one more way to back up pictures, so when I do an import, I want to select "Do not import duplicates" and to check "apply to all duplicates" to avoid importing the same pictures over and over.
    Lately, however, If I select these two options when the first duplicate appears,, the import hangs and nothing happens. After a while I cancel the import and start it again, choosing to import all duplicates. This makes the import work.
    Any idea why the import would hang when I choose Do not import duplicates?
    Thanks.
    BC
    Message was edited by: BCDrums

    BC
    This feature is not great in v6 of iPhoto. It will perform better if you first move the files to a folder on the desktop and then import. You can use Image Capture to move the files.
    As to your specific query: try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    Regards
    TD

  • Cannot allocate new log importing hanging

    Hai All,
    When I imort a 1.59 Gb data into a database after some time
    a mesaage in alertlog file and import hanging
    message
    ======
    Thread 1 cannot allocate new log, sequence 7
    Checkpoint not complete
    ======
    I have 3 redo log groups with 2 members with the size of 300MB
    How to resolve this? pleas help its an urgent.. please..
    Shiju

    Firstly the database in archive mode but I changed to noarchive mode before imorting the data
    my sql screen
    ==========
    SQL> archive log list
    Database log mode No Archive Mode
    Automatic archival Enabled
    Archive destination /archive
    Oldest online log sequence 7
    Current log sequence 11
    SQL>
    Please help
    Shiju

  • SAPGUI hangs forever

    Hi,
    i installed SAP Netweaver 4.7 on windows XP, on my laptop. SAPMMC shows all processes are running file. i am having SAPGUI 6.2. when i am trying to connect using SAPGUI, it hangs forever.
    My properties are as follows
    Application server: localhost (i tried with 127.0.0.1, i/p address, fully qualified domain name, but no success)
    Sap System : R/3
    System Number :01 (when i gave 00, i gave error message saying partner not reached .. connection refused).
    please let me know the solution.

    Hi Mohammed,
    I am not able to understand how 4.6 is installed on XP.
    the solution for your problem try to run at command prompt <b>sapgui <IP>/<hostname> 01</b>
    If still problem open c:\windows\system32\drivers\etc\services in notepad and add the following.
    <b>sapms<SID> 3601/TCP</b>
    where SID is the SAP System ID that had given.
    regards
    Anand.M

  • Lightroom 5.7 import hangs up

    I have Lightroom 5.7 running on a PC, 8.1 Windows op system.  Lightroom 5 opens and I can get to the library but when I try and import more pictures for a new collection, it hangs up and I get a message: "Adobe Photoshop Lightoom 64 has stopped working. A problem caused teh program to stop working correctly. Windows will close the program and notify you if a solution is available."  I never hear back (of course) from Windows or Microsoft.  Would it help to eliminate all the other collections I have on Lightroom?  It seems to be happening more and more that Import hangs up and won't operate.  It is longer than just the pause while it looks for sources on my several external drives.  Thank you!

    Possibility #1: http://members.lightroomqueen.com/index.php?/Knowledgebase/Article/View/1137/188/how-do-i- change-my-monitor-profile-to-check-whether-its-corrupted
    Possibility #2: you need to delete your preview cache, this is a folder whose name end with Previews.LRDATA. Do not delete the .LRCAT file in the same folder.

  • Zfs-import-cache.service fails on startup

    I have been using zfs for a couple of days now.
    It's only for storage purposes, not for root system.
    I installed it, and enabled zfs.target for startup, but since a couple of reboots ago, I noticed zfs-import-cache.service fails resulting in sometimes, the pool not getting mounted.
    ● zfs-import-cache.service - Import ZFS pools by cache file
    Loaded: loaded (/usr/lib/systemd/system/zfs-import-cache.service; static)
    Active: failed (Result: exit-code) since sáb 2014-07-05 23:42:21 CEST; 44min ago
    Process: 174 ExecStart=/usr/bin/zpool import -c /etc/zfs/zpool.cache -aN (code=exited, status=1/FAILURE)
    Main PID: 174 (code=exited, status=1/FAILURE)
    jul 05 23:42:21 7thHeaven zpool[174]: Unable to open /dev/zfs: No such file or directory.
    jul 05 23:42:21 7thHeaven zpool[174]: Verify the ZFS module stack is loaded by running '/sbin/modprobe zfs'.
    jul 05 23:42:21 7thHeaven systemd[1]: zfs-import-cache.service: main process exited, code=exited, status=1/FAILURE
    jul 05 23:42:21 7thHeaven systemd[1]: Failed to start Import ZFS pools by cache file.
    jul 05 23:42:21 7thHeaven systemd[1]: Unit zfs-import-cache.service entered failed state.
    Any idea why would this happen?
    Thanks.

    Xi0N wrote:BTW, I'm trying to setup zed so it would send me an email on every event, but I don't seem to get it working. I installed and started postfix, but I still don't really know how to configure it so the mails get sent. Any tips?
    You need to create a script in /etc/zfs/zed.d/ - see the zed man page.
    Use the existing scripts in that dir for examples (e.g. scrub.finish-email.sh).
    The existing scripts use /etc/zfs/zed.d/zed.rc; in that you need to set “ZED_EMAIL” to the email address to mail to in order to make the existing mailer scripts do something. Your script could instead hard code the email address.
    cmtonkinson wrote:I've got a related problem I just posted about yesterday, I wonder if this busywait tactic would work in my scenario as well - although isn't there a way to do this with Require/After instead of an ExecStartPre wait script?
    If you look at zfs.target et al, you'll see they already use Require/After/Before to order things. Xi0N's problem is not the ordering, but that the kernel module hasn't always created the zfs device when systemd runs the .service.
    I use ZFS as my root, and the zfs hook runscript has a similar wait in it - so for me the zfs device exists by the time systemd runs the .service.
    I don't know if your problem is the slowness of the zfs kernel modules or something else. My first port of call would be to check the journal for errors.

  • Powerdesigner Integrator Source hangs forever

    Hi,
    We're struggling with Powerdesigner integration. We use PD16.5 and IS14.2.2.412
    The Powerdesigner Glossary is synchronised succesfully to Information Steward.
    However,  as soon as one model is added to the PD repository (conceptual, logical or physical), the synchronisation hangs forever.
    The integrator source seems to loop forever:
    - sets a lock every 10 minutes,
    - log some audit records
    - wait 10 minutes.
    We have tried different repository content scenario's,  even with one physical model, containing one entity  the synchronisation loops forever.
    Synchronisation with BO Webi, SAP DS, SAP BW and HANA works fine.
    I have attached the log file (in the end, we have aborted the loop).
    The proces sometimes aborts with the message "Could not obtain batch lock after configured retries"
    Any suggestion appreciated.
    Gijsbert Karens
    Message was detailed by: Gijsbert Karens on 11/7

    Create a new account (systempreferences -> accounts or Users & Groups on 10.7)  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.
    Regards
    TD

  • Full database import hangs

    System:
    Windows 2000 SP4
    Oracle 8.1.7
    Hi,
    I am importing a full backup ( export dump file ). It was taken from the
    database having the same structure as the database to which I am importing.
    It is taking too long in importing data in a particular table and seems to hang
    for hours. It says 40542226 rows imported. It seems to hang from here.
    I checked the v$session to identify the session serving the import and
    v$session_wait to verify the wait events for that session. But I don't see
    any wait events for this session. What I see is the session itself.
    I did the import using:
    imp username/password@sid file'D:\data\fullbkp.dmp' log=D:\log\fullbkpimp.log' full=y
    My question is: what are other diagnosis I should perform to help find out the cause and
    possibly the solution of this import hang?

    Hi,
    In addition, when I want to see what's is going on, I usually execute the SQL below in order to monitory the import operation activity...
    select substr(sql_text,instr(sql_text,'INTO "'),30) table_name,
    rows_processed,
    round((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60,1) minutes,
    trunc(rows_processed/((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60)) rows_per_min
    from sys.v_$sqlarea
    where sql_text like 'INSERT %INTO "%' and
    command_type = 2 and open_versions > 0; Cheers
    Legatti

  • Adobe reader hangs forever on save

    I downloaded following form:
    http://incometaxindiaefiling.gov.in/portal/downloads/itr/ITR2_Version1.0.pdf
    After filling it or say even after filling one entry if I try to save the form (ctrl-s), Adobe Reader seems to hang forever.
    Initially it shows lots of harddisk activity for 4-5 mins and after that harddisk activity stops but it keeps on using CPU to almost 100%. And then (after waiting for 10mins) I killed it.
    The file was not modified at all even after 10mins.
    I use Adobe Reader 7.0.8 (tar.gz) for Linux on FC6. Can someone confirm if same happens with 7.0.9 as I am not allowed to download/install it.
    Do I have to apply any patch? Any idea when Adobe Reader 8.1 for Linux be launched?
    Thanks in advance.
    Amish.

    Ctrl-S saves directly on same file which was opened hence obviously it wont show 'Save As' dialogue box. But it doesnt suspend for sure as otherwise it wont show lots of harddisk activity.
    I even tried File-Exit or Ctrl-Q. I even tried File-Close (Ctrl-W). In both cases it asked me to Save file or not. I clicked Yes and again after lots of harddisk activity nothing happened. Harddisk activity stopped after sometime but CPU was still used continuously. Reader simply hanged with gray window.
    Just now I tried same form on one FC2 machine and there too same problem occured. Waited for about 10mins.
    Were you able to save with same form?
    Thanks for your quick response.
    Amish.

  • SDM hangs forever, please help.

    After start RemoteGui.bat, we enter the password, then
    hit enter, the hourglass hangs forever.
    No errors found in the logs.
    Please help, points guaranteed . Thanks!

    Hi,
    its is due to duplicate deploymet in SDM Repository.
    Try this out..
    1)Take a backup copy of the sdmrepository.sdc file from       \usr\sap\<SID>\JC<instno>\SDM\program\config\
    2)Stop the SDM from MMC.
    3)Edit the sdmrepository.sdc file using WordPad.
    4)In the deploy container part of the SDM repository (this is the second half of the  file  between the <DeploymentContainer> pair of tags),  search for the string " 2"
    5)if you found more than one value. delete all except one...
    6)Delete all space between the <SdaDeployment> pair for deployment with ID "com.sap.sen.permissions 2", including the <SdaDeployment> tags .
    (A corrected repository should not contain any IDs with trailing numbers.)
    7)Try the above procedure for occurrences of " 3", " 4", ... " N"(normally you will not find the occurance of "2" more than once..so u can ignore the rest.
    8)     Save the file and restart the SDM
        "   Solution: - Apply note no 824357  "
    Regards,
    Arun

Maybe you are looking for