Hashing trouble

Hi, I've been given an issue to solve but I'm not getting close to the solution.
Problem is to hash (MD5 128 bits) an ip address (with salt = 0x12345678) following this example.
"+The IP is represented as 4 bytes thus: 217.57.160.193 = in Hex D9.39.A0.C1, so the 32-bit value of the IP is 0xD939A0C1.+
+When hashing the IP, the binary buffer sent for the MD5 operation is always 8 bytes long, in which the first 4 bytes are the salt and the last 4 bytes are the IP value+".
In this case, the binary buffer sent to the MD5 is: 0x12345678D939A0C1.
Result should be: 6cb3fa0c1e04fc9d9f37a2617fa57bb4.
I addressed the first part with this code:
long salt = (long) 0x12345678;
String ipAddress = "217.57.160.193";
String strToHash;
byte[] hsh = null;
long result = 0;
String[] octets = ipAddress.split("\\.");
+for (int i = 3; i >= 0; i--) {+
result |= (Long.parseLong(octets[3 - i]) << (i * 8));
+}+
result = result & 0xFFFFFFFF;
System.out.println("217.57.160.193 in hex = " Long.toHexString(result));+
Obtaining: 0xD939A0C1
Then I tried to hash w/ salt:
String md5="";
byte[] md5Byte = null;
+try {+
+//md5Byte = DigestUtils.md5(((Long.toHexString(salt)) + (Long.toHexString(result))).getBytes("UTF-8"));+
md5 = DigestUtils.md5Hex(strToHash.getBytes());
+} catch (Exception ex) {+
java.util.logging.Logger.getLogger(HttpMonitorNG.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
+}+
System.out.println("217.57.160.193 hashed = " md5);+
Obtaining this value: 0b348be5b3ebe7c54bff9170a24a5362
Any idea would be appreciated.
Thank you
ny

There is just so so so much wrong with that code.
This gives the result you expect -
final byte[] salt =
            (byte) 0x12, (byte) 0x34, (byte) 0x56, (byte) 0x78
        final byte[] ip =
            (byte) 0xD9, (byte) 0x39, (byte) 0xA0, (byte) 0xC1
        final MessageDigest digestAgent = MessageDigest.getInstance("MD5");
        digestAgent.update(salt);
        digestAgent.update(ip);
        final byte[] digest = digestAgent.digest();
        for (byte b : digest)
            System.out.printf("%02x", b & 0xff);
        System.out.println();and using your original salt and IP data types            int salt = 0x12345678;
            String ipAddress = "217.57.160.193";
            final MessageDigest digestAgent = MessageDigest.getInstance("MD5");
            for (int j = 24; j >= 0; j -= 8)
                digestAgent.update((byte) (salt >>> j));
            for (String s : ipAddress.split("\\."))
                digestAgent.update((byte) Integer.parseInt(s));
            final byte[] digest = digestAgent.digest();
            for (byte b : digest)
                System.out.printf("%02x", b & 0xff);
           System.out.println();Edited by: sabre150 on Jul 31, 2009 1:00 PM
Refined second bit of code

Similar Messages

  • Hashing function trouble???

    I'm using a standard hashing function for strings (ala P. J. Weingberger). It's worked fine on various unices (linux,freebsd,etc) and on a solaris 5.7 platform. However, I'm getting errors when I try to run on a Solaris 8 environment, Ultra1 (32-bit). I'm not familiar with Solaris, but perhaps someone could weigh in with why the following function is causing trouble... Different bitwise ops for Solaris 8? Also, the compiler is gcc.
    Here's the function. Thanks!
    unsigned int hashpjw (const void *key) {
    const char *ptr;
    unsigned int val;
    val=0;
    ptr=key;
    while (*ptr != '\0') {
    int tmp;
    val = (val << 4) + (*ptr);
    if (tmp = (val & 0xf0000000)) {
    val = val ^ (tmp >> 24);
    val &= ~tmp;
    ptr++;
    return (val%BIG_MAX);

    Solaris 2.6 and above use 64-bit versions of many
    libraries. If you are assuming 32-bit operations, your
    code will have problems. Consult the man-pages for
    how to get different compatability modes. There were
    dual 32 and 64 bit compat libs on Solaris 2.6. Not
    sure about Solaris 8. This is in the OS primarily, not
    the compilers, because lots of apps and any thrid
    party compilers have to make the choice between 32 bit
    and 64 bit compat.

  • [Kernel] USB and network trouble

    Hey all, i have some trouble getting my system fully running.
    I have a built in 3com network card, it uses the 3c59x module in the kernel (got it build into the kernel). I also have a usb cd writer. When i start writing my network fails after sometime. I came from vectorlinux to arch. In VL it worked without a prob. Here check my dmesg output. The most interesting is at the end.
    chitecture supported.
    Intel machine check reporting enabled on CPU#0.
    CPU: Intel Pentium III (Coppermine) stepping 06
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Checking 'hlt' instruction... OK.
    ACPI: setting ELCR to 0200 (from 0808)
    checking if image is initramfs... it is
    Freeing initrd memory: 567k freed
    NET: Registered protocol family 16
    PCI: PCI BIOS revision 2.10 entry at 0xfed9b, last bus=21
    PCI: Using configuration type 1
    mtrr: v2.0 (20020519)
    ACPI: Subsystem revision 20041105
    ACPI-0169: *** Error: No object was returned from [_SB_.LNKA._STA] (Node d3fdef00), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.LNKB._STA] (Node d3fdee00), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.LNKC._STA] (Node d3fded00), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.LNKD._STA] (Node d3fdec00), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.PCI0.FNC0.FDD_._STA] (Node c12f75a0), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.PCI0.FNC0.COM_._STA] (Node c12f7460), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.PCI0.FNC0.PRT_._STA] (Node c12f72e0), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.PCI0.FNC0.PRT1._STA] (Node c12f7200), AE_NOT_EXIST
    ACPI-0169: *** Error: No object was returned from [_SB_.PCI0.FNC0.PCC0._STA] (Node c12f7fe0), AE_NOT_EXIST
    ACPI: Interpreter enabled
    ACPI: Using PIC for interrupt routing
    ACPI-0169: *** Error: No object was returned from [_SB_.LNKE._PRS] (Node c12fc780), AE_NOT_EXIST
    ACPI: PCI Root Bridge [PCI0] (00:00)
    PCI: Probing PCI hardware (bus 00)
    ACPI: PCI Interrupt Routing Table [_SB_.PCI0._PRT]
    ACPI: Power Resource [PIHD] (on)
    ACPI: Power Resource [PMHD] (off)
    ACPI: Power Resource [PDOC] (off)
    ACPI: PCI Interrupt Routing Table [_SB_.PCI0.PCI1._PRT]
    ACPI: Power Resource [PFAN] (off)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI-0169: *** Error: No object was returned from [_SB_.MEM_._CRS] (Node c12fc6a0), AE_NOT_EXIST
    pnp: PnPACPI: METHOD_NAME__CRS failure for PNP0c01
    PCI: setting IRQ 13 as level-triggered
    pnp: PnP ACPI: found 9 devices
    SCSI subsystem initialized
    Linux Kernel Card Services
    options: [pci] [cardbus] [pm]
    usbcore: registered new driver usbfs
    usbcore: registered new driver hub
    PCI: Using ACPI for IRQ routing
    ** PCI interrupts are no longer routed automatically. If this
    ** causes a device to stop working, it is probably because the
    ** driver failed to call pci_enable_device(). As a temporary
    ** workaround, the "pci=routeirq" argument restores the old
    ** behavior. If this argument makes the device work again,
    ** please email the output of "lspci" to [email protected]
    ** so I can fix the driver.
    ACPI-0169: *** Error: No object was returned from [_SB_.MEM_._CRS] (Node c12fc6a0), AE_NOT_EXIST
    apm: BIOS version 1.2 Flags 0x02 (Driver version 1.16ac)
    apm: overridden by ACPI.
    devfs: 2004-01-31 Richard Gooch ([email protected])
    devfs: boot_options: 0x1
    Initializing Cryptographic API
    Limiting direct PCI/PCI transfers.
    cpci_hotplug: CompactPCI Hot Plug Core version: 0.2
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.4
    acpiphp_glue: can't get bus number, assuming 0
    Linux agpgart interface v0.100 (c) Dave Jones
    agpgart: Detected an Intel 440BX Chipset.
    agpgart: Maximum main memory to use for agp memory: 262M
    agpgart: AGP aperture is 256M @ 0xd0000000
    vesafb: framebuffer at 0xf0000000, mapped to 0xd4900000, using 6144k, total 8192k
    vesafb: mode is 1024x768x32, linelength=4096, pages=1
    vesafb: protected mode interface info at c000:8751
    vesafb: scrolling: redraw
    vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Console: switching to colour frame buffer device 128x48
    fb0: VESA VGA frame buffer device
    ACPI: AC Adapter [ADP1] (on-line)
    ACPI: Battery Slot [BAT1] (battery present)
    ACPI: Power Button (FF) [PWRF]
    ACPI: Lid Switch [LID]
    ACPI: Fan [FAN] (off)
    ACPI: Video Device [VGA] (multi-head: yes rom: yes post: no)
    ACPI: Processor [CPU0] (supports C1 C2)
    ACPI: Thermal Zone [THRM] (66 C)
    serio: i8042 AUX port at 0x60,0x64 irq 12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered
    elevator: using anticipatory as default io scheduler
    Floppy drive(s): fd0 is 1.44M
    FDC 0 is a post-1991 82077
    RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
    loop: loaded (max 8 devices)
    ACPI: PCI interrupt 0000:00:0f.0[A]: no GSI - using IRQ 11
    3c59x: Donald Becker and others. www.scyld.com/network/vortex.html
    0000:00:0f.0: 3Com PCI 3c905C Tornado at 0xfb00. Vers LK1.1.19
    Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    PIIX4: IDE controller at PCI slot 0000:00:05.1
    PIIX4: chipset revision 1
    PIIX4: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0xfff0-0xfff7, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0xfff8-0xffff, BIOS settings: hdc:DMA, hdd:pio
    Probing IDE interface ide0...
    hda: TOSHIBA MK1516GAP, ATA DISK drive
    ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    Probing IDE interface ide1...
    hdc: TOSHIBA DVD-ROM SD-C2402, ATAPI CD/DVD-ROM drive
    ide1 at 0x170-0x177,0x376 on irq 15
    Probing IDE interface ide2...
    ide2: Wait for ready failed before probe !
    Probing IDE interface ide3...
    ide3: Wait for ready failed before probe !
    Probing IDE interface ide4...
    ide4: Wait for ready failed before probe !
    Probing IDE interface ide5...
    ide5: Wait for ready failed before probe !
    hda: max request size: 128KiB
    hda: 23579136 sectors (12072 MB), CHS=23392/16/63, UDMA(33)
    hda: cache flushes not supported
    /dev/ide/host0/bus0/target0/lun0: p1 p2 < p5 p6 p7 p8 >
    hdc: ATAPI 24X DVD-ROM drive, 128kB Cache, UDMA(33)
    Uniform CD-ROM driver Revision: 3.20
    PCI: Enabling device 0000:00:0b.0 (0000 -> 0002)
    ACPI: PCI interrupt 0000:00:0b.0[A]: no GSI
    Yenta: CardBus bridge found at 0000:00:0b.0 [1179:0001]
    Yenta: ISA IRQ mask 0x0cb8, PCI irq 0
    Socket status: 30000007
    PCI: Enabling device 0000:00:0b.1 (0000 -> 0002)
    ACPI: PCI interrupt 0000:00:0b.1[b]: no GSI
    Yenta: CardBus bridge found at 0000:00:0b.1 [1179:0001]
    Yenta: ISA IRQ mask 0x0cb8, PCI irq 0
    Socket status: 30000007
    ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
    USB Universal Host Controller Interface driver v2.2
    ACPI: PCI interrupt 0000:00:05.2[D]: no GSI - using IRQ 11
    uhci_hcd 0000:00:05.2: Intel Corp. 82371AB/EB/MB PIIX4 USB
    uhci_hcd 0000:00:05.2: irq 11, io base 0xff80
    uhci_hcd 0000:00:05.2: new USB bus registered, assigned bus number 1
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    sl811: driver sl811-hcd, 06 Dec 2004
    usb 1-2: new full speed USB device using uhci_hcd and address 2
    usbaudio: device 2 audiocontrol interface 0 has 1 input and 0 output AudioStreaming interfaces
    usbaudio: valid input sample rate 8000
    usbaudio: valid input sample rate 48000
    usbaudio: valid input sample rate 44100
    usbaudio: valid input sample rate 22050
    usbaudio: valid input sample rate 11025
    usbaudio: device 2 interface 1 altsetting 1: format 0x00000010 sratelo 8000 sratehi 48000 attributes 0x01
    usbaudio: valid input sample rate 8000
    usbaudio: valid input sample rate 48000
    usbaudio: valid input sample rate 44100
    usbaudio: valid input sample rate 22050
    usbaudio: valid input sample rate 11025
    usbaudio: device 2 interface 1 altsetting 2: format 0x80000010 sratelo 8000 sratehi 48000 attributes 0x01
    usbaudio: registered dsp 14,3
    usbaudio: constructing mixer for Terminal 2 type 0x0101
    usbaudio: registered mixer 14,0
    usb_audio_parsecontrol: usb_audio_state at d3cb6560
    usbcore: registered new driver audio
    drivers/usb/class/audio.c: v1.0.0:USB Audio Class driver
    Initializing USB Mass Storage driver...
    usbcore: registered new driver usb-storage
    USB Mass Storage support registered.
    usbcore: registered new driver hiddev
    usbcore: registered new driver usbhid
    drivers/usb/input/hid-core.c: v2.0:USB HID core driver
    mice: PS/2 mouse device common for all mice
    input: AT Translated Set 2 keyboard on isa0060/serio0
    input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1
    Advanced Linux Sound Architecture Driver Version 1.0.6 (Sun Aug 15 07:17:53 2004 UTC).
    ACPI: PCI interrupt 0000:00:0c.0[A]: no GSI - using IRQ 11
    es1968: clocking to 48000
    unable to register OSS PCM device 0:0
    unable to register OSS mixer device 0:0
    ALSA device list:
    #0: ESS ES1978 (Maestro 2E) at 0xfc00, irq 11
    NET: Registered protocol family 2
    IP: routing cache hash table of 2048 buckets, 16Kbytes
    TCP: Hash tables configured (established 32768 bind 65536)
    NET: Registered protocol family 1
    NET: Registered protocol family 10
    IPv6 over IPv4 tunneling driver
    NET: Registered protocol family 17
    ACPI wakeup devices:
    USB VIY0 VIY1 MODM LAN LAN2 LID
    ACPI: (supports S0 S1 S3 S4 S4bios S5)
    ReiserFS: hda1: found reiserfs format "3.6" with standard journal
    ReiserFS: hda1: using ordered data mode
    ReiserFS: hda1: journal params: device hda1, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    ReiserFS: hda1: checking transaction log (hda1)
    ReiserFS: hda1: Using r5 hash to sort names
    VFS: Mounted root (reiserfs filesystem) readonly.
    Mounted devfs on /dev
    Freeing unused kernel memory: 192k freed
    Adding 40120k swap on /dev/discs/disc0/part5. Priority:-1 extents:1
    Adding 128480k swap on /dev/discs/disc0/part7. Priority:-2 extents:1
    Adding 128480k swap on /dev/discs/disc0/part8. Priority:-3 extents:1
    Real Time Clock Driver v1.12
    drivers/usb/serial/usb-serial.c: USB Serial support registered for Generic
    usbcore: registered new driver usbserial_generic
    usbcore: registered new driver usbserial
    drivers/usb/serial/usb-serial.c: USB Serial Driver core v2.0
    Disabled Privacy Extensions on device c04cd0e0(lo)
    eth0: no IPv6 routers present
    ISO 9660 Extensions: Microsoft Joliet Level 3
    ISOFS: changing to secondary root
    usb 1-1: new full speed USB device using uhci_hcd and address 3
    scsi0 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 3
    usb-storage: waiting for device to settle before scanning
    Vendor: LITE-ON Model: LTR-48246K Rev: SKS7
    Type: CD-ROM ANSI SCSI revision: 00
    sr0: scsi3-mmc drive: 207x/48x writer cd/rw xa/form2 cdda tray
    Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
    Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0, type 5
    usb-storage: device scan complete
    cdrom: This disc doesn't have any tracks I recognize!
    cdrom: This disc doesn't have any tracks I recognize!
    scsi: unknown opcode 0x01
    ISO 9660 Extensions: Microsoft Joliet Level 3
    ISOFS: changing to secondary root
    NETDEV WATCHDOG: eth0: transmit timed out
    eth0: transmit timed out, tx_status 00 status e601.
    diagnostics: net 0cf6 media 8880 dma 0000003a fifo 8000
    eth0: Interrupt posted but not delivered -- IRQ blocked by another device?
    Flags; bus-master 1, dirty 1328(0) current 1328(0)
    Transmit list 00000000 vs. d3c97200.
    0: @d3c97200 length 8000049c status 0c01049c
    1: @d3c972a0 length 8000049c status 0c01049c
    2: @d3c97340 length 8000004d status 0c01004d
    3: @d3c973e0 length 8000004d status 0c01004d
    4: @d3c97480 length 80000049 status 0c010049
    5: @d3c97520 length 80000049 status 0c010049
    6: @d3c975c0 length 8000002a status 0001002a
    7: @d3c97660 length 80000049 status 0c010049
    8: @d3c97700 length 8000002a status 0001002a
    9: @d3c977a0 length 8000002a status 0001002a
    10: @d3c97840 length 8000004d status 0c01004d
    11: @d3c978e0 length 8000002a status 0001002a
    12: @d3c97980 length 8000002a status 0001002a
    13: @d3c97a20 length 8000002a status 0001002a
    14: @d3c97ac0 length 8000002a status 8001002a
    15: @d3c97b60 length 8000002a status 8001002a
    eth0: Resetting the Tx ring pointer.
    NETDEV WATCHDOG: eth0: transmit timed out
    eth0: transmit timed out, tx_status 00 status e601.
    diagnostics: net 0cf6 media 8880 dma 0000003a fifo 0000
    eth0: Interrupt posted but not delivered -- IRQ blocked by another device?
    Flags; bus-master 1, dirty 1344(0) current 1344(0)
    Transmit list 00000000 vs. d3c97200.
    0: @d3c97200 length 8000002a status 0001002a
    1: @d3c972a0 length 8000002a status 0001002a
    2: @d3c97340 length 8000002a status 0001002a
    3: @d3c973e0 length 8000002a status 0001002a
    4: @d3c97480 length 80000036 status 00010036
    5: @d3c97520 length 80000036 status 00010036
    6: @d3c975c0 length 80000036 status 00010036
    7: @d3c97660 length 80000036 status 00010036
    8: @d3c97700 length 80000036 status 00010036
    9: @d3c977a0 length 80000036 status 00010036
    10: @d3c97840 length 80000036 status 00010036
    11: @d3c978e0 length 80000047 status 0c010047
    12: @d3c97980 length 80000082 status 00010082
    13: @d3c97a20 length 8000004e status 0001004e
    14: @d3c97ac0 length 8000004e status 8001004e
    15: @d3c97b60 length 8000004e status 8001004e
    eth0: Resetting the Tx ring pointer.
    NETDEV WATCHDOG: eth0: transmit timed out
    eth0: transmit timed out, tx_status 00 status e601.
    diagnostics: net 0cf6 media 8880 dma 0000003a fifo 0000
    eth0: Interrupt posted but not delivered -- IRQ blocked by another device?
    Flags; bus-master 1, dirty 1360(0) current 1360(0)
    Transmit list 00000000 vs. d3c97200.
    0: @d3c97200 length 80000080 status 00010080
    1: @d3c972a0 length 8000004a status 0001004a
    2: @d3c97340 length 80000055 status 0c010055
    3: @d3c973e0 length 8000004a status 0001004a
    4: @d3c97480 length 8000002a status 0001002a
    5: @d3c97520 length 8000002a status 0001002a
    6: @d3c975c0 length 8000002a status 0001002a
    7: @d3c97660 length 80000055 status 0c010055
    8: @d3c97700 length 8000002a status 0001002a
    9: @d3c977a0 length 8000006c status 0001006c
    10: @d3c97840 length 80000036 status 00010036
    11: @d3c978e0 length 80000036 status 00010036
    12: @d3c97980 length 80000049 status 0c010049
    13: @d3c97a20 length 80000051 status 0c010051
    14: @d3c97ac0 length 80000049 status 8c010049
    15: @d3c97b60 length 80000051 status 8c010051
    eth0: Resetting the Tx ring pointer.
    NETDEV WATCHDOG: eth0: transmit timed out
    eth0: transmit timed out, tx_status 00 status e601.
    diagnostics: net 0cf6 media 8880 dma 0000003a fifo 0000
    eth0: Interrupt posted but not delivered -- IRQ blocked by another device?
    Flags; bus-master 1, dirty 1376(0) current 1376(0)
    Transmit list 00000000 vs. d3c97200.
    0: @d3c97200 length 80000049 status 0c010049
    1: @d3c972a0 length 80000051 status 0c010051
    2: @d3c97340 length 800000ae status 000100ae
    3: @d3c973e0 length 800000ae status 000100ae
    4: @d3c97480 length 80000042 status 00010042
    5: @d3c97520 length 8000006b status 0001006b
    6: @d3c975c0 length 8000006b status 0001006b
    7: @d3c97660 length 80000080 status 00010080
    8: @d3c97700 length 8000004e status 0001004e
    9: @d3c977a0 length 80000080 status 00010080
    10: @d3c97840 length 8000004e status 0001004e
    11: @d3c978e0 length 80000080 status 00010080
    12: @d3c97980 length 80000080 status 00010080
    13: @d3c97a20 length 8000006b status 0001006b
    14: @d3c97ac0 length 80000051 status 8c010051
    15: @d3c97b60 length 8000004a status 8001004a
    eth0: Resetting the Tx ring pointer.
    eth0: no IPv6 routers present
    When my network is down, the onlything to restore is is rebooting my computer. Restarting the network daemon does not work. Currently i don't have hotplug running, but with hotplug i encounter the same problem.
    I hope anybody can help me.
    Greetinx Atze

    It looks like the problem is with ACPI or you have a hardware IRQ conflict..
    check for a bios update for your Motherboard and check the bios settings.
    It might also help if you moved network card to another pci-slot.

  • Real trouble trying to install Catalyst Legacy

    I'm kind of in trouble trying to install catalyst-total-hd234k package from the AUR
    using yaourt to achieve this, enabled the xorg112 package to downgrade, tried pacman directly and makepkg, same result
    It asks a lot of dependencies conflicting with catalyst drivers, so I accept to remove before downgrading to 1.12
    It goes through like if nothing was up after downgrading, package installs without any error
    Following the AMD Catalyst wiki page in here leads me to have a black screen after reboot
    EDIT 2: Process of reproducing the problem I'm facing
    - I enable the xorg112 repository on top of every other in /etc/pacman.conf
    - Downgrade xorg with
    # pacman -S xorg
    :: There are 79 members in group xorg:
    :: Repository xorg112
    1) xf86-input-acecad 2) xf86-input-aiptek 3) xf86-input-evdev 4) xf86-input-joystick 5) xf86-input-keyboard 6) xf86-input-mouse 7) xf86-input-synaptics
    8) xf86-input-vmmouse 9) xf86-input-void 10) xf86-video-apm 11) xf86-video-fbdev 12) xf86-video-intel 13) xf86-video-v4l 14) xf86-video-vesa
    :: Repository extra
    15) xf86-video-ark 16) xf86-video-ast 17) xf86-video-ati 18) xf86-video-cirrus 19) xf86-video-dummy 20) xf86-video-glint 21) xf86-video-i128
    22) xf86-video-mach64 23) xf86-video-mga 24) xf86-video-modesetting 25) xf86-video-neomagic 26) xf86-video-nouveau 27) xf86-video-nv 28) xf86-video-openchrome
    29) xf86-video-r128 30) xf86-video-savage 31) xf86-video-siliconmotion 32) xf86-video-sis 33) xf86-video-tdfx 34) xf86-video-trident 35) xf86-video-vmware
    36) xf86-video-voodoo 37) xorg-bdftopcf 38) xorg-docs 39) xorg-font-util 40) xorg-fonts-100dpi 41) xorg-fonts-75dpi 42) xorg-fonts-encodings 43) xorg-iceauth
    44) xorg-luit 45) xorg-mkfontdir 46) xorg-mkfontscale 47) xorg-server 48) xorg-sessreg 49) xorg-setxkbmap 50) xorg-smproxy 51) xorg-x11perf 52) xorg-xauth
    53) xorg-xbacklight 54) xorg-xcmsdb 55) xorg-xcursorgen 56) xorg-xdpyinfo 57) xorg-xdriinfo 58) xorg-xev 59) xorg-xgamma 60) xorg-xhost 61) xorg-xinput
    62) xorg-xkbcomp 63) xorg-xkbevd 64) xorg-xkbutils 65) xorg-xkill 66) xorg-xlsatoms 67) xorg-xlsclients 68) xorg-xmodmap 69) xorg-xpr 70) xorg-xprop
    71) xorg-xrandr 72) xorg-xrdb 73) xorg-xrefresh 74) xorg-xset 75) xorg-xsetroot 76) xorg-xvinfo 77) xorg-xwd 78) xorg-xwininfo 79) xorg-xwud
    Enter a selection (default=all):
    warning: downgrading package xf86-input-evdev (2.9.1-1 => 2.7.3-1)
    warning: downgrading package xf86-input-joystick (1.6.2-5 => 1.6.1-1)
    warning: downgrading package xf86-input-keyboard (1.8.0-3 => 1.6.2-1)
    warning: downgrading package xf86-input-mouse (1.9.1-1 => 1.8.1-1)
    warning: downgrading package xf86-input-synaptics (1.8.1-1 => 1.6.2-1)
    warning: downgrading package xf86-input-vmmouse (13.0.0-5 => 12.9.0-1)
    warning: downgrading package xf86-input-void (1.4.0-7 => 1.4.0-3)
    warning: downgrading package xf86-video-fbdev (0.4.4-3 => 0.4.3-1)
    warning: downgrading package xf86-video-intel (2.99.917-1 => 2.20.2-2)
    warning: downgrading package xf86-video-v4l (0.2.0-14 => 0.2.0-10)
    warning: downgrading package xf86-video-vesa (2.3.2-5 => 2.3.2-1)
    warning: xf86-video-ark-0.7.5-5 is up to date -- reinstalling
    warning: xf86-video-ast-0.97.0-5 is up to date -- reinstalling
    warning: xf86-video-ati-1:7.5.0-1 is up to date -- reinstalling
    warning: xf86-video-cirrus-1.5.2-4 is up to date -- reinstalling
    warning: xf86-video-dummy-0.3.7-3 is up to date -- reinstalling
    warning: xf86-video-glint-1.2.8-5 is up to date -- reinstalling
    warning: xf86-video-i128-1.3.6-5 is up to date -- reinstalling
    warning: xf86-video-mach64-6.9.4-4 is up to date -- reinstalling
    warning: xf86-video-mga-1.6.3-3 is up to date -- reinstalling
    warning: xf86-video-modesetting-0.9.0-2 is up to date -- reinstalling
    warning: xf86-video-neomagic-1.2.8-3 is up to date -- reinstalling
    warning: xf86-video-nouveau-1.0.11-2 is up to date -- reinstalling
    warning: xf86-video-nv-2.1.20-5 is up to date -- reinstalling
    warning: xf86-video-openchrome-0.3.3-4 is up to date -- reinstalling
    warning: xf86-video-r128-6.9.2-3 is up to date -- reinstalling
    warning: xf86-video-savage-2.3.7-3 is up to date -- reinstalling
    warning: xf86-video-siliconmotion-1.7.7-5 is up to date -- reinstalling
    warning: xf86-video-sis-0.10.7-6 is up to date -- reinstalling
    warning: xf86-video-tdfx-1.4.5-5 is up to date -- reinstalling
    warning: xf86-video-trident-1.3.6-6 is up to date -- reinstalling
    warning: xf86-video-vmware-13.0.2-2 is up to date -- reinstalling
    warning: xf86-video-voodoo-1.2.5-5 is up to date -- reinstalling
    warning: xorg-bdftopcf-1.0.5-1 is up to date -- reinstalling
    warning: xorg-docs-1.7-2 is up to date -- reinstalling
    warning: xorg-font-util-1.3.0-2 is up to date -- reinstalling
    warning: xorg-fonts-100dpi-1.0.3-2 is up to date -- reinstalling
    warning: xorg-fonts-75dpi-1.0.3-2 is up to date -- reinstalling
    warning: xorg-fonts-encodings-1.0.4-4 is up to date -- reinstalling
    warning: xorg-iceauth-1.0.6-1 is up to date -- reinstalling
    warning: xorg-luit-1.1.1-2 is up to date -- reinstalling
    warning: xorg-mkfontdir-1.0.7-2 is up to date -- reinstalling
    warning: xorg-mkfontscale-1.1.1-1 is up to date -- reinstalling
    warning: xorg-server-1.16.3-2 is up to date -- reinstalling
    warning: xorg-sessreg-1.0.8-2 is up to date -- reinstalling
    warning: xorg-setxkbmap-1.3.0-2 is up to date -- reinstalling
    warning: xorg-smproxy-1.0.5-2 is up to date -- reinstalling
    warning: xorg-x11perf-1.5.4-2 is up to date -- reinstalling
    warning: xorg-xauth-1.0.9-1 is up to date -- reinstalling
    warning: xorg-xbacklight-1.2.1-1 is up to date -- reinstalling
    warning: xorg-xcmsdb-1.0.4-2 is up to date -- reinstalling
    warning: xorg-xcursorgen-1.0.6-1 is up to date -- reinstalling
    warning: xorg-xdpyinfo-1.3.1-1 is up to date -- reinstalling
    warning: xorg-xdriinfo-1.0.4-4 is up to date -- reinstalling
    warning: xorg-xev-1.2.1-2 is up to date -- reinstalling
    warning: xorg-xgamma-1.0.5-2 is up to date -- reinstalling
    warning: xorg-xhost-1.0.6-1 is up to date -- reinstalling
    warning: xorg-xinput-1.6.1-1 is up to date -- reinstalling
    warning: xorg-xkbcomp-1.3.0-1 is up to date -- reinstalling
    warning: xorg-xkbevd-1.1.3-2 is up to date -- reinstalling
    warning: xorg-xkbutils-1.0.4-2 is up to date -- reinstalling
    warning: xorg-xkill-1.0.4-1 is up to date -- reinstalling
    warning: xorg-xlsatoms-1.1.1-2 is up to date -- reinstalling
    warning: xorg-xlsclients-1.1.3-1 is up to date -- reinstalling
    warning: xorg-xmodmap-1.0.8-1 is up to date -- reinstalling
    warning: xorg-xpr-1.0.4-2 is up to date -- reinstalling
    warning: xorg-xprop-1.2.2-1 is up to date -- reinstalling
    warning: xorg-xrandr-1.4.3-1 is up to date -- reinstalling
    warning: xorg-xrdb-1.1.0-1 is up to date -- reinstalling
    warning: xorg-xrefresh-1.0.5-1 is up to date -- reinstalling
    warning: xorg-xset-1.2.3-1 is up to date -- reinstalling
    warning: xorg-xsetroot-1.1.1-2 is up to date -- reinstalling
    warning: xorg-xvinfo-1.1.2-2 is up to date -- reinstalling
    warning: xorg-xwd-1.0.6-1 is up to date -- reinstalling
    warning: xorg-xwininfo-1.1.3-1 is up to date -- reinstalling
    warning: xorg-xwud-1.0.4-2 is up to date -- reinstalling
    resolving dependencies...
    looking for conflicting packages...
    Packages (79) xf86-input-acecad-1.5.0-3 xf86-input-aiptek-1.4.1-3 xf86-input-evdev-2.7.3-1 xf86-input-joystick-1.6.1-1 xf86-input-keyboard-1.6.2-1
    xf86-input-mouse-1.8.1-1 xf86-input-synaptics-1.6.2-1 xf86-input-vmmouse-12.9.0-1 xf86-input-void-1.4.0-3 xf86-video-apm-1.2.5-1
    xf86-video-ark-0.7.5-5 xf86-video-ast-0.97.0-5 xf86-video-ati-1:7.5.0-1 xf86-video-cirrus-1.5.2-4 xf86-video-dummy-0.3.7-3 xf86-video-fbdev-0.4.3-1
    xf86-video-glint-1.2.8-5 xf86-video-i128-1.3.6-5 xf86-video-intel-2.20.2-2 xf86-video-mach64-6.9.4-4 xf86-video-mga-1.6.3-3
    xf86-video-modesetting-0.9.0-2 xf86-video-neomagic-1.2.8-3 xf86-video-nouveau-1.0.11-2 xf86-video-nv-2.1.20-5 xf86-video-openchrome-0.3.3-4
    xf86-video-r128-6.9.2-3 xf86-video-savage-2.3.7-3 xf86-video-siliconmotion-1.7.7-5 xf86-video-sis-0.10.7-6 xf86-video-tdfx-1.4.5-5
    xf86-video-trident-1.3.6-6 xf86-video-v4l-0.2.0-10 xf86-video-vesa-2.3.2-1 xf86-video-vmware-13.0.2-2 xf86-video-voodoo-1.2.5-5
    xorg-bdftopcf-1.0.5-1 xorg-docs-1.7-2 xorg-font-util-1.3.0-2 xorg-fonts-100dpi-1.0.3-2 xorg-fonts-75dpi-1.0.3-2 xorg-fonts-encodings-1.0.4-4
    xorg-iceauth-1.0.6-1 xorg-luit-1.1.1-2 xorg-mkfontdir-1.0.7-2 xorg-mkfontscale-1.1.1-1 xorg-server-1.16.3-2 xorg-sessreg-1.0.8-2
    xorg-setxkbmap-1.3.0-2 xorg-smproxy-1.0.5-2 xorg-x11perf-1.5.4-2 xorg-xauth-1.0.9-1 xorg-xbacklight-1.2.1-1 xorg-xcmsdb-1.0.4-2
    xorg-xcursorgen-1.0.6-1 xorg-xdpyinfo-1.3.1-1 xorg-xdriinfo-1.0.4-4 xorg-xev-1.2.1-2 xorg-xgamma-1.0.5-2 xorg-xhost-1.0.6-1 xorg-xinput-1.6.1-1
    xorg-xkbcomp-1.3.0-1 xorg-xkbevd-1.1.3-2 xorg-xkbutils-1.0.4-2 xorg-xkill-1.0.4-1 xorg-xlsatoms-1.1.1-2 xorg-xlsclients-1.1.3-1
    xorg-xmodmap-1.0.8-1 xorg-xpr-1.0.4-2 xorg-xprop-1.2.2-1 xorg-xrandr-1.4.3-1 xorg-xrdb-1.1.0-1 xorg-xrefresh-1.0.5-1 xorg-xset-1.2.3-1
    xorg-xsetroot-1.1.1-2 xorg-xvinfo-1.1.2-2 xorg-xwd-1.0.6-1 xorg-xwininfo-1.1.3-1 xorg-xwud-1.0.4-2
    Total Installed Size: 36.11 MiB
    Net Upgrade Size: -0.52 MiB
    :: Proceed with installation? [Y/n] Y
    (79/79) checking keys in keyring [############################################################] 100%
    (79/79) checking package integrity [############################################################] 100%
    (79/79) loading package files [############################################################] 100%
    (79/79) checking for file conflicts [############################################################] 100%
    (79/79) checking available disk space [############################################################] 100%
    ( 1/79) installing xf86-input-acecad [############################################################] 100%
    ( 2/79) installing xf86-input-aiptek [############################################################] 100%
    ( 3/79) downgrading xf86-input-evdev [############################################################] 100%
    ( 4/79) downgrading xf86-input-joystick [############################################################] 100%
    ( 5/79) downgrading xf86-input-keyboard [############################################################] 100%
    ( 6/79) downgrading xf86-input-mouse [############################################################] 100%
    ( 7/79) downgrading xf86-input-synaptics [############################################################] 100%
    ( 8/79) downgrading xf86-input-vmmouse [############################################################] 100%
    ( 9/79) downgrading xf86-input-void [############################################################] 100%
    (10/79) installing xf86-video-apm [############################################################] 100%
    (11/79) downgrading xf86-video-fbdev [############################################################] 100%
    (12/79) downgrading xf86-video-intel [############################################################] 100%
    (13/79) downgrading xf86-video-v4l [############################################################] 100%
    (14/79) downgrading xf86-video-vesa [############################################################] 100%
    (15/79) reinstalling xf86-video-ark [############################################################] 100%
    (16/79) reinstalling xf86-video-ast [############################################################] 100%
    (17/79) reinstalling xf86-video-ati [############################################################] 100%
    (18/79) reinstalling xf86-video-cirrus [############################################################] 100%
    (19/79) reinstalling xf86-video-dummy [############################################################] 100%
    (20/79) reinstalling xf86-video-glint [############################################################] 100%
    (21/79) reinstalling xf86-video-i128 [############################################################] 100%
    (22/79) reinstalling xf86-video-mach64 [############################################################] 100%
    (23/79) reinstalling xf86-video-mga [############################################################] 100%
    (24/79) reinstalling xf86-video-modesetting [############################################################] 100%
    (25/79) reinstalling xf86-video-neomagic [############################################################] 100%
    (26/79) reinstalling xf86-video-nouveau [############################################################] 100%
    (27/79) reinstalling xf86-video-nv [############################################################] 100%
    (28/79) reinstalling xf86-video-openchrome [############################################################] 100%
    (29/79) reinstalling xf86-video-r128 [############################################################] 100%
    (30/79) reinstalling xf86-video-savage [############################################################] 100%
    (31/79) reinstalling xf86-video-siliconmotion [############################################################] 100%
    (32/79) reinstalling xf86-video-sis [############################################################] 100%
    (33/79) reinstalling xf86-video-tdfx [############################################################] 100%
    (34/79) reinstalling xf86-video-trident [############################################################] 100%
    (35/79) reinstalling xf86-video-vmware [############################################################] 100%
    (36/79) reinstalling xf86-video-voodoo [############################################################] 100%
    (37/79) reinstalling xorg-bdftopcf [############################################################] 100%
    (38/79) reinstalling xorg-docs [############################################################] 100%
    (39/79) reinstalling xorg-font-util [############################################################] 100%
    (40/79) reinstalling xorg-fonts-encodings [############################################################] 100%
    (41/79) reinstalling xorg-mkfontscale [############################################################] 100%
    (42/79) reinstalling xorg-mkfontdir [############################################################] 100%
    (43/79) reinstalling xorg-fonts-100dpi [############################################################] 100%
    Updating font cache... done.
    (44/79) reinstalling xorg-fonts-75dpi [############################################################] 100%
    Updating font cache... done.
    (45/79) reinstalling xorg-iceauth [############################################################] 100%
    (46/79) reinstalling xorg-luit [############################################################] 100%
    (47/79) reinstalling xorg-setxkbmap [############################################################] 100%
    (48/79) reinstalling xorg-xkbcomp [############################################################] 100%
    (49/79) reinstalling xorg-server [############################################################] 100%
    (50/79) reinstalling xorg-sessreg [############################################################] 100%
    (51/79) reinstalling xorg-smproxy [############################################################] 100%
    (52/79) reinstalling xorg-x11perf [############################################################] 100%
    (53/79) reinstalling xorg-xauth [############################################################] 100%
    (54/79) reinstalling xorg-xbacklight [############################################################] 100%
    (55/79) reinstalling xorg-xcmsdb [############################################################] 100%
    (56/79) reinstalling xorg-xcursorgen [############################################################] 100%
    (57/79) reinstalling xorg-xdpyinfo [############################################################] 100%
    (58/79) reinstalling xorg-xdriinfo [############################################################] 100%
    (59/79) reinstalling xorg-xev [############################################################] 100%
    (60/79) reinstalling xorg-xgamma [############################################################] 100%
    (61/79) reinstalling xorg-xhost [############################################################] 100%
    (62/79) reinstalling xorg-xrandr [############################################################] 100%
    (63/79) reinstalling xorg-xinput [############################################################] 100%
    (64/79) reinstalling xorg-xkbevd [############################################################] 100%
    (65/79) reinstalling xorg-xkbutils [############################################################] 100%
    (66/79) reinstalling xorg-xkill [############################################################] 100%
    (67/79) reinstalling xorg-xlsatoms [############################################################] 100%
    (68/79) reinstalling xorg-xlsclients [############################################################] 100%
    (69/79) reinstalling xorg-xmodmap [############################################################] 100%
    (70/79) reinstalling xorg-xpr [############################################################] 100%
    (71/79) reinstalling xorg-xprop [############################################################] 100%
    (72/79) reinstalling xorg-xrdb [############################################################] 100%
    (73/79) reinstalling xorg-xrefresh [############################################################] 100%
    (74/79) reinstalling xorg-xset [############################################################] 100%
    (75/79) reinstalling xorg-xsetroot [############################################################] 100%
    (76/79) reinstalling xorg-xvinfo [############################################################] 100%
    (77/79) reinstalling xorg-xwd [############################################################] 100%
    (78/79) reinstalling xorg-xwininfo [############################################################] 100%
    (79/79) reinstalling xorg-xwud [############################################################] 100%
    - Then I use yaourt (for convenience) to install catalyst-total-hd234k, same happens with catalyst packages when I use catalyst-hd234k repository
    $ yaourt -S catalyst-total-hd234k
    ==> Downloading catalyst-total-hd234k PKGBUILD from AUR...
    x .SRCINFO
    x catalyst-total-hd234k.install
    x fglrx_gpl_symbol.patch
    x cold-fglrx-3.14-current_euid.patch
    x arch_3.13_kernel_acpi_node.patch
    x lano1106_kcl_agp_13_4.patch
    x lano1106_fglrx_intel_iommu.patch
    x foutrelis_3.10_fix_for_legacy.patch
    x gentoo_linux-3.10-proc.diff
    x arch-fglrx-3.8.patch
    x arch-fglrx-3.7.patch
    x 3.5-do_mmap.patch
    x catalyst-hook.service
    x makefile_compat.patch
    x ati_make.sh
    x hook-fglrx
    x arch-fglrx-authatieventsd_new.patch
    x catalyst.conf
    x atieventsd.service
    x atieventsd.sh
    x catalyst.sh
    x lib32-catalyst.sh
    x catalyst_build_module
    x PKGBUILD
    Comment by Vi0L0 (2014-10-09 18:40)
    let me paste form the grill:
    I'm pretty sure that you didn't update catalyst-total-hd234k to version 13.1-28, because there I fixed conflict with ati-dri.
    Comment by doblerone (2014-12-17 19:15)
    During the last update, apparently there are some conflicts between catalyst-libgl and catalyst-total-hd234k. The suggestion is to remove catalyst-total-hd234k.
    Comment by Vi0L0 (2014-12-18 08:14)
    You are probably using libva-xvba-drivers which from yesterday depend on catalyst-libgl, i will add it to provides array after getting back home
    Comment by Vi0L0 (2014-12-18 21:50)
    13.1-29:
    - added catalyst-libgl, opencl-catalyst, lib32-catalyst-libgl and lib32-opencl-catalyst into provides array to satisfy libva-xvba-driver (and maybe other that will come in the future) deps;
    - added linux 3.18 support (i cannot test it actually, i can see it compiles fine though)
    Comment by K3pler (2015-01-05 12:43)
    Planning to replace my ultra outdated x1950pro for a less outdated hd3870 lol.
    And using this driver i probably need to downgrade xorg-server from 1.16 to 1.12 from the aur, right???
    Thanks for your work VioLO
    catalyst-total-hd234k 13.1-29 (mar jun 12 10:59:12 CST 2012)
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> WARNING: x86_64 system detected
    ==> WARNING: [multilib] repository must be uncommented in /etc/pacman.conf to add lib32-catalyst-utils into the package
    ==> WARNING: OK, lib32-catalyst-utils will be added to the package
    ==> catalyst-total-hd234k dependencies:
    - linux>=3.0 (already installed)
    - linux<3.19 (already installed)
    - linux-headers (already installed)
    - xorg-server>=1.7.0 (already installed)
    - netkit-bsd-finger (already installed)
    - libxrandr (already installed)
    - libsm (already installed)
    - fontconfig (already installed)
    - libxcursor (already installed)
    - libxi (already installed)
    - gcc-libs (already installed)
    - gcc>4.0.0 (already installed)
    - make (already installed)
    - patch (already installed)
    - libxinerama (already installed)
    - mesa>=10.1.0-4 (already installed)
    - lib32-libxext (already installed)
    - lib32-libdrm (already installed)
    - lib32-libxinerama (already installed)
    - lib32-mesa>=10.1.0-4 (already installed)
    - xorg-server<1.13.0 (package found)
    ==> Edit catalyst-total-hd234k.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------------------------
    ==> n
    ==> Continue building catalyst-total-hd234k ? [Y/n]
    ==> -----------------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for catalyst-total-hd234k:
    warning: downgrading package xorg-server (1.16.3-2 => 1.12.4-3)
    resolving dependencies...
    looking for conflicting packages...
    :: xorg-server and xf86-video-ark are in conflict. Remove xf86-video-ark? [y/N] Y
    :: xorg-server and xf86-video-ast are in conflict. Remove xf86-video-ast? [y/N] y
    :: xorg-server and xf86-video-ati are in conflict. Remove xf86-video-ati? [y/N] y
    :: xorg-server and xf86-video-cirrus are in conflict. Remove xf86-video-cirrus? [y/N] y
    :: xorg-server and xf86-video-dummy are in conflict. Remove xf86-video-dummy? [y/N] y
    :: xorg-server and xf86-video-glint are in conflict. Remove xf86-video-glint? [y/N] y
    :: xorg-server and xf86-video-i128 are in conflict. Remove xf86-video-i128? [y/N] y
    :: xorg-server and xf86-video-mach64 are in conflict. Remove xf86-video-mach64? [y/N] y
    :: xorg-server and xf86-video-mga are in conflict. Remove xf86-video-mga? [y/N] y
    :: xorg-server and xf86-video-modesetting are in conflict. Remove xf86-video-modesetting? [y/N] y
    :: xorg-server and xf86-video-neomagic are in conflict. Remove xf86-video-neomagic? [y/N] y
    :: xorg-server and xf86-video-nouveau are in conflict. Remove xf86-video-nouveau? [y/N] y
    :: xorg-server and xf86-video-nv are in conflict. Remove xf86-video-nv? [y/N] y
    :: xorg-server and xf86-video-openchrome are in conflict. Remove xf86-video-openchrome? [y/N] y
    :: xorg-server and xf86-video-r128 are in conflict. Remove xf86-video-r128? [y/N] y
    :: xorg-server and xf86-video-savage are in conflict. Remove xf86-video-savage? [y/N] y
    :: xorg-server and xf86-video-siliconmotion are in conflict. Remove xf86-video-siliconmotion? [y/N] y
    :: xorg-server and xf86-video-sis are in conflict. Remove xf86-video-sis? [y/N] y
    :: xorg-server and xf86-video-tdfx are in conflict. Remove xf86-video-tdfx? [y/N] y
    :: xorg-server and xf86-video-trident are in conflict. Remove xf86-video-trident? [y/N] y
    :: xorg-server and xf86-video-vmware are in conflict. Remove xf86-video-vmware? [y/N] y
    :: xorg-server and xf86-video-voodoo are in conflict. Remove xf86-video-voodoo? [y/N] y
    Packages (23) xf86-video-ark-0.7.5-5 [removal] xf86-video-ast-0.97.0-5 [removal] xf86-video-ati-1:7.5.0-1 [removal] xf86-video-cirrus-1.5.2-4 [removal]
    xf86-video-dummy-0.3.7-3 [removal] xf86-video-glint-1.2.8-5 [removal] xf86-video-i128-1.3.6-5 [removal] xf86-video-mach64-6.9.4-4 [removal]
    xf86-video-mga-1.6.3-3 [removal] xf86-video-modesetting-0.9.0-2 [removal] xf86-video-neomagic-1.2.8-3 [removal] xf86-video-nouveau-1.0.11-2 [removal]
    xf86-video-nv-2.1.20-5 [removal] xf86-video-openchrome-0.3.3-4 [removal] xf86-video-r128-6.9.2-3 [removal] xf86-video-savage-2.3.7-3 [removal]
    xf86-video-siliconmotion-1.7.7-5 [removal] xf86-video-sis-0.10.7-6 [removal] xf86-video-tdfx-1.4.5-5 [removal] xf86-video-trident-1.3.6-6 [removal]
    xf86-video-vmware-13.0.2-2 [removal] xf86-video-voodoo-1.2.5-5 [removal] xorg-server-1.12.4-3
    Total Installed Size: 3.73 MiB
    Net Upgrade Size: -3.31 MiB
    :: Proceed with installation? [Y/n] Y
    (1/1) checking keys in keyring [############################################################] 100%
    (1/1) checking package integrity [############################################################] 100%
    (1/1) loading package files [############################################################] 100%
    (1/1) checking for file conflicts [############################################################] 100%
    (23/23) checking available disk space [############################################################] 100%
    ( 1/22) removing xf86-video-voodoo [############################################################] 100%
    ( 2/22) removing xf86-video-vmware [############################################################] 100%
    ( 3/22) removing xf86-video-trident [############################################################] 100%
    ( 4/22) removing xf86-video-tdfx [############################################################] 100%
    ( 5/22) removing xf86-video-sis [############################################################] 100%
    ( 6/22) removing xf86-video-siliconmotion [############################################################] 100%
    ( 7/22) removing xf86-video-savage [############################################################] 100%
    ( 8/22) removing xf86-video-r128 [############################################################] 100%
    ( 9/22) removing xf86-video-openchrome [############################################################] 100%
    (10/22) removing xf86-video-nv [############################################################] 100%
    (11/22) removing xf86-video-nouveau [############################################################] 100%
    (12/22) removing xf86-video-neomagic [############################################################] 100%
    (13/22) removing xf86-video-modesetting [############################################################] 100%
    (14/22) removing xf86-video-mga [############################################################] 100%
    (15/22) removing xf86-video-mach64 [############################################################] 100%
    (16/22) removing xf86-video-i128 [############################################################] 100%
    (17/22) removing xf86-video-glint [############################################################] 100%
    (18/22) removing xf86-video-dummy [############################################################] 100%
    (19/22) removing xf86-video-cirrus [############################################################] 100%
    (20/22) removing xf86-video-ati [############################################################] 100%
    (21/22) removing xf86-video-ast [############################################################] 100%
    (22/22) removing xf86-video-ark [############################################################] 100%
    (1/1) downgrading xorg-server [############################################################] 100%
    ==> WARNING: x86_64 system detected
    ==> WARNING: [multilib] repository must be uncommented in /etc/pacman.conf to add lib32-catalyst-utils into the package
    ==> WARNING: OK, lib32-catalyst-utils will be added to the package
    ==> Making package: catalyst-total-hd234k 13.1-29 (mié ene 7 22:22:26 CST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Downloading amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.zip...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    100 101M 100 101M 0 0 103k 0 0:16:44 0:16:44 --:--:-- 105k
    -> Found catalyst_build_module
    -> Found lib32-catalyst.sh
    -> Found catalyst.sh
    -> Found atieventsd.sh
    -> Found atieventsd.service
    -> Found catalyst.conf
    -> Found arch-fglrx-authatieventsd_new.patch
    -> Found hook-fglrx
    -> Found ati_make.sh
    -> Found makefile_compat.patch
    -> Found catalyst-hook.service
    -> Found 3.5-do_mmap.patch
    -> Found arch-fglrx-3.7.patch
    -> Found arch-fglrx-3.8.patch
    -> Found gentoo_linux-3.10-proc.diff
    -> Found foutrelis_3.10_fix_for_legacy.patch
    -> Found lano1106_fglrx_intel_iommu.patch
    -> Found lano1106_kcl_agp_13_4.patch
    -> Found arch_3.13_kernel_acpi_node.patch
    -> Found cold-fglrx-3.14-current_euid.patch
    -> Found fglrx_gpl_symbol.patch
    ==> Validating source files with md5sums...
    amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.zip ... Passed
    catalyst_build_module ... Passed
    lib32-catalyst.sh ... Passed
    catalyst.sh ... Passed
    atieventsd.sh ... Passed
    atieventsd.service ... Passed
    catalyst.conf ... Passed
    arch-fglrx-authatieventsd_new.patch ... Passed
    hook-fglrx ... Passed
    ati_make.sh ... Passed
    makefile_compat.patch ... Passed
    catalyst-hook.service ... Passed
    3.5-do_mmap.patch ... Passed
    arch-fglrx-3.7.patch ... Passed
    arch-fglrx-3.8.patch ... Passed
    gentoo_linux-3.10-proc.diff ... Passed
    foutrelis_3.10_fix_for_legacy.patch ... Passed
    lano1106_fglrx_intel_iommu.patch ... Passed
    lano1106_kcl_agp_13_4.patch ... Passed
    arch_3.13_kernel_acpi_node.patch ... Passed
    cold-fglrx-3.14-current_euid.patch ... Passed
    fglrx_gpl_symbol.patch ... Passed
    ==> Extracting sources...
    -> Extracting amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.zip with bsdtar
    ==> Starting build()...
    Creating directory archive_files
    Verifying archive integrity... All good.
    Uncompressing AMD Catalyst(TM) Proprietary Driver-8.97.100.7....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
    ==> Entering fakeroot environment...
    ==> WARNING: x86_64 system detected
    ==> WARNING: [multilib] repository must be uncommented in /etc/pacman.conf to add lib32-catalyst-utils into the package
    ==> WARNING: OK, lib32-catalyst-utils will be added to the package
    ==> Starting package()...
    patching file etc/ati/authatieventsd.sh
    patching file common/lib/modules/fglrx/build_mod/2.6.x/Makefile
    Hunk #1 succeeded at 68 (offset 2 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 2136 (offset 30 lines).
    Hunk #2 succeeded at 2153 (offset 30 lines).
    Hunk #3 succeeded at 2170 (offset 30 lines).
    Hunk #4 succeeded at 2183 (offset 30 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 3710 (offset -182 lines).
    Hunk #2 succeeded at 3744 (offset -182 lines).
    Hunk #3 succeeded at 3767 (offset -182 lines).
    Hunk #4 succeeded at 3780 (offset -182 lines).
    Hunk #5 succeeded at 3826 (offset -182 lines).
    Hunk #6 succeeded at 3865 (offset -182 lines).
    Hunk #7 succeeded at 3883 (offset -182 lines).
    Hunk #8 succeeded at 3908 (offset -182 lines).
    patching file common/lib/modules/fglrx/build_mod/kcl_acpi.c
    patching file common/lib/modules/fglrx/build_mod/drmP.h
    patching file common/lib/modules/fglrx/build_mod/drm_proc.h
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 571 (offset -12 lines).
    Hunk #2 succeeded at 861 (offset -12 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    patch unexpectedly ends in middle of line
    Hunk #1 succeeded at 34 with fuzz 1.
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 97 with fuzz 2 (offset 4 lines).
    patching file common/lib/modules/fglrx/build_mod/kcl_agp.c
    patching file common/lib/modules/fglrx/build_mod/kcl_acpi.c
    Hunk #1 succeeded at 775 (offset -3 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 1756 with fuzz 2 (offset -5 lines).
    ==> Tidying install...
    -> Purging unwanted files...
    -> Compressing man and info pages...
    ==> Creating package "catalyst-total-hd234k"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: catalyst-total-hd234k 13.1-29 (mié ene 7 22:44:01 CST 2015)
    ==> Continue installing catalyst-total-hd234k ? [Y/n]
    ==> [v]iew package contents [c]heck package with namcap
    ==> ---------------------------------------------------
    ==> Y
    [sudo] password for mario:
    [sudo] password for mario:
    loading packages...
    resolving dependencies...
    looking for conflicting packages...
    :: catalyst-total-hd234k and mesa-libgl are in conflict (libgl). Remove mesa-libgl? [y/N] Y
    :: catalyst-total-hd234k and libcl are in conflict. Remove libcl? [y/N] Y
    :: catalyst-total-hd234k and lib32-mesa-libgl are in conflict (lib32-libgl). Remove lib32-mesa-libgl? [y/N] Y
    :: catalyst-total-hd234k and lib32-libcl are in conflict. Remove lib32-libcl? [y/N] Y
    Packages (5) lib32-libcl-1.1-1 [removal] lib32-mesa-libgl-10.4.1-1 [removal] libcl-1.1-4 [removal] mesa-libgl-10.4.1-1 [removal] catalyst-total-hd234k-13.1-29
    Total Installed Size: 222.80 MiB
    Net Upgrade Size: 222.68 MiB
    :: Proceed with installation? [Y/n] Y
    (1/1) checking keys in keyring [############################################################] 100%
    (1/1) checking package integrity [############################################################] 100%
    (1/1) loading package files [############################################################] 100%
    (1/1) checking for file conflicts [############################################################] 100%
    (5/5) checking available disk space [############################################################] 100%
    (1/4) removing lib32-libcl [############################################################] 100%
    (2/4) removing lib32-mesa-libgl [############################################################] 100%
    (3/4) removing libcl [############################################################] 100%
    (4/4) removing mesa-libgl [############################################################] 100%
    (1/1) installing catalyst-total-hd234k [############################################################] 100%
    Building fglrx module for 3.17.6-1-ARCH kernel ...
    Ok.
    Add nomodeset to your kernel line in /boot/grub/menu.lst , ie.:
    kernel /boot/vmlinuz-linux root=/dev/sda1 ro nomodeset
    You can use the tool 'aticonfig' to generate an xorg.conf file.
    --------------------- ^^^^^^^^^ --------------------------------
    fglrx was added into /etc/modules-load.d/catalyst.conf
    atieventsd (needs acpid pkg) on systemd:
    systemctl enable atieventsd
    systemctl start atieventsd
    For more info and troubleshooting visit:
    http://wiki.archlinux.org/index.php/ATI_Catalyst
    ATTENTION!
    To enable 'automatic re-compilation while system shutdown/reboot'
    testing feature run these commands as root:
    systemctl enable catalyst-hook
    systemctl start catalyst-hook
    More info here:
    https://bbs.archlinux.org/viewtopic.php?pid=1255575#p1255575
    Optional dependencies for catalyst-total-hd234k
    qt4: to run ATi Catalyst Control Center (amdcccle) [installed]
    libxxf86vm: to run ATi Catalyst Control Center (amdcccle) [installed]
    opencl-headers: headers necessary for OpenCL development
    acpid: acpi event support / atieventsd [installed]
    linux-lts-headers: to build the fglrx module for the linux-lts kernel
    ==> Checking vote status for catalyst-total-hd234k
    You have already voted for catalyst-total-hd234k
    ==> Packages no longer required by any installed package:
    libepoxy
    - Then, I re-enable catalyst-hook (and optionally atieventsd) to be able to build modules at end and start of pc
    $ sudo systemctl disable catalyst-hook
    Removed symlink /etc/systemd/system/multi-user.target.wants/catalyst-hook.service.
    $ sudo systemctl disable atieventsd
    Removed symlink /etc/systemd/system/multi-user.target.wants/atieventsd.service.
    $ sudo systemctl enable catalyst-hook
    Created symlink from /etc/systemd/system/multi-user.target.wants/catalyst-hook.service to /usr/lib/systemd/system/catalyst-hook.service.
    $ sudo systemctl enable atieventsd
    Created symlink from /etc/systemd/system/multi-user.target.wants/atieventsd.service to /usr/lib/systemd/system/atieventsd.service.
    - Afterwards, I blacklist the radeon module for it not to interfere with fglrx:
    Added "blacklist radeon" on the nano prompt below
    $ sudo nano /etc/modprobe.d/modprobe.conf
    - Then I generate the xorg.conf file, and get the output below with '# aticonfig --initial'
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "Accel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "ColorTiling" # [<bool>]
    #Option "ColorTiling2D" # [<bool>]
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "AccelMethod" # <str>
    #Option "EXAVSync" # [<bool>]
    #Option "EXAPixmaps" # [<bool>]
    #Option "ZaphodHeads" # <str>
    #Option "EnablePageFlip" # [<bool>]
    #Option "SwapbuffersWait" # [<bool>]
    Identifier "Card0"
    Driver "radeon"
    BusID "PCI:1:5:0"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:1:5:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    - Finally I rebuild grub boot to do nomodeset in the kernel
    $ sudo nano /etc/default/grub && sudo grub-mkconfig -o /boot/grub/grub.cfg
    Generating grub configuration file ...
    Found background: /home/mario/Pictures/Wallpapers/974-arch-linux-1366x768-computer-wallpaper.png
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    Found fallback initramfs image: /boot/initramfs-linux-fallback.img
    done
    Then I reboot, only to get to a black screen after the initial dmesg outputs around 10 seconds on boot.
    $ journalctl -xe
    -- Logs begin at lun 2014-12-15 04:28:08 CST, end at mié 2015-01-07 23:07:22 CST. --
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0: [mem 0x100000000-0x13fffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: On node 0 totalpages: 981392
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA zone: 64 pages used for memmap
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA zone: 21 pages reserved
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA zone: 3998 pages, LIFO batch:0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA32 zone: 11176 pages used for memmap
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA32 zone: 715250 pages, LIFO batch:31
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Normal zone: 4096 pages used for memmap
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Normal zone: 262144 pages, LIFO batch:31
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: PM-Timer IO Port: 0x408
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Local APIC address 0xfee00000
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] disabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: IRQ0 used by override.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: IRQ9 used by override.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Using ACPI (MADT) for SMP configuration information
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: HPET id: 0x43538301 base: 0xfed00000
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: smpboot: Allowing 4 CPUs, 3 hotplug CPUs
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xaf9f1000-0xafacefff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafacf000-0xafbcefff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafbcf000-0xafbfefff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafc00000-0xdfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfedfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: e820: [mem 0xafc00000-0xdfffffff] available for PCI devices
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Booting paravirtualized kernel on bare hardware
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s82752 r8192 d23744 u524288
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pcpu-alloc: s82752 r8192 d23744 u524288 alloc=1*2097152
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pcpu-alloc: [0] 0 1 2 3
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 966035
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Policy zone: Normal
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8290542b-0457-4fdd-b087-6096554bdcad rw quiet nomodeset
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Checking aperture...
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: No AGP bridge found
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Node 0: aperture [bus addr 0xa4000000-0xa5ffffff] (32MB)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Aperture pointing to e820 RAM. Ignoring.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Your BIOS doesn't leave a aperture memory hole
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Please enable the IOMMU option in the BIOS setup
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: This costs you 64MB of RAM
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Mapping aperture over RAM [mem 0xa4000000-0xa7ffffff] (65536KB)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xa4000000-0xa7ffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Memory: 3717040K/3925568K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 208528K reserved)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Preemptible hierarchical RCU implementation.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RCU dyntick-idle grace-period acceleration is enabled.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Dump stacks of tasks blocking RCU-preempt GP.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: NR_IRQS:8448 nr_irqs:456 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: spurious 8259A interrupt: IRQ7.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Console: colour dummy device 80x25
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: console [tty0] enabled
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: allocated 15728640 bytes of page_cgroup
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: hpet clockevent registered
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: tsc: Fast TSC calibration using PIT
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: tsc: Detected 2394.161 MHz processor
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.83 BogoMIPS (lpj=7980536)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pid_max: default: 32768 minimum: 301
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Core revision 20140724
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: All ACPI Tables successfully acquired
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Security Framework initialized
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Yama: becoming mindful.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys memory
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys devices
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys freezer
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys net_cls
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys blkio
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: mce: CPU supports 6 MCE banks
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: LVT offset 0 assigned for vector 0xf9
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: process: using AMD E400 aware idle routine
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ftrace: allocating 20687 entries in 81 pages
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: smpboot: CPU0: AMD V160 Processor (fam: 10, model: 06, stepping: 03)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Performance Events: AMD PMU driver.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... version: 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... bit width: 48
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... generic registers: 4
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... value mask: 0000ffffffffffff
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... max period: 00007fffffffffff
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... fixed-purpose events: 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... event mask: 000000000000000f
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: process: System has AMD C1E enabled
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: process: Switch to broadcast mode on CPU0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: x86: Booted up 1 node, 1 CPUs
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: smpboot: Total of 1 processors activated (4790.83 BogoMIPS)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: devtmpfs: initialized
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registering ACPI NVS region [mem 0xafacf000-0xafbcefff] (1048576 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pinctrl core: initialized pinctrl subsystem
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RTC time: 5:05:23, date: 01/08/15
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: NET: Registered protocol family 16
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: cpuidle: using governor ladder
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: cpuidle: using governor menu
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: io port [0, ffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: TOM: 00000000c0000000 aka 3072M
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [c0000000, cfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d0000000, d41fffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4200000, d43fffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4400000, dfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e0000000, e0ffffff] ==> none
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e1000000, febfffff] ==> [f0000000, febfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [fec00000, fffeffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [ffff0000, ffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: TOM2: 0000000140000000 aka 5120M
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: [bus 00-1f] on node 0 link 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [io 0x0000-0xffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xc0000000-0xdfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xf0000000-0xffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [mem 0x140000000-0xfcffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: bus type PCI registered
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PCI: Using configuration type 1 for base access
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Module Device)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Device)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Aggregator Device)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: No handler for Region [ECRM] (ffff88013b42ca68) [EmbeddedControl] (20140724/evregion-163)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: Region EmbeddedControl (ID=3) has no handler (20140724/exfldio-299)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/psparse-536)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: Method execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/uteval-103)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Interpreter enabled
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: (supports S0 S3 S4 S5)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Using IOAPIC for interrupt ro

    (EDIT: The outputs are incorrect. First post has them.)
    The output of Xorg last time I booted up with fglrx:
    $ cat /var/log/Xorg.0.log.old
    [ 18.657]
    X.Org X Server 1.16.3
    Release Date: 2014-12-20
    [ 18.657] X Protocol Version 11, Revision 0
    [ 18.657] Build Operating System: Linux 3.18.1-1-ARCH x86_64
    [ 18.657] Current Operating System: Linux HP425-Desktop-A-PC 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64
    [ 18.657] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8290542b-0457-4fdd-b087-6096554bdcad rw quiet
    [ 18.657] Build Date: 29 December 2014 01:09:58PM
    [ 18.657]
    [ 18.657] Current version of pixman: 0.32.6
    [ 18.657] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 18.657] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.657] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jan 6 17:29:00 2015
    [ 18.657] (==) Using config file: "/etc/X11/xorg.conf"
    [ 18.657] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 18.657] (==) ServerLayout "X.org Configured"
    [ 18.657] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 18.657] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 18.657] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 18.657] (**) |-->Input Device "Mouse0"
    [ 18.657] (**) |-->Input Device "Keyboard0"
    [ 18.657] (==) Automatically adding devices
    [ 18.657] (==) Automatically enabling devices
    [ 18.657] (==) Automatically adding GPU devices
    [ 18.657] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 18.657] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 18.657] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 18.657] (WW) Disabling Mouse0
    [ 18.657] (WW) Disabling Keyboard0
    [ 18.657] (II) Loader magic: 0x818d80
    [ 18.657] (II) Module ABI versions:
    [ 18.657] X.Org ANSI C Emulation: 0.4
    [ 18.657] X.Org Video Driver: 18.0
    [ 18.657] X.Org XInput driver : 21.0
    [ 18.657] X.Org Server Extension : 8.0
    [ 18.659] (EE) systemd-logind: failed to get session: PID 407 does not belong to any known session
    [ 18.659] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 18.660] (--) PCI:*(0:1:5:0) 1002:9712:103c:1475 rev 0, Mem @ 0xc0000000/268435456, 0xd4300000/65536, 0xd4200000/1048576, I/O @ 0x00005000/256
    [ 18.660] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 18.661] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 18.661] (II) LoadModule: "glx"
    [ 18.661] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 18.662] (II) Module glx: vendor="X.Org Foundation"
    [ 18.662] compiled for 1.16.3, module version = 1.0.0
    [ 18.662] ABI class: X.Org Server Extension, version 8.0
    [ 18.662] (==) AIGLX enabled
    [ 18.662] (II) LoadModule: "fglrx"
    [ 18.662] (WW) Warning, couldn't open module fglrx
    [ 18.662] (II) UnloadModule: "fglrx"
    [ 18.662] (II) Unloading fglrx
    [ 18.663] (EE) Failed to load module "fglrx" (module does not exist, 0)
    [ 18.663] (EE) No drivers available.
    [ 18.663] (EE)
    Fatal server error:
    [ 18.663] (EE) no screens found(EE)
    [ 18.663] (EE)
    Please consult the The X.Org Foundation support
    at [url]http://wiki.x.org[/url]
    for help.
    [ 18.663] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 18.663] (EE)
    The output itself of journalctl -xe
    $ journalctl -xe
    -- Logs begin at Mon 2014-12-15 04:28:08 CST, end at Tue 2015-01-06 17:16:16 CST. --
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 3 base 000100000000 mask FFFFC0000000 write-back
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 4 base 0000FFE00000 mask FFFFFFE00000 write-protect
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 5 base 0000FFF40000 mask FFFFFFFF0000 write-protect
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 6 disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 7 disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TOM2: 0000000140000000 aka 5120M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: last_pfn = 0xafc00 max_arch_pfn = 0x400000000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Scanning 1 areas for low memory corruption
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Using GB pages for direct mapping
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2b000, 0x01b2bfff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2c000, 0x01b2cfff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2d000, 0x01b2dfff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x13fe00000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x13fe00000-0x13fffffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x13c000000-0x13fdfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x13c000000-0x13fdfffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x100000000-0x13bffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x100000000-0x13bffffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x00100000-0xaf9f0fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x00100000-0x001fffff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x00200000-0x3fffffff] page 2M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x40000000-0x7fffffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x80000000-0xaf7fffff] page 2M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0xaf800000-0xaf9f0fff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0xafbff000-0xafbfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0xafbff000-0xafbfffff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2e000, 0x01b2efff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RAMDISK: [mem 0x379a0000-0x37cc7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Early table checksum verification disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: RSDP 0x00000000000F2A70 000014 (v00 HPQOEM)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: RSDT 0x00000000AFBFE038 00003C (v01 HPQOEM SLIC-MPC 00000003 01000013)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: FACP 0x00000000AFBFD000 000074 (v01 HPQOEM 307E 00000003 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: DSDT 0x00000000AFBDE000 01B85D (v01 HPQOEM SB700 00000001 INTL 20060912)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: FACS 0x00000000AFB8F000 000040
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: APIC 0x00000000AFBFC000 000084 (v01 HPQOEM 307E 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: MCFG 0x00000000AFBFB000 00003C (v01 HPQOEM 307E 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: SLIC 0x00000000AFBFA000 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: HPET 0x00000000AFBDB000 000038 (v01 HPQOEM 307E 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: SSDT 0x00000000AFBDA000 0001B7 (v01 AMD POWERNOW 00000001 AMD 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Local APIC address 0xfee00000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Scanning NUMA topology in Northbridge 24
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: No NUMA configuration found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initmem setup node 0 [mem 0x00000000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NODE_DATA [mem 0x13fffa000-0x13fffdfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013ba00000-ffff88013f5fffff] on node 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Zone ranges:
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Normal [mem 0x100000000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Movable zone start for each node
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Early memory node ranges
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0x00001000-0x0009efff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0x00100000-0xaf9f0fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0xafbff000-0xafbfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0x100000000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: On node 0 totalpages: 981392
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA zone: 64 pages used for memmap
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA zone: 21 pages reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA zone: 3998 pages, LIFO batch:0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA32 zone: 11176 pages used for memmap
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA32 zone: 715250 pages, LIFO batch:31
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Normal zone: 4096 pages used for memmap
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Normal zone: 262144 pages, LIFO batch:31
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PM-Timer IO Port: 0x408
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Local APIC address 0xfee00000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] disabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: IRQ0 used by override.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: IRQ9 used by override.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Using ACPI (MADT) for SMP configuration information
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: HPET id: 0x43538301 base: 0xfed00000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: smpboot: Allowing 4 CPUs, 3 hotplug CPUs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xaf9f1000-0xafacefff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafacf000-0xafbcefff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafbcf000-0xafbfefff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafc00000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfedfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: [mem 0xafc00000-0xdfffffff] available for PCI devices
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Booting paravirtualized kernel on bare hardware
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s82752 r8192 d23744 u524288
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcpu-alloc: s82752 r8192 d23744 u524288 alloc=1*2097152
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcpu-alloc: [0] 0 1 2 3
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 966035
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Policy zone: Normal
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8290542b-0457-4fdd-b087-6096554bdcad rw quiet nomodeset
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Checking aperture...
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: No AGP bridge found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Node 0: aperture [bus addr 0x5728000000-0x5729ffffff] (32MB)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Aperture beyond 4GB. Ignoring.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Your BIOS doesn't leave a aperture memory hole
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Please enable the IOMMU option in the BIOS setup
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: This costs you 64MB of RAM
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Mapping aperture over RAM [mem 0xa4000000-0xa7ffffff] (65536KB)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xa4000000-0xa7ffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Memory: 3717040K/3925568K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 208528K reserved)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Preemptible hierarchical RCU implementation.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NR_IRQS:8448 nr_irqs:456 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: spurious 8259A interrupt: IRQ7.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Console: colour dummy device 80x25
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: console [tty0] enabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: allocated 15728640 bytes of page_cgroup
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet clockevent registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tsc: Fast TSC calibration using PIT
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tsc: Detected 2393.931 MHz processor
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.35 BogoMIPS (lpj=7979770)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pid_max: default: 32768 minimum: 301
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Core revision 20140724
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: All ACPI Tables successfully acquired
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Security Framework initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Yama: becoming mindful.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys memory
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys devices
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys freezer
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys net_cls
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys blkio
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: mce: CPU supports 6 MCE banks
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: LVT offset 0 assigned for vector 0xf9
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: process: using AMD E400 aware idle routine
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ftrace: allocating 20687 entries in 81 pages
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: smpboot: CPU0: AMD V160 Processor (fam: 10, model: 06, stepping: 03)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Performance Events: AMD PMU driver.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... version: 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... bit width: 48
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... generic registers: 4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... value mask: 0000ffffffffffff
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... max period: 00007fffffffffff
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... fixed-purpose events: 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... event mask: 000000000000000f
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: process: System has AMD C1E enabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: process: Switch to broadcast mode on CPU0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: x86: Booted up 1 node, 1 CPUs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: smpboot: Total of 1 processors activated (4789.35 BogoMIPS)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: devtmpfs: initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registering ACPI NVS region [mem 0xafacf000-0xafbcefff] (1048576 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pinctrl core: initialized pinctrl subsystem
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RTC time: 23:15:36, date: 01/06/15
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 16
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: cpuidle: using governor ladder
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: cpuidle: using governor menu
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: io port [0, ffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TOM: 00000000c0000000 aka 3072M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [c0000000, cfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d0000000, d41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4200000, d43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4400000, dfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e0000000, e0ffffff] ==> none
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e1000000, febfffff] ==> [f0000000, febfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [fec00000, fffeffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [ffff0000, ffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TOM2: 0000000140000000 aka 5120M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: [bus 00-1f] on node 0 link 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [io 0x0000-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [mem 0x140000000-0xfcffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: bus type PCI registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: Using configuration type 1 for base access
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Module Device)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Device)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: No handler for Region [ECRM] (ffff88013b42ca68) [EmbeddedControl] (20140724/evregion-163)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: Region EmbeddedControl (ID=3) has no handler (20140724/exfldio-299)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/psparse-536)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: Method execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/uteval-103)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Interpreter enabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [APPR] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN0] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN1] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN2] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN3] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN4] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: host bridge window expanded to [mem 0xf0000000-0xffffffff]; [mem 0xf0000000-0xfffdffff] ignored
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000cedff])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI host bridge to bus 0000:00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:00.0: [1022:9601] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: [103c:9602] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: [1022:9604] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: [1022:9608] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x10: [io 0x6018-0x601f]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x14: [io 0x6024-0x6027]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x18: [io 0x6010-0x6017]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x1c: [io 0x6020-0x6023]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x20: [io 0x6000-0x600f]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x24: [mem 0xd440b000-0xd440b3ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: set SATA to AHCI mode
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.0: reg 0x10: [mem 0xd440a000-0xd440afff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: reg 0x10: [mem 0xd4409000-0xd44090ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.0: reg 0x10: [mem 0xd4408000-0xd4408fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: reg 0x10: [mem 0xd4407000-0xd44070ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: reg 0x10: [mem 0xd4400000-0xd4403fff 64bit]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.5: reg 0x10: [mem 0xd4406000-0xd4406fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.0: reg 0x10: [mem 0xd4405000-0xd4405fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: reg 0x10: [mem 0xd4404000-0xd44040ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: [1002:9712] type 00 class 0x030000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x14: [io 0x5000-0x50ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x18: [mem 0xd4300000-0xd430ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x24: [mem 0xd4200000-0xd42fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.1: [1002:970f] type 00 class 0x040300
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.1: reg 0x10: [mem 0xd4310000-0xd4313fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.1: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xd4200000-0xd43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: [10ec:8136] type 00 class 0x020000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x18: [mem 0xd0010000-0xd0010fff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x20: [mem 0xd0000000-0xd000ffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [io 0x3000-0x4fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd3200000-0xd41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd10fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpiphp: Slot [1] registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: PCI bridge to [bus 03-05]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [io 0x2000-0x2fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd2200000-0xd31fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd1100000-0xd20fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:06:00.0: [14e4:4727] type 00 class 0x028000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:06:00.0: reg 0x10: [mem 0xd2100000-0xd2103fff 64bit]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:06:00.0: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: PCI bridge to [bus 06]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: bridge window [mem 0xd2100000-0xd21fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: PCI bridge to [bus 07] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x1000-0x1fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: on NUMA node 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Enabled 5 GPEs in block 00 to 1F
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI : EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: setting as boot device: PCI:0000:01:05.0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: loaded
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: bridge control possible 0000:01:05.0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: Using ACPI for IRQ routing
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: reserve RAM buffer [mem 0xaf9f1000-0xafffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: reserve RAM buffer [mem 0xafc00000-0xafffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: Initializing
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: domain hash size = 128
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: unlabeled traffic allowed by default
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Switched to clocksource hpet
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp: PnP ACPI init
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0400-0x04cf] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x04d0-0x04d1] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x04d6] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0680-0x06ff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x077a] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c00-0x0c01] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c14] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c50-0x0c52] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c6c] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c6f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0cd0-0x0cdb] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0220-0x0227] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0260-0x0273] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0800] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0804] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x087f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0cdc-0x0cdf] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0b00-0x0b0f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0b20-0x0b3f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0200-0x027f] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0x00000000-0x0009ffff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0x000ec000-0x000fffff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0x00100000-0xbfffffff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xfeb00000-0xfeb00fff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xffe00000-0xffffffff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp 00:04: Plug and Play ACPI device, IDs SYN0177 SYN0100 SYN0002 PNP0f13 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp: PnP ACPI: found 5 devices
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xd4200000-0xd43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0xd3200000-0xd321ffff pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [io 0x3000-0x4fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd3200000-0xd41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd10fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: PCI bridge to [bus 03-05]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [io 0x2000-0x2fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd2200000-0xd31fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd1100000-0xd20fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: PCI bridge to [bus 06]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: bridge window [mem 0xd2100000-0xd21fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: PCI bridge to [bus 07]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x1000-0x1fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 18 [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 19 [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:01: resource 1 [mem 0xd4200000-0xd43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x4fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:02: resource 1 [mem 0xd3200000-0xd41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd10fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:03: resource 1 [mem 0xd2200000-0xd31fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:03: resource 2 [mem 0xd1100000-0xd20fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:06: resource 1 [mem 0xd2100000-0xd21fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 4 [io 0x0000-0x0cf7]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 5 [io 0x0d00-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 7 [mem 0x000c0000-0x000c3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 8 [mem 0x000c4000-0x000c7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 9 [mem 0x000c8000-0x000cbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 10 [mem 0x000d0000-0x000d3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 11 [mem 0x000d4000-0x000d7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 12 [mem 0x000d8000-0x000dbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 13 [mem 0x000dc000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 14 [mem 0x000e0000-0x000e3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 15 [mem 0x000e4000-0x000e7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 16 [mem 0x000e8000-0x000ebfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 17 [mem 0x000ec000-0x000effff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 18 [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 19 [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP: reno registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: CLS mismatch (64 != 32), using 64 bytes
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: Video device with shadowed ROM
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Unpacking initramfs...
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing initrd memory: 3232K (ffff8800379a0000 - ffff880037cc8000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: Disabling AGP.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: aperture base @ a4000000 size 65536 KB
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: using GART IOMMU.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: microcode: CPU0: patch_level=0x010000c8
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: LVT offset 1 assigned for vector 0x400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: IBS: LVT offset 1 assigned
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: perf: AMD IBS detected (0x0000001f)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Scanning for low memory corruption every 60 seconds
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initialise system trusted keyring
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: zpool: loaded
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: zbud: loaded
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: VFS: Disk quotas dquot_6.5.2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: msgmni has been set to 7394
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Key type big_key registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: io scheduler noop registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: io scheduler deadline registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: io scheduler cfq registered (default)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcieport 0000:00:04.0: irq 24 for MSI/MSI-X
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcieport 0000:00:07.0: irq 25 for MSI/MSI-X
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcieport 0000:00:09.0: irq 26 for MSI/MSI-X
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: mode is 1366x768x32, linelength=5504, pages=0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: scrolling: redraw
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010780000, using 4160k, total 4160k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Console: switching to colour frame buffer device 170x48
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: fb0: VESA VGA frame buffer device
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: GHES: HEST is not enabled!
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet_acpi_add: no address or irqs in _CRS
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Linux agpgart interface v0.103
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: RTC can wake from S4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: alarms up to one day, 114 bytes nvram, hpet irqs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP: cubic registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 10
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 17
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Loading compiled-in X.509 certificates
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: registered taskstats version 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Magic number: 15:578:301
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tty tty30: hash matches
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: setting system clock to 2015-01-06 23:15:37 UTC (1420586137)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Hibernation image not present or could not be loaded.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Write protecting the kernel read-only data: 8192k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: random: systemd-tmpfile urandom read with 4 bits of entropy available
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: i8042: Detected active multiplexing controller, rev 1.1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: bus type USB registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usbcore: registered new interface driver usbfs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usbcore: registered new interface driver hub
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: SCSI subsystem initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usbcore: registered new device driver usb
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci: OHCI PCI platform driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: QUIRK: Enable AMD PLL fix
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:12.0: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:12.0: irq 18, io mem 0xd440a000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci: EHCI PCI platform driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: libata version 3.00 loaded.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: EHCI Host Controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: debug port 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: irq 17, io mem 0xd4409000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 2-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 2-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ahci 0000:00:11.0: version 3.0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi host0: ahci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi host1: ahci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1: SATA max UDMA/133 abar m1024@0xd440b000 port 0xd440b100 irq 19
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2: SATA max UDMA/133 abar m1024@0xd440b000 port 0xd440b180 irq 19
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:13.0: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 3
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:13.0: irq 18, io mem 0xd4408000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: EHCI Host Controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: debug port 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: irq 17, io mem 0xd4407000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 4-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 4-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: EHCI Host Controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: debug port 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: irq 17, io mem 0xd4404000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 5-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 5-0:1.0: 4 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:14.5: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 6
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:14.5: irq 18, io mem 0xd4406000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 6-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 6-0:1.0: 2 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:16.0: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 7
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:16.0: irq 18, io mem 0xd4405000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 7-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 7-0:1.0: 4 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usb 2-5: new high-speed USB device number 2 using ehci-pci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tsc: Refined TSC clocksource calibration: 2394.005 MHz
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1.00: ATA-8: Hitachi HTS545032B9A300, PB3OCA1G, max UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1.00: configured for UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54503 CA1G PQ: 0 ANSI: 5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2.00: ATAPI: hp DVDRAM GT30L, mP06, max UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2.00: configured for UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi 1:0:0:0: CD-ROM hp DVDRAM GT30L mP06 PQ: 0 ANSI: 5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 62x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sda: sda1 sda2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usb 3-4: new full-speed USB device number 2 using ohci-pci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Switched to clocksource tsc
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: random: nonblocking pool is initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC systemd[1]: Cannot add dependency job for unit atieventsd.service, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Sleep Button [SLPB]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input6
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Lid Switch [LID]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input:

  • Query Degradation--Hash Join Degraded

    Hi All,
    I found one query degradation issue.I am on 10.2.0.3.0 (Sun OS) with optimizer_mode=ALL_ROWS.
    This is a dataware house db.
    All 3 tables involved are parition tables (with daily partitions).Partitions are created in advance and ELT jobs loads bulk data into daily partitions.
    I have checked that CBO is not using local indexes-created on them which i believe,is appropriate because when i used INDEX HINT, elapsed time increses.
    I checked giving index hint for all tables one by one but dint get any performance improvement.
    Partitions are daily loaded and after loading,partition-level stats are gathered with dbms_stats.
    We are collecting stats at partition level(granularity=>'PARTITION').Even after collecting global stats,there is no change in access pattern.Stats gather command is given below.
    PROCEDURE gather_table_part_stats(i_owner_name,i_table_name,i_part_name,i_estimate:= DBMS_STATS.AUTO_SAMPLE_SIZE, i_invalidate IN VARCHAR2 := 'Y',i_debug:= 'N')
    Only SOT_KEYMAP.IPK_SOT_KEYMAP is GLOBAL.Rest all indexes are LOCAL.
    Earlier,we were having BIND PEEKING issue,which i fixed but introducing NO_INVALIDATE=>FALSE in stats gather job.
    Here,Partition_name (20090219) is being passed through bind variables.
    SELECT a.sotrelstg_sot_ud sotcrct_sot_ud,
    b.sotkey_ud sotcrct_orig_sot_ud, a.ROWID stage_rowid
    FROM (SELECT sotrelstg_sot_ud, sotrelstg_sys_ud,
    sotrelstg_orig_sys_ord_id, sotrelstg_orig_sys_ord_vseq
    FROM sot_rel_stage
    WHERE sotrelstg_trd_date_ymd_part = '20090219'
    AND sotrelstg_crct_proc_stat_cd = 'N'
    AND sotrelstg_sot_ud NOT IN(
    SELECT sotcrct_sot_ud
    FROM sot_correct
    WHERE sotcrct_trd_date_ymd_part ='20090219')) a,
    (SELECT MAX(sotkey_ud) sotkey_ud, sotkey_sys_ud,
    sotkey_sys_ord_id, sotkey_sys_ord_vseq,
    sotkey_trd_date_ymd_part
    FROM sot_keymap
    WHERE sotkey_trd_date_ymd_part = '20090219'
    AND sotkey_iud_cd = 'I'
    --not to select logical deleted rows
    GROUP BY sotkey_trd_date_ymd_part,
    sotkey_sys_ud,
    sotkey_sys_ord_id,
    sotkey_sys_ord_vseq) b
    WHERE a.sotrelstg_sys_ud = b.sotkey_sys_ud
    AND a.sotrelstg_orig_sys_ord_id = b.sotkey_sys_ord_id
    AND NVL(a.sotrelstg_orig_sys_ord_vseq, 1) = NVL(b.sotkey_sys_ord_vseq, 1);
    During normal business hr, i found that query takes 5-7 min(which is also not acceptable), but during high load business hr,it is taking 30-50 min.
    I found that most of the time it is spending on HASH JOIN (direct path write temp).We have sufficient RAM (64 GB total/41 GB available).
    Below is the execution plan i got during normal business hr.
    | Id  | Operation                 | Name                | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  | Writes |  OMem |  1Mem | Used-Mem | Used-Tmp|
    |   1 |  HASH GROUP BY            |                     |      1 |      1 |   7844K|00:05:28.78 |      16M|    217K|  35969 |       |       |          |         |
    |*  2 |   HASH JOIN               |                     |      1 |      1 |   9977K|00:04:34.02 |      16M|    202K|  20779 |   580M|    10M|  563M (1)|     650K|
    |   3 |    NESTED LOOPS ANTI      |                     |      1 |      6 |   7855K|00:01:26.41 |      16M|   1149 |      0 |       |       |          |         |
    |   4 |     PARTITION RANGE SINGLE|                     |      1 |    258K|   8183K|00:00:16.37 |   25576 |   1149 |      0 |       |       |          |         |
    |*  5 |      TABLE ACCESS FULL    | SOT_REL_STAGE       |      1 |    258K|   8183K|00:00:16.37 |   25576 |   1149 |      0 |       |       |          |         |
    |   6 |     PARTITION RANGE SINGLE|                     |   8183K|    326K|    327K|00:01:10.53 |      16M|      0 |      0 |       |       |          |         |
    |*  7 |      INDEX RANGE SCAN     | IDXL_SOTCRCT_SOT_UD |   8183K|    326K|    327K|00:00:53.37 |      16M|      0 |      0 |       |       |          |         |
    |   8 |    PARTITION RANGE SINGLE |                     |      1 |    846K|     14M|00:02:06.36 |     289K|    180K|      0 |       |       |          |         |
    |*  9 |     TABLE ACCESS FULL     | SOT_KEYMAP          |      1 |    846K|     14M|00:01:52.32 |     289K|    180K|      0 |       |       |          |         |
    I will attached the same for high load business hr once query gives results.It is still executing for last 50 mins.
    INDEX STATS (INDEXES ARE LOCAL INDEXES)
    TABLE_NAME                          INDEX_NAME                          COLUMN_NAME        COLUMN_POSITION   NUM_ROWS DISTINCT_KEYS CLUSTERING_FACTOR
    SOT_REL_STAGE                       IDXL_SOTRELSTG_SOT_UD               SOTRELSTG_SOT_UD                 1   25461560      25461560            184180
    SOT_REL_STAGE                                                           SOTRELSTG_TRD_DATE               2   25461560      25461560            184180
                                                                            _YMD_PART
    TABLE_NAME                          INDEX_NAME                          COLUMN_NAME        COLUMN_POSITION   NUM_ROWS DISTINCT_KEYS CLUSTERING_FACTOR
    SOT_KEYMAP                          IDXL_SOTKEY_ENTORDSYS_UD            SOTKEY_ENTRY_ORD_S               1 1012306940             3          38308680
                                                                            YS_UD
    SOT_KEYMAP                          IDXL_SOTKEY_HASH                    SOTKEY_HASH                      1 1049582320    1049582320        1049579520
    SOT_KEYMAP                                                              SOTKEY_TRD_DATE_YM               2 1049582320    1049582320        1049579520
                                                                            D_PART
    SOT_KEYMAP                          IDXL_SOTKEY_SOM_ORD                 SOTKEY_SOM_UD                    1 1023998560     268949136         559414840
    SOT_KEYMAP                                                              SOTKEY_SYS_ORD_ID                2 1023998560     268949136         559414840
    SOT_KEYMAP                          IPK_SOT_KEYMAP                      SOTKEY_UD                        1 1030369480    1015378900          24226580
    TABLE_NAME                          INDEX_NAME                          COLUMN_NAME        COLUMN_POSITION   NUM_ROWS DISTINCT_KEYS CLUSTERING_FACTOR
    SOT_CORRECT                         IDXL_SOTCRCT_SOT_UD                 SOTCRCT_SOT_UD                   1  412484756     412484756         411710982
    SOT_CORRECT                                                             SOTCRCT_TRD_DATE_Y               2  412484756     412484756         411710982
                                                                            MD_PART
    INDEX partiton stas (from dba_ind_partitions)
    INDEX_NAME                     PARTITION_NAME       STATUS       BLEVEL LEAF_BLOCKS DISTINCT_KEYS CLUSTERING_FACTOR   NUM_ROWS SAMPLE_SIZE LAST_ANALYZ GLO
    IDXL_SOTCRCT_SOT_UD            P20090219            USABLE            1         372        327879            216663     327879      327879 20-Feb-2009 YES
    IDXL_SOTKEY_ENTORDSYS_UD       P20090219            USABLE            2        2910             3             36618     856229      856229 19-Feb-2009 YES
    IDXL_SOTKEY_HASH               P20090219            USABLE            2        7783        853956            853914     853956      119705 19-Feb-2009 YES
    IDXL_SOTKEY_SOM_ORD            P20090219            USABLE            2        6411        531492            157147     799758      132610 19-Feb-2009 YES
    IDXL_SOTRELSTG_SOT_UD          P20090219            USABLE            2       13897       9682052             45867    9682052      794958 20-Feb-2009 YESThanks in advance.
    Bhavik Desai

    Hi Randolf,
    Thanks for the time you spent on this issue.I appreciate it.
    Please see my comments below:
    1. You've mentioned several times that you're passing the partition name as bind variable, but you're obviously testing the statement with literals rather than bind
    variables. So your tests obviously don't reflect what is going to happen in case of the actual execution. The cardinality estimates are potentially quite different when
    using bind variables for the partition key.
    Yes.I intentionaly used literals in my tests.I found couple of times that plan used by the application and plan generated by AUTOTRACE+EXPLAIN PLAN command...is same and
    caused hrly elapsed time.
    As i pointed out earlier,last month we solved couple of bind peeking issue by intproducing NO_VALIDATE=>FALSE in stats gather procedure,which we execute just after data
    load into such daily partitions and before start of jobs which executes this query.
    Execution plans From AWR (with parallelism on at table level DEGREE>1)-->This plan is one which CBO has used when degradation occured.This plan is used most of the times.
    ELAPSED_TIME_DELTA BUFFER_GETS_DELTA DISK_READS_DELTA CURSOR(SELECT*FROMTA
            1918506000          46154275              918 CURSOR STATEMENT : 4
    CURSOR STATEMENT : 4
    PLAN_TABLE_OUTPUT
    SQL_ID 39708a3azmks7
    SELECT A.SOTRELSTG_SOT_UD SOTCRCT_SOT_UD, B.SOTKEY_UD SOTCRCT_ORIG_SOT_UD, A.ROWID STAGE_ROWID FROM (SELECT SOTRELSTG_SOT_UD,
    SOTRELSTG_SYS_UD, SOTRELSTG_ORIG_SYS_ORD_ID, SOTRELSTG_ORIG_SYS_ORD_VSEQ FROM SOT_REL_STAGE WHERE SOTRELSTG_TRD_DATE_YMD_PART = :B1 AND
    SOTRELSTG_CRCT_PROC_STAT_CD = 'N' AND SOTRELSTG_SOT_UD NOT IN( SELECT SOTCRCT_SOT_UD FROM SOT_CORRECT WHERE SOTCRCT_TRD_DATE_YMD_PART =
    :B1 )) A, (SELECT MAX(SOTKEY_UD) SOTKEY_UD, SOTKEY_SYS_UD, SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ, SOTKEY_TRD_DATE_YMD_PART FROM
    SOT_KEYMAP WHERE SOTKEY_TRD_DATE_YMD_PART = :B1 AND SOTKEY_IUD_CD = 'I' GROUP BY SOTKEY_TRD_DATE_YMD_PART, SOTKEY_SYS_UD,
    SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ) B WHERE A.SOTRELSTG_SYS_UD = B.SOTKEY_SYS_UD AND A.SOTRELSTG_ORIG_SYS_ORD_ID =
    B.SOTKEY_SYS_ORD_ID AND NVL(A.SOTRELSTG_ORIG_SYS_ORD_VSEQ, 1) = NVL(B.SOTKEY_SYS_ORD_VSEQ, 1)
    Plan hash value: 1213870831
    | Id  | Operation                     | Name                | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | SELECT STATEMENT              |                     |       |       | 19655 (100)|          |       |       |        |      |            |
    |   1 |  PX COORDINATOR               |                     |       |       |            |          |       |       |        |      |            |
    |   2 |   PX SEND QC (RANDOM)         | :TQ10003            |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,03 | P->S | QC (RAND)  |
    |   3 |    HASH GROUP BY              |                     |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,03 | PCWP |            |
    |   4 |     PX RECEIVE                |                     |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,03 | PCWP |            |
    |   5 |      PX SEND HASH             | :TQ10002            |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,02 | P->P | HASH       |
    |   6 |       HASH GROUP BY           |                     |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,02 | PCWP |            |
    |   7 |        NESTED LOOPS ANTI      |                     |     1 |   116 | 19654   (1)| 00:05:54 |       |       |  Q1,02 | PCWP |            |
    |   8 |         HASH JOIN             |                     |     1 |   102 | 19654   (1)| 00:05:54 |       |       |  Q1,02 | PCWP |            |
    |   9 |          PX JOIN FILTER CREATE| :BF0000             |    13M|   664M|  2427   (3)| 00:00:44 |       |       |  Q1,02 | PCWP |            |
    |  10 |           PX RECEIVE          |                     |    13M|   664M|  2427   (3)| 00:00:44 |       |       |  Q1,02 | PCWP |            |
    |  11 |            PX SEND HASH       | :TQ10000            |    13M|   664M|  2427   (3)| 00:00:44 |       |       |  Q1,00 | P->P | HASH       |
    |  12 |             PX BLOCK ITERATOR |                     |    13M|   664M|  2427   (3)| 00:00:44 |   KEY |   KEY |  Q1,00 | PCWC |            |
    |  13 |              TABLE ACCESS FULL| SOT_REL_STAGE       |    13M|   664M|  2427   (3)| 00:00:44 |   KEY |   KEY |  Q1,00 | PCWP |            |
    |  14 |          PX RECEIVE           |                     |    27M|  1270M| 17209   (1)| 00:05:10 |       |       |  Q1,02 | PCWP |            |
    |  15 |           PX SEND HASH        | :TQ10001            |    27M|  1270M| 17209   (1)| 00:05:10 |       |       |  Q1,01 | P->P | HASH       |
    |  16 |            PX JOIN FILTER USE | :BF0000             |    27M|  1270M| 17209   (1)| 00:05:10 |       |       |  Q1,01 | PCWP |            |
    |  17 |             PX BLOCK ITERATOR |                     |    27M|  1270M| 17209   (1)| 00:05:10 |   KEY |   KEY |  Q1,01 | PCWC |            |
    |  18 |              TABLE ACCESS FULL| SOT_KEYMAP          |    27M|  1270M| 17209   (1)| 00:05:10 |   KEY |   KEY |  Q1,01 | PCWP |            |
    |  19 |         PARTITION RANGE SINGLE|                     | 16185 |   221K|     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    |  20 |          INDEX RANGE SCAN     | IDXL_SOTCRCT_SOT_UD | 16185 |   221K|     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    Other Execution plan from AWR
    ELAPSED_TIME_DELTA BUFFER_GETS_DELTA DISK_READS_DELTA CURSOR(SELECT*FROMTA
            1053251381                 0             2925 CURSOR STATEMENT : 4
    CURSOR STATEMENT : 4
    PLAN_TABLE_OUTPUT
    SQL_ID 39708a3azmks7
    SELECT A.SOTRELSTG_SOT_UD SOTCRCT_SOT_UD, B.SOTKEY_UD SOTCRCT_ORIG_SOT_UD, A.ROWID STAGE_ROWID FROM (SELECT SOTRELSTG_SOT_UD,
    SOTRELSTG_SYS_UD, SOTRELSTG_ORIG_SYS_ORD_ID, SOTRELSTG_ORIG_SYS_ORD_VSEQ FROM SOT_REL_STAGE WHERE SOTRELSTG_TRD_DATE_YMD_PART = :B1 AND
    SOTRELSTG_CRCT_PROC_STAT_CD = 'N' AND SOTRELSTG_SOT_UD NOT IN( SELECT SOTCRCT_SOT_UD FROM SOT_CORRECT WHERE SOTCRCT_TRD_DATE_YMD_PART =
    :B1 )) A, (SELECT MAX(SOTKEY_UD) SOTKEY_UD, SOTKEY_SYS_UD, SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ, SOTKEY_TRD_DATE_YMD_PART FROM
    SOT_KEYMAP WHERE SOTKEY_TRD_DATE_YMD_PART = :B1 AND SOTKEY_IUD_CD = 'I' GROUP BY SOTKEY_TRD_DATE_YMD_PART, SOTKEY_SYS_UD,
    SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ) B WHERE A.SOTRELSTG_SYS_UD = B.SOTKEY_SYS_UD AND A.SOTRELSTG_ORIG_SYS_ORD_ID =
    B.SOTKEY_SYS_ORD_ID AND NVL(A.SOTRELSTG_ORIG_SYS_ORD_VSEQ, 1) = NVL(B.SOTKEY_SYS_ORD_VSEQ, 1)
    Plan hash value: 3434900850
    | Id  | Operation                     | Name                | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | SELECT STATEMENT              |                     |       |       |  1830 (100)|          |       |       |        |      |            |
    |   1 |  PX COORDINATOR               |                     |       |       |            |          |       |       |        |      |            |
    |   2 |   PX SEND QC (RANDOM)         | :TQ10003            |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,03 | P->S | QC (RAND)  |
    |   3 |    HASH GROUP BY              |                     |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,03 | PCWP |            |
    |   4 |     PX RECEIVE                |                     |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,03 | PCWP |            |
    |   5 |      PX SEND HASH             | :TQ10002            |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,02 | P->P | HASH       |
    |   6 |       HASH GROUP BY           |                     |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,02 | PCWP |            |
    |   7 |        NESTED LOOPS ANTI      |                     |     1 |   131 |  1829   (2)| 00:00:33 |       |       |  Q1,02 | PCWP |            |
    |   8 |         HASH JOIN             |                     |     1 |   117 |  1829   (2)| 00:00:33 |       |       |  Q1,02 | PCWP |            |
    |   9 |          PX JOIN FILTER CREATE| :BF0000             |  1010K|    50M|   694   (1)| 00:00:13 |       |       |  Q1,02 | PCWP |            |
    |  10 |           PX RECEIVE          |                     |  1010K|    50M|   694   (1)| 00:00:13 |       |       |  Q1,02 | PCWP |            |
    |  11 |            PX SEND HASH       | :TQ10000            |  1010K|    50M|   694   (1)| 00:00:13 |       |       |  Q1,00 | P->P | HASH       |
    |  12 |             PX BLOCK ITERATOR |                     |  1010K|    50M|   694   (1)| 00:00:13 |   KEY |   KEY |  Q1,00 | PCWC |            |
    |  13 |              TABLE ACCESS FULL| SOT_KEYMAP          |  1010K|    50M|   694   (1)| 00:00:13 |   KEY |   KEY |  Q1,00 | PCWP |            |
    |  14 |          PX RECEIVE           |                     |    11M|   688M|  1129   (3)| 00:00:21 |       |       |  Q1,02 | PCWP |            |
    |  15 |           PX SEND HASH        | :TQ10001            |    11M|   688M|  1129   (3)| 00:00:21 |       |       |  Q1,01 | P->P | HASH       |
    |  16 |            PX JOIN FILTER USE | :BF0000             |    11M|   688M|  1129   (3)| 00:00:21 |       |       |  Q1,01 | PCWP |            |
    |  17 |             PX BLOCK ITERATOR |                     |    11M|   688M|  1129   (3)| 00:00:21 |   KEY |   KEY |  Q1,01 | PCWC |            |
    |  18 |              TABLE ACCESS FULL| SOT_REL_STAGE       |    11M|   688M|  1129   (3)| 00:00:21 |   KEY |   KEY |  Q1,01 | PCWP |            |
    |  19 |         PARTITION RANGE SINGLE|                     |  5209 | 72926 |     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    |  20 |          INDEX RANGE SCAN     | IDXL_SOTCRCT_SOT_UD |  5209 | 72926 |     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    EXECUTION PLAN AFTER SETTING DEGREE=1 (It was also degraded)
    | Id  | Operation                 | Name                | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT          |                     |     1 |   129 |       | 42336   (2)| 00:12:43 |       |       |
    |   1 |  HASH GROUP BY            |                     |     1 |   129 |       | 42336   (2)| 00:12:43 |       |       |
    |   2 |   NESTED LOOPS ANTI       |                     |     1 |   129 |       | 42335   (2)| 00:12:43 |       |       |
    |*  3 |    HASH JOIN              |                     |     1 |   115 |    51M| 42334   (2)| 00:12:43 |       |       |
    |   4 |     PARTITION RANGE SINGLE|                     |   846K|    41M|       |  8241   (1)| 00:02:29 |    81 |    81 |
    |*  5 |      TABLE ACCESS FULL    | SOT_KEYMAP          |   846K|    41M|       |  8241   (1)| 00:02:29 |    81 |    81 |
    |   6 |     PARTITION RANGE SINGLE|                     |  8161K|   490M|       | 12664   (3)| 00:03:48 |    81 |    81 |
    |*  7 |      TABLE ACCESS FULL    | SOT_REL_STAGE       |  8161K|   490M|       | 12664   (3)| 00:03:48 |    81 |    81 |
    |   8 |    PARTITION RANGE SINGLE |                     |  6525K|    87M|       |     1   (0)| 00:00:01 |    81 |    81 |
    |*  9 |     INDEX RANGE SCAN      | IDXL_SOTCRCT_SOT_UD |  6525K|    87M|       |     1   (0)| 00:00:01 |    81 |    81 |
    Predicate Information (identified by operation id):
       3 - access("SOTRELSTG_SYS_UD"="SOTKEY_SYS_UD" AND "SOTRELSTG_ORIG_SYS_ORD_ID"="SOTKEY_SYS_ORD_ID" AND
                  NVL("SOTRELSTG_ORIG_SYS_ORD_VSEQ",1)=NVL("SOTKEY_SYS_ORD_VSEQ",1))
       5 - filter("SOTKEY_TRD_DATE_YMD_PART"=20090219 AND "SOTKEY_IUD_CD"='I')
       7 - filter("SOTRELSTG_CRCT_PROC_STAT_CD"='N' AND "SOTRELSTG_TRD_DATE_YMD_PART"=20090219)
       9 - access("SOTRELSTG_SOT_UD"="SOTCRCT_SOT_UD" AND "SOTCRCT_TRD_DATE_YMD_PART"=20090219)2. Why are you passing the partition name as bind variable? A statement executing 5 mins. best, > 2 hours worst obviously doesn't suffer from hard parsing issues and
    doesn't need to (shouldn't) share execution plans therefore. So I strongly suggest to use literals instead of bind variables. This also solves any potential issues caused
    by bind variable peeking.
    This is a custom application which uses bind variables to extract data from daily partitions.So,daily automated data extract from daily paritions after load and ELT process.
    Here,Value of bind variable is being passed through a procedure parameter.It would be bit difficult to use literals in such application.
    3. All your posted plans suffer from bad cardinality estimates. The NO_MERGE hint suggested by Timur only caused a (significant) damage limitation by obviously reducing
    the row source size by the group by operation before joining, but still the optimizer is way off, apart from the obviously wrong join order (larger row set first) in
    particular the NESTED LOOP operation is causing the main troubles due to excessive logical I/O, as already pointed out by Timur.
    Can i ask for alternatives to NESTED LOOP?
    4. Your PLAN_TABLE seems to be old (you should see a corresponding note at the bottom of the DBMS_XPLAN.DISPLAY output), because none of the operations have a
    filter/access predicate information attached. Since your main issue are the bad cardinality estimates, I strongly suggest to drop any existing PLAN_TABLEs in any non-Oracle
    owned schemas because 10g already provides one in the SYS schema (GTT PLAN_TABLE$) exposed via a public synonym, so that the EXPLAIN PLAN information provides the
    "Predicate Information" section below the plan covering the "Filter/Access" predicates.
    Please post a revised explain plan output including this crucial information so that we get a clue why the cardinality estimates are way off.
    I have dropped the old plan.Got above execution plan(listed above in first point) with PREDICATE information.
    "As already mentioned the usage of bind variables for the partition name makes this issue potentially worse."
    Is there any workaround without replacing bind variable.I am on 10g so 11g's feature will not help !!!
    How are you gathering the statistics daily, can you post the exact command(s) used?
    gather_table_part_stats(i_owner_name,i_table_name,i_part_name,i_estimate:= DBMS_STATS.AUTO_SAMPLE_SIZE, i_invalidate IN VARCHAR2 := 'Y',i_debug:= 'N')
    Thanks & Regards,
    Bhavik Desai

  • Office 2010 & hash in webdav url

    Hi,
    it seems that when opening a document through webdav has a problem with hash (#) characters in a URL.
    This behaviour was noticed on Office 2010 64 bit (version 14.0.5123.5000) on Windows 7 SP1.
    Suppose a word  file is in a webfolder /folder1/a # b/file.doc. (http://server/folder1/a%20%23%20b/file.doc). I have an explorer view on the folder without trouble. I can also open txt-docs with notepad.
    If I try to open the doc-file, Word 2010 gives an error that it can't open file "http://server/folder1/a".
    I can see also with Fiddler that a HEAD-request is done on http://server/folder1/a%20 and not on http://server/folder1/a%20%23%20b/file.doc.
    The User-agent that performs the GET is " Microsoft Office Existence Discovery".
    Can anyone confirm this behaviour or have a possible solution?

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, it sounds like an issue related to “How to configure Internet Explorer to open Office documents in the appropriate Office program
    instead of in Internet Explorer”.
    To fix this problem automatically, click the following link to download Fix it tool. Click Run in the File Download dialog box, and follow the steps in the Fix
    it wizard.
    http://go.microsoft.com/?linkid=9729249
    Notes
    This wizard may be in English only; however, the automatic fix also works for other language versions of Windows.
    If you are not on the computer that has the problem, save the Fix it solution to a flash drive or a CD and then run it on the computer that has the problem.
    If not working, please try the other methods in following article:
    http://support.microsoft.com/kb/162059
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything I can
    do for you, please feel free to let me know.
    Sincerely
    Rex Zhang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • About hash with MessageDigest

    Hi, I have troubles when I using MessageDigest to get hash.
    I use JCDK3.0.3_ClassicEdition_RR and jdk1.5
    here's part of my code:
    private void getDigest(byte[] buffer)
              if (hashArray == null)
                   hashArray = JCSystem.makeTransientByteArray((short)20, JCSystem.CLEAR_ON_DESELECT);
              MessageDigest alg = MessageDigest.getInstance(MessageDigest.ALG_SHA,true);
              //alg.doFinal(buffer, (short)5, (short)8, hashArray, (short)0);
              //return alg.getLength();
    It returns 6f 00
    If I annotate the line of MessageDigest.getInstance, the applet runs well. So I think MessageDigest.getInstance causes the trouble.
    Please help me! Or tell me how to get hash of message. thx!

    6f00 means there is unhandled exception in your code. Use try/catch statements to handle it and found the reason. Similar to that:
    try{
    MessageDigest alg = MessageDigest.getInstance(MessageDigest.ALG_SHA,true);
    catch(CryptoException e)
    if ( e.GetReason() == CryptoException.NO_SUCH_ALGORITHM )
    ISOException.throwIt( something );
    }according to java card specifiation NO_SUCH_ALGORITHM is the only exception for MessageDigest.getInstance. The reasons are "if the requested algorithm or shared access mode is not supported.". So, check that SHA is supported by tools/cards that you use, try to set externalAccess flag to false.

  • [SOLVED] yaourt and "wrong hashes"

    I've just had some troubles updating several packages from AUR with yaourt.
    The issues where concentrating on seemingly "wrong hashes".
    Today I looked a little deeper and found out, that for some reason (maybe canceled upgrade or similar) yaourt was placing a symlink in the
    /tmp/yaourt-tmp-user/package-name/
    that refers to a (possibly) broken file in
    /var/cache/yaourt/build/
    Yaourt seems not to be able to delete it, so when trying to update (again) it will break operation on validating hashes.
    Not sure if that's just a system quirk introduced by a crash or a yaourt specific problem (as it's unable to delete the broken file from its build directory on its own).
    Anyhow: For me deleting the contents of the yaourt's build directory and the package build directories in /tmp solved this issue and I was able to update without any troubles!
    Happy times! Though I think it's sufficient to only delete the files specific to the package that fails to upgrade.
    Hope this could be of any use to someone.

    Can you add a Troubleshooting section to https://wiki.archlinux.org/index.php/Yaourt ?

  • Top Ten SQL Performance Trouble Clues

    DB:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    OS: Red Hat Enterprise Linux 5
    At the risk of being over-simplistic, what would be the Top 5 or 10 things one looks for in an explain plan or execution plan that suggests 'performance trouble'? ...

    user601798 wrote:
    Well, one has to start somewhere and whether its looking at the execution plan or trace file, there must be some rules of thumb... Indeed, we all look 'somewhere' first or notice something in the plan or trace that seems to point to the problematic issue.
    And granted, each tuning issue is unique but, based on experience, I can say that quite a few of my tuning issues have been resolved by simply using NESTED_LOOPS and having the first driving table eliminate as many rows as possible from the final result set.
    And based on that, I'd say you tend to work on OLTP systems.
    If you were a data warehouse DBA, you might have said:
    "And granted, each tuning issue is unique but, based on experience, I can say that quite a few of my tuning issues have been resolved by simply making sure I have bitmap indexes defined on columns that appear in predicates, and making sure sure I have allocated enough memory for efficient HASH joins to take place."
    So, it depends on your perspective.
    That's why performance optimization methods, such as Method-R, focus on identifying the most important, business critical functions, profiling them, understanding where the time is being spent, and focusing the tuning efforts there. In this way, there are no rules of thumb, and there is no guesswork. If you have a performance problem, Method-R will point you to the source of the problem. It's then up to you to understand enough about Oracle to know how to proceed.
    -Mark

  • QOS Trouble and questions

    Hi All,
    I have some trouble regarding the QOS implementation for the VOICE communication.
    I tried to setup the low latency queuing but it showed that it is weighted fair
    queuing.
    I want to apply the strict policy ( reserved the bandwidth) of 128 k for voice.
    After this configuration my voice is still not good ( choppy).
    Attached below is my configuration file.
    Tunnel0 is the outgoing interface and i applied the service policy on ethernet interface. ( e0/0)
    Below is the output of show policy-map interface
    Ethernet0/0
    Service-policy output: LL_QOS
    Class-map: VOICE_CONTROL (match-all)
    34 packets, 3666 bytes
    30 second offered rate 0 bps, drop rate 0 bps
    Match: access-group name VOICE-CTL_ACL
    Weighted Fair Queueing
    Output Queue: Conversation 265
    Bandwidth 64 (kbps) Max Threshold 64 (packets)
    (pkts matched/bytes matched) 3/534
    (depth/total drops/no-buffer drops) 0/0/0
    QoS Set
    ip precedence 5
    Packets marked 34
    Class-map: VOICE_RTP (match-all)
    1257257 packets, 160414006 bytes
    30 second offered rate 0 bps, drop rate 0 bps
    Match: access-group name VOICE-RTP_ACL
    Weighted Fair Queueing
    Strict Priority
    Output Queue: Conversation 264
    Bandwidth 128 (kbps) Burst 4800 (Bytes)
    (pkts matched/bytes matched) 773/110734
    (total drops/bytes drops) 0/0
    Class-map: class-default (match-any)
    4356827 packets, 3116756548 bytes
    30 second offered rate 63000 bps, drop rate 0 bps
    Match: any
    Weighted Fair Queueing
    Flow Based Fair Queueing
    Maximum Number of Hashed Queues 256
    (total queued/total drops/no-buffer drops) 0/0/0
    It shows that Queuing strategy is still weighted fair , whereas it should be CBWFQ or LLQ.
    Can some body help me that where i am doing mistake.
    Similar type of configuration is on remote side router.

    Hi all,
    Thanks every body for reply.
    Purpose of GRE tunnel is to avoid the intermediate hops.
    Below are the out put of some voice related commands for codec and payload etc.
    sh call act voi brief
    Telephony call-legs: 1
    SIP call-legs: 0
    H323 call-legs: 1
    Total call-legs: 2
    12CB : 692504155hs.1 +1336 pid:20001 Answer 21002 active
    dur 00:14:26 tx:44010/880200 rx:43301/866020
    IP 172.2.2.6:19080 rtt:216ms pl:785620/40390ms lost:24/1290/1898 delay:210/69/2
    10ms g729r8
    12CB : 692504156hs.1 +1335 pid:10001 Originate 42001 active
    dur 00:14:26 tx:43301/866020 rx:44010/880200
    Tele 1/0/0 (6031): tx:880210/88021/0ms g729r8 noise:0 acom:45 i/0:-11/-59 dBm
    Telephony call-legs: 1
    SIP call-legs: 0
    H323 call-legs: 1
    Total call-legs: 2
    sh voice dsp
    DSP DSP DSPWARE CURR BOOT PAK TX/RX
    TYPE NUM CH CODEC VERSION STATE STATE RST AI VOICEPORT TS ABORT PACK COUNT
    ==== === == ======== ======= ===== ======= === == ========= == ===== ===========
    =
    C5423 001 01 g729r8 3.6.15 busy idle 0 0 1/0/0 NA 0 1949079/191267
    C5428 002 01 g729r8 3.6.15 IDLE idle 0 0 1/0/1 NA 0 1307457/129 438
    Thanks and waiting for help.

  • Troubles implementing SAP Note 765494

    All,
    I am trying to implement note 765494, but I have troubles implementing it.
    The note tells me to do the following:
    <b>12. Extend the private section of the CL_PO_ITEM_HANDLE_MM class to include the PO_EKPVX_HASH_TABLE attribute with the following attributes:
    a) Attribute: PO_EKPVX_HASH_TABLE
    b) Level: Static Attribute
    c) Visibility: Private
    d) Description: Hashed X data for EKPV
    e) Choose 'Direct Type Entry' to go to the definition of the Private Section. Maintain the following values:
               TYPES:
                BEGIN OF po_ekpvx_hash_entry,
                  item TYPE REF TO cl_po_item_handle_mm,
                  data TYPE mepo_ekpvx,
                END OF po_ekpvx_hash_entry .
               CLASS-DATA:
                po_ekpvx_hash_table TYPE HASHED TABLE OF
                        po_ekpvx_hash_entry WITH UNIQUE KEY item .</b>
    However, in the classbuilder the button with wich to jump to direct type entry is greyed out.
    My question is how to maintain direct types in se24 for this class.
    Thanks in advance
    Bert

    Hi rena,
    I did solve the problem by switching off the modification assistant.
    I hpe this works for you too.
    Regards,
    Bert

  • Having trouble calling my work voicemail from the iphone - it doesnt recognize the dtmf tones

    i am having trouble calling my work voicemail frome the iphone - it does not recognize the DTMF tones from the dialpad.  we have justgone to a new IP voice system at work

    we use a remote dialling code to divert our office landlines to mobiles, we have had awful trouble with the iphones in doing this with the number stored as a contact, We also have trouble dialling the number direct from the keypad it still comes up with error and says the number has not been recognised.
    I have managed to sort out how to remedy this for us on this end and i will give an example below, the 'p' represents a pause
    (numbers changed for security)
    original phonebook contact stored, please notice the pauses 'p' only the first single pause
    01223495684p*65*4530*01223456456*07555456456#
    the new number now stored in the phonebook with the extra pauses 'p'
    01223495684pp*65p*4530p*01223456456p*07555456456#  as you can see we dial a landline number and then give a pause for the next tone to cut in, then we enter the overall divert code, after this we enter the pin code followed by the landline number to divert and finally the mobile number that will be taking the calls and finishing off with hash.
    all our other phones except the iphone will dial this number and work correctly with one pause at the beginning, I have now tried thios with two pauses at the beginning and one pause between each section and it now works fine,
    This has cured our problem using the io5 iphones 4s. we could not dial these numbers with the iphones for nothing, all other phones work fine. When you have a bluetooth headset connected the problem is even worse.
    this has cured our problem and hope this helps you all also

  • OfflineIMAP troubles

    I'm trying to set up offlineimap for use with alpine, gmail, and multiple accounts, and am having trouble with one of my accounts.
    If I open the inbox of my personal mail folder, I see no emails, but all emails are present if I navigate to the All Mail folder.  For my net mail folder, everything works as expected, and emails are present in my inbox.
    I assume this is caused by a missing file, as shown here:
    $ ls -a ~/.mail/net/INBOX/
    . .. cur new tmp .uidlast.0000000006.1262480010
    $ ls -a ~/.mail/personal/INBOX/
    . .. cur new tmp
    Note that cur, new, and tmp are directories in both folders, and .uidlast... is a file.
    Resyncing with
    $ offlineimap -o
    does not solve the problem.
    My ~/.offlineimaprc:
    [general]
    metadata = ~/.offlineimap
    # The different accounts we will be using
    accounts = personal,net
    # Sync more than one account
    maxsyncaccounts = 4
    # Give up if no connection in 60 seconds
    socktimeout = 60
    # Set the user interface
    ui = TTY.TTYUI
    [Account personal]
    # Create identifiers
    localrepository = local-personal
    remoterepository = remote-personal
    [Account net]
    # Create identifiers
    localrepository = local-net
    remoterepository = remote-net
    [Repository local-personal]
    # Where my personal mail is stored on my system
    type = Maildir
    localfolders = /home/cam/.mail/personal
    [Repository local-net]
    # Where my net mail is stored on my system
    type = Maildir
    localfolders = /home/cam/.mail/net
    [Repository remote-personal]
    # Set up the interface with gmail
    type = Gmail
    remotehost = imap.gmail.com
    remoteuser = [email protected]
    remotepass = mypass
    ssl = yes
    realdelete = no
    [Repository remote-net]
    # Set up the interface with gmail
    type = Gmail
    remotehost = imap.gmail.com
    remoteuser = [email protected]
    remotepass = mypass
    ssl = yes
    realdelete = no

    Alex,
    I forgot to ask, Is there a USB drive or anything attached
    to USB ports?  If so, please remove.
    One last thing to try in this forum, before you need to either open
    as TAC Case or reinstall from scratch:
    You mention:
    "Step 5 Choose Yes to confirm that you want to upgrade the system.
    The upgrade process begins. The appliance reboots and again asks you if you want to upgrade the
    system.  ---> Is it when the appliance asks me to replace files while booting?
    Step 6 Choose Yes
    And here I'm choosing yes in every question (6 or 7 strings)?"
    Once the Upgrade begins and then you see the the appliance start to reboot,
    eject the DVD so that the DMM cannot boot from the DVD and see or record
    any errors that are seen on the console.
    Let me know what happens... if the upgrade does not work, you will either need to open a
    TAC case or reinstall 5.2, Upgrade 5.2.1, then Upgrade to 5.2.2.  Make sure you backup your
    data prior to doing this.
    The thing that bothers me is that you see this on both the DMM & the SnS.  This is typically
    a sign that the ISO images are corrupted. Which points me back to the MD5 Hash check.
    Your MD5 Hash is technically incorrect since your value has letters in CAPITALs.  An "A" is
    not the same as "a" but depending on your method of checking (software\app), some tools
    report in all capital letters.  You may want to download the image again and try a couple of different
    tools to evaluate the MD5 Hash and see if you get different results....
    Cheers!
    T.

  • Trouble with certificate

    Hi, the trouble is related to a self signed certificate. When try to connect using RDP, it says that "Certificate does not come from any trusted certificate authority", I know that its obvious. Please continue reading.
    The fact is we were working fine with this, but  the last PCI scan reports that problem. I deleted the self signed certificate and put another certificate issued by a trusted certificate authority, but the problem persists.
    Even when I look back into the certificate storage, section Remote Desktop, the self signed certificates appears automaticly. 
    How can I solve this?
    Server is running Windows Server 2012 and its running Active Directory too.

    Hi,
    1. On the server, please make sure the certificate issued from a trusted public authority (GoDaddy, Thawte, VeriSign, etc.)
    and its private key is located in the Local Computer\Personal store.
    2. In an administrator command prompt please run the command below:
    wmic /namespace:\\root\CIMV2\TerminalServices PATH Win32_TSGeneralSetting Set SSLCertificateSHA1Hash="e2f034c171b92afc96b23b7f4da15728c1e461a9"
    Substitute your certificate's thumbprint for the Hash shown above.  The quickest way to get your cert's thumbprint is to open the certificate, on the Details tab highlight the thumbprint with your mouse, press Ctrl-C to copy it, then paste it
    into the command prompt using the system menu Edit--Paste command.  Aftering pasting simply delete out the spaces in the thumbprint using backspace and the left arrow key.
    3. The above information is assuming you are only connecting to this server for administrative purposes and you do not have a RDS Deployment.  If this is not the case please let me know.
    Thanks.
    -TP

  • BrowserLab chokes on URLs with a hash (#)

    BrowserLab seems to have trouble with URLs that contain a hash (#).
    For example, it loads http://www.stagebloc.com/faq/ just fine, but if I try to load http://www.stagebloc.com/faq/#faq_01 (simple anchor link), it renders part of the page then says "Adobe BrowserLab was not able to load the URL requested."
    If I try to load http://www.stagebloc.com/#/how/ (AJAX navigation that can be linked directly, bookmarked, etc.), it fails completely, stating "This screenshot cannot be loaded because the URL is invalid. Please fix it and try again."

    Hey Mike,
    It looks like BrowserLab is choking on the way your navigation works, with the JavaScript rewriting the window location. Running your site through BL with the JavaScript disabled (but still with the hash in the URL) doesn't look gross, and running various other sites with a hash in the URL work fine.
    I guess JavaScript opens up a whole new can of worms.
    It looks like there is something wrong though, since it thinks http://stagebloc.com/#/how/ is invalid.
    Reed

Maybe you are looking for

  • "@" missing on screensaver - e71 NAM

    I just noticed something since I updated to 9.6.0.12 (the one with improved html): when the phone has the screensaver on (dimmed display with the time and date) and a new email message comes in, the "@" does not display on the screensaver. It used to

  • Create multiple single unit wip jobs for total sales order line qty

    Hi all, I want to know if there's a standard way to create multiple single unit wip jobs from a sales order line which has 2 or more units, i mean... I have a sales order line with item A with 3 units. If I progress the sales order, a single job is a

  • Getting background color

    How can i get the background color from an external swf file? (or even from the main swf file) I'm loading the external swf with: moviecontainer = _root.createEmptyMovieClip("moviecontainer", 10); moviecontainer.loadMovie("pacman.swf",0); I tried to

  • Status of Sequences during migration

    Hi, I am working on the conversion project. We will pull and load data from source to target. In this process we are dumping both the source and target database to staging area. I want to know while dumping data from target into staging the sequence

  • HR OM  LOCK and UNLOCK object!

    hi! some one know HR OM object's LOCK and UNLOCK object ? thank you very much!