Random seed

Hello All, I hope this is the right forum for posting this thread.
I want to know how I can use the Random class, and get the time.
I know i can do like this right
java.utilRandom rand = new Random(System.getCurrentTimeInMilliseconds());
This would give me the current time right?
I would like to know how I can convert this to a string.
Help would be greatly appreciated.
In essense I would like to use Random, seed it with the current time and convert it to a String. Is this possible , or is there an alternative.
Thanks

MULTIPLE POST
http://forum.java.sun.com/thread.jspa?threadID=719087&tstart=0

Similar Messages

  • Read-only root, initialising random seed fails

    I have moved my HTPC installation to an SDHC card, with read-only root and /home and /var mounted to tmpfs. it boots up just fine, Xbmc runs like it's supposed to, but "Initialising random seed reports [FAILED]".
    The bug report on things stopping a read-only root was recently closed, so I suppose it should all work (and it does). Is it something I need to worry about? I read that process is supposed to remove some left-overs as well, does it report failure because root is ro, or should I look elsewhere?

    Bumpty...

  • Passing random-seed down to vi-MLS Sequence Waveform

    I am using MLS Sequence Waveform (MSW-VI) and having difficulty passing the random-seed number from higher-level VIs. 
    The symptoms are as follows:
    The following VI structure works properly in passing the random-seed
    number.  For a particular seed number, each "Run" produces
    identical waveforms.
    Test-VI
        call MSW-VI
    The following VI structure does not work properly in processing the
    random-seed number.  Although the probe in MSW-VI shows the
    correct "seed" and settings being passed, the waveforms are random (not
    identical).
    Main-VI
           call Test-VI
                 call MSW-VI
    Does anyone know what the problems is in passing a random-seed number
    from high-level VIs to MSW-VI?  Does the problem relate to some VI
    settings that I am not aware of?
    Thank you,
    John

    My apologies on my description,
        I built a test case that helped me better understand the problem.
        The MLSSeqWavGen VI is in a while loop.  So
    from the while loop, this VI is being called with the same random-seed
    number with reset True.  You will see from the test case that each
    time the wave produced is different, even though the reset is True and
    the seed is >0.
        See attachement
    Thanks,
    John
    Attachments:
    TestCaseMLSSeqWaveGen.vi ‏33 KB

  • Random seed for the grain in lightroom?

    Is it possible to get a random seed for the grain in lightroom when applying to multiple images? I really like the grain in lightroom and would like to use it for an image sequence, so its really important that the grain changes from frame to frame.

    Yeah. I just exported a set of over 7000 images to import them in premiere as sequence. The grain stays in the exact same pattern throughout the 2 minutes of video so that it looks not like (dynamic) film grain but like a static curtain.

  • How to apply random "random seed" value to multiple images

    So, I am in a weird situation, have been surfing the net for the solution for over a day now and can't really find the solution.
    What is it?
    Its a small school project which I have chosen and cant really find a way to do it.
    What I want to achieve?
    I have an image and I want to have like 50 variations of it.
    What I did?
    I loaded up an image, recorded an action which applies the filter called "Wave", the the wave dialog box I selected Minimum and Maximum range for values.
    Problem I am having:
    I made 50 copies of the same image, and then I applied the action via batch processing to these 50 images. However, it applies the exact same settings/values which I recorded. It doesnt really use the range i.e maximum and minimum values I selected in the wave dialog box. It looks like when I closed hte wave dialog box, the action creates a new value called "Random seed" when recording and perhaps this random seed number tells photoshop what to choose from the min and max range supplied by the user.
    So is there any way so that when I run the action, it will pick up a new random value from the supplied min and max range?
    Thanks
    Marolina

    In all probability the Filter can be Scripted and JavaScript can provide (pseudo-)random values, so you may also want to ask over at
    http://forums.adobe.com/community/photoshop/photoshop_scripting?view=discussions
    Additionally a Script could handle the creation and naming of the copies.

  • Suggestion:  Reset Random Seed?

    I likely am in the wrong forum for feature suggestion, but I think it would be excellent to have an advanced option to reset the random seen in iTunes. The only time I close iTunes is to put my songs in a different random order when I immediately reload it.
    Note: When I select a song and listen to it, and listen to the following songs, I will heard the same songs following it every time I select that same song and listen to it until I reload iTunes. This is what I would like to be able to avoid.

    Yeah. I just exported a set of over 7000 images to import them in premiere as sequence. The grain stays in the exact same pattern throughout the 2 minutes of video so that it looks not like (dynamic) film grain but like a static curtain.

  • QCPatch 'Random Generator' Broken Seed?

    Hi there all,
    Just putting this out there - perhaps I'm wrong, but want some other QC developers who are more experienced to compare with.
    Quartz Composer Patch "Random Generator" - one of the inbuilt patches available.
    Its purpose is to generate random numbers between a range, and supply the number on its output port.
    To this end, it works fine.
    My problem with this patches behavior occurs when it is nested in a macro patch, and that patch is then duplicated (purpose obvious).
    *The duplicated macro patch appears to also copy the Random Generators' base seed.*
    For example I have the same picture resulting from Random Generators nested inside a macro patch that contains processing for a random choice of image to a sprite.
    The only way i could work around this (and this may help others with the same problem) was to Publish the Input ports all the way up to the root level patch, and supply new instances of a Random Generator for each instance of the duplicated macro patch.
    Then I received fresh random seeds from the generator and different images were selected for output to my nested sprite.
    Awfully inconvenient given that each macro had 4 levels of nesting using objects like render in image, 3D transformation and Lighting - all patches that require nesting, and also reset your ports being passed to a parent, meaning you have to - 're-map' the Published Inputs with every layer of nesting. Not to mention the fact that the root level of the document is cluttered all to **** with millions of Random Generator patches.
    Anyone get this behavior?
    Please let me know if I'm just screwing my design up, or if this is encountered by you too and we should report it as a bug. (Ive only been devving QC for several weeks straight, so I'm want to actually report it as a bug yet).
    Many thanks in advance,
    Wilks.

    A random created with the same seed will give the same set of random numbers.
    Take out the Random creation from the loop
    try
                 BufferedWriter out = new BufferedWriter(new FileWriter("c:/test.txt"));
                    //Create Random here.
                     Random r = new Random( );//No need for any seed
                 for (int i = 0; i < 1000; i++)
                      out.write(String.valueOf(r.nextInt(9)));
                 out.close();
    catch (IOException e)
    [url http://www.feedfeeds.com/feedtv]Feed Your Feeds

  • Random Generator always using the same seed?

    I'm trying to write a file full of random characters, but when I use the code below I always seem to get the same output. Is there any way to force java to sort out it's own random seed?
    // Creates a blank file full of random data
              try
                 BufferedWriter out = new BufferedWriter(new FileWriter("c:/test.txt"));
                 for (int i = 0; i < 1000; i++)
                      Random r = new Random(i);
                      out.write(String.valueOf(r.nextInt(9)));
                 out.close();
              catch (IOException e)
             }Thanks

    A random created with the same seed will give the same set of random numbers.
    Take out the Random creation from the loop
    try
                 BufferedWriter out = new BufferedWriter(new FileWriter("c:/test.txt"));
                    //Create Random here.
                     Random r = new Random( );//No need for any seed
                 for (int i = 0; i < 1000; i++)
                      out.write(String.valueOf(r.nextInt(9)));
                 out.close();
    catch (IOException e)
    [url http://www.feedfeeds.com/feedtv]Feed Your Feeds

  • Xen Kernel randomly fails to load and goes out of range

    Been having an on/off issue lately that requires a hard reset of my system.  Essentially what happens is the system begins to load when my monitor reports an error that the signal is out of range.  I try to pretend login and reboot, but it does not work.  Instead, I am forced to simply reset the system and once reset it appears to boot OK without any issues.  In fact I can go a few reboots before once again it decides to break.  Below is what should be one of the logs from a failed boot, in fact, the system is in this same failed state right now as well.
    arch_1 ~ :( # journalctl -b -1
    -- Logs begin at Sat 2013-12-28 00:39:50 EST, end at Thu 2014-01-02 23:28:03 EST. --
    Jan 02 23:22:36 arch_1 systemd-journal[129]: Runtime journal is using 332.0K (max 91.3M, leaving 137.0M of fre
    Jan 02 23:22:36 arch_1 systemd-journal[129]: Runtime journal is using 336.0K (max 91.3M, leaving 137.0M of fre
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys cpuset
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys cpu
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys cpuacct
    Jan 02 23:22:36 arch_1 kernel: Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SM
    Jan 02 23:22:36 arch_1 kernel: Command line: /vmlinuz-linux root=/dev/mapper/vg_arch-lv_root rw console=tty0
    Jan 02 23:22:36 arch_1 kernel: Freeing 9e-100 pfn range: 98 pages freed
    Jan 02 23:22:36 arch_1 kernel: 1-1 mapping on 9e->100
    Jan 02 23:22:36 arch_1 kernel: 1-1 mapping on bd9ff->100000
    Jan 02 23:22:36 arch_1 kernel: Released 98 pages of unused memory
    Jan 02 23:22:36 arch_1 kernel: Set 271971 page(s) to 1-1 mapping
    Jan 02 23:22:36 arch_1 kernel: Populating 80000-80062 pfn range: 98 pages added
    Jan 02 23:22:36 arch_1 kernel: e820: BIOS-provided physical RAM map:
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000000a0000-0x00000000000fffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x0000000000100000-0x00000000bd9fefff] usable
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000bd9ffc00-0x00000000bda53bff] ACPI NVS
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000bda53c00-0x00000000bda55bff] ACPI data
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000bda55c00-0x00000000bfffffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000fec00000-0x00000000fed003ff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000fed20000-0x00000000fed9ffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x0000000100000000-0x0000000237ffffff] usable
    Jan 02 23:22:36 arch_1 kernel: NX (Execute Disable) protection: active
    Jan 02 23:22:36 arch_1 kernel: SMBIOS 2.5 present.
    Jan 02 23:22:36 arch_1 kernel: DMI: Dell Inc. OptiPlex 960 /0Y958C, BIOS A10 12/20/2010
    Jan 02 23:22:36 arch_1 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jan 02 23:22:36 arch_1 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 02 23:22:36 arch_1 kernel: No AGP bridge found
    Jan 02 23:22:36 arch_1 kernel: e820: last_pfn = 0x238000 max_arch_pfn = 0x400000000
    Jan 02 23:22:36 arch_1 kernel: e820: last_pfn = 0xbd9ff max_arch_pfn = 0x400000000
    Jan 02 23:22:36 arch_1 kernel: Scanning 1 areas for low memory corruption
    Jan 02 23:22:36 arch_1 kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x7fe00000-0x7fffffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x7fe00000-0x7fffffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b47000, 0x01b47fff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b48000, 0x01b48fff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x7c000000-0x7fdfffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x7c000000-0x7fdfffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b49000, 0x01b49fff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b4a000, 0x01b4afff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b4b000, 0x01b4bfff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b4c000, 0x01b4cfff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x00100000-0x7bffffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x00100000-0x7bffffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x80000000-0xbd9fefff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x80000000-0xbd9fefff] page 4k
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x100000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x100000000-0x237ffffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: RAMDISK: [mem 0x01f54000-0x029fefff]
    Jan 02 23:22:36 arch_1 kernel: ACPI: RSDP 00000000000fec00 00024 (v02 DELL )
    Jan 02 23:22:36 arch_1 kernel: ACPI: XSDT 00000000000fc7d7 00084 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: FACP 00000000000fc907 000F4 (v03 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: DSDT 00000000ffe9e423 05744 (v01 DELL dt_ex 00001000 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: FACS 00000000bd9ffc00 00040
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000ffea3d30 00087 (v01 DELL st_ex 00001000 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: APIC 00000000000fc9fb 00092 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: BOOT 00000000000fca8d 00028 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: ASF! 00000000000fcab5 00096 (v32 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: MCFG 00000000000fcb4b 0003C (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: HPET 00000000000fcb87 00038 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: TCPA 00000000000fcde3 00032 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: DMAR 00000000000fce15 00108 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000bd9ffc40 001F9 (v01 DpgPmm Cpu0Ist 00000011 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000bda00049 001F9 (v01 DpgPmm Cpu1Ist 00000011 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000bda00452 00190 (v01 DpgPmm CpuPm 00000010 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Local APIC address 0xfee00000
    Jan 02 23:22:36 arch_1 kernel: NUMA turned off
    Jan 02 23:22:36 arch_1 kernel: Faking a node at [mem 0x0000000000000000-0x0000000237ffffff]
    Jan 02 23:22:36 arch_1 kernel: Initmem setup node 0 [mem 0x00000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: NODE_DATA [mem 0x7f0c7000-0x7f0cbfff]
    Jan 02 23:22:36 arch_1 kernel: Zone ranges:
    Jan 02 23:22:36 arch_1 kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 02 23:22:36 arch_1 kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 02 23:22:36 arch_1 kernel: Normal [mem 0x100000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: Movable zone start for each node
    Jan 02 23:22:36 arch_1 kernel: Early memory node ranges
    Jan 02 23:22:36 arch_1 kernel: node 0: [mem 0x00001000-0x0009dfff]
    Jan 02 23:22:36 arch_1 kernel: node 0: [mem 0x00100000-0xbd9fefff]
    Jan 02 23:22:36 arch_1 kernel: node 0: [mem 0x100000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: On node 0 totalpages: 2054556
    Jan 02 23:22:36 arch_1 kernel: DMA zone: 64 pages used for memmap
    Jan 02 23:22:36 arch_1 kernel: DMA zone: 21 pages reserved
    Jan 02 23:22:36 arch_1 kernel: DMA zone: 3997 pages, LIFO batch:0
    Jan 02 23:22:36 arch_1 kernel: DMA32 zone: 12072 pages used for memmap
    Jan 02 23:22:36 arch_1 kernel: DMA32 zone: 772607 pages, LIFO batch:31
    Jan 02 23:22:36 arch_1 kernel: Normal zone: 19968 pages used for memmap
    Jan 02 23:22:36 arch_1 kernel: Normal zone: 1277952 pages, LIFO batch:31
    Jan 02 23:22:36 arch_1 kernel: ACPI: PM-Timer IO Port: 0x808
    Jan 02 23:22:36 arch_1 kernel: ACPI: Local APIC address 0xfee00000
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x07] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x01] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x02] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x03] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
    Jan 02 23:22:36 arch_1 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    Jan 02 23:22:36 arch_1 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
    Jan 02 23:22:36 arch_1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 02 23:22:36 arch_1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jan 02 23:22:36 arch_1 kernel: ACPI: IRQ0 used by override.
    Jan 02 23:22:36 arch_1 kernel: ACPI: IRQ2 used by override.
    Jan 02 23:22:36 arch_1 kernel: ACPI: IRQ9 used by override.
    Jan 02 23:22:36 arch_1 kernel: Using ACPI (MADT) for SMP configuration information
    Jan 02 23:22:36 arch_1 kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Jan 02 23:22:36 arch_1 kernel: smpboot: Allowing 8 CPUs, 6 hotplug CPUs
    Jan 02 23:22:36 arch_1 kernel: nr_irqs_gsi: 40
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbd9ff000-0xbd9fffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda00000-0xbda52fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda53000-0xbda53fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda54000-0xbda54fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda55000-0xbda55fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda56000-0xbfffffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xc0000000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfecfffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed1ffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfeda0000-0xfedfffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfef00000-0xffafffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xffb00000-0xffffffff]
    Jan 02 23:22:36 arch_1 kernel: e820: [mem 0xc0000000-0xf7ffffff] available for PCI devices
    Jan 02 23:22:36 arch_1 kernel: Booting paravirtualized kernel on Xen
    Jan 02 23:22:36 arch_1 kernel: Xen version: 4.3.1 (preserve-AD)
    Jan 02 23:22:36 arch_1 kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Jan 02 23:22:36 arch_1 kernel: PERCPU: Embedded 29 pages/cpu @ffff88007ee00000 s86464 r8192 d24128 u262144
    Jan 02 23:22:36 arch_1 kernel: pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    Jan 02 23:22:36 arch_1 kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jan 02 23:22:36 arch_1 kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2022431
    Jan 02 23:22:36 arch_1 kernel: Policy zone: Normal
    Jan 02 23:22:36 arch_1 kernel: Kernel command line: /vmlinuz-linux root=/dev/mapper/vg_arch-lv_root rw console
    Jan 02 23:22:36 arch_1 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 02 23:22:36 arch_1 kernel: xsave: enabled xstate_bv 0x3, cntxt size 0x240
    Jan 02 23:22:36 arch_1 kernel: software IO TLB [mem 0x72a00000-0x76a00000] (64MB) mapped at [ffff880072a00000-
    Jan 02 23:22:36 arch_1 kernel: Memory: 1857868K/8218224K available (5124K kernel code, 807K rwdata, 1628K roda
    Jan 02 23:22:36 arch_1 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Jan 02 23:22:36 arch_1 kernel: Preemptible hierarchical RCU implementation.
    Jan 02 23:22:36 arch_1 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 02 23:22:36 arch_1 kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 02 23:22:36 arch_1 kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2.
    Jan 02 23:22:36 arch_1 kernel: NR_IRQS:8448 nr_irqs:512 16
    Jan 02 23:22:36 arch_1 kernel: xen: sci override: global_irq=9 trigger=0 polarity=0
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 9 triggering 0 polarity 0
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=9 -> irq=9 (gsi=9)
    Jan 02 23:22:36 arch_1 kernel: xen: acpi sci 9
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=1 -> irq=1 (gsi=1)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=2 -> irq=2 (gsi=2)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=3 -> irq=3 (gsi=3)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=4 -> irq=4 (gsi=4)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=5 -> irq=5 (gsi=5)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=6 -> irq=6 (gsi=6)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=7 -> irq=7 (gsi=7)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=8 -> irq=8 (gsi=8)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=10 -> irq=10 (gsi=10)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=11 -> irq=11 (gsi=11)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=12 -> irq=12 (gsi=12)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=13 -> irq=13 (gsi=13)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=14 -> irq=14 (gsi=14)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=15 -> irq=15 (gsi=15)
    Jan 02 23:22:36 arch_1 kernel: Console: colour VGA+ 80x25
    Jan 02 23:22:36 arch_1 kernel: console [tty0] enabled
    Jan 02 23:22:36 arch_1 kernel: allocated 33030144 bytes of page_cgroup
    Jan 02 23:22:36 arch_1 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 02 23:22:36 arch_1 kernel: Xen: using vcpuop timer interface
    Jan 02 23:22:36 arch_1 kernel: installing Xen timer for CPU 0
    Jan 02 23:22:36 arch_1 kernel: tsc: Detected 2992.224 MHz processor
    Jan 02 23:22:36 arch_1 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5986
    Jan 02 23:22:36 arch_1 kernel: pid_max: default: 32768 minimum: 301
    Jan 02 23:22:36 arch_1 kernel: Security Framework initialized
    Jan 02 23:22:36 arch_1 kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 02 23:22:36 arch_1 kernel: Yama: becoming mindful.
    Jan 02 23:22:36 arch_1 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Jan 02 23:22:36 arch_1 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 02 23:22:36 arch_1 kernel: Mount-cache hash table entries: 256
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys memory
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys devices
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys freezer
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys net_cls
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys blkio
    Jan 02 23:22:36 arch_1 kernel: CPU: Physical Processor ID: 0
    Jan 02 23:22:36 arch_1 kernel: CPU: Processor Core ID: 0
    Jan 02 23:22:36 arch_1 kernel: mce: CPU supports 2 MCE banks
    Jan 02 23:22:36 arch_1 kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    Jan 02 23:22:36 arch_1 kernel: Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Core revision 20130725
    Jan 02 23:22:36 arch_1 kernel: ACPI: All ACPI Tables successfully acquired
    Jan 02 23:22:36 arch_1 kernel: ftrace: allocating 20318 entries in 80 pages
    Jan 02 23:22:36 arch_1 kernel: Performance Events: unsupported p6 CPU model 23 no PMU driver, software events
    Jan 02 23:22:36 arch_1 kernel: NMI watchdog: disabled (cpu0): hardware events not enabled
    Jan 02 23:22:36 arch_1 kernel: installing Xen timer for CPU 1
    Jan 02 23:22:36 arch_1 kernel: Brought up 2 CPUs
    Jan 02 23:22:36 arch_1 kernel: devtmpfs: initialized
    Jan 02 23:22:36 arch_1 kernel: PM: Registering ACPI NVS region [mem 0xbd9ffc00-0xbda53bff] (344064 bytes)
    Jan 02 23:22:36 arch_1 kernel: xen:grant_table: Grant tables using version 2 layout
    Jan 02 23:22:36 arch_1 kernel: Grant table initialized
    Jan 02 23:22:36 arch_1 kernel: RTC time: 4:22:33, date: 01/03/14
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 16
    Jan 02 23:22:36 arch_1 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type PCI registered
    Jan 02 23:22:36 arch_1 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 02 23:22:36 arch_1 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base
    Jan 02 23:22:36 arch_1 kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Jan 02 23:22:36 arch_1 kernel: PCI: Using configuration type 1 for base access
    Jan 02 23:22:36 arch_1 kernel: dmi type 0xB1 record - unknown flag
    Jan 02 23:22:36 arch_1 kernel: bio: create slab <bio-0> at 0
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(Module Device)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(Processor Device)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 02 23:22:36 arch_1 kernel: ACPI: EC: Look up EC in DSDT
    Jan 02 23:22:36 arch_1 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Jan 02 23:22:36 arch_1 kernel: ACPI BIOS Warning (bug): Incorrect checksum in table [TCPA] - 0x00, should be 0
    Jan 02 23:22:36 arch_1 kernel: ACPI: Interpreter enabled
    Jan 02 23:22:36 arch_1 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hw
    Jan 02 23:22:36 arch_1 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130725/hw
    Jan 02 23:22:36 arch_1 kernel: ACPI: (supports S0 S1 S4 S5)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 02 23:22:36 arch_1 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and rep
    Jan 02 23:22:36 arch_1 kernel: ACPI: ACPI Dock Station Driver: 1 docks/bays found
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 02 23:22:36 arch_1 kernel: acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 02 23:22:36 arch_1 kernel: acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 02 23:22:36 arch_1 kernel: acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only par
    Jan 02 23:22:36 arch_1 kernel: PCI host bridge to bus 0000:00
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000effff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfec00000]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xbdb00000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xff980000-0xff980fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xff97c000-0xff97ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfeda6000-0xfeda6fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfeda7000-0xfeda7fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:00.0: [8086:2e10] type 00 class 0x060000
    Jan 02 23:22:36 arch_1 kernel: DMAR: Forcing write-buffer flush capability
    Jan 02 23:22:36 arch_1 kernel: DMAR: Disabling IOMMU for graphics on this chipset
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: [8086:2e11] type 01 class 0x060400
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: [8086:2e12] type 00 class 0x030000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf7c00000-0xf7ffffff 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: reg 0x20: [io 0xecb0-0xecb7]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.1: [8086:2e13] type 00 class 0x038000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.1: reg 0x10: [mem 0xf7b00000-0xf7bfffff 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.0: [8086:2e14] type 00 class 0x078000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.0: reg 0x10: [mem 0xfeda6000-0xfeda600f 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: [8086:2e16] type 00 class 0x010185
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x10: [io 0xfe80-0xfe87]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x14: [io 0xfe90-0xfe93]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x18: [io 0xfea0-0xfea7]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x1c: [io 0xfeb0-0xfeb3]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x20: [io 0xfef0-0xfeff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.3: [8086:2e17] type 00 class 0x070002
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.3: reg 0x10: [io 0xecb8-0xecbf]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.3: reg 0x14: [mem 0xf7adc000-0xf7adcfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: [8086:10de] type 00 class 0x020000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: reg 0x10: [mem 0xf7ae0000-0xf7afffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: reg 0x14: [mem 0xf7add000-0xf7addfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: reg 0x18: [io 0xece0-0xecff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.0: [8086:3a67] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.0: reg 0x20: [io 0xff20-0xff3f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.1: [8086:3a68] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.1: reg 0x20: [io 0xff00-0xff1f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.1: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.2: [8086:3a69] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.2: reg 0x20: [io 0xfc00-0xfc1f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.2: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.7: [8086:3a6c] type 00 class 0x0c0320
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xf7ade000-0xf7ade3ff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: [8086:3a70] type 01 class 0x060400
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: [8086:3a72] type 01 class 0x060400
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.0: [8086:3a64] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.0: reg 0x20: [io 0xff80-0xff9f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.1: [8086:3a65] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.1: reg 0x20: [io 0xff60-0xff7f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.2: [8086:3a66] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.2: reg 0x20: [io 0xff40-0xff5f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.7: [8086:3a6a] type 00 class 0x0c0320
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xff980000-0xff9803ff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.0: [8086:3a14] type 00 class 0x060100
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: [8086:3a02] type 00 class 0x010601
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x10: [io 0xfe00-0xfe07]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x14: [io 0xfe10-0xfe13]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x18: [io 0xfe20-0xfe27]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xfe30-0xfe33]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x20: [io 0xfec0-0xfedf]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.3: [8086:3a60] type 00 class 0x0c0500
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf7adf000-0xf7adf0ff 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0940-0x095f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: [8086:105e] type 00 class 0x020000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf7880000-0xf789ffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x14: [mem 0xf78a0000-0xf78bffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x18: [io 0xdcc0-0xdcdf]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x30: [mem 0xf7900000-0xf791ffff pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: [8086:105e] type 00 class 0x020000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: reg 0x10: [mem 0xf78c0000-0xf78dffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: reg 0x14: [mem 0xf78e0000-0xf78fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: reg 0x18: [io 0xdce0-0xdcff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [mem 0xf7800000-0xf79fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0xf7700000-0xf77fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0xf7600000-0xf76fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:04:00.0: [1102:0007] type 00 class 0x040100
    Jan 02 23:22:36 arch_1 kernel: pci 0000:04:00.0: reg 0x10: [io 0xcce0-0xccff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:04:00.0: supports D1 D2
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0xc000-0xcfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000effff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0x000f0000-0x000fffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfc000000-0xfec00000] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xbdb00000-0xf7ffffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xff980000-0xff980fff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xff97c000-0xff97ffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xff970000-0xff9707ff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfed20000-0xfed9ffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfeda6000-0xfeda6fff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfeda7000-0xfeda7fff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Enabled 2 GPEs in block 00 to 3F
    Jan 02 23:22:36 arch_1 kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Jan 02 23:22:36 arch_1 kernel: Found 1 acpi root devices
    Jan 02 23:22:36 arch_1 kernel: xen:balloon: Initialising balloon driver
    Jan 02 23:22:36 arch_1 kernel: xen_balloon: Initialising balloon driver
    Jan 02 23:22:36 arch_1 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 02 23:22:36 arch_1 kernel: vgaarb: loaded
    Jan 02 23:22:36 arch_1 kernel: vgaarb: bridge control possible 0000:00:02.0
    Jan 02 23:22:36 arch_1 kernel: PCI: Using ACPI for IRQ routing
    Jan 02 23:22:36 arch_1 kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 02 23:22:36 arch_1 kernel: Expanded resource reserved due to conflict with PCI Bus 0000:00
    Jan 02 23:22:36 arch_1 kernel: Expanded resource reserved due to conflict with PCI Bus 0000:00
    Jan 02 23:22:36 arch_1 kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    Jan 02 23:22:36 arch_1 kernel: e820: reserve RAM buffer [mem 0xbd9ff000-0xbfffffff]
    Jan 02 23:22:36 arch_1 kernel: NetLabel: Initializing
    Jan 02 23:22:36 arch_1 kernel: NetLabel: domain hash size = 128
    Jan 02 23:22:36 arch_1 kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 02 23:22:36 arch_1 kernel: NetLabel: unlabeled traffic allowed by default
    Jan 02 23:22:36 arch_1 kernel: Switched to clocksource xen
    Jan 02 23:22:36 arch_1 kernel: pnp: PnP ACPI init
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type PNP registered
    Jan 02 23:22:36 arch_1 kernel: system 00:00: [io 0x0800-0x085f] could not be reserved
    Jan 02 23:22:36 arch_1 kernel: system 00:00: [io 0x0c00-0x0c7f] has been reserved
    Jan 02 23:22:36 arch_1 kernel: system 00:00: [io 0x0860-0x08ff] has been reserved
    Jan 02 23:22:36 arch_1 kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp 00:01: [dma 4]
    Jan 02 23:22:36 arch_1 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 13 triggering 1 polarity 0
    Jan 02 23:22:36 arch_1 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 8 triggering 1 polarity 0
    Jan 02 23:22:36 arch_1 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 6 triggering 1 polarity 0
    Jan 02 23:22:36 arch_1 kernel: pnp 00:05: [dma 2]
    Jan 02 23:22:36 arch_1 kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0700 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp: PnP ACPI: found 7 devices
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type PNP unregistered
    Jan 02 23:22:36 arch_1 kernel: PM-Timer failed consistency check (0xffffff) - aborting.
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_si
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_si
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xfc000000-0xfc1fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xfc200000-0xfc3fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: BAR 13: assigned [io 0x2000-0x2fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [mem 0xf7800000-0xf79fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0xf7700000-0xf77fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0xfc000000-0xfc1fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0xf7600000-0xf76fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0xfc200000-0xfc3fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0xc000-0xcfff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000effff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 8 [mem 0x000f0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 9 [mem 0xfc000000-0xfec00000]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 10 [mem 0xbdb00000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 11 [mem 0xff980000-0xff980fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 12 [mem 0xff97c000-0xff97ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 13 [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 14 [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 15 [mem 0xfeda6000-0xfeda6fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 16 [mem 0xfeda7000-0xfeda7fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:01: resource 1 [mem 0xf7800000-0xf79fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:02: resource 1 [mem 0xf7700000-0xf77fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:02: resource 2 [mem 0xfc000000-0xfc1fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:03: resource 1 [mem 0xf7600000-0xf76fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:03: resource 2 [mem 0xfc200000-0xfc3fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 7 [mem 0x000c0000-0x000effff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 8 [mem 0x000f0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 9 [mem 0xfc000000-0xfec00000]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 10 [mem 0xbdb00000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 11 [mem 0xff980000-0xff980fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 12 [mem 0xff97c000-0xff97ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 13 [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 14 [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 15 [mem 0xfeda6000-0xfeda6fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 16 [mem 0xfeda7000-0xfeda7fff]
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 2
    Jan 02 23:22:36 arch_1 kernel: TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 02 23:22:36 arch_1 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 02 23:22:36 arch_1 kernel: TCP: Hash tables configured (established 65536 bind 65536)
    Jan 02 23:22:36 arch_1 kernel: TCP: reno registered
    Jan 02 23:22:36 arch_1 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Jan 02 23:22:36 arch_1 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 1
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: Boot video device
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=16 -> irq=16 (gsi=16)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=17 -> irq=17 (gsi=17)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=22 -> irq=22 (gsi=22)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :22
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=23 -> irq=23 (gsi=23)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=18 -> irq=18 (gsi=18)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :23
    Jan 02 23:22:36 arch_1 kernel: PCI: CLS 64 bytes, default 64
    Jan 02 23:22:36 arch_1 kernel: Unpacking initramfs...
    Jan 02 23:22:36 arch_1 kernel: Freeing initrd memory: 10924K (ffff880001f54000 - ffff8800029ff000)
    Jan 02 23:22:36 arch_1 kernel: Simple Boot Flag at 0x7a set to 0x1
    Jan 02 23:22:36 arch_1 kernel: Scanning for low memory corruption every 60 seconds
    Jan 02 23:22:36 arch_1 kernel: audit: initializing netlink socket (disabled)
    Jan 02 23:22:36 arch_1 kernel: type=2000 audit(1388722954.276:1): initialized
    Jan 02 23:22:36 arch_1 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 02 23:22:36 arch_1 kernel: zbud: loaded
    Jan 02 23:22:36 arch_1 kernel: VFS: Disk quotas dquot_6.5.2
    Jan 02 23:22:36 arch_1 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 02 23:22:36 arch_1 kernel: msgmni has been set to 3650
    Jan 02 23:22:36 arch_1 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 02 23:22:36 arch_1 kernel: io scheduler noop registered
    Jan 02 23:22:36 arch_1 kernel: io scheduler deadline registered
    Jan 02 23:22:36 arch_1 kernel: io scheduler cfq registered (default)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :16
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :16
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 02 23:22:36 arch_1 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 02 23:22:36 arch_1 kernel: intel_idle: does not run on family 6 model 23
    Jan 02 23:22:36 arch_1 kernel: GHES: HEST is not enabled!
    Jan 02 23:22:36 arch_1 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: 0000:00:03.3: ttyS0 at I/O 0xecb8 (irq = 17, base_baud = 115200) is a 16550A
    Jan 02 23:22:36 arch_1 kernel: hpet_acpi_add: no address or irqs in _CRS
    Jan 02 23:22:36 arch_1 kernel: Linux agpgart interface v0.103
    Jan 02 23:22:36 arch_1 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Jan 02 23:22:36 arch_1 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 02 23:22:36 arch_1 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 02 23:22:36 arch_1 kernel: mousedev: PS/2 mouse device common for all mice
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: RTC can wake from S4
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: alarms up to one day, 242 bytes nvram
    Jan 02 23:22:36 arch_1 kernel: drop_monitor: Initializing network drop monitor service
    Jan 02 23:22:36 arch_1 kernel: TCP: cubic registered
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 10
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 17
    Jan 02 23:22:36 arch_1 kernel: Key type dns_resolver registered
    Jan 02 23:22:36 arch_1 kernel: registered taskstats version 1
    Jan 02 23:22:36 arch_1 kernel: Magic number: 14:436:362
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: setting system clock to 2014-01-03 04:22:34 UTC (1388722954)
    Jan 02 23:22:36 arch_1 kernel: PM: Hibernation image not present or could not be loaded.
    Jan 02 23:22:36 arch_1 kernel: Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    Jan 02 23:22:36 arch_1 kernel: Write protecting the kernel read-only data: 8192k
    Jan 02 23:22:36 arch_1 kernel: Freeing unused kernel memory: 1008K (ffff880001504000 - ffff880001600000)
    Jan 02 23:22:36 arch_1 kernel: Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    Jan 02 23:22:36 arch_1 systemd-udevd[50]: starting version 208
    Jan 02 23:22:36 arch_1 kernel: Floppy drive(s): fd0 is 1.44M
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type USB registered
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new interface driver usbfs
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new interface driver hub
    Jan 02 23:22:36 arch_1 kernel: SCSI subsystem initialized
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new device driver usb
    Jan 02 23:22:36 arch_1 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 02 23:22:36 arch_1 kernel: ehci-pci: EHCI PCI platform driver
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :22
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: debug port 1
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: irq 22, io mem 0xf7ade000
    Jan 02 23:22:36 arch_1 kernel: FDC 0 is a post-1991 82077
    Jan 02 23:22:36 arch_1 kernel: libata version 3.00 loaded.
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Jan 02 23:22:36 arch_1 kernel: hub 1-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 1-0:1.0: 6 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :16
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff20
    Jan 02 23:22:36 arch_1 kernel: hub 2-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 2-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 3
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: irq 17, io base 0x0000ff00
    Jan 02 23:22:36 arch_1 kernel: hub 3-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 3-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: version 3.0
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x2f impl SATA mode
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: scsi0 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi1 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi2 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi3 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi4 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi5 : ahci
    Jan 02 23:22:36 arch_1 kernel: ata1: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970100 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata2: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970180 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata3: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970200 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata4: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970280 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata5: DUMMY
    Jan 02 23:22:36 arch_1 kernel: ata6: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970380 irq 58
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: pata_acpi 0000:00:03.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :22
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 4
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: irq 22, io base 0x0000fc00
    Jan 02 23:22:36 arch_1 kernel: hub 4-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 4-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :23
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000ff80
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: irq 17, io base 0x0000ff60
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :23
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: debug port 1
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xff980000
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jan 02 23:22:36 arch_1 kernel: hub 8-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 8-0:1.0: 6 ports detected
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: ata_generic 0000:00:03.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: scsi6 : ata_generic
    Jan 02 23:22:36 arch_1 kernel: scsi7 : ata_generic
    Jan 02 23:22:36 arch_1 kernel: ata7: PATA max UDMA/100 cmd 0xfe80 ctl 0xfe90 bmdma 0xfef0 irq 18
    Jan 02 23:22:36 arch_1 kernel: ata8: PATA max UDMA/100 cmd 0xfea0 ctl 0xfeb0 bmdma 0xfef8 irq 18
    Jan 02 23:22:36 arch_1 kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata2.00: ATAPI: PIONEER DVD-RW DVR-217D, 1.07, max UDMA/66
    Jan 02 23:22:36 arch_1 kernel: ata3.00: ATA-8: WDC WD15EARX-00ZUDB0, 80.00A80, max UDMA/133
    Jan 02 23:22:36 arch_1 kernel: ata3.00: 2930277168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    Jan 02 23:22:36 arch_1 kernel: ata1.00: ATA-6: WDC WD360GD-00FNA0, 34.06J34, max UDMA/133
    Jan 02 23:22:36 arch_1 kernel: ata1.00: 72303840 sectors, multi 0: LBA48
    Jan 02 23:22:36 arch_1 kernel: ata1.00: applying bridge limits
    Jan 02 23:22:36 arch_1 kernel: ata2.00: configured for UDMA/66
    Jan 02 23:22:36 arch_1 kernel: ata3.00: configured for UDMA/133
    Jan 02 23:22:36 arch_1 kernel: ata1.00: configured for UDMA/100
    Jan 02 23:22:36 arch_1 kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD360GD-00FN 34.0 PQ: 0 ANSI: 5
    Jan 02 23:22:36 arch_1 kernel: scsi 1:0:0:0: CD-ROM PIONEER DVD-RW DVR-217D 1.07 PQ: 0 ANSI: 5
    Jan 02 23:22:36 arch_1 kernel: scsi 2:0:0:0: Direct-Access ATA WDC WD15EARX-00Z 80.0 PQ: 0 ANSI: 5
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] 72303840 512-byte logical blocks: (37.0 GB/34.4 GiB)
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] 4096-byte physical blocks
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Write Protect is off
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DP
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DP
    Jan 02 23:22:36 arch_1 kernel: sda: sda1 sda2
    Jan 02 23:22:36 arch_1 kernel: sdb: sdb1
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
    Jan 02 23:22:36 arch_1 kernel: sr0: scsi3-mmc drive: 16x/16x writer cd/rw xa/form2 cdda tray
    Jan 02 23:22:36 arch_1 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 02 23:22:36 arch_1 kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 02 23:22:36 arch_1 kernel: usb 3-2: new full-speed USB device number 2 using uhci_hcd
    Jan 02 23:22:36 arch_1 kernel: end_request: I/O error, dev fd0, sector 0
    Jan 02 23:22:36 arch_1 kernel: end_request: I/O error, dev fd0, sector 0
    Jan 02 23:22:36 arch_1 kernel: hub 3-2:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 3-2:1.0: 3 ports detected
    Jan 02 23:22:36 arch_1 kernel: device-mapper: uevent: version 1.0.3
    Jan 02 23:22:36 arch_1 kernel: device-mapper: ioctl: 4.26.0-ioctl (2013-08-15) initialised: [email protected]
    Jan 02 23:22:36 arch_1 kernel: bio: create slab <bio-1> at 1
    Jan 02 23:22:36 arch_1 kernel: usb 3-2.2: new full-speed USB device number 3 using uhci_hcd
    Jan 02 23:22:36 arch_1 kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new interface driver usbhid
    Jan 02 23:22:36 arch_1 kernel: usbhid: USB HID core driver
    Jan 02 23:22:36 arch_1 kernel: input: Logitech Logitech BT Mini-Receiver as /devices/pci0000:00/0000:00:1a.1/u
    Jan 02 23:22:36 arch_1 kernel: hid-generic 0003:046D:C713.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitec
    Jan 02 23:22:36 arch_1 kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
    Jan 02 23:22:36 arch_1 kernel: usb 3-2.3: new full-speed USB device number 4 using uhci_hcd
    Jan 02 23:22:36 arch_1 systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SY
    Jan 02 23:22:36 arch_1 systemd[1]: Detected virtualization 'xen'.
    Jan 02 23:22:36 arch_1 systemd[1]: Set hostname to <arch_1>.
    Jan 02 23:22:36 arch_1 systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit
    Jan 02 23:22:36 arch_1 systemd[1]: Expecting device dev-hvc0.device...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Remote File Systems.
    Jan 02 23:22:36 arch_1 systemd[1]: Reached target Remote File Systems.
    Jan 02 23:22:36 arch_1 systemd[1]: Expecting device sys-subsystem-net-devices-enp0s25.device...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting LVM2 metadata daemon socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on LVM2 metadata daemon socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Delayed Shutdown Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Paths.
    Jan 02 23:22:36 arch_1 systemd[1]: Reached target Paths.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Journal Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on Journal Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Setup Virtual Console...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Load Kernel Modules...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Journal Service...
    Jan 02 23:22:36 arch_1 systemd[1]: Started Journal Service.
    Jan 02 23:22:36 arch_1 systemd-journal[129]: Journal started
    Jan 02 23:22:36 arch_1 systemd[1]: Starting udev Kernel Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on udev Kernel Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting udev Control Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on udev Control Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting udev Coldplug all Devices...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 02 23:22:36 arch_1 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Po
    Jan 02 23:22:36 arch_1 systemd[1]: Started Set Up Additional Binary Formats.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Create list of required static device nodes for the current kernel
    Jan 02 23:22:36 arch_1 systemd[1]: Mounting Huge Pages File System...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Encrypted Volumes.
    Jan 02 23:22:36 arch_1 systemd[1]: Reached target Encrypted Volumes.
    Jan 02 23:22:36 arch_1 systemd[1]: Mounting Debug File System...
    Jan 02 23:22:36 arch_1 systemd[1]: Mounting POSIX Message Queue File System...
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Apply Kernel Variables...
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Swap.
    Jan 02 23:22:37 arch_1 systemd[1]: Reached target Swap.
    Jan 02 23:22:37 arch_1 systemd[1]: Started File System Check on Root Device.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 02 23:22:37 arch_1 systemd[1]: Expecting device dev-disk-by\x2duuid-1f355bf1\x2d1469\x2d4722\x2d8f65\x2d01
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Root Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice Root Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting User and Session Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice User and Session Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting System Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice System Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting system-netctl.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice system-netctl.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting system-getty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice system-getty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting system-serial\x2dgetty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice system-serial\x2dgetty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Slices.
    Jan 02 23:22:37 arch_1 systemd[1]: Reached target Slices.
    Jan 02 23:22:37 arch_1 systemd[1]: Started udev Coldplug all Devices.
    Jan 02 23:22:37 arch_1 kernel: FS-Cache: Loaded
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered named UNIX socket transport module.
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered udp transport module.
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered tcp transport module.
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'nfs'
    Jan 02 23:22:37 arch_1 kernel: FS-Cache: Netfs 'nfs' registered for caching
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_evtchn'
    Jan 02 23:22:37 arch_1 kernel: xen:xen_evtchn: Event-channel device installed
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_gntdev'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_gntalloc'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_blkback'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_netback'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_pciback'
    Jan 02 23:22:37 arch_1 kernel: xen_pciback: backend is vpci
    Jan 02 23:22:37 arch_1 kernel: ACPI: Requesting acpi_cpufreq
    Jan 02 23:22:37 arch_1 kernel: Monitor-Mwait will be used to enter C-1 state
    Jan 02 23:22:37 arch_1 kernel: Warning: Processor Platform Limit not supported.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Apply Kernel Variables.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Setup Virtual Console.
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted Huge Pages File System.
    Jan 02 23:22:37 arch_1 kernel: xen_acpi_processor: Uploading Xen processor PM info
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted Debug File System.
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_acpi_processor'
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted POSIX Message Queue File System.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Load Kernel Modules.
    Jan 02 23:22:37 arch_1 systemd[1]: Mounting Configuration File System...
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted FUSE Control File System.
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted Configuration File System.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Create list of required static device nodes for the current kernel.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Create static device nodes in /dev...
    Jan 02 23:22:37 arch_1 systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Load/Save Random Seed...
    Jan 02 23:22:37 arch_1 kernel: EXT4-fs (dm-0): re-mounted. Opts: data=ordered
    Jan 02 23:22:37 arch_1 systemd[1]: Started Load/Save Random Seed.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Create static device nodes in /dev.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting udev Kernel Device Manager...
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Local File Systems (Pre).
    Jan 02 23:22:37 arch_1 systemd[1]: Reached target Local File Systems (Pre).
    Jan 02 23:22:37 arch_1 systemd[1]: Mounting /tmp...
    Jan 02 23:22:37 arch_1 systemd[1]: Mountin

    I have the same problem on Fedora Core 20 with xen 4.3.1 32bit Sempron3200+ with turned off HPET tables on South bridge and these boot options
    xen: noreboot nosmp console_to_ring console=vga vga=text-80x50
    linux: pci=noacpi pci=nommconf
    Image on Yandex disk
    When I solve it I notify you.
    Last edited by maskimko (2014-01-16 08:12:35)

  • [SOLVED] Random crashes when playing videos on Atom J1900 / Intel HD

    Hi,
    Following my first thread (which has been gladly solved, finally), I'm still getting stuck on the "crashes when playing videos" thing.
    FIY here are the specs, copied from my original thread:
    I've just bought a Gigabyte Brix to be used as an HTPC. The exact model is GB-BXBT-1900.
    I've installed 4 GB of 1.35V RAM (Corsair CT51264BF160B), which is supported by this model, and a Kingston SSD (V300 60GB).
    Then of course, I've installed Arch x64 with a base system and Xorg with DE (Xfce).
    It can happen after 2 or 50 minutes (it rarely goes beyond this limit), mainly when using VLC, but I could reproduce the same behavior with SMPlayer or even Kodi: the display freezes and I can no longer move the cursor, use the keyboard (to change TTY for example) or access the machine remotely. I'm forced to press the power button for 5 seconds and boot again.
    No sign of any warning in the logs, no high temperature on any sensor, nothing that could help me find what to blame. The wired keyboard attached does not show blinking LEDs so I'm assuming it's not a kernel panic.
    The thing is, those crashes happen *only* when playing videos. Otherwise the machine is extremely stable and can stay up and running for days or weeks without a crash. But if you play a video on it, be prepared to reboot within the next half-hour.
    So I'm assuming this has something to do with the display driver, or its configuration. I did not change anything to the default one, just added "intel_pstate=disabled" to the boot command line as advised in another thread, but it didn't help.
    And now some fresh system informations you might need:
    [root@ghanima ~]# lspci
    00:00.0 Host bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC Transaction Register (rev 0e)
    00:02.0 VGA compatible controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display (rev 0e)
    00:13.0 SATA controller: Intel Corporation Device 0f23 (rev 0e)
    00:14.0 USB controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series USB xHCI (rev 0e)
    00:1a.0 Encryption controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Trusted Execution Engine (rev 0e)
    00:1b.0 Audio device: Intel Corporation Atom Processor Z36xxx/Z37xxx Series High Definition Audio Controller (rev 0e)
    00:1c.0 PCI bridge: Intel Corporation Device 0f48 (rev 0e)
    00:1c.1 PCI bridge: Intel Corporation Device 0f4a (rev 0e)
    00:1c.2 PCI bridge: Intel Corporation Device 0f4c (rev 0e)
    00:1c.3 PCI bridge: Intel Corporation Device 0f4e (rev 0e)
    00:1f.0 ISA bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Power Control Unit (rev 0e)
    00:1f.3 SMBus: Intel Corporation Device 0f12 (rev 0e)
    02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter
    03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0c)
    Below is the full log of a session that ended in such crash after approximately 30 minutes, while playing a video with VLC:
    -- Logs begin at lun. 2015-02-23 07:20:05 CET, end at lun. 2015-04-06 20:11:28 CEST. --
    avril 06 18:38:54 ghanima systemd-journal[146]: Runtime journal is using 8.0M (max allowed 192.5M, trying to leave 288.8M free of 1.8G available → current limit 192.5M).
    avril 06 18:38:54 ghanima systemd-journal[146]: Permanent journal is using 120.0M (max allowed 100.0M, trying to leave 3.6G free of 9.1G available → current limit 120.0M).
    avril 06 18:38:54 ghanima systemd-journal[146]: Time spent on flushing to /var is 1.590ms for 2 entries.
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys cpuset
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys cpu
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys cpuacct
    avril 06 18:38:54 ghanima kernel: Linux version 3.19.2-1-ARCH (builduser@tobias) (gcc version 4.9.2 20150304 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015
    avril 06 18:38:54 ghanima kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=948e1d0b-179a-4c18-9765-803bc8264277 rw intel_pstate=disable
    avril 06 18:38:54 ghanima kernel: e820: BIOS-provided physical RAM map:
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000008d7ff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x000000000008d800-0x000000000009ffff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001effffff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x000000001f000000-0x000000001f0fffff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x000000001f100000-0x000000001fffffff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x0000000020100000-0x00000000b966afff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b966b000-0x00000000b969afff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b969b000-0x00000000b96aafff] ACPI data
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b96ab000-0x00000000b97effff] ACPI NVS
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b97f0000-0x00000000b9b9cfff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b9b9d000-0x00000000b9b9dfff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b9b9e000-0x00000000b9bdffff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b9be0000-0x00000000b9d4efff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b9d4f000-0x00000000b9ff9fff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000b9ffa000-0x00000000b9ffffff] usable
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
    avril 06 18:38:54 ghanima kernel: BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
    avril 06 18:38:54 ghanima kernel: NX (Execute Disable) protection: active
    avril 06 18:38:54 ghanima kernel: SMBIOS 2.8 present.
    avril 06 18:38:54 ghanima kernel: DMI: GIGABYTE GB-BXBT-1900/MZBAYAB-00, BIOS F3 07/15/2014
    avril 06 18:38:54 ghanima kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    avril 06 18:38:54 ghanima kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    avril 06 18:38:54 ghanima kernel: AGP: No AGP bridge found
    avril 06 18:38:54 ghanima kernel: e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
    avril 06 18:38:54 ghanima kernel: MTRR default type: uncachable
    avril 06 18:38:54 ghanima kernel: MTRR fixed ranges enabled:
    avril 06 18:38:54 ghanima kernel: 00000-9FFFF write-back
    avril 06 18:38:54 ghanima kernel: A0000-BFFFF uncachable
    avril 06 18:38:54 ghanima kernel: C0000-E7FFF write-through
    avril 06 18:38:54 ghanima kernel: E8000-FFFFF write-protect
    avril 06 18:38:54 ghanima kernel: MTRR variable ranges enabled:
    avril 06 18:38:54 ghanima kernel: 0 base 000000000 mask F00000000 write-back
    avril 06 18:38:54 ghanima kernel: 1 base 100000000 mask FC0000000 write-back
    avril 06 18:38:54 ghanima kernel: 2 base 0BA800000 mask FFF800000 uncachable
    avril 06 18:38:54 ghanima kernel: 3 base 0BB000000 mask FFF000000 uncachable
    avril 06 18:38:54 ghanima kernel: 4 base 0BC000000 mask FFC000000 uncachable
    avril 06 18:38:54 ghanima kernel: 5 base 0C0000000 mask FC0000000 uncachable
    avril 06 18:38:54 ghanima kernel: 6 disabled
    avril 06 18:38:54 ghanima kernel: 7 disabled
    avril 06 18:38:54 ghanima kernel: PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    avril 06 18:38:54 ghanima kernel: e820: update [mem 0xba800000-0xffffffff] usable ==> reserved
    avril 06 18:38:54 ghanima kernel: e820: last_pfn = 0xba000 max_arch_pfn = 0x400000000
    avril 06 18:38:54 ghanima kernel: found SMP MP-table at [mem 0x000fd6a0-0x000fd6af] mapped at [ffff8800000fd6a0]
    avril 06 18:38:54 ghanima kernel: Scanning 1 areas for low memory corruption
    avril 06 18:38:54 ghanima kernel: Base memory trampoline at [ffff880000087000] 87000 size 24576
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    avril 06 18:38:54 ghanima kernel: [mem 0x00000000-0x000fffff] page 4k
    avril 06 18:38:54 ghanima kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    avril 06 18:38:54 ghanima kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    avril 06 18:38:54 ghanima kernel: BRK [0x01b34000, 0x01b34fff] PGTABLE
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x13fe00000-0x13fffffff]
    avril 06 18:38:54 ghanima kernel: [mem 0x13fe00000-0x13fffffff] page 2M
    avril 06 18:38:54 ghanima kernel: BRK [0x01b35000, 0x01b35fff] PGTABLE
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x120000000-0x13fdfffff]
    avril 06 18:38:54 ghanima kernel: [mem 0x120000000-0x13fdfffff] page 2M
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x00100000-0x1effffff]
    avril 06 18:38:54 ghanima kernel: [mem 0x00100000-0x001fffff] page 4k
    avril 06 18:38:54 ghanima kernel: [mem 0x00200000-0x1effffff] page 2M
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x1f100000-0x1fffffff]
    avril 06 18:38:54 ghanima kernel: [mem 0x1f100000-0x1f1fffff] page 4k
    avril 06 18:38:54 ghanima kernel: [mem 0x1f200000-0x1fffffff] page 2M
    avril 06 18:38:54 ghanima kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x20100000-0xb966afff]
    avril 06 18:38:54 ghanima kernel: [mem 0x20100000-0x201fffff] page 4k
    avril 06 18:38:54 ghanima kernel: [mem 0x20200000-0xb95fffff] page 2M
    avril 06 18:38:54 ghanima kernel: [mem 0xb9600000-0xb966afff] page 4k
    avril 06 18:38:54 ghanima kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0xb9b9d000-0xb9b9dfff]
    avril 06 18:38:54 ghanima kernel: [mem 0xb9b9d000-0xb9b9dfff] page 4k
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0xb9be0000-0xb9d4efff]
    avril 06 18:38:54 ghanima kernel: [mem 0xb9be0000-0xb9d4efff] page 4k
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0xb9ffa000-0xb9ffffff]
    avril 06 18:38:54 ghanima kernel: [mem 0xb9ffa000-0xb9ffffff] page 4k
    avril 06 18:38:54 ghanima kernel: init_memory_mapping: [mem 0x100000000-0x11fffffff]
    avril 06 18:38:54 ghanima kernel: [mem 0x100000000-0x11fffffff] page 2M
    avril 06 18:38:54 ghanima kernel: RAMDISK: [mem 0x3799a000-0x37cc4fff]
    avril 06 18:38:54 ghanima kernel: ACPI: Early table checksum verification disabled
    avril 06 18:38:54 ghanima kernel: ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
    avril 06 18:38:54 ghanima kernel: ACPI: XSDT 0x00000000B96A2078 000074 (v01 ALASKA A M I 01072009 AMI 00010013)
    avril 06 18:38:54 ghanima kernel: ACPI: FACP 0x00000000B96A98B0 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    avril 06 18:38:54 ghanima kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/32 (20141107/tbfadt-618)
    avril 06 18:38:54 ghanima kernel: ACPI: DSDT 0x00000000B96A2180 00772E (v02 ALASKA A M I 01072009 INTL 20120913)
    avril 06 18:38:54 ghanima kernel: ACPI: FACS 0x00000000B97EFF80 000040
    avril 06 18:38:54 ghanima kernel: ACPI: APIC 0x00000000B96A99C0 000084 (v03 ALASKA A M I 01072009 AMI 00010013)
    avril 06 18:38:54 ghanima kernel: ACPI: FPDT 0x00000000B96A9A48 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    avril 06 18:38:54 ghanima kernel: ACPI: MCFG 0x00000000B96A9A90 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    avril 06 18:38:54 ghanima kernel: ACPI: LPIT 0x00000000B96A9AD0 000104 (v01 ALASKA A M I 00000003 VLV2 0100000D)
    avril 06 18:38:54 ghanima kernel: ACPI: HPET 0x00000000B96A9BD8 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0x00000000B96A9C10 000763 (v01 PmRef CpuPm 00003000 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0x00000000B96AA378 000290 (v01 PmRef Cpu0Tst 00003000 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0x00000000B96AA608 00017A (v01 PmRef ApTst 00003000 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: UEFI 0x00000000B96AA788 000042 (v01 ALASKA A M I 00000000 00000000)
    avril 06 18:38:54 ghanima kernel: ACPI: Local APIC address 0xfee00000
    avril 06 18:38:54 ghanima kernel: No NUMA configuration found
    avril 06 18:38:54 ghanima kernel: Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
    avril 06 18:38:54 ghanima kernel: NODE_DATA(0) allocated [mem 0x13fff6000-0x13fff9fff]
    avril 06 18:38:54 ghanima kernel: [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013b600000-ffff88013f5fffff] on node 0
    avril 06 18:38:54 ghanima kernel: Zone ranges:
    avril 06 18:38:54 ghanima kernel: DMA [mem 0x00001000-0x00ffffff]
    avril 06 18:38:54 ghanima kernel: DMA32 [mem 0x01000000-0xffffffff]
    avril 06 18:38:54 ghanima kernel: Normal [mem 0x100000000-0x13fffffff]
    avril 06 18:38:54 ghanima kernel: Movable zone start for each node
    avril 06 18:38:54 ghanima kernel: Early memory node ranges
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0x00001000-0x0008cfff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0x00100000-0x1effffff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0x1f100000-0x1fffffff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0x20100000-0xb966afff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0xb9b9d000-0xb9b9dfff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0xb9be0000-0xb9d4efff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0xb9ffa000-0xb9ffffff]
    avril 06 18:38:54 ghanima kernel: node 0: [mem 0x100000000-0x13fffffff]
    avril 06 18:38:54 ghanima kernel: Initmem setup node 0 [mem 0x00001000-0x13fffffff]
    avril 06 18:38:54 ghanima kernel: On node 0 totalpages: 1021293
    avril 06 18:38:54 ghanima kernel: DMA zone: 64 pages used for memmap
    avril 06 18:38:54 ghanima kernel: DMA zone: 21 pages reserved
    avril 06 18:38:54 ghanima kernel: DMA zone: 3980 pages, LIFO batch:0
    avril 06 18:38:54 ghanima kernel: DMA32 zone: 11800 pages used for memmap
    avril 06 18:38:54 ghanima kernel: DMA32 zone: 755169 pages, LIFO batch:31
    avril 06 18:38:54 ghanima kernel: Normal zone: 4096 pages used for memmap
    avril 06 18:38:54 ghanima kernel: Normal zone: 262144 pages, LIFO batch:31
    avril 06 18:38:54 ghanima kernel: x86/hpet: Will disable the HPET for this platform because it's not reliable
    avril 06 18:38:54 ghanima kernel: Reserving Intel graphics stolen memory at 0xbb000000-0xbeffffff
    avril 06 18:38:54 ghanima kernel: ACPI: PM-Timer IO Port: 0x408
    avril 06 18:38:54 ghanima kernel: ACPI: Local APIC address 0xfee00000
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    avril 06 18:38:54 ghanima kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    avril 06 18:38:54 ghanima kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    avril 06 18:38:54 ghanima kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-86
    avril 06 18:38:54 ghanima kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    avril 06 18:38:54 ghanima kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    avril 06 18:38:54 ghanima kernel: ACPI: IRQ0 used by override.
    avril 06 18:38:54 ghanima kernel: ACPI: IRQ9 used by override.
    avril 06 18:38:54 ghanima kernel: Using ACPI (MADT) for SMP configuration information
    avril 06 18:38:54 ghanima kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    avril 06 18:38:54 ghanima kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x0008d000-0x0008dfff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x0008e000-0x0009ffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x1f000000-0x1f0fffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xb966b000-0xb969afff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xb969b000-0xb96aafff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xb96ab000-0xb97effff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xb97f0000-0xb9b9cfff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xb9b9e000-0xb9bdffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xb9d4f000-0xb9ff9fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xba000000-0xbaffffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xbb000000-0xbeffffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xbf000000-0xe00f7fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xfed02000-0xfed07fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xfed09000-0xffafffff]
    avril 06 18:38:54 ghanima kernel: PM: Registered nosave memory: [mem 0xffb00000-0xffffffff]
    avril 06 18:38:54 ghanima kernel: e820: [mem 0xbf000000-0xe00f7fff] available for PCI devices
    avril 06 18:38:54 ghanima kernel: Booting paravirtualized kernel on bare hardware
    avril 06 18:38:54 ghanima kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    avril 06 18:38:54 ghanima kernel: PERCPU: Embedded 31 pages/cpu @ffff88013fc00000 s86336 r8192 d32448 u524288
    avril 06 18:38:54 ghanima kernel: pcpu-alloc: s86336 r8192 d32448 u524288 alloc=1*2097152
    avril 06 18:38:54 ghanima kernel: pcpu-alloc: [0] 0 1 2 3
    avril 06 18:38:54 ghanima kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1005312
    avril 06 18:38:54 ghanima kernel: Policy zone: Normal
    avril 06 18:38:54 ghanima kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=948e1d0b-179a-4c18-9765-803bc8264277 rw intel_pstate=disable
    avril 06 18:38:54 ghanima kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    avril 06 18:38:54 ghanima kernel: AGP: Checking aperture...
    avril 06 18:38:54 ghanima kernel: AGP: No AGP bridge found
    avril 06 18:38:54 ghanima kernel: Calgary: detecting Calgary via BIOS EBDA area
    avril 06 18:38:54 ghanima kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    avril 06 18:38:54 ghanima kernel: Memory: 3937980K/4085172K available (5533K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 147192K reserved, 0K cma-reserved)
    avril 06 18:38:54 ghanima kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    avril 06 18:38:54 ghanima kernel: Preemptible hierarchical RCU implementation.
    avril 06 18:38:54 ghanima kernel: RCU dyntick-idle grace-period acceleration is enabled.
    avril 06 18:38:54 ghanima kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    avril 06 18:38:54 ghanima kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    avril 06 18:38:54 ghanima kernel: NR_IRQS:8448 nr_irqs:1024 16
    avril 06 18:38:54 ghanima kernel: spurious 8259A interrupt: IRQ7.
    avril 06 18:38:54 ghanima kernel: Console: colour dummy device 80x25
    avril 06 18:38:54 ghanima kernel: console [tty0] enabled
    avril 06 18:38:54 ghanima kernel: Maximum core-clock to bus-clock ratio: 0x18
    avril 06 18:38:54 ghanima kernel: Resolved frequency ID: 0, frequency: 83200 KHz
    avril 06 18:38:54 ghanima kernel: TSC runs at 1996800 KHz
    avril 06 18:38:54 ghanima kernel: lapic_timer_frequency = 277333
    avril 06 18:38:54 ghanima kernel: tsc: Detected 1996.800 MHz processor
    avril 06 18:38:54 ghanima kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3995.00 BogoMIPS (lpj=6656000)
    avril 06 18:38:54 ghanima kernel: pid_max: default: 32768 minimum: 301
    avril 06 18:38:54 ghanima kernel: ACPI: Core revision 20141107
    avril 06 18:38:54 ghanima kernel: ACPI: All ACPI Tables successfully acquired
    avril 06 18:38:54 ghanima kernel: Security Framework initialized
    avril 06 18:38:54 ghanima kernel: Yama: becoming mindful.
    avril 06 18:38:54 ghanima kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    avril 06 18:38:54 ghanima kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    avril 06 18:38:54 ghanima kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    avril 06 18:38:54 ghanima kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys memory
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys devices
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys freezer
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys net_cls
    avril 06 18:38:54 ghanima kernel: Initializing cgroup subsys blkio
    avril 06 18:38:54 ghanima kernel: CPU: Physical Processor ID: 0
    avril 06 18:38:54 ghanima kernel: CPU: Processor Core ID: 0
    avril 06 18:38:54 ghanima kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    avril 06 18:38:54 ghanima kernel: mce: CPU supports 6 MCE banks
    avril 06 18:38:54 ghanima kernel: CPU0: Thermal monitoring enabled (TM1)
    avril 06 18:38:54 ghanima kernel: Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
    avril 06 18:38:54 ghanima kernel: Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    avril 06 18:38:54 ghanima kernel: ftrace: allocating 21170 entries in 83 pages
    avril 06 18:38:54 ghanima kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    avril 06 18:38:54 ghanima kernel: smpboot: CPU0: Intel(R) Celeron(R) CPU J1900 @ 1.99GHz (fam: 06, model: 37, stepping: 08)
    avril 06 18:38:54 ghanima kernel: TSC deadline timer enabled
    avril 06 18:38:54 ghanima kernel: Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
    avril 06 18:38:54 ghanima kernel: ... version: 3
    avril 06 18:38:54 ghanima kernel: ... bit width: 40
    avril 06 18:38:54 ghanima kernel: ... generic registers: 2
    avril 06 18:38:54 ghanima kernel: ... value mask: 000000ffffffffff
    avril 06 18:38:54 ghanima kernel: ... max period: 000000ffffffffff
    avril 06 18:38:54 ghanima kernel: ... fixed-purpose events: 3
    avril 06 18:38:54 ghanima kernel: ... event mask: 0000000700000003
    avril 06 18:38:54 ghanima kernel: x86: Booting SMP configuration:
    avril 06 18:38:54 ghanima kernel: .... node #0, CPUs: #1
    avril 06 18:38:54 ghanima kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    avril 06 18:38:54 ghanima kernel: #2 #3
    avril 06 18:38:54 ghanima kernel: x86: Booted up 1 node, 4 CPUs
    avril 06 18:38:54 ghanima kernel: smpboot: Total of 4 processors activated (15980.00 BogoMIPS)
    avril 06 18:38:54 ghanima kernel: devtmpfs: initialized
    avril 06 18:38:54 ghanima kernel: PM: Registering ACPI NVS region [mem 0xb96ab000-0xb97effff] (1331200 bytes)
    avril 06 18:38:54 ghanima kernel: pinctrl core: initialized pinctrl subsystem
    avril 06 18:38:54 ghanima kernel: RTC time: 16:38:52, date: 04/06/15
    avril 06 18:38:54 ghanima kernel: NET: Registered protocol family 16
    avril 06 18:38:54 ghanima kernel: cpuidle: using governor ladder
    avril 06 18:38:54 ghanima kernel: cpuidle: using governor menu
    avril 06 18:38:54 ghanima kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    avril 06 18:38:54 ghanima kernel: ACPI: bus type PCI registered
    avril 06 18:38:54 ghanima kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    avril 06 18:38:54 ghanima kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    avril 06 18:38:54 ghanima kernel: PCI: not using MMCONFIG
    avril 06 18:38:54 ghanima kernel: PCI: Using configuration type 1 for base access
    avril 06 18:38:54 ghanima kernel: ACPI: Added _OSI(Module Device)
    avril 06 18:38:54 ghanima kernel: ACPI: Added _OSI(Processor Device)
    avril 06 18:38:54 ghanima kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    avril 06 18:38:54 ghanima kernel: ACPI: Added _OSI(Processor Aggregator Device)
    avril 06 18:38:54 ghanima kernel: ACPI: Dynamic OEM Table Load:
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0xFFFF88013A5D3C00 0003BC (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: Dynamic OEM Table Load:
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0xFFFF88013A5DA800 000433 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: Dynamic OEM Table Load:
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0xFFFF88013A5D6200 00015F (v01 PmRef ApIst 00003000 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: Dynamic OEM Table Load:
    avril 06 18:38:54 ghanima kernel: ACPI: SSDT 0xFFFF88013A5C1600 00008D (v01 PmRef ApCst 00003000 INTL 20061109)
    avril 06 18:38:54 ghanima kernel: ACPI: Interpreter enabled
    avril 06 18:38:54 ghanima kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    avril 06 18:38:54 ghanima kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    avril 06 18:38:54 ghanima kernel: ACPI: (supports S0 S3 S4 S5)
    avril 06 18:38:54 ghanima kernel: ACPI: Using IOAPIC for interrupt routing
    avril 06 18:38:54 ghanima kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    avril 06 18:38:54 ghanima kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    avril 06 18:38:54 ghanima kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    avril 06 18:38:54 ghanima kernel: ACPI: Power Resource [USBC] (on)
    avril 06 18:38:54 ghanima kernel: ACPI: Power Resource [PLPE] (on)
    avril 06 18:38:54 ghanima kernel: ACPI: Power Resource [PLPE] (on)
    avril 06 18:38:54 ghanima kernel: ACPI: Power Resource [FN00] (off)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    avril 06 18:38:54 ghanima kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    avril 06 18:38:54 ghanima kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    avril 06 18:38:54 ghanima kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    avril 06 18:38:54 ghanima kernel: PCI host bridge to bus 0000:00
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x006f]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd0815fff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:02.0: reg 0x20: [io 0xf080-0xf087]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: [8086:0f23] type 00 class 0x010601
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: reg 0x10: [io 0xf070-0xf077]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: reg 0x14: [io 0xf060-0xf063]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: reg 0x18: [io 0xf050-0xf057]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: reg 0x1c: [io 0xf040-0xf043]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: reg 0x20: [io 0xf020-0xf03f]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: reg 0x24: [mem 0xd0815000-0xd08157ff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:13.0: PME# supported from D3hot
    avril 06 18:38:54 ghanima kernel: pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
    avril 06 18:38:54 ghanima kernel: pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xd0500000-0xd05fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1a.0: reg 0x14: [mem 0xd0400000-0xd04fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xd0810000-0xd0813fff 64bit]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: [8086:0f4a] type 01 class 0x060400
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: [8086:0f4e] type 01 class 0x060400
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xd0814000-0xd081401f]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    avril 06 18:38:54 ghanima kernel: pci 0000:02:00.0: [10ec:b723] type 00 class 0x028000
    avril 06 18:38:54 ghanima kernel: pci 0000:02:00.0: reg 0x10: [io 0xe000-0xe0ff]
    avril 06 18:38:54 ghanima kernel: pci 0000:02:00.0: reg 0x18: [mem 0xd0700000-0xd0703fff 64bit]
    avril 06 18:38:54 ghanima kernel: pci 0000:02:00.0: supports D1 D2
    avril 06 18:38:54 ghanima kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: bridge window [mem 0xd0700000-0xd07fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: reg 0x10: [io 0xd000-0xd0ff]
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: reg 0x18: [mem 0xd0604000-0xd0604fff 64bit]
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: reg 0x20: [mem 0xd0600000-0xd0603fff 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: supports D1 D2
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    avril 06 18:38:54 ghanima kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: bridge window [mem 0xd0600000-0xd06fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
    avril 06 18:38:54 ghanima kernel: acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 10 11 12 14 15)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 10 11 12 14 15)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 10 11 12 14 15)
    avril 06 18:38:54 ghanima kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    avril 06 18:38:54 ghanima kernel: ACPI: Enabled 5 GPEs in block 00 to 3F
    avril 06 18:38:54 ghanima kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
    avril 06 18:38:54 ghanima kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    avril 06 18:38:54 ghanima kernel: vgaarb: loaded
    avril 06 18:38:54 ghanima kernel: vgaarb: bridge control possible 0000:00:02.0
    avril 06 18:38:54 ghanima kernel: PCI: Using ACPI for IRQ routing
    avril 06 18:38:54 ghanima kernel: PCI: pci_cache_line_size set to 64 bytes
    avril 06 18:38:54 ghanima kernel: e820: reserve RAM buffer [mem 0x0008d800-0x0008ffff]
    avril 06 18:38:54 ghanima kernel: e820: reserve RAM buffer [mem 0x1f000000-0x1fffffff]
    avril 06 18:38:54 ghanima kernel: e820: reserve RAM buffer [mem 0xb966b000-0xbbffffff]
    avril 06 18:38:54 ghanima kernel: e820: reserve RAM buffer [mem 0xb9b9e000-0xbbffffff]
    avril 06 18:38:54 ghanima kernel: e820: reserve RAM buffer [mem 0xb9d4f000-0xbbffffff]
    avril 06 18:38:54 ghanima kernel: e820: reserve RAM buffer [mem 0xba000000-0xbbffffff]
    avril 06 18:38:54 ghanima kernel: NetLabel: Initializing
    avril 06 18:38:54 ghanima kernel: NetLabel: domain hash size = 128
    avril 06 18:38:54 ghanima kernel: NetLabel: protocols = UNLABELED CIPSOv4
    avril 06 18:38:54 ghanima kernel: NetLabel: unlabeled traffic allowed by default
    avril 06 18:38:54 ghanima kernel: Switched to clocksource refined-jiffies
    avril 06 18:38:54 ghanima kernel: pnp: PnP ACPI init
    avril 06 18:38:54 ghanima kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
    avril 06 18:38:54 ghanima kernel: system 00:01: [io 0x0680-0x069f] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:01: [io 0x0400-0x047f] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:01: [io 0x0500-0x05fe] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:01: [io 0x0600-0x061f] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    avril 06 18:38:54 ghanima kernel: system 00:02: [io 0x0a00-0x0a2f] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:02: [io 0x0a30-0x0a3f] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:02: [io 0x0a40-0x0a4f] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfed01000-0xfed01fff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfed03000-0xfed03fff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfed04000-0xfed04fff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfed0c000-0xfed0ffff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfed08000-0xfed08fff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfed1c000-0xfed1cfff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: [mem 0xfef00000-0xfeffffff] has been reserved
    avril 06 18:38:54 ghanima kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    avril 06 18:38:54 ghanima kernel: pnp: PnP ACPI: found 4 devices
    avril 06 18:38:54 ghanima kernel: Switched to clocksource acpi_pm
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 14: no space for [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 14: no space for [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 14: failed to assign [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 13: assigned [io 0x2000-0x2fff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 14: no space for [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 14: failed to assign [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 14: no space for [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.1: bridge window [mem 0xd0700000-0xd07fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.2: bridge window [mem 0xd0600000-0xd06fffff]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
    avril 06 18:38:54 ghanima kernel: pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x006f]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 5 [io 0x0078-0x0cf7]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 6 [io 0x0d00-0xffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 8 [mem 0x000c0000-0x000dffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000fffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:00: resource 10 [mem 0xc0000000-0xd0815fff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:02: resource 1 [mem 0xd0700000-0xd07fffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:03: resource 1 [mem 0xd0600000-0xd06fffff]
    avril 06 18:38:54 ghanima kernel: pci_bus 0000:04: resource 0 [io 0x2000-0x2fff]
    avril 06 18:38:54 ghanima kernel: NET: Registered protocol family 2
    avril 06 18:38:54 ghanima kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    avril 06 18:38:54 ghanima kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    avril 06 18:38:54 ghanima kernel: TCP: Hash tables configured (established 32768 bind 32768)
    avril 06 18:38:54 ghanima kernel: TCP: reno registered
    avril 06 18:38:54 ghanima kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    avril 06 18:38:54 ghanima kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    avril 06 18:38:54 ghanima kernel: NET: Registered protocol family 1
    avril 06 18:38:54 ghanima kernel: pci 0000:00:02.0: Video device with shadowed ROM
    avril 06 18:38:54 ghanima kernel: PCI: CLS 64 bytes, default 64
    avril 06 18:38:54 ghanima kernel: Unpacking initramfs...
    avril 06 18:38:54 ghanima kernel: Freeing initrd memory: 3244K (ffff88003799a000 - ffff880037cc5000)
    avril 06 18:38:54 ghanima kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    avril 06 18:38:54 ghanima kernel: software IO TLB [mem 0xb566b000-0xb966b000] (64MB) mapped at [ffff8800b566b000-ffff8800b966afff]
    avril 06 18:38:54 ghanima kernel: microcode: CPU0 sig=0x30678, pf=0x4, revision=0x811
    avril 06 18:38:54 ghanima kernel: microcode: CPU1 sig=0x30678, pf=0x4, revision=0x811
    avril 06 18:38:54 ghanima kernel: microcode: CPU2 sig=0x30678, pf=0x4, revision=0x811
    avril 06 18:38:54 ghanima kernel: microcode: CPU3 sig=0x30678, pf=0x4, revision=0x811
    avril 06 18:38:54 ghanima kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    avril 06 18:38:54 ghanima kernel: Scanning for low memory corruption every 60 seconds
    avril 06 18:38:54 ghanima kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
    avril 06 18:38:54 ghanima kernel: Initialise system trusted keyring
    avril 06 18:38:54 ghanima kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    avril 06 18:38:54 ghanima kernel: zpool: loaded
    avril 06 18:38:54 ghanima kernel: zbud: loaded
    avril 06 18:38:54 ghanima kernel: VFS: Disk quotas dquot_6.5.2
    avril 06 18:38:54 ghanima kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    avril 06 18:38:54 ghanima kernel: Key type big_key registered
    avril 06 18:38:54 ghanima kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    avril 06 18:38:54 ghanima kernel: io scheduler noop registered
    avril 06 18:38:54 ghanima kernel: io scheduler deadline registered
    avril 06 18:38:54 ghanima kernel: io scheduler cfq registered (default)
    avril 06 18:38:54 ghanima kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    avril 06 18:38:54 ghanima kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    avril 06 18:38:54 ghanima kernel: efifb: probing for efifb
    avril 06 18:38:54 ghanima kernel: efifb: framebuffer at 0xa0000, mapped to 0xffff8800000a0000, using 64k, total 64k
    avril 06 18:38:54 ghanima kernel: efifb: mode is 640x480x1, linelength=80, pages=1
    avril 06 18:38:54 ghanima kernel: efifb: scrolling: redraw
    avril 06 18:38:54 ghanima kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    avril 06 18:38:54 ghanima kernel: Console: switching to colour frame buffer device 80x30
    avril 06 18:38:54 ghanima kernel: fb0: EFI VGA frame buffer device
    avril 06 18:38:54 ghanima kernel: intel_idle: MWAIT substates: 0x33000020
    avril 06 18:38:54 ghanima kernel: intel_idle: v0.4 model 0x37
    avril 06 18:38:54 ghanima kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    avril 06 18:38:54 ghanima kernel: GHES: HEST is not enabled!
    avril 06 18:38:54 ghanima kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    avril 06 18:38:54 ghanima kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    avril 06 18:38:54 ghanima kernel: hpet: number irqs doesn't agree with number of timers
    avril 06 18:38:54 ghanima kernel: Linux agpgart interface v0.103
    avril 06 18:38:54 ghanima kernel: rtc_cmos 00:00: RTC can wake from S4
    avril 06 18:38:54 ghanima kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
    avril 06 18:38:54 ghanima kernel: rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
    avril 06 18:38:54 ghanima kernel: ledtrig-cpu: registered to indicate activity on CPUs
    avril 06 18:38:54 ghanima kernel: TCP: cubic registered
    avril 06 18:38:54 ghanima kernel: NET: Registered protocol family 10
    avril 06 18:38:54 ghanima kernel: NET: Registered protocol family 17
    avril 06 18:38:54 ghanima kernel: Loading compiled-in X.509 certificates
    avril 06 18:38:54 ghanima kernel: registered taskstats version 1
    avril 06 18:38:54 ghanima kernel: Magic number: 11:714:640
    avril 06 18:38:54 ghanima kernel: rtc_cmos 00:00: setting system clock to 2015-04-06 16:38:53 UTC (1428338333)
    avril 06 18:38:54 ghanima kernel: PM: Hibernation image not present or could not be loaded.
    avril 06 18:38:54 ghanima kernel: Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    avril 06 18:38:54 ghanima kernel: Write protecting the kernel read-only data: 8192k
    avril 06 18:38:54 ghanima kernel: Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    avril 06 18:38:54 ghanima kernel: Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    avril 06 18:38:54 ghanima kernel: random: systemd-tmpfile urandom read with 1 bits of entropy available
    avril 06 18:38:54 ghanima kernel: ACPI: bus type USB registered
    avril 06 18:38:54 ghanima kernel: usbcore: registered new interface driver usbfs
    avril 06 18:38:54 ghanima kernel: usbcore: registered new interface driver hub
    avril 06 18:38:54 ghanima kernel: usbcore: registered new device driver usb
    avril 06 18:38:54 ghanima kernel: SCSI subsystem initialized
    avril 06 18:38:54 ghanima kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    avril 06 18:38:54 ghanima kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    avril 06 18:38:54 ghanima kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    avril 06 18:38:54 ghanima kernel: hub 1-0:1.0: USB hub found
    avril 06 18:38:54 ghanima kernel: hub 1-0:1.0: 6 ports detected
    avril 06 18:38:54 ghanima kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    avril 06 18:38:54 ghanima kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    avril 06 18:38:54 ghanima kernel: hub 2-0:1.0: USB hub found
    avril 06 18:38:54 ghanima kernel: libata version 3.00 loaded.
    avril 06 18:38:54 ghanima kernel: hub 2-0:1.0: 1 port detected
    avril 06 18:38:54 ghanima kernel: ahci 0000:00:13.0: version 3.0
    avril 06 18:38:54 ghanima kernel: ahci 0000:00:13.0: AHCI 0001.0300 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
    avril 06 18:38:54 ghanima kernel: ahci 0000:00:13.0: flags: 64bit ncq pm led clo pio slum part deso sadm
    avril 06 18:38:54 ghanima kernel: scsi host0: ahci
    avril 06 18:38:54 ghanima kernel: scsi host1: ahci
    avril 06 18:38:54 ghanima kernel: ata1: SATA max UDMA/133 abar m2048@0xd0815000 port 0xd0815100 irq 88
    avril 06 18:38:54 ghanima kernel: ata2: DUMMY
    avril 06 18:38:54 ghanima kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    avril 06 18:38:54 ghanima kernel: ata1.00: ATA-8: KINGSTON SV300S37A60G, 580ABBF0, max UDMA/133
    avril 06 18:38:54 ghanima kernel: ata1.00: 117231408 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    avril 06 18:38:54 ghanima kernel: ata1.00: configured for UDMA/133
    avril 06 18:38:54 ghanima kernel: scsi 0:0:0:0: Direct-Access ATA KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
    avril 06 18:38:54 ghanima kernel: sd 0:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.8 GiB)
    avril 06 18:38:54 ghanima kernel: sd 0:0:0:0: [sda] Write Protect is off
    avril 06 18:38:54 ghanima kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    avril 06 18:38:54 ghanima kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    avril 06 18:38:54 ghanima kernel: sda: sda1 sda2 sda3 sda4
    avril 06 18:38:54 ghanima kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    avril 06 18:38:54 ghanima kernel: usb 1-2: new full-speed USB device number 2 using xhci_hcd
    avril 06 18:38:54 ghanima kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    avril 06 18:38:54 ghanima kernel: usb 1-2: No LPM exit latency info found, disabling LPM.
    avril 06 18:38:54 ghanima systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    avril 06 18:38:54 ghanima systemd[1]: Detected architecture 'x86-64'.
    avril 06 18:38:54 ghanima systemd[1]: Set hostname to <ghanima>.
    avril 06 18:38:54 ghanima kernel: usb 1-3: new full-speed USB device number 3 using xhci_hcd
    avril 06 18:38:54 ghanima systemd[1]: Configuration file /usr/lib/systemd/system/[email protected] is marked executable. Please remove executable permission bits. Proceeding anyway.
    avril 06 18:38:54 ghanima systemd[1]: Configuration file /usr/lib/systemd/system/[email protected] is marked executable. Please remove executable permission bits. Proceeding anyway.
    avril 06 18:38:54 ghanima systemd[1]: Configuration file /usr/lib/systemd/system/webmin.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    avril 06 18:38:54 ghanima systemd[1]: Configuration file /usr/lib/systemd/system/webmin.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
    avril 06 18:38:54 ghanima systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    avril 06 18:38:54 ghanima systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    avril 06 18:38:54 ghanima systemd[1]: Starting Encrypted Volumes.
    avril 06 18:38:54 ghanima systemd[1]: Reached target Encrypted Volumes.
    avril 06 18:38:54 ghanima systemd[1]: Starting Login Prompts.
    avril 06 18:38:54 ghanima systemd[1]: Reached target Login Prompts.
    avril 06 18:38:54 ghanima systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    avril 06 18:38:54 ghanima systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    avril 06 18:38:54 ghanima systemd[1]: Expecting device dev-sda3.device...
    avril 06 18:38:54 ghanima systemd[1]: Starting Root Slice.
    avril 06 18:38:54 ghanima systemd[1]: Created slice Root Slice.
    avril 06 18:38:54 ghanima systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    avril 06 18:38:54 ghanima systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    avril 06 18:38:54 ghanima systemd[1]: Starting LVM2 metadata daemon socket.
    avril 06 18:38:54 ghanima systemd[1]: Listening on LVM2 metadata daemon socket.
    avril 06 18:38:54 ghanima systemd[1]: Starting udev Control Socket.
    avril 06 18:38:54 ghanima systemd[1]: Listening on udev Control Socket.
    avril 06 18:38:54 ghanima systemd[1]: Starting System Slice.
    avril 06 18:38:54 ghanima systemd[1]: Created slice System Slice.
    avril 06 18:38:54 ghanima systemd[1]: Starting system-darkice.slice.
    avril 06 18:38:54 ghanima systemd[1]: Created slice system-darkice.slice.
    avril 06 18:38:54 ghanima systemd[1]: Starting system-systemd\x2dfsck.slice.
    avril 06 18:38:54 ghanima systemd[1]: Created slice system-systemd\x2dfsck.slice.
    avril 06 18:38:54 ghanima systemd[1]: Starting system-getty.slice.
    avril 06 18:38:54 ghanima systemd[1]: Created slice system-getty.slice.
    avril 06 18:38:54 ghanima systemd[1]: Starting Device-mapper event daemon FIFOs.
    avril 06 18:38:54 ghanima systemd[1]: Listening on Device-mapper event daemon FIFOs.
    avril 06 18:38:54 ghanima systemd[1]: Starting Journal Socket (/dev/log).
    avril 06 18:38:54 ghanima systemd[1]: Listening on Journal Socket (/dev/log).
    avril 06 18:38:54 ghanima systemd[1]: Starting Delayed Shutdown Socket.
    avril 06 18:38:54 ghanima systemd[1]: Listening on Delayed Shutdown Socket.
    avril 06 18:38:54 ghanima systemd[1]: Starting udev Kernel Socket.
    avril 06 18:38:54 ghanima systemd[1]: Listening on udev Kernel Socket.
    avril 06 18:38:54 ghanima systemd[1]: Starting Journal Socket.
    avril 06 18:38:54 ghanima systemd[1]: Listening on Journal Socket.
    avril 06 18:38:54 ghanima systemd[1]: Started File System Check on Root Device.
    avril 06 18:38:54 ghanima systemd[1]: Starting udev Coldplug all Devices...
    avril 06 18:38:54 ghanima systemd[1]: Mounting Debug File System...
    avril 06 18:38:54 ghanima systemd[1]: Starting Setup Virtual Console...
    avril 06 18:38:54 ghanima systemd[1]: Mounting Temporary Directory...
    avril 06 18:38:54 ghanima systemd[1]: Starting Create list of required static device nodes for the current kernel...
    avril 06 18:38:54 ghanima systemd[1]: Starting Set Up Additional Binary Formats...
    avril 06 18:38:54 ghanima systemd[1]: Starting Load Kernel Modules...
    avril 06 18:38:54 ghanima systemd[1]: Mounting Huge Pages File System...
    avril 06 18:38:54 ghanima systemd[1]: Mounting POSIX Message Queue File System...
    avril 06 18:38:54 ghanima systemd[1]: Starting Remount Root and Kernel File Systems...
    avril 06 18:38:54 ghanima systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    avril 06 18:38:54 ghanima systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    avril 06 18:38:54 ghanima kernel: tsc: Refined TSC clocksource calibration: 1999.999 MHz
    avril 06 18:38:54 ghanima systemd[1]: Starting Paths.
    avril 06 18:38:54 ghanima kernel: EXT4-fs (sda2): re-mounted. Opts: data=ordered,discard
    avril 06 18:38:54 ghanima systemd[1]: Reached target Paths.
    avril 06 18:38:54 ghanima systemd[1]: Expecting device dev-sda4.device...
    avril 06 18:38:54 ghanima kernel: vboxdrv: Found 4 processor cores.
    avril 06 18:38:54 ghanima kernel: vboxdrv: fAsync=0 offMin=0x2a0 offMax=0x38310
    avril 06 18:38:54 ghanima kernel: vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    avril 06 18:38:54 ghanima kernel: vboxdrv: Successfully loaded version 4.3.26_OSE (interface 0x001a000a).
    avril 06 18:38:54 ghanima systemd[1]: Listening on Journal Audit Socket.
    avril 06 18:38:54 ghanima systemd[1]: Starting Journal Service...
    avril 06 18:38:54 ghanima systemd[1]: Starting User and Session Slice.
    avril 06 18:38:54 ghanima systemd[1]: Created slice User and Session Slice.
    avril 06 18:38:54 ghanima systemd[1]: Starting Slices.
    avril 06 18:38:54 ghanima kernel: vboxpci: IOMMU not found (not registered)
    avril 06 18:38:54 ghanima systemd[1]: Reached target Slices.
    avril 06 18:38:54 ghanima systemd[1]: Starting Early root shell on /dev/tty9 FOR DEBUGGING ONLY...
    avril 06 18:38:54 ghanima systemd[1]: Started Early root shell on /dev/tty9 FOR DEBUGGING ONLY.
    avril 06 18:38:54 ghanima systemd[1]: Mounted POSIX Message Queue File System.
    avril 06 18:38:54 ghanima systemd[1]: Mounted Debug File System.
    avril 06 18:38:54 ghanima systemd[1]: Mounted Huge Pages File System.
    avril 06 18:38:54 ghanima systemd[1]: Mounted Temporary Directory.
    avril 06 18:38:54 ghanima systemd[1]: Started Setup Virtual Console.
    avril 06 18:38:54 ghanima systemd[1]: Started Create list of required static device nodes for the current kernel.
    avril 06 18:38:54 ghanima systemd[1]: Started Load Kernel Modules.
    avril 06 18:38:54 ghanima systemd[1]: Started Remount Root and Kernel File Systems.
    avril 06 18:38:54 ghanima systemd[1]: Started udev Coldplug all Devices.
    avril 06 18:38:54 ghanima systemd[1]: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 130 (systemd-binfmt)
    avril 06 18:38:54 ghanima systemd[1]: Mounting Arbitrary Executable File Formats File System...
    avril 06 18:38:54 ghanima systemd[1]: Started Rebuild Hardware Database.
    avril 06 18:38:54 ghanima systemd[1]: Starting Load/Save Random Seed...
    avril 06 18:38:54 ghanima systemd-journal[146]: Journal started
    avril 06 18:38:54 ghanima systemd-modules-load[131]: Inserted module 'vboxdrv'
    avril 06 18:38:54 ghanima systemd-modules-load[131]: Inserted module 'vboxnetadp'
    avril 06 18:38:54 ghanima systemd-modules-load[131]: Inserted module 'vboxnetflt'
    avril 06 18:38:54 ghanima systemd-modules-load[131]: Inserted module 'vboxpci'
    avril 06 18:38:54 ghanima systemd[1]: Started First Boot Wizard.
    avril 06 18:38:54 ghanima systemd[1]: Started Create System Users.
    avril 06 18:38:54 ghanima systemd[1]: Started Rebuild Dynamic Linker Cache.
    avril 06 18:38:54 ghanima systemd[1]: Mounted FUSE Control File System.
    avril 06 18:38:54 ghanima systemd[1]: Mounting Configuration File System...
    avril 06 18:38:54 ghanima systemd[1]: Starting Apply Kernel Variables...
    avril 06 18:38:54 ghanima systemd[1]: Starting Create Static Device Nodes in /dev...
    avril 06 18:38:54 ghanima kernel: usb 1-4: new high-speed USB device number 4 using xhci_hcd
    avril 06 18:38:54 ghanima systemd[1]: Mounted Arbitrary Executable File Formats File System.
    avril 06 18:38:54 ghanima systemd[1]: Mounted Configuration File System.
    avril 06 18:38:54 ghanima systemd[1]: Started Journal Service.
    avril 06 18:38:54 ghanima systemd[1]: Started Load/Save Random Seed.
    avril 06 18:38:54 ghanima systemd[1]: Started Set Up Additional Binary Formats.
    avril 06 18:38:54 ghanima systemd[1]: Started Apply Kernel Variables.
    avril 06 18:38:54 ghanima systemd[1]: Started Create Static Device Nodes in /dev.
    avril 06 18:38:54 ghanima systemd[1]: Starting udev Kernel Device Manager...
    avril 06 18:38:54 ghanima systemd[1]: Starting Local File Systems (Pre).
    avril 06 18:38:54 ghanima systemd[1]: Reached target Local File Systems (Pre).
    avril 06 18:38:54 ghanima systemd[1]: Starting Flush Journal to Persistent Storage...
    avril 06 18:38:54 ghanima systemd-udevd[166]: starting version 218
    avril 06 18:38:54 ghanima systemd[1]: Started Flush Journal to Persistent Storage.
    avril 06 18:38:54 ghanima systemd[1]: Started udev Kernel Device Manager.
    avril 06 18:38:54 ghanima kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
    avril 06 18:38:54 ghanima kernel: ACPI: Power Button [PWRB]
    avril 06 18:38:54 ghanima kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
    avril 06 18:38:54 ghanima kernel: ACPI: Sleep Button [SLPB]
    avril 06 18:38:54 ghanima kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    avril 06 18:38:54 ghanima kernel: ACPI: Power Button [PWRF]
    avril 06 18:38:54 ghanima kernel: ------------[ cut here ]------------
    avril 06 18:38:54 ghanima kernel: WARNING: CPU: 1 PID: 178 at drivers/cpufreq/cpufreq.c:2300 cpufreq_update_policy+0x1b9/0x1f0()
    avril 06 18:38:54 ghanima kernel: Modules linked in: fan(+) thermal(+) pcc_cpufreq(-) video battery acpi_cpufreq processor button sch_fq_codel pci_stub vboxpci(O) vboxnetflt(O) vboxnetadp(O) vboxdrv(O) ext4 crc16 mbcache jbd2 sd_mod ahci libahci libata xhci_pci xhci_hcd scsi_mod usbcore usb_common
    avril 06 18:38:54 ghanima kernel: CPU: 1 PID: 178 Comm: systemd-udevd Tainted: G O 3.19.2-1-ARCH #1
    avril 06 18:38:54 ghanima kernel: Hardware name: GIGABYTE GB-BXBT-1900/MZBAYAB-00, BIOS F3 07/15/2014
    avril 06 18:38:54 ghanima kernel: 0000000000000000 0000000063c922bf ffff880037a736f8 ffffffff8155cfdf
    avril 06 18:38:54 ghanima kernel: 0000000000000000 0000000000000000 ffff880037a73738 ffffffff81073a4a
    avril 06 18:38:54 ghanima kernel: ffff880037b99600 ffff880037b99600 00000000fffffffb ffff880037b99728
    avril 06 18:38:54 ghanima kernel: Call Trace:
    avril 06 18:38:54 ghanima kernel: [<ffffffff8155cfdf>] dump_stack+0x4c/0x6e
    avril 06 18:38:54 ghanima kernel: [<ffffffff81073a4a>] warn_slowpath_common+0x8a/0xc0
    avril 06 18:38:54 ghanima kernel: [<ffffffff81073b7a>] warn_slowpath_null+0x1a/0x20
    avril 06 18:38:54 ghanima kernel: [<ffffffff8141b259>] cpufreq_update_policy+0x1b9/0x1f0
    avril 06 18:38:54 ghanima kernel: [<ffffffff8141b290>] ? cpufreq_update_policy+0x1f0/0x1f0
    avril 06 18:38:54 ghanima kernel: [<ffffffffa01f77ed>] cpufreq_set_cur_state.part.3+0x8b/0x95 [processor]
    avril 06 18:38:54 ghanima kernel: [<ffffffffa01f7907>] processor_set_cur_state+0xa1/0xdb [processor]
    avril 06 18:38:54 ghanima kernel: [<ffffffff81415771>] thermal_cdev_update+0xd1/0x180
    avril 06 18:38:54 ghanima kernel: [<ffffffff81417b19>] step_wise_throttle+0x59/0x90
    avril 06 18:38:54 ghanima kernel: [<ffffffff81417ac0>] ? thermal_zone_trip_update+0x3e0/0x3e0
    avril 06 18:38:54 ghanima kernel: [<ffffffff81415f11>] handle_thermal_trip+0x61/0x1e0
    avril 06 18:38:54 ghanima kernel: [<ffffffff81416175>] thermal_zone_device_update+0xe5/0x170
    avril 06 18:38:54 ghanima kernel: [<ffffffff81416bf9>] thermal_zone_device_register+0x7a9/0x8b0
    avril 06 18:38:54 ghanima

    Hello, i too have random freeze without any "usable" info.
    The blame "may" (well i think it is) be a "baytay + i915 kernel drivers" fault, these thread are intresting :
    - https://bugs.freedesktop.org/show_bug.cgi?id=88012
    - https://github.com/OpenELEC/OpenELEC.tv/issues/3726
    what intresting is that there is path (for use of "legacy-turbo"), sory not remenber where i get it
    -- gpu-drm-i915-fix-vlv-crash.txt --
    Revert back to legacy turbo for vlv, fixes random crashes.
    Reported by Timothée Giet <[email protected]> on dev@ ml.
    https://bugs.freedesktop.org/show_bug.cgi?id=88012#c33
    --- linux/drivers/gpu/drm/i915/i915_irq.c.orig
    +++ linux/drivers/gpu/drm/i915/i915_irq.c
    @@ -4361,12 +4361,7 @@ void intel_irq_init(struct drm_i915_priv
        INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
        INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
    -    /* Let's track the enabled rps events */
    -    if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
    -        /* WaGsvRC0ResidencyMethod:vlv */
    -        dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
    -    else
    -        dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
    +    dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
        setup_timer(&dev_priv->gpu_error.hangcheck_timer,
                i915_hangcheck_elapsed,
    I did use the trik on a custom kernel, i do have freeze (none tomoroy but two today but only on using firefox, so may be another probleme (sna))  but not on video (well i had run 15 video same time, and two where running 2 hours after without crash). May be you should try it (i think it work better).
    note : link to make custom kernel -> https://wiki.archlinux.org/index.php/Ke … raditional

  • Problem with random numbers

    This is a snippet from a class
    public class Cell {
         private int index;  //index of empire
         private int xCoord;  //X coordinate on the grid
         private int yCoord;  //Y coordinate on the grid
         private double solidarity;  //solidarity value of a cell
         private double power;  //power of a cell
         private Random ran;
         public Cell(int i, int x, int y) {
              ran = new Random();
              index = i;
              xCoord = x;
              yCoord = y;
              solidarity = (double)ran.nextInt(100)/100.0;
    ......I make a couple hundred of these cells when i run the program and at random it seems, every Cell i create ends up having the same exact solidarity value, which really messes up my simulation. It seems to happen once every 5 runs or so. What could be causing this to happen?

    In Java 1.4 Random is initalised with the time.
    Thus if you create many Random objects at the same time, they will generate the same "random" values.
    In Java 5.0 it prevents this behaviour.
    In your case the simplest thing to do is to create one Random and share it.
    Or you could create your own random seed using i,x,y for example. (thus ensure the random seed is different for each cell)

  • Zen Micro Random Algorithm. What is

    I think the biggest thing with this mp3 player you need is patience. I think everyone's had something go wrong, and few have had it work flawlessly on the first time. That said;
    What is the deal with the DJ- Random Play all function. My micro seems to switch between Guster and Dave Matthews Band and then barley sample other songs (granted they're both amazing ). So my question is in two parts. How does random work? Is it by indvidual file, or by album or Artist. Also, I'd love to, for my own amusment, to see the algorithm that the micro uses to choose a "random" track.
    -tim

    Someone linked with the development team posted a while back on the Nomadness.net forums that the random seed was generated from the clock (which is quite common in this type of device). I'm guessing that the seed is still not very varied, hence you can get some repetition of artists, although this might be down to some coincidence.
    The only way I found of getting a truly random queue was to use Notmad's playlist randomise function.

  • Generating unique no.'s using random function

    Hi,
    I'm trying to generate unique values for row and column say from 0-3
    and I read some where that if we use random.nextInt() we will get unique values but I'm getting repeated values.I'll appreciate if anyone can help me in this matter.Here's the code:
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    public class random{
    public static void main(String args[])
    int b[]=new int[4];
    int c[]=new int[4];
    int i;
    Date date;
    Random random;
    date=new Date();
    random = new Random(date.getTime());
    for(i=0;i<4;i++)
    digit = random.nextInt(4);
    b=digit;
    for(i=0;i<4;i++)
    digit = random.nextInt(4);
    c[i] = digit;
    for(i=0;i<4;i++)
    System.out.println("column array is" + c[i]);
    for(i=0;i<4;i++)
    System.out.println("row array is" + b[i]);
    }//end main
    }//end class
    Thanks
    Suneetha.

    here is my code for generating a random number but not a unique number. with a big enough number the possibility getting a unique is high so you may modify it to suit you need:
      private void initial_node()
        float Qxyd = -1, Qyzd = -1, Cxyd = -1, Cyzd = -1;
        long seed;
        Q_table = new float[row][col];
        seed = (long)( Math.random() * System.currentTimeMillis() * 100000000 );
        Random rand1 = new Random( seed );
        seed = (long)( Math.random() * System.currentTimeMillis() * 100000000 );
        Random rand2 = new Random( seed );
        seed = (long)( Math.random() * System.currentTimeMillis() * 100000000 );
        Random rand3 = new Random( seed );
        seed = (long)( Math.random() * System.currentTimeMillis() * 100000000 );
        Random rand4 = new Random( seed );
        for( int i = 0; i < row; i++ )
          do
            Qxyd = (float)( rand1.nextFloat() + (float)rand1.nextFloat() / 3 );
          while( Qxyd < 0.35 || Qxyd == -1 );
          Q_table[5] = Math.abs( Qxyd );
    do
    Qyzd = (float)( rand2.nextFloat() + (float)rand2.nextFloat() / 7 );
    while( Qyzd < 0.45 || Qyzd == -1 );
    Q_table[i][3] = Math.abs( Qyzd );
    do
    Cxyd = (float)( rand3.nextFloat() + (float)rand3.nextFloat() / 9 );
    while( Cxyd > 0.15 || Cxyd == -1 );
    Q_table[i][8] = Math.abs( Cxyd );
    do
    Cyzd = (float)( rand4.nextFloat() + (float)rand4.nextFloat() / 11 );
    while( Cyzd > 0.10 || Cyzd == -1 );
    Q_table[i][9] = Math.abs( Cyzd );

  • Random Writer Project! Just started this

    Hi guys I am asked to create a random writer class, below is part of my assignment sheet:
    You are to implement a Java public class RandomWriterWithArrayList that provides a random writing application. Your class should have a public main method that constructs an instance with the following three arguments that are input from the user at the keyboard
    1. A non-negative integer k
    2. A non-negative integer length (the number of random characters to print).
    3. The name of an input file that contains more than k characters.
    Here is a sample dialog
    File Name: ArtOfWar.txt
    Seed Length: 6
    Characters to print: 300
    my code so far is:
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.util.Scanner;
    public class RandomWriterWithArrayList{
         public static void main (String[] args){
         public class FileReader{ ===============>>> Illegal modifier for the local class FileReader; only abstract or final is permitted
              private String book = "";
              public FileReader(String s){
                   File f;
                   try{
                        f = new File(s);
                   catch (FileNotFoundException fnfe){
                        return;
         Scanner j = new Scanner(f) ======>>>f cannot be resolved
         while (j.hasNextLine()){
              book+= j.nextLine() + "";
         Scanner keyboard = new Scanner(System.in);why does my file reader class won't work??

    yeah, that's what I did too but I am using a for loop instead of that.
    There's still one problem I am facing with and it has to do with the instruction fro m the assignment sheet below:
    If your program ever gets into a situation in which there are no characters to choose from, which can happen if the only occurrence of the current seed is at the exact end of the source, your program should pick a new random seed and continue.
    I handle this by writing this code, but somehow it still fails to satisfy the condition needed
    if (set.size() == 0) {
                        for (int i = 0; i < k; i++) {
                             word += alphabet.charAt((int) (Math.random() * 26));
                             set.add(word);
                             word = "";
                             result += set.get(0);
                   else
                        result += set.get((int) (Math.random() * set.size()));
                   I use the random math method here because the instruction told me to pick a random number in the list.

  • A script for setting a random wallpaper

    I've cooked up this small bash script for changing the wallpaper to a random one from a specified directory (it is recursive)
    The script tries to be smart in determining whether the wallpaper should be scaled, centered or tiled.
    Just configure it and try it out.
    Anyway, here goes:
    #!/bin/bash
    # Random wallpaper setter, by moljac024
    # Configuration
    # Wallpaper directory
    wpDir="$HOME/Wallpapers"
    # Wallpaper list path
    wpList=$HOME/.wallpaper-list
    # Folders to be skipped, you can put as many as you like
    #wpSkip=("Dir1/" "Dir2/")
    # Scale images that have a lower resolution than that of the screen (yes or no)
    scaleLowerRes="yes"
    #scaleLowerRes="no"
    # Screen resolution
    resWidth=1280
    resHeight=800
    # Command for tiling the wallpaper
    cmdTile="feh --bg-tile"
    #cmdTile="nitrogen --set-tiled --save"OA
    #cmdTile="xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-style -s 2 && xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s"
    #cmdTile="gconftool-2 -t str --set /desktop/gnome/background/picture_options "wallpaper" -t str --set /desktop/gnome/background/picture_filename"
    # Command for scaling the wallpaper
    cmdScale="feh --bg-scale"
    #cmdScale="nitrogen --set-scaled --save"
    #cmdScale="xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-style -s 3 && xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s"
    #cmdScale="gconftool-2 -t str --set /desktop/gnome/background/picture_options "zoom" -t str --set /desktop/gnome/background/picture_filename"
    # Command for centering the wallpaper
    cmdCenter="feh --bg-center"
    #cmdCenter="nitrogen --set-centered --save"
    #cmdCenter="xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-style -s 1 && xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s"
    #cmdCenter="gconftool-2 -t str --set /desktop/gnome/background/picture_options "centered" -t str --set /desktop/gnome/background/picture_filename"
    # End of configuration
    setTiled ()
    `$cmdTile "$1"`
    if [ "$?" = "0" ]; then
    echo "Wallpaper tiled."
    else
    echo "Wallpaper not set!"
    exit 1
    fi
    setScaled ()
    `$cmdScale "$1"`
    if [ "$?" = "0" ]; then
    echo "Wallpaper scaled."
    else
    echo "Wallpaper not set!"
    exit 1
    fi
    setCentered ()
    `$cmdCenter "$1"`
    if [ "$?" = "0" ]; then
    echo "Wallpaper centered."
    else
    echo "Wallpaper not set!"
    exit 1
    fi
    createList ()
    # Go to the wallpaper directory
    cd "$wpDir"
    # Load the list of pictures to a variable
    wpDirList=`(find . -regex ".*\([jJ][pP][gG]\|[jJ][pP][eE][gG]\|[gG][iI][fF]\|[pP][nN][gG]\|[bB][mM][pP]\)$" -type f)`
    # Save the list to disk
    if [[ ( -w "$wpList" ) ]]; then
    echo -n "$wpDirList" > "$wpList"
    # Filter out unwanted folders
    if [[ "$dontSkip" == "false" ]]; then
    for dir in "${wpSkip[@]}"
    do
    grep -Ev "$dir" "$wpList" > ~/.wallpapers-tmpr; mv ~/.wallpapers-tmpr "$wpList"
    done
    fi
    # Output result
    echo "Wallpaper list saved."
    else
    echo "Can't write wallpaper list, aborting!"
    exit 1
    fi
    getImage ()
    # Count number of pictures in the wallpaper list by counting number of lines.
    # Check if the wallpaper list exists, is not empty and we have read persmission on it
    if [[ ( -s "$wpList" && -f "$wpList" ) && -r "$wpList" ]]
    then
    wpListNumber=$(wc -l < "$wpList")
    else
    echo "Can't read wallpaper list, aborting!";
    exit 1
    fi
    # Counter for bad entries in wallpaper list
    badMax=100
    while true; do
    # Get a seed for the random number generator from /dev/urandom
    SEED=$(head -1 /dev/urandom | od -N 1 | awk '{ print $2 }')
    RANDOM=$SEED
    # Find a random line number in the wallpaper list
    # Random number from 1..n.
    #r=$((RANDOM % $wpListNumber + 1))
    r=$(echo $RANDOM%"$wpListNumber"+1 | bc)
    # Print what the line number is
    # Print the r'th line.
    imgPath=`sed -n "$r{p;q;}" "$wpList"`
    # #./ crops that substring but it doesn't matter if it left there
    wpPath="${wpDir}${imgPath#./}"
    # Check if the chosen file exists
    if [ -f "$wpPath" ]; then
    break
    else
    echo -e ""$wpPath": doesn't exist!\n"
    badMax=$(( $badMax - 1 ))
    if [ "$badMax" == "0" ]; then
    echo "Too many non-valid entries found in wallpaper list, aborting!"
    exit 1
    else echo "Choosing new image..."
    fi
    continue
    fi
    done
    # Calculate size and aspect for chosen image and print out information
    imgHeight=$(identify -format "%h" "$wpPath")
    imgWidth=$(identify -format "%w" "$wpPath")
    imgAspect=$(echo "scale=1; "$imgWidth"/"$imgHeight"" | bc)
    echo -e "Image: "$wpPath"\n"
    echo -e "Resolution: "$imgWidth"x"$imgHeight""
    echo -e "Aspect: "$imgAspect":1\n"
    setWallpaper ()
    # Calculate resolution aspect ratio
    resAspect=$(echo "scale=1; "$resWidth"/"$resHeight"" | bc)
    # If the image is smaller than the resolution and is not a tile then scale it, otherwise look at aspect
    if [[ ("$scaleLowerRes" == "yes") && ( "$imgAspect" != "1.0" && ("$imgWidth" -lt "$resWidth" || "$imgHeight" -lt "$resHeight") ) ]]
    then
    setScaled "$wpPath"
    else
    case $imgAspect in
    1.0)
    setTiled "$wpPath"
    1.5 | 1.6 | 1.7 | 1.8)
    if [[ "$resAspect" < "1.5" ]]; then
    setCentered "$wpPath"
    else
    setScaled "$wpPath"
    fi
    if [[ "$resAspect" < "1.5" ]]; then
    setScaled "$wpPath"
    else
    setCentered "$wpPath"
    fi
    esac
    fi
    checkConfig ()
    # Initial errors
    errorsPresent="no"
    dontSkip="false"
    # Check if all variables are set
    if [[ !( ( -n "$wpDir" ) && ( -n "$wpList" ) && ( -n "$resWidth" ) && ( -n "$resHeight" ) && ( -n "$scaleLowerRes" ) && ( -n "$cmdTile" ) && ( -n "$cmdScale" ) && ( -n "$cmdCenter" ) ) ]]
    then
    echo -e "\nOne or more options not set, aborting!"
    exit 1
    fi
    # Check if there is a trailing backslash in the wallpaper directory
    spDir=`echo -n "$wpDir" | tail -c -1`
    if [[ !( "$spDir" == "/" ) ]]
    then
    wpDir=""$wpDir"/"
    fi
    # Check if there is read permission on wallpaper directory and if it is a directory
    if [[ !( ( -r "$wpDir" ) && ( -d "$wpDir" ) ) ]]
    then
    echo "Can't read wallpaper directory!"
    errorsPresent="yes"
    fi
    # Check if the specified wallpaper list is a regular file and not a directory
    touch "$wpList" &> /dev/null
    if [[ ( -d "$wpList" ) ]]
    then
    echo "Specified wallpaper list is a directory, not a file!"
    errorsPresent="yes"
    fi
    # Check if variables are set correctly
    if [[ !( "$scaleLowerRes" == "yes" || "$scaleLowerRes" == "no" ) ]]
    then
    echo "Specified option for scaling the wallpaper is not valid!"
    errorsPresent="yes"
    fi
    if $(echo ""$resWidth"" | grep [^0-9] &>/dev/null)
    then
    echo "Specified resolution width is not a number!"
    errorsPresent="yes"
    fi
    if $(echo ""$resHeight"" | grep [^0-9] &>/dev/null)
    then
    echo "Specified resolution height is not a number!"
    errorsPresent="yes"
    fi
    # Check if any of the tests failed
    if [[ "$errorsPresent" == "yes" ]]
    then
    echo -e "\nOne or more errors found, aborting!"
    exit 1
    fi
    ignoreWPSkip()
    dontSkip="true"
    printUsage ()
    echo -e "Invalid command line argument(s)!\nUsage:\n"
    echo -e "`basename "$0"` [options]\n"
    echo -e "Options:\n"
    echo -e "-s | --set \tSet a wallpaper without updating the list"
    echo -e "-u | --update \tUpdate the list without setting a wallpaper"
    echo -e "-ua | --update-all\tUpdate the list without setting a wallpaper, but don't skip any folders"
    echo -e "-su | --set-update\tUpdate the list and set a wallpaper"
    exit 1
    if [ "$#" == "1" ]; then
    case "$1" in
    "-s" | "--set")
    checkConfig
    getImage
    setWallpaper
    exit 0
    "-u" | "--update")
    checkConfig
    createList
    exit 0
    "-ua" | "--update-all")
    checkConfig
    ignoreWPSkip
    createList
    exit 0
    "-su" | "--set-update")
    checkConfig
    createList
    getImage
    setWallpaper
    exit 0
    printUsage
    exit 1
    esac
    else
    printUsage
    exit 1
    fi
    Last edited by moljac024 (2009-09-14 21:02:13)

    I did something similar a couple of months ago, but instead of attempting to be clever and guessing what the background image is supposed to be, I just write it in the filename. Since some pictures just end up being too bright (or whatever) when used as a background to a urxvt terminal, I added some extra parameters for setting gamma, brightness, tint and the direction the image should be rendered. It relies on hsetroot for actually rendering the picture.
    #!/usr/bin/python
    # set-background
    import sys, os, string, re
    patterns = [ (re.compile("t-([a-f\d]+)"), lambda x: "-tint \#" + x)
    , (re.compile("b-([\d]+)"), lambda x: "-brightness -0." + x)
    , (re.compile("g-([\d]+)"), lambda x: "-gamma "+ x)
    , (re.compile("f-(v|h|d)"), lambda x: "-flip" + x)
    def buildCommand(file):
    output = ["hsetroot"]
    output.append("-" + (string.split(file,".")[-2]))
    output.append(file)
    for token in string.split(file,".")[1:-2]:
    for (pat,f) in patterns:
    if pat.match(token):
    output.append( f(pat.findall(token)[0]))
    return string.join(output)
    print buildCommand(img)
    os.system(buildCommand(img))
    # vim:set et:
    So for instance, an image with the name background.t-704214.f-v.full.jpg would be rendered as a stretched image, flipped vertically with a sepia tint. The files are required to be in the following format NAME.(MODIFIER.)*TYPE.SUFFIX, where the the order and number of modifiers are unimportant. The gamma values are somewhat unintuitive, but I guess you'll just have to play around with it to get it right.
    And to randomize the whole thing, I just used the following script in my .xinitrc to randomly pick a image from a folder.
    #!/bin/bash
    bg_folder="$HOME/.backgrounds";
    pics=($(ls $bg_folder))
    let "n = $RANDOM % ${#pics[@]}"
    (cd $bg_folder; set-background ${pics[$n]})

Maybe you are looking for