Tuning procedures

hi all i have some procedures which are used to calculate the required data
i want to fine tune them but really don kno how to do how can i find where my procedures take time i tried to study execution plan but couldn understand much
can any one tell me where can i learn more about the techniques of fine tuning
procedures
also does putting all the procedures in a package affect much
please help with some links and guidance

Explain plans are not very useful for anyhing except SQL. So they won't really help with triggers. You can find bottlenecks in your code by using DBMS_PROFILER. Tim Hall has a useful introduction to this utility on his Oracle Base site (it also includes links to the relevant parts of the manual). Note that this utility works with procedures and functions, so you may need to take the code out of the trigger.
Stuffing program units into a package may improve performance slightly, providing all the methods in the package are related. However this approach only minimises loads, it's unlikely to make the frequently used code run any faster over the course of a day.
Cheers, APC

Similar Messages

  • Fine Tuning Procedure

    I am new to Oracle. I have written few stored procedures and one of the sp is taking lot of time to return values. Is there a way in oracle to find the bottle neck.
    Your help will be appreciated.
    PS

    sorry, the previous posting was not complete.
    use alter session set sql_trace=true;
    That should work.
    You'll get a trace file in your OS I think it is in the directory specified by background dump destination.
    If you can't alter the session before you invoke the procedure, there is another way to trace a foreign session.
    use dbms_system.set_sql_trace_in_session(SID,serial#,TRUE).
    To identify the session use select SID,serial#,osuser from v$session where osuser='YOURUSERNAME';
    That all seems to be a lot of work, but if yu tried it once, you'll find it simple. And iti is faster than analyse your application by hand.
    Hope that helps
    Detlev

  • Help in tuning query

    Please help me in tuning sql queries. I am a bit new to this. I have generated an Explain plan(plan table) for a particular sql statement using sql navigator. What do i do with this information exactly in order to tune the statement. It is showing some table access full,merge join cartesian, hash join semi and so on. Can anyone guide me with the general tuning procedure with respect to using the plan table analysis.

    Hi,
    There is a good metalink note about this one
    46234.1 : Interpreting Explain plan
    Nicolas.

  • AP Trial Balance - File is massive and takes a long time to open up

    Hello,
    We are upgrading from 11.5.10 to 12.1.3 and are running into some serioud problems with the Accounts Payables Trial Balance report in Detail Mode.
    1. The Report takes upwards of 10 minutes to open up - and in many cases does not.
    2. On further research we see that the report output file is > 500MB whereas comparable 11i Trial Balance files are only 19MB.
    3. We tried running in various formats Text, PDF, HTML with no luck.
    4. In fact HTML and Text formats gave “Authentication failed” errors when we tried to open the report.
    My questions are:
    1. Why is there a such a large increase in file size? Is this expected going to R12?
    2. Is there a way to speed up the opening of the large files or create smaller files? - (summary mode, and smaller date ranges are not options as per business needs). Even a 2 month date range give the same problems.
    3. We noticed that the XLA_TRIAL_BALANCES table has 36,521,125 records...LARGE.
    4. We compared the ap_liability_balance records between 11i and R12. We have 29,171,382 in 11i and 37,769,034 in R12. But this is expected as we purge regularly in 11i production and I don't think this difference (about 30%) in the size of the tables should cause such a large difference in the size of the report files (nearly 2000%!!!).
    5. Why are we getting Authentication failed errors? Just for these reports?
    Of course we opened an SR, but you know how SRs go :-) and this is a time critical project with our deadlines nearing.
    Any help or pointers from the experts here is greatly appreciated.
    Thanks
    Edited by: user11992646 on Jan 27, 2012 2:12 AM

    Hi Hussein,
    Thanks for your prompt reply and my apologies for the substantial delay in mine.
    We did some trouble shooting since then.
    We repolved the problem by choosing a pdf format instead of the seeded RTF format. This opened up the output in a couple of minutes because the pdf formatted output was about 50mb vs the RTF output which was 300MB+.
    But the ORIGINAL problem still remains. The xml tagged .out file is still huge with a size of nearly 1gb!
    My earlier questions here now boil down to the following questions.
    Q1. Is the huge XML Publisher's .out file expected in R12?  It really is massive!  The text file from 11i was just 19MB
    Q2. Oracle does not seem to offer the option to format the output in plain text ...We see PDF, RTF but no plain ugly text.  I would expect plain text file to be much smaller.  How can we get the output in plain text?
    1.Yes our stats are upto date. Let me emphasize that we do not have a performance problem with the report itself. The issue we are having is opening up the output.
    2. The authentication error is resolved. It was because of formatting the reports incorrectly.
    3. We did not use the usual tuning procedures such as tkprof because we do not have a performance problem.
    4. We checked the OPP file and there are none. I reiterate, The report does complete without issues. It is just that the output takes a long time to open up in the RTF
    I will appreciate if others  can share any experiences if you have faced this situation and how you have handled it.
    Thanks in advance for your time!

  • Whats the different in VGA Vs DVI ?

    Hey.
    Anybody who can tell me the different from VGA to DVI ?
    I know DVI is digital and VGA is Analog. But what is the different in quality ?
    Is there any big differents ?
    I ask because my new 22" screen have a non working DVI port. So i can only
    use the DVI port on my Macbook Pro with a DVI to VGA adaptor.
    If anyone know if it shows that mutch.
    Thanks

    One thing to note about making a VGA connection to a digital display like an LCD monitor is that you have to go through a tuning procedure to get the image to look its best. You only have to do this once, or maybe check it monthly or something like that, so it's not too big a nuisance. But if you never do it or forget to do it, the picture quality difference between VGA and DVI can be more than it should be.

  • Trace file and TKPROF

    Hi All,
    While tuning procedures generally I go through all queries, generate explain plans to check which is expensive and try yo tune that.Recently I got some procedures in top buffer gets list.when I gone through all queries. All using Indexes and cost is very low and accessing small tables.The number of iterations in the loop also not much.But it is taking 3 million bufffer gets for each execution.
    How can I find out which part of procedure is causing these many buffer gets? Currently I dont have acces to trace files and TKprof.If I get access How it is going to help me in tuning the above procedure.
    I need to explain effictively to DBA the use of trace and TKprof to get this access.

    TKPROF will give buffer gets usage by query. If the same query (with bind variables) is executed several times, you will get a summary for all executions of the same query. You can also switch on and off trace with ALTER SESSION statement to limit tracing and even do it from another session (see
    http://asktom.oracle.com/pls/ask/f?p=4950:8:12005269305828706290::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:330817260752)
    For SQL trace and TKPROF usage, see
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96533/sqltrace.htm#1018

  • How to write utp(unit test plan)

    how to write utp(unit test plan)

    Hi,
      Steps to be followed for UTP.
    UTP : Unit Test Plan. Testing the program by the developer who developed the program is termed as Unit Test Plan.
    Two aspects are to be considered in UTP.
    1. Black Box Testing
    2. White Box Testing.
    1. Black Box Testing : The program is executed to view the output.
    2. White Box Testing : The code is checked for performance tuning and syntax errors.
    Follow below mentioned steps.
    <b>Black Box Testing</b>
    1. Cover all the test scenarios in the test plan. Test plan is usually prepared at the time of Techincal Spec preparation, by the testing team. Make sure that all the scenarios mentioned in the test plan are coverd in UTP.
    2. Execute your code for positive and negative test. Postive tests - to execute the code and check if the program works as per expected. Negative Test - Execute code to know if the code is working in scenarios in which it is not supposed to work. The code should work only in the mentioned scenarios and not in all cases.
    <b>White Box Testing.</b>
    1. Check the Select statments in your code. Check if any redundant fields are being fetched by the select statements.
    2. Check If there is any redundant code in the program.
    3. Check whether the code adheres to the Coding standards of your client or your company.
    4. Check if all the variables are cleared appropriately.
    5. Optimize the code by following the performance tuning procedures.
    <b>Using tools provided by SAP</b>
    1. Check your program using <b>EXTENDED PROGRAM CHECK</b>.
    2. Use SQL Trace to estimate the performace and the response of the each statement in the code. If changes are required, mention the same in UTP.
    3. Use Runtime Analyser and Code Inspector to test your code.
    4. Paste the screen shots of all the tests in the UTP document. This gives a clear picture of the tests conducted on the program.
    All the above steps are to be mentioned in UTP.
    Regards,
    Vara

  • Lost audio between AIM and IChat

    Hello.
    Up until a few days ago I was able to engage in A/V chats with my dad. I have an IMac G5 using IChat and he has a PC with AIM 5.9. For some unknown reason, I no longer get audio when we connect. I can see him and he can see and hear me, but his audio is gone. Any ideas??

    Hi Ralph.
    Walked my dad through the re-tune procedure in the link. All went well, and during the microphone tune the lighted input bar responded as it should. All indications are that his microphone is working fine. Unfortunately, I still get no audio from him.
    One note of interest. When we first establish an IChat video connection, there usually is a bit of speaker hiss on my end - as if the the PC microphone is connected and ready to transmit audio. However, the minute either one of us begins to talk, the speaker hiss is instantly silenced and I get no audio from him. Then nothing but silence.
    I was beginning to suspect that his microphone/camera was defective. However, given that the tuning procedure seemed successful, I'm not so sure.
    Any more ideas?
    Regards, Michael

  • Hi experts what is UTP

    hi abapers,
    what is UTP can please expplain me who will do UTP.

    UTP means unit test plan....
    Unit test plan means Code Walk through...After development of object, code walk through needs to be done & even try to break the code while executing for errors..Also check EPC etc....
    Steps to be followed for UTP.
    UTP : Unit Test Plan. Testing the program by the developer who developed the program is termed as Unit Test Plan.
    Two aspects are to be considered in UTP.
    1. Black Box Testing
    2. White Box Testing.
    1. Black Box Testing : The program is executed to view the output.
    2. White Box Testing : The code is checked for performance tuning and syntax errors.
    Follow below mentioned steps.
    Black Box Testing
    1. Cover all the test scenarios in the test plan. Test plan is usually prepared at the time of Techincal Spec preparation, by the testing team. Make sure that all the scenarios mentioned in the test plan are coverd in UTP.
    2. Execute your code for positive and negative test. Postive tests - to execute the code and check if the program works as per expected. Negative Test - Execute code to know if the code is working in scenarios in which it is not supposed to work. The code should work only in the mentioned scenarios and not in all cases.
    White Box Testing.
    1. Check the Select statments in your code. Check if any redundant fields are being fetched by the select statements.
    2. Check If there is any redundant code in the program.
    3. Check whether the code adheres to the Coding standards of your client or your company.
    4. Check if all the variables are cleared appropriately.
    5. Optimize the code by following the performance tuning procedures.
    Using tools provided by SAP
    1. Check your program using EXTENDED PROGRAM CHECK.
    2. Use SQL Trace to estimate the performace and the response of the each statement in the code. If changes are required, mention the same in UTP.
    3. Use Runtime Analyser and Code Inspector to test your code.
    4. Paste the screen shots of all the tests in the UTP document. This gives a clear picture of the tests conducted on the program.
    All the above steps are to be mentioned in UTP.

  • Downloaded 4.0 and having problems.webpages take a long time to open & when opened, I get a "firefox is not responding" message.yahoo email is not loading.Is there a problem with firefox 4? is the problem going to be fixed?

    firefox problems after installing version 4.0

    Hi Hussein,
    Thanks for your prompt reply and my apologies for the substantial delay in mine.
    We did some trouble shooting since then.
    We repolved the problem by choosing a pdf format instead of the seeded RTF format. This opened up the output in a couple of minutes because the pdf formatted output was about 50mb vs the RTF output which was 300MB+.
    But the ORIGINAL problem still remains. The xml tagged .out file is still huge with a size of nearly 1gb!
    My earlier questions here now boil down to the following questions.
    Q1. Is the huge XML Publisher's .out file expected in R12?  It really is massive!  The text file from 11i was just 19MB
    Q2. Oracle does not seem to offer the option to format the output in plain text ...We see PDF, RTF but no plain ugly text.  I would expect plain text file to be much smaller.  How can we get the output in plain text?
    1.Yes our stats are upto date. Let me emphasize that we do not have a performance problem with the report itself. The issue we are having is opening up the output.
    2. The authentication error is resolved. It was because of formatting the reports incorrectly.
    3. We did not use the usual tuning procedures such as tkprof because we do not have a performance problem.
    4. We checked the OPP file and there are none. I reiterate, The report does complete without issues. It is just that the output takes a long time to open up in the RTF
    I will appreciate if others  can share any experiences if you have faced this situation and how you have handled it.
    Thanks in advance for your time!

  • Need to write international Unit Test.

    Hello All. I�d like to write a 16-bit charset unit test and view the results in eclipse. Can anyone tell me how to do so?
    I�m writing an application that needs to support international characters. The app will someday support Japanese, Hindi, Hebrew, Chinese, etc. No one in the office has written code in these languages.
    I�d like to write a JUnit test to ensure that my persistence layer can save �Hello World� in one of these languages and retrieve the exact String. I found a site showing me how to write Hello World in Japanese http://unix.org.ua/orelly/java-ent/servlet/ch12_03.htm, but System.out.println("\u4eca\u65e5\u306f\u4e16\u754c"); displays �?????�. I�d like to be able to preview the unit test from Eclipse and run it from ANT. What do I need to do to accomplish this?
    Thanks in advance,
    Steven

    Hi,
      Steps to be followed for UTP.
    UTP : Unit Test Plan. Testing the program by the developer who developed the program is termed as Unit Test Plan.
    Two aspects are to be considered in UTP.
    1. Black Box Testing
    2. White Box Testing.
    1. Black Box Testing : The program is executed to view the output.
    2. White Box Testing : The code is checked for performance tuning and syntax errors.
    Follow below mentioned steps.
    <b>Black Box Testing</b>
    1. Cover all the test scenarios in the test plan. Test plan is usually prepared at the time of Techincal Spec preparation, by the testing team. Make sure that all the scenarios mentioned in the test plan are coverd in UTP.
    2. Execute your code for positive and negative test. Postive tests - to execute the code and check if the program works as per expected. Negative Test - Execute code to know if the code is working in scenarios in which it is not supposed to work. The code should work only in the mentioned scenarios and not in all cases.
    <b>White Box Testing.</b>
    1. Check the Select statments in your code. Check if any redundant fields are being fetched by the select statements.
    2. Check If there is any redundant code in the program.
    3. Check whether the code adheres to the Coding standards of your client or your company.
    4. Check if all the variables are cleared appropriately.
    5. Optimize the code by following the performance tuning procedures.
    <b>Using tools provided by SAP</b>
    1. Check your program using <b>EXTENDED PROGRAM CHECK</b>.
    2. Use SQL Trace to estimate the performace and the response of the each statement in the code. If changes are required, mention the same in UTP.
    3. Use Runtime Analyser and Code Inspector to test your code.
    4. Paste the screen shots of all the tests in the UTP document. This gives a clear picture of the tests conducted on the program.
    All the above steps are to be mentioned in UTP.
    Regards,
    Vara

  • [solved] Only gibberish after boot on my netbook

    Hi all,
    I've installed Arch on my netbook (Acer Aspire ES1-11M-C56A) and everything went pretty smoothly until the first boot.
    Here is some images of my boot sequence in chronological order:
    https://www.dropbox.com/s/z2pgif6pr1327 … 8.jpg?dl=0
    https://www.dropbox.com/s/l7lo3f9qymgoa … 4.jpg?dl=0
    https://www.dropbox.com/s/eyk6ws374ytz0 … 5.jpg?dl=0
    https://www.dropbox.com/s/y5j93qjfts4zf … 1.jpg?dl=0
    The last one is the problematic one: It's only gibberish... When I press keys, I do see something happening, I just cant read anything...
    Two things I've already tried:
    Before I installed Arch onto the netbook, I ran Arch from my USB Stick and it worked fine.
    Secondly, since it ran finde from the stick, I checked the kernel boot line via dmesg | grep command after booting from the stick but it looks pretty much the same as the one in GRUB when booting from the netbook itself. It has the options rw and quite. I already tested inserting nomodeset in there, but that didn't help...
    Any help highly appriciated.... :-/
    Fabian
    Last edited by Dunkit (2015-05-01 10:01:34)

    Sorry, I already posted my last answer before I read your post...
    I do have an intel video chip ( it's onboard I suppose, lspci says 'VGA compatible Controller: Intel Corporation Atom PRocessor Z36xxx/Z37xxx Series Graphics & Display) and I installed the xf86-video-intel  for that.
    dmesg only shows some errors that seem to be related to the fact that I'm using eMMc storage:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.2-1-ARCH (builduser@thomas) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Oct 30 20:49:39 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=153b6eca-4da3-4eba-9bfe-82d306cb78e7 rw quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001effffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000001f000000-0x000000001f0fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000001f100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000781aefff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000781af000-0x00000000787aefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000787af000-0x00000000788aefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000788af000-0x00000000788eefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000788ef000-0x00000000794c5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000794c6000-0x0000000079dc5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000079dc6000-0x0000000079ffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007a000000-0x000000007a7fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007ae00000-0x000000007fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed03000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed0c000-0x00000000fed0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1cfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000feffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Acer Aspire ES1-111M/R2, BIOS V1.03 07/22/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x7a000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 07C000000 mask FFC000000 uncachable
    [ 0.000000] 3 base 07B000000 mask FFF000000 uncachable
    [ 0.000000] 4 base 07AE00000 mask FFFE00000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [ 0.000000] BRK [0x01b31000, 0x01b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x79e00000-0x79ffffff]
    [ 0.000000] [mem 0x79e00000-0x79ffffff] page 2M
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x78000000-0x781aefff]
    [ 0.000000] [mem 0x78000000-0x781aefff] page 4k
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x788ef000-0x794c5fff]
    [ 0.000000] [mem 0x788ef000-0x789fffff] page 4k
    [ 0.000000] [mem 0x78a00000-0x793fffff] page 2M
    [ 0.000000] [mem 0x79400000-0x794c5fff] page 4k
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x79dc6000-0x79dfffff]
    [ 0.000000] [mem 0x79dc6000-0x79dfffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1effffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1effffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x1f100000-0x1fffffff]
    [ 0.000000] [mem 0x1f100000-0x1f1fffff] page 4k
    [ 0.000000] [mem 0x1f200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20100000-0x77ffffff]
    [ 0.000000] [mem 0x20100000-0x201fffff] page 4k
    [ 0.000000] [mem 0x20200000-0x77ffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x379c2000-0x37cd8fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 ACRSYS)
    [ 0.000000] ACPI: XSDT 0x00000000788EE120 0000AC (v01 ACRSYS ACRPRDCT 00000003 01000013)
    [ 0.000000] ACPI: FACP 0x00000000788EB000 00010C (v05 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: DSDT 0x00000000788DD000 008EEF (v02 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: FACS 0x0000000078878000 000040
    [ 0.000000] ACPI: UEFI 0x00000000788ED000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: MSDM 0x00000000788EC000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: HPET 0x00000000788EA000 000038 (v01 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: LPIT 0x00000000788E9000 000104 (v01 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: APIC 0x00000000788E8000 000084 (v03 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: MCFG 0x00000000788E7000 00003C (v01 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788E6000 000581 (v01 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788DB000 00138A (v01 ACRSYS ACRPRDCT 00000003 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788DA000 000763 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788D9000 000290 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788D8000 00017A (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    [ 0.000000] ACPI: UEFI 0x00000000788D7000 000042 (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788D3000 00305B (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
    [ 0.000000] ACPI: CSRT 0x00000000788D2000 00014C (v00 ACRSYS ACRPRDCT 00000005 1025 00040000)
    [ 0.000000] ACPI: SSDT 0x00000000788D1000 0003E6 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
    [ 0.000000] ACPI: FPDT 0x00000000788D0000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x0000000079ffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x79ffffff]
    [ 0.000000] NODE_DATA [mem 0x79ff8000-0x79ffbfff]
    [ 0.000000] [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff880076000000-ffff880077ffffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1effffff]
    [ 0.000000] node 0: [mem 0x1f100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20100000-0x781aefff]
    [ 0.000000] node 0: [mem 0x788ef000-0x794c5fff]
    [ 0.000000] node 0: [mem 0x79dc6000-0x79ffffff]
    [ 0.000000] On node 0 totalpages: 494941
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 7744 pages used for memmap
    [ 0.000000] DMA32 zone: 490944 pages, LIFO batch:31
    [ 0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
    [ 0.000000] Reserving Intel graphics stolen memory at 0x7b000000-0x7effffff
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x1f000000-0x1f0fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x781af000-0x787aefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x787af000-0x788aefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x788af000-0x788eefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x794c6000-0x79dc5fff]
    [ 0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff880079200000 s86848 r8192 d23744 u524288
    [ 0.000000] pcpu-alloc: s86848 r8192 d23744 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 487112
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=153b6eca-4da3-4eba-9bfe-82d306cb78e7 rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 1931524K/1979764K available (5381K kernel code, 909K rwdata, 1712K rodata, 1140K init, 1176K bss, 48240K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:8448 nr_irqs:1024 0
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 8388608 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Maximum core-clock to bus-clock ratio: 0x1a
    [ 0.000000] Resolved frequency ID: 0, frequency: 83200 KHz
    [ 0.000000] TSC runs at 2163200 KHz
    [ 0.000000] lapic_timer_frequency = 277333
    [ 0.000000] tsc: Detected 2163.200 MHz processor
    [ 0.000040] Calibrating delay loop (skipped), value calculated using timer frequency.. 4328.66 BogoMIPS (lpj=7210666)
    [ 0.000045] pid_max: default: 32768 minimum: 301
    [ 0.000061] ACPI: Core revision 20140724
    [ 0.020950] ACPI: All ACPI Tables successfully acquired
    [ 0.037502] Security Framework initialized
    [ 0.037510] Yama: becoming mindful.
    [ 0.037738] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.038621] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.039038] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.039048] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.039370] Initializing cgroup subsys memory
    [ 0.039383] Initializing cgroup subsys devices
    [ 0.039390] Initializing cgroup subsys freezer
    [ 0.039395] Initializing cgroup subsys net_cls
    [ 0.039400] Initializing cgroup subsys blkio
    [ 0.039426] CPU: Physical Processor ID: 0
    [ 0.039429] CPU: Processor Core ID: 0
    [ 0.039435] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.044212] mce: CPU supports 6 MCE banks
    [ 0.044222] CPU0: Thermal monitoring handled by SMI
    [ 0.044231] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
    [ 0.044350] Freeing SMP alternatives memory: 20K (ffffffff81a02000 - ffffffff81a07000)
    [ 0.045336] ftrace: allocating 20675 entries in 81 pages
    [ 0.056669] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.089653] smpboot: CPU0: Intel(R) Celeron(R) CPU N2840 @ 2.16GHz (fam: 06, model: 37, stepping: 08)
    [ 0.089679] TSC deadline timer enabled
    [ 0.089713] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
    [ 0.089728] ... version: 3
    [ 0.089730] ... bit width: 40
    [ 0.089732] ... generic registers: 2
    [ 0.089734] ... value mask: 000000ffffffffff
    [ 0.089737] ... max period: 000000ffffffffff
    [ 0.089738] ... fixed-purpose events: 3
    [ 0.089740] ... event mask: 0000000700000003
    [ 0.109818] x86: Booting SMP configuration:
    [ 0.109824] .... node #0, CPUs: #1
    [ 0.125602] CPU1: Thermal monitoring handled by SMI
    [ 0.127775] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.127798] x86: Booted up 1 node, 2 CPUs
    [ 0.127802] smpboot: Total of 2 processors activated (8656.33 BogoMIPS)
    [ 0.128380] devtmpfs: initialized
    [ 0.134353] PM: Registering ACPI NVS region [mem 0x787af000-0x788aefff] (1048576 bytes)
    [ 0.134382] PM: Registering ACPI NVS region [mem 0x794c6000-0x79dc5fff] (9437184 bytes)
    [ 0.136401] pinctrl core: initialized pinctrl subsystem
    [ 0.136470] RTC time: 20:38:52, date: 11/14/14
    [ 0.136681] NET: Registered protocol family 16
    [ 0.136908] cpuidle: using governor ladder
    [ 0.136913] cpuidle: using governor menu
    [ 0.136962] ACPI: bus type PCI registered
    [ 0.136966] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.137094] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    [ 0.137099] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    [ 0.137280] PCI: Using configuration type 1 for base access
    [ 0.148365] ACPI: Added _OSI(Module Device)
    [ 0.148371] ACPI: Added _OSI(Processor Device)
    [ 0.148373] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.148376] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.182017] ACPI: Dynamic OEM Table Load:
    [ 0.182033] ACPI: SSDT 0xFFFF88007566F000 000440 (v01 PmRef Cpu0Ist 00003000 INTL 20130117)
    [ 0.182998] ACPI: Dynamic OEM Table Load:
    [ 0.183012] ACPI: SSDT 0xFFFF88007566F800 000433 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.191456] ACPI: Dynamic OEM Table Load:
    [ 0.191469] ACPI: SSDT 0xFFFF88007523E600 00015F (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.201158] ACPI: Dynamic OEM Table Load:
    [ 0.201171] ACPI: SSDT 0xFFFF880075065D80 00008D (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.221110] ACPI: Interpreter enabled
    [ 0.221122] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    [ 0.221131] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    [ 0.221159] ACPI: (supports S0 S3 S4 S5)
    [ 0.221162] ACPI: Using IOAPIC for interrupt routing
    [ 0.221223] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.224878] ACPI: Power Resource [USBC] (on)
    [ 0.235979] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.235991] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.236183] \_SB_.PCI0:_OSC invalid UUID
    [ 0.236186] _OSC request data:1 1f 0
    [ 0.236194] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    [ 0.236642] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.236942] PCI host bridge to bus 0000:00
    [ 0.236949] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.236953] pci_bus 0000:00: root bus resource [io 0x0000-0x006f]
    [ 0.236957] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7]
    [ 0.236960] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.236964] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.236968] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.236971] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff]
    [ 0.236975] pci_bus 0000:00: root bus resource [mem 0x80000000-0x909ffffe]
    [ 0.236987] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
    [ 0.237145] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
    [ 0.237161] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff]
    [ 0.237174] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
    [ 0.237185] pci 0000:00:02.0: reg 0x20: [io 0x2050-0x2057]
    [ 0.237352] pci 0000:00:12.0: [8086:0f16] type 00 class 0x080501
    [ 0.237372] pci 0000:00:12.0: reg 0x10: [mem 0x90920000-0x90920fff]
    [ 0.237384] pci 0000:00:12.0: reg 0x14: [mem 0x9091f000-0x9091ffff]
    [ 0.237451] pci 0000:00:12.0: PME# supported from D0 D3hot
    [ 0.237582] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
    [ 0.237604] pci 0000:00:14.0: reg 0x10: [mem 0x90900000-0x9090ffff 64bit]
    [ 0.237664] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.237767] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.237842] pci 0000:00:17.0: [8086:0f50] type 00 class 0x080501
    [ 0.237862] pci 0000:00:17.0: reg 0x10: [mem 0x9091d000-0x9091dfff]
    [ 0.237874] pci 0000:00:17.0: reg 0x14: [mem 0x9091c000-0x9091cfff]
    [ 0.237941] pci 0000:00:17.0: PME# supported from D0 D3hot
    [ 0.238080] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
    [ 0.238109] pci 0000:00:1a.0: reg 0x10: [mem 0x90800000-0x908fffff]
    [ 0.238125] pci 0000:00:1a.0: reg 0x14: [mem 0x90700000-0x907fffff]
    [ 0.238234] pci 0000:00:1a.0: PME# supported from D0 D3hot
    [ 0.238369] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300
    [ 0.238395] pci 0000:00:1b.0: reg 0x10: [mem 0x90910000-0x90913fff 64bit]
    [ 0.238467] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.238595] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400
    [ 0.238661] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.238730] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.238805] pci 0000:00:1c.1: [8086:0f4a] type 01 class 0x060400
    [ 0.238869] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.238938] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.239009] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400
    [ 0.239073] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.239142] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.239220] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
    [ 0.239413] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500
    [ 0.239450] pci 0000:00:1f.3: reg 0x10: [mem 0x90918000-0x9091801f]
    [ 0.239523] pci 0000:00:1f.3: reg 0x20: [io 0x2000-0x201f]
    [ 0.239806] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.239939] pci 0000:02:00.0: [14e4:4365] type 00 class 0x028000
    [ 0.239969] pci 0000:02:00.0: reg 0x10: [mem 0x90600000-0x90607fff 64bit]
    [ 0.240106] pci 0000:02:00.0: supports D1 D2
    [ 0.240109] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.240155] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.244425] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.244433] pci 0000:00:1c.1: bridge window [mem 0x90600000-0x906fffff]
    [ 0.244537] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.244559] pci 0000:03:00.0: reg 0x10: [io 0x1000-0x10ff]
    [ 0.244589] pci 0000:03:00.0: reg 0x18: [mem 0x90500000-0x90500fff 64bit]
    [ 0.244609] pci 0000:03:00.0: reg 0x20: [mem 0x90400000-0x90403fff 64bit pref]
    [ 0.244701] pci 0000:03:00.0: supports D1 D2
    [ 0.244704] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.244753] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.251067] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.251073] pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    [ 0.251079] pci 0000:00:1c.2: bridge window [mem 0x90500000-0x905fffff]
    [ 0.251085] pci 0000:00:1c.2: bridge window [mem 0x90400000-0x904fffff 64bit pref]
    [ 0.251926] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *7
    [ 0.252051] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.252168] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.252284] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.252400] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.252515] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.252630] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.252746] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *7
    [ 0.255427] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.255679] ACPI : EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62
    [ 0.255890] vgaarb: setting as boot device: PCI:0000:00:02.0
    [ 0.255894] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.255900] vgaarb: loaded
    [ 0.255902] vgaarb: bridge control possible 0000:00:02.0
    [ 0.255981] PCI: Using ACPI for IRQ routing
    [ 0.257377] PCI: pci_cache_line_size set to 64 bytes
    [ 0.257448] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 0.257451] e820: reserve RAM buffer [mem 0x1f000000-0x1fffffff]
    [ 0.257454] e820: reserve RAM buffer [mem 0x781af000-0x7bffffff]
    [ 0.257457] e820: reserve RAM buffer [mem 0x794c6000-0x7bffffff]
    [ 0.257460] e820: reserve RAM buffer [mem 0x7a000000-0x7bffffff]
    [ 0.257646] NetLabel: Initializing
    [ 0.257649] NetLabel: domain hash size = 128
    [ 0.257651] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.257674] NetLabel: unlabeled traffic allowed by default
    [ 0.257740] Switched to clocksource refined-jiffies
    [ 0.266257] pnp: PnP ACPI init
    [ 0.266368] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.266512] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.266518] system 00:01: [io 0x0400-0x047f] has been reserved
    [ 0.266522] system 00:01: [io 0x0500-0x05fe] has been reserved
    [ 0.266526] system 00:01: [io 0x0600-0x061f] has been reserved
    [ 0.266531] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.266537] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.266663] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.267177] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
    [ 0.267183] system 00:03: [mem 0xfed01000-0xfed01fff] has been reserved
    [ 0.267187] system 00:03: [mem 0xfed03000-0xfed03fff] has been reserved
    [ 0.267191] system 00:03: [mem 0xfed04000-0xfed04fff] has been reserved
    [ 0.267196] system 00:03: [mem 0xfed0c000-0xfed0ffff] could not be reserved
    [ 0.267200] system 00:03: [mem 0xfed08000-0xfed08fff] has been reserved
    [ 0.267204] system 00:03: [mem 0xfed1c000-0xfed1cfff] has been reserved
    [ 0.267208] system 00:03: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.267213] system 00:03: [mem 0xfef00000-0xfeffffff] has been reserved
    [ 0.267218] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.268674] pnp: PnP ACPI: found 4 devices
    [ 0.277065] Switched to clocksource acpi_pm
    [ 0.277091] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.277097] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.277102] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    [ 0.277111] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.277116] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.277135] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.277139] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.277144] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.277148] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.277151] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.277162] pci 0000:00:1c.0: BAR 14: no space for [mem size 0x00200000]
    [ 0.277166] pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
    [ 0.277176] pci 0000:00:1c.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
    [ 0.277180] pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    [ 0.277189] pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]
    [ 0.277193] pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    [ 0.277200] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.277205] pci 0000:00:1c.1: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.277217] pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]
    [ 0.277221] pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    [ 0.277227] pci 0000:00:1c.0: BAR 14: no space for [mem size 0x00200000]
    [ 0.277231] pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
    [ 0.277240] pci 0000:00:1c.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
    [ 0.277244] pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
    [ 0.277248] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.277252] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.277264] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.277268] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    [ 0.277274] pci 0000:00:1c.1: bridge window [mem 0x90600000-0x906fffff]
    [ 0.277283] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.277287] pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    [ 0.277293] pci 0000:00:1c.2: bridge window [mem 0x90500000-0x905fffff]
    [ 0.277298] pci 0000:00:1c.2: bridge window [mem 0x90400000-0x904fffff 64bit pref]
    [ 0.277306] pci_bus 0000:00: resource 4 [io 0x0000-0x006f]
    [ 0.277309] pci_bus 0000:00: resource 5 [io 0x0078-0x0cf7]
    [ 0.277313] pci_bus 0000:00: resource 6 [io 0x0d00-0xffff]
    [ 0.277316] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff]
    [ 0.277320] pci_bus 0000:00: resource 8 [mem 0x000c0000-0x000dffff]
    [ 0.277323] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000fffff]
    [ 0.277327] pci_bus 0000:00: resource 10 [mem 0x80000000-0x909ffffe]
    [ 0.277331] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.277335] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.277338] pci_bus 0000:02: resource 1 [mem 0x90600000-0x906fffff]
    [ 0.277342] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
    [ 0.277345] pci_bus 0000:03: resource 1 [mem 0x90500000-0x905fffff]
    [ 0.277349] pci_bus 0000:03: resource 2 [mem 0x90400000-0x904fffff 64bit pref]
    [ 0.277394] NET: Registered protocol family 2
    [ 0.277708] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.277807] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
    [ 0.277882] TCP: Hash tables configured (established 16384 bind 16384)
    [ 0.277930] TCP: reno registered
    [ 0.277940] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.277962] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.278050] NET: Registered protocol family 1
    [ 0.278077] pci 0000:00:02.0: Video device with shadowed ROM
    [ 0.278420] PCI: CLS 64 bytes, default 64
    [ 0.278507] Unpacking initramfs...
    [ 0.363030] Freeing initrd memory: 3164K (ffff8800379c2000 - ffff880037cd9000)
    [ 0.363325] microcode: CPU0 sig=0x30678, pf=0x8, revision=0x824
    [ 0.363342] microcode: CPU1 sig=0x30678, pf=0x8, revision=0x824
    [ 0.363454] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.363501] Scanning for low memory corruption every 60 seconds
    [ 0.364076] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.364106] Initialise system trusted keyring
    [ 0.364623] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.367286] zpool: loaded
    [ 0.367291] zbud: loaded
    [ 0.367570] VFS: Disk quotas dquot_6.5.2
    [ 0.367637] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.367884] msgmni has been set to 3778
    [ 0.367982] Key type big_key registered
    [ 0.368394] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.368491] io scheduler noop registered
    [ 0.368496] io scheduler deadline registered
    [ 0.368553] io scheduler cfq registered (default)
    [ 0.369157] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.369189] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.369267] efifb: probing for efifb
    [ 0.369275] efifb: framebuffer at 0xa0000, mapped to 0xffff8800000a0000, using 64k, total 64k
    [ 0.369278] efifb: mode is 640x480x1, linelength=80, pages=1
    [ 0.369280] efifb: scrolling: redraw
    [ 0.369283] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.371834] Console: switching to colour frame buffer device 80x30
    [ 0.374216] fb0: EFI VGA frame buffer device
    [ 0.374232] intel_idle: MWAIT substates: 0x33000020
    [ 0.374235] intel_idle: v0.4 model 0x37
    [ 0.374238] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.374460] GHES: HEST is not enabled!
    [ 0.374613] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.394909] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.395990] hpet: number irqs doesn't agree with number of timers
    [ 0.396024] Linux agpgart interface v0.103
    [ 0.396109] rtc_cmos 00:00: RTC can wake from S4
    [ 0.396382] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
    [ 0.396413] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
    [ 0.396432] Intel P-state driver initializing.
    [ 0.396709] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.397338] TCP: cubic registered
    [ 0.398118] NET: Registered protocol family 10
    [ 0.399444] NET: Registered protocol family 17
    [ 0.401489] Loading compiled-in X.509 certificates
    [ 0.401523] registered taskstats version 1
    [ 0.402998] Magic number: 6:785:649
    [ 0.403061] acpi LNXCPU:02: hash matches
    [ 0.403367] rtc_cmos 00:00: setting system clock to 2014-11-14 20:38:52 UTC (1415997532)
    [ 0.404025] PM: Hibernation image not present or could not be loaded.
    [ 0.407661] Freeing unused kernel memory: 1140K (ffffffff818e5000 - ffffffff81a02000)
    [ 0.407671] Write protecting the kernel read-only data: 8192k
    [ 0.415930] Freeing unused kernel memory: 752K (ffff880001544000 - ffff880001600000)
    [ 0.419109] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    [ 0.434439] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.464489] sdhci: Secure Digital Host Controller Interface driver
    [ 0.464494] sdhci: Copyright(c) Pierre Ossman
    [ 0.471477] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.471481] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.471995] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.480290] sdhci-pci 0000:00:12.0: SDHCI controller found [8086:0f16] (rev e)
    [ 0.481461] sdhci-pci 0000:00:12.0: No vmmc regulator found
    [ 0.481466] sdhci-pci 0000:00:12.0: No vqmmc regulator found
    [ 0.483289] ACPI: bus type USB registered
    [ 0.483335] usbcore: registered new interface driver usbfs
    [ 0.483355] usbcore: registered new interface driver hub
    [ 0.483418] usbcore: registered new device driver usb
    [ 0.485860] mmc0: SDHCI controller on PCI [0000:00:12.0] using ADMA
    [ 0.485891] sdhci-pci 0000:00:17.0: SDHCI controller found [8086:0f50] (rev e)
    [ 0.487077] sdhci-pci 0000:00:17.0: No vmmc regulator found
    [ 0.487080] sdhci-pci 0000:00:17.0: No vqmmc regulator found
    [ 0.488267] mmc1: SDHCI controller on PCI [0000:00:17.0] using ADMA
    [ 0.500911] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.500924] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.501319] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.501349] xhci_hcd 0000:00:14.0: irq 87 for MSI/MSI-X
    [ 0.501680] hub 1-0:1.0: USB hub found
    [ 0.501699] hub 1-0:1.0: 6 ports detected
    [ 0.502403] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.502411] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.502682] hub 2-0:1.0: USB hub found
    [ 0.502697] hub 2-0:1.0: 1 port detected
    [ 0.536044] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.682960] mmc1: BKOPS_EN bit is not set
    [ 0.753714] mmc1: new HS200 MMC card at address 0001
    [ 0.757972] mmcblk0: mmc1:0001 HBG4e 29.1 GiB
    [ 0.758296] mmcblk0boot0: mmc1:0001 HBG4e partition 1 4.00 MiB
    [ 0.758656] mmcblk0boot1: mmc1:0001 HBG4e partition 2 4.00 MiB
    [ 0.759001] mmcblk0rpmb: mmc1:0001 HBG4e partition 3 4.00 MiB
    [ 0.760381] mmcblk0: p1
    [ 0.769458] mmcblk0boot1: unknown partition table
    [ 0.776772] mmcblk0boot0: unknown partition table
    [ 0.861284] usb 1-2: new high-speed USB device number 2 using xhci_hcd
    [ 1.039303] hub 1-2:1.0: USB hub found
    [ 1.039605] hub 1-2:1.0: 4 ports detected
    [ 1.040760] usb: failed to peer 1-2-port1 and usb2-port1 by location (1-2-port1:none) (usb2-port1:usb1-port1)
    [ 1.040784] usb 1-2-port1: failed to peer to usb2-port1 (-16)
    [ 1.040793] usb: port power management may be unreliable
    [ 1.041303] usb: failed to peer 1-2-port2 and usb2-port1 by location (1-2-port2:none) (usb2-port1:usb1-port1)
    [ 1.041322] usb 1-2-port2: failed to peer to usb2-port1 (-16)
    [ 1.041742] usb: failed to peer 1-2-port3 and usb2-port1 by location (1-2-port3:none) (usb2-port1:usb1-port1)
    [ 1.041761] usb 1-2-port3: failed to peer to usb2-port1 (-16)
    [ 1.042168] usb: failed to peer 1-2-port4 and usb2-port1 by location (1-2-port4:none) (usb2-port1:usb1-port1)
    [ 1.042186] usb 1-2-port4: failed to peer to usb2-port1 (-16)
    [ 1.204964] usb 1-4: new high-speed USB device number 3 using xhci_hcd
    [ 1.365057] tsc: Refined TSC clocksource calibration: 2166.666 MHz
    [ 1.458942] usb 1-2.1: new full-speed USB device number 4 using xhci_hcd
    [ 2.365981] Switched to clocksource tsc
    [ 9.024844] mmc1: Got data interrupt 0x00000002 even though no data operation was in progress.
    [ 9.027472] mmcblk0rpmb: error -110 transferring data, sector 8064, nr 8, cmd response 0x900, card status 0xb00
    [ 9.028069] mmcblk0rpmb: retrying using single block read
    [ 9.030203] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 9.032796] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 9.035371] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 9.037958] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 9.040486] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 9.043040] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 9.043462] end_request: I/O error, dev mmcblk0rpmb, sector 8064
    [ 9.043805] Buffer I/O error on device mmcblk0rpmb, logical block 1008
    [ 17.277306] mmc1: Got data interrupt 0x00000002 even though no data operation was in progress.
    [ 17.279940] mmcblk0rpmb: error -110 transferring data, sector 8064, nr 8, cmd response 0x900, card status 0xb00
    [ 17.293029] mmcblk0rpmb: retrying using single block read
    [ 17.295226] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 17.323127] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 17.351243] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 17.379502] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 17.407857] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 17.436111] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 17.462187] end_request: I/O error, dev mmcblk0rpmb, sector 8064
    [ 17.475265] Buffer I/O error on device mmcblk0rpmb, logical block 1008
    [ 17.568142] sdhci: Timeout waiting for Buffer Read Ready interrupt during tuning procedure, falling back to fixed sampling clock
    [ 17.922112] random: nonblocking pool is initialized
    [ 45.820995] EXT4-fs (mmcblk0p1): 4 orphan inodes deleted
    [ 45.821014] EXT4-fs (mmcblk0p1): recovery complete
    [ 45.839454] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
    [ 46.315355] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 46.454989] systemd-journald[128]: File /var/log/journal/c1ea0510636b4ead93870d2114f006f5/system.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 46.469206] EXT4-fs (mmcblk0p1): re-mounted. Opts: data=ordered
    [ 46.543132] systemd-journald[128]: Received request to flush runtime journal from PID 1
    [ 46.757953] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 46.759247] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    [ 46.759257] ACPI: Power Button [PWRB]
    [ 46.759346] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
    [ 46.759350] ACPI: Sleep Button [SLPB]
    [ 46.759441] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    [ 46.759490] ACPI: Lid Switch [LID]
    [ 46.759576] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 46.759580] ACPI: Power Button [PWRF]
    [ 46.785055] mei_txe 0000:00:1a.0: irq 88 for MSI/MSI-X
    [ 46.832919] ACPI: AC Adapter [ACAD] (on-line)
    [ 46.845651] wmi: Mapper loaded
    [ 46.852089] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
    [ 46.878734] snd_hda_intel 0000:00:1b.0: irq 89 for MSI/MSI-X
    [ 46.879800] hidraw: raw HID events driver (C) Jiri Kosina
    [ 46.879829] [drm] Initialized drm 1.1.0 20060810
    [ 46.888955] ACPI: Battery Slot [BAT1] (battery present)
    [ 46.910854] ACPI Warning: SystemIO range 0x0000000000002000-0x000000000000201f conflicts with OpRegion 0x0000000000002000-0x000000000000200f (\_SB_.PCI0.SBUS.SMBI) (20140724/utaddress-258)
    [ 46.910865] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 46.914888] bcma: bus0: Found chip with id 0xA886, rev 0x01 and package 0x08
    [ 46.914912] bcma: bus0: Core 0 found: ChipCommon (manuf 0x4BF, id 0x800, rev 0x28, class 0x0)
    [ 46.914930] bcma: bus0: Core 1 found: IEEE 802.11 (manuf 0x4BF, id 0x812, rev 0x21, class 0x0)
    [ 46.915040] bcma: bus0: Core 2 found: PCIe (manuf 0x4BF, id 0x820, rev 0x16, class 0x0)
    [ 46.915081] bcma: bus0: Core 3 found: UNKNOWN (manuf 0x43B, id 0x368, rev 0x00, class 0x0)
    [ 46.921669] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 46.921694] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 46.929220] r8169 0000:03:00.0: irq 90 for MSI/MSI-X
    [ 46.929504] r8169 0000:03:00.0 eth0: RTL8168g/8111g at 0xffffc90000356000, c4:54:44:c3:00:9c, XID 0c000800 IRQ 90
    [ 46.929508] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 46.929921] thermal LNXTHERM:00: registered as thermal_zone1
    [ 46.929925] ACPI: Thermal Zone [TZ01] (42 C)
    [ 46.937929] bcma: bus0: Bus registered
    [ 46.944450] [drm] Memory usable by graphics device = 2048M
    [ 46.944457] [drm] Replacing VGA console driver
    [ 46.944463] checking generic (a0000 10000) vs hw (80000000 10000000)
    [ 46.944465] fb: switching to inteldrmfb from EFI VGA
    [ 46.944514] Console: switching to colour dummy device 80x25
    [ 46.946311] i915 0000:00:02.0: irq 91 for MSI/MSI-X
    [ 46.946327] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 46.946330] [drm] Driver supports precise vblank timestamp query.
    [ 47.025611] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 47.066033] [drm] VBT doesn't support DRRS
    [ 47.195396] [drm] GMBUS [i915 gmbus dpc] timed out, falling back to bit banging on pin 4
    [ 47.211039] fbcon: inteldrmfb (fb0) is primary device
    [ 48.893803] Console: switching to colour frame buffer device 170x48
    [ 48.922732] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 48.922746] i915 0000:00:02.0: registered panic notifier
    [ 48.968459] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 48.968951] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
    [ 48.969149] [drm] Initialized i915 1.6.0 20140725 for 0000:00:02.0 on minor 0
    [ 55.143879] mmc1: Got data interrupt 0x00000002 even though no data operation was in progress.
    [ 55.146515] mmcblk0rpmb: error -110 transferring data, sector 8064, nr 8, cmd response 0x900, card status 0xb00
    [ 55.146934] mmcblk0rpmb: retrying using single block read
    [ 55.149180] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 55.151614] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 55.154086] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 55.156560] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 55.159039] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 55.161459] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 55.161802] end_request: I/O error, dev mmcblk0rpmb, sector 8064
    [ 55.162057] Buffer I/O error on device mmcblk0rpmb, logical block 1008
    [ 63.388980] mmc1: Got data interrupt 0x00000002 even though no data operation was in progress.
    [ 63.391496] mmcblk0rpmb: error -110 transferring data, sector 8064, nr 8, cmd response 0x900, card status 0xb00
    [ 63.391966] mmcblk0rpmb: retrying using single block read
    [ 63.394102] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 63.396574] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 63.399050] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 63.401468] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 63.403913] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 63.406388] mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900
    [ 63.406700] end_request: I/O error, dev mmcblk0rpmb, sector 8064
    [ 63.406951] Buffer I/O error on device mmcblk0rpmb, logical block 1008
    [ 63.423775] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 63.529519] media: Linux media interface: v0.10
    [ 63.580182] Linux video capture interface: v2.00
    [ 63.608499] Bluetooth: Core ver 2.19
    [ 63.608788] NET: Registered protocol family 31
    [ 63.608794] Bluetooth: HCI device and connection manager initialized
    [ 63.608807] Bluetooth: HCI socket layer initialized
    [ 63.608815] Bluetooth: L2CAP socket layer initialized
    [ 63.608833] Bluetooth: SCO socket layer initialized
    [ 63.642483] uvcvideo: Found UVC 1.00 device HD WebCam (04f2:b469)
    [ 63.650153] input: HD WebCam as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/input/input7
    [ 63.650314] usbcore: registered new interface driver uvcvideo
    [ 63.650318] USB Video Class driver (1.1.1)
    [ 63.665373] intel_rapl: Found RAPL domain package
    [ 63.665379] intel_rapl: Found RAPL domain core
    [ 63.688550] iTCO_vendor_support: vendor-support=0
    [ 63.701582] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 63.701652] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
    [ 63.701827] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 63.739578] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 63.739584] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 63.739588] sound hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [ 63.739590] sound hdaudioC0D0: mono: mono_out=0x0
    [ 63.739593] sound hdaudioC0D0: inputs:
    [ 63.739596] sound hdaudioC0D0: Mic=0x12
    [ 63.807591] usbcore: registered new interface driver btusb
    [ 63.809964] r8169 0000:03:00.0 enp3s0: renamed from eth0
    [ 63.859693] acer_wmi: Acer Laptop ACPI-WMI Extras
    [ 63.859712] acer_wmi: Function bitmap for Communication Button: 0x801
    [ 63.859861] acer_wmi: Brightness must be controlled by acpi video driver
    [ 63.871050] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 63.873001] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 63.875263] acer_wmi: Enabling Launch Manager failed: 0xe4 - 0x0
    [ 63.875363] input: Acer WMI hotkeys as /devices/virtual/input/input10
    [ 63.879763] input: Acer BMA150 accelerometer as /devices/virtual/input/input11
    [ 63.896357] i2c_hid i2c-SYN1B7D:01: failed to retrieve report from device.
    [ 63.904021] i2c_hid i2c-SYN1B7D:01: failed to retrieve report from device.
    [ 63.904883] i2c_hid i2c-SYN1B7D:01: failed to retrieve report from device.
    [ 63.905761] i2c_hid i2c-SYN1B7D:01: failed to retrieve report from device.
    [ 63.906614] i2c_hid i2c-SYN1B7D:01: failed to retrieve report from device.
    [ 63.906794] input: SYN1B7D:01 06CB:2991 UNKNOWN as /devices/platform/80860F41:00/i2c-0/i2c-SYN1B7D:01/0018:06CB:2991.0001/input/input12
    [ 63.907001] hid-multitouch 0018:06CB:2991.0001: input,hidraw0: <UNKNOWN> HID v1.00 Mouse [SYN1B7D:01 06CB:2991] on
    [ 63.967191] mousedev: PS/2 mouse device common for all mice
    [ 64.026205] cfg80211: Calling CRDA to update world regulatory domain
    [ 64.458411] r8169 0000:03:00.0 enp3s0: link down
    [ 64.458485] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    [ 64.458497] r8169 0000:03:00.0 enp3s0: link down
    [ 65.817131] Bluetooth: hci0 command 0x1003 tx timeout
    [ 66.041823] r8169 0000:03:00.0 enp3s0: link up
    [ 66.041860] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
    journalctl -xn gives:
    -- Logs begin at Fr 2014-11-14 20:35:40 CET, end at Fr 2014-11-14 21:40:11 CET. --
    Nov 14 21:40:08 weierstrass systemd[302]: Reached target Timers.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Nov 14 21:40:08 weierstrass systemd[302]: Starting Sockets.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Nov 14 21:40:08 weierstrass systemd[302]: Reached target Sockets.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Nov 14 21:40:08 weierstrass systemd[302]: Starting Basic System.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Nov 14 21:40:08 weierstrass systemd[302]: Reached target Basic System.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Nov 14 21:40:08 weierstrass systemd[302]: Starting Default.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Nov 14 21:40:08 weierstrass systemd[302]: Reached target Default.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Nov 14 21:40:08 weierstrass systemd[302]: Startup finished in 29ms.
    -- Subject: System start-up is now complete
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- All system services necessary queued for starting at boot have been
    -- successfully started. Note that this does not mean that the machine is
    -- now idle as services might still be busy with completing start-up.
    -- Kernel start-up required KERNEL_USEC microseconds.
    -- Initial RAM disk start-up required INITRD_USEC microseconds.
    -- Userspace start-up required 29200 microseconds.
    Nov 14 21:40:08 weierstrass login[179]: ROOT LOGIN ON tty1
    Nov 14 21:40:11 weierstrass dhcpcd[301]: enp3s0: no IPv6 Routers available
    ... which looks pretty fine to me...
    No, no other issues so far.
    How could I find out if some autologin is set up?

  • Tuning of procedure having cursor

    I have following procedure which has to be tuned. I was thinking of using Bulk collect, but I believe I cannot use because I am having one select statement before update. art_neg_item_level table has got 40000000 records and art_prod_series has got 7000000 records. The procedure is not getting executed at all (even in one full day). Please suggest some alternative solution
    CREATE OR REPLACE PROCEDURE Art_Neg_Item_Cost_Update IS
    v_prod_id                    art_neg_item_level.prod_id%TYPE;
    v_busi_dte                    art_neg_item_level.busi_dte%TYPE;
    v_ser_ltr                    art_neg_item_level.ser_ltr%TYPE;
    v_itm_qty                    art_neg_item_level.itm_qty%TYPE;
    v_curr_cost                    art_prod_series.curr_cost%TYPE;
    v_ord_no                    art_neg_item_level.ord_no%TYPE;
    CURSOR get_transaction_data IS
         SELECT prod_id, ser_ltr, busi_dte, itm_qty, ord_no
              FROM art_neg_item_level
              WHERE extd_cost=0;
    BEGIN
    -- Loop through the import data, parse out the string to variables
    OPEN get_transaction_data;
    LOOP
    FETCH get_transaction_data INTO v_prod_id, v_ser_ltr, v_busi_dte, v_itm_qty, v_ord_no;
    EXIT WHEN get_transaction_data%NOTFOUND;
    BEGIN
         SELECT a.curr_cost
         INTO v_curr_cost
         FROM art_prod_series a
         WHERE a.eff_dte = (SELECT MAX(c.eff_dte)
                             FROM art_prod_series c
                             WHERE a.prod_id = c.prod_id
                             AND a.ser_ltr = c.ser_ltr
                                  AND c.eff_dte <= v_busi_dte
         AND a.curr_cost <> 0
         AND v_prod_id = a.prod_id
         AND v_ser_ltr = a.ser_ltr;
         IF SQL%ROWCOUNT <> 0 THEN
              UPDATE art_neg_item_level
              SET cost = v_curr_cost,
                   extd_cost = v_curr_cost*v_itm_qty
              WHERE prod_id = v_prod_id
              AND     ser_ltr = v_ser_ltr
              AND     busi_dte = v_busi_dte
              AND     itm_qty = v_itm_qty
              AND     ord_no = v_ord_no
              AND extd_cost = 0;
              COMMIT;
         END IF;
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
              NULL;
    END;
    END LOOP;
    CLOSE get_transaction_data;
    COMMIT;
    END Art_Neg_Item_Cost_Update;

    Hi
    Please go for using collection instead of cursors.. Please try this
    CREATE OR REPLACE PROCEDURE Art_Neg_Item_Cost_Update IS
    v_prod_id art_neg_item_level.prod_id%TYPE;
    v_busi_dte art_neg_item_level.busi_dte%TYPE;
    v_ser_ltr art_neg_item_level.ser_ltr%TYPE;
    v_itm_qty art_neg_item_level.itm_qty%TYPE;
    v_curr_cost art_prod_series.curr_cost%TYPE;
    v_ord_no art_neg_item_level.ord_no%TYPE;
    BEGIN
    -- Loop through the import data, parse out the string to variables
    --OPEN get_transaction_data;
    --LOOP
    --FETCH get_transaction_data INTO v_prod_id, v_ser_ltr, v_busi_dte, v_itm_qty, v_ord_no;
    --EXIT WHEN get_transaction_data%NOTFOUND;
    for i in(SELECT prod_id, ser_ltr, busi_dte, itm_qty, ord_no
    FROM art_neg_item_level
    WHERE extd_cost=0)
    loop
    BEGIN
    SELECT a.curr_cost
    INTO v_curr_cost
    FROM art_prod_series a
    WHERE a.eff_dte = (SELECT MAX(c.eff_dte)
    FROM art_prod_series c
    WHERE a.prod_id = c.prod_id
    AND a.ser_ltr = c.ser_ltr
    AND c.eff_dte <= i.busi_dte
    AND a.curr_cost <> 0
    AND i.prod_id = a.prod_id
    AND i.ser_ltr = a.ser_ltr;
    IF SQL%ROWCOUNT 0 THEN
    UPDATE art_neg_item_level
    SET cost = v_curr_cost,
    extd_cost = v_curr_cost*i.itm_qty
    WHERE prod_id =i.prod_id
    AND ser_ltr =i.ser_ltr
    AND busi_dte = i.busi_dte
    AND itm_qty = i.itm_qty
    AND ord_no = i.ord_no
    AND extd_cost = 0;
    COMMIT;
    END IF;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    END;
    END LOOP;
    CLOSE get_transaction_data;
    COMMIT;
    END Art_Neg_Item_Cost_Update;

  • Tuning of very small procedure

    Hi All,
    We are using the following procedure to get respective sequence number by passing the table name as parameter:
    ================================
    CREATE OR REPLACE procedure SEQ_GEN(Tbl_name in varchar2, SEQ_NO out number) is
    seq_name varchar2(100);
    select_str varchar2(100);
    BEGIN
    seq_name:= tbl_name||'_seq';
    select_str := 'select '||v_seq_name||'.nextval from dual';
    execute immediate v_select_str into seq_no;
    EXCEPTION
    WHEN OTHERS THEN
    -- If Sequence does not exists in the database
    IF (SQLCODE='-002289') THEN
    Dbms_Output.PUT_LINE('This sequence does not exist: '||v_seq_name);
    end if;
    END seq_gen;
    ========================
    Daily, millions of records will be loaded using this procedure.
    (An ETL Tool will be calling this procedure)
    Is there any way this procedure can be fine tuned?
    Awaiting your inputs
    Thanks,
    Kishore

    Will it improve the performance if created as
    function instead of proc?You are loosing the point. Whatever you do will never improve the performance as you don't need this procedure.
    First, let my mind clear on the idea:
    Can't you really directly use seq.nextval?
    We have taken care so that all the sequences are
    present in db.Yes, db already takes care, so returns the error: "object does not exists". If you don't have the sequence present, you cannot do what you want, anyway. Displaying the error manually doesn't fix the situation.

  • Need help in tuning a procedure

    DECLARE
    CURSOR Cur_sub_rp IS
    SELECT A.SUB_ACCOUNT, B.PH_basic_srv,B.PH_Salesman,A.SUB_SSN
    FROM STG_SUB_MASTER_MONTH_HISTORY A, STG_PHN_MASTER_MONTH_HISTORY
    B
    WHERE A.SUB_ACCOUNT = B.PH_ACCOUNT (+)
    AND A.MONTH_ID = B.MONTH_ID ;
    TYPE t_values_tab IS TABLE OF cur_sub_rp%rowtype ;
    values_tab t_values_tab := t_values_tab() ;
    BEGIN
    OPEN Cur_sub_rp ;
    LOOP
    FETCH Cur_sub_rp BULK COLLECT INTO Values_tab
    LIMIT 1000;
    EXIT WHEN Cur_sub_rp%NOTFOUND ;
    END LOOP ;
    CLOSE Cur_sub_rp;
    FORALL i IN VALUES_TAB.first..values_tab.last
    INSERT INTO SUB_PHN_1 VALUES VALUES_TAB(i);
    commit;
    END;
    The tables used here has 9 million records each.
    The total process takes around 19 minutes.
    Need your help in optimizing the process.

    i have tried using
    Create table as SELECT A.SUB_ACCOUNT,  B.PH_basic_srv,B.PH_Salesman,A.SUB_SSN
                        FROM STG_SUB_MASTER_MONTH_HISTORY A, STG_PHN_MASTER_MONTH_HISTORY
    B
                        WHERE A.SUB_ACCOUNT = B.PH_ACCOUNT (+)
                        AND A.MONTH_ID = B.MONTH_ID (+);But still taking long time(apprx 15 min).
    so used this...
    help me in tuning the query in either of this.
    DECLARE
    CURSOR Cur_sub_rp IS
                    SELECT A.SUB_ACCOUNT,  B.PH_basic_srv,B.PH_Salesman,A.SUB_SSN
                        FROM STG_SUB_MASTER_MONTH_HISTORY A, STG_PHN_MASTER_MONTH_HISTORY
    B
                        WHERE A.SUB_ACCOUNT = B.PH_ACCOUNT (+)
                        AND A.MONTH_ID = B.MONTH_ID (+);
    TYPE t_values_tab IS TABLE OF cur_sub_rp%rowtype ;
    values_tab t_values_tab := t_values_tab()  ;
    BEGIN
        OPEN Cur_sub_rp ;
        LOOP
            FETCH Cur_sub_rp BULK COLLECT INTO Values_tab
                                                LIMIT 1000;
            EXIT WHEN Cur_sub_rp%NOTFOUND ;
        END LOOP ;
        CLOSE Cur_sub_rp;
    FORALL i IN VALUES_TAB.first..values_tab.last
    INSERT INTO SUB_PHN_1 VALUES VALUES_TAB(i);
    commit;
    END;Message was edited by:
    Vakeel
    Message was edited by:
    Vakeel

Maybe you are looking for

  • Capturing shipping cost at the time of GR

    Hi Dear all LE consultants I have one problem .I have created PO. At the time of PO creation , i do not know some shipping/transport costs.So I have configuring Transport module and done VL31n,VT01n,VT02n and VI01 t.codes Shiping costs are being full

  • Issue at the time of Down payment

    Dear friends I created one Down payment request for Rs.10000/- in F-47. When I am making the Down payment through F-48, system is allowing more than Rs.10000/- against the above Down payment request. Is there any control or any note to apply or any c

  • Screen black and on buttom broken

    please advise how i can get the black screen to turn on.  My on button is broken.  My phone is working because the phone rings when i call it

  • Wireless internet

    YEs i just bought a new laptop and then bought a router what do i need still for wireless internet at home and what are some companies i can get it from need help

  • Sql Queries - adding calculated variables to views

    Hello: I'm trying to do add a calculated variable to my view that isn't an Entity Attribute, its simple really but i don't know if I'm leaving something out or not. I add the "new Attribute" , call it nCompleted, type - number I then check off everyt