Variable selection is very slow in WAD

Hi All,
Variable selection is very slow, It  takes 2 min to 3 min to get the variable list.
There are Lots of Data in the system and This query is from Multicube
please help me out from this issue. It's Urgent !!
Thanks,
Greg

Hi Greg,
I have the same issue.
It is very important to improve performance of the F4 function in the web.
For one query in BEx, it takes about 2 seconds to open the F4 screen for 0CUSTOMER. In the web (WAD) it takes a lot more even with HTTP compression enabled!
Anybody with a solution to improve performance of the variable selection screen?
Thanks!

Similar Messages

  • SELECT DISTINCT very slow

    hi @all
    I'm using Oracle 11g R2 on Windows 7
    Unfortunately i have a column in a table that stored multiple vales delimited with *,* e.g. [+*execute 1B-B-06-34-61-00A-281A-A, 1B-B-06-37-10-00A-281A-A, 1B-B-06-37-20-00A-281A-A, 1B-B-06-37-30-00A-281A-A*+]
    I have to query that column to get seperate values after execute
    Example:
    Serial_No Remarks
    ---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    AS0007 execute 1B-B-06-34-61-00A-281A-A, 1B-B-06-37-10-00A-281A-A, 1B-B-06-37-20-00A-281A-A, 1B-B-06-37-30-00A-281A-A
    ---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    AS0007 execute 1B-B-28-52-00-00A-340C-A
    ---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    AS0007 execute 1B-B-57-11-03-06A-281A-A, 1B-B-57-11-03-07A-281A-A, 1B-B-57-11-03-07B-281A-A,
    ---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    expected Output:
    Serial_No Remarks
    ---------|----------------------------------------------------------------
    AS0007 1B-B-06-34-61-00A-281A-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-06-37-10-00A-281A-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-06-37-20-00A-281A-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-06-37-30-00A-281A-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-28-52-00-00A-340C-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-57-11-03-06A-281A-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-57-11-03-07A-281A-A
    ---------|----------------------------------------------------------------
    AS0007 1B-B-57-11-03-07B-281A-A
    I have the following Script to query this:
    select distinct SCHED_MAINT.AC_SERIAL_NO, regexp_substr (SUBSTR(SCHED_MAINT.Remarks, 9), '[^,]+', 1, level) as DMC
    from SCHED_MAINT
    where SCHED_MAINT.NEXT_DUE_MINS = '24000'
    and SCHED_MAINT.AC_SERIAL_NO = 'AS0007'
    connect by prior SCHED_MAINT.AC_SERIAL_NO = SCHED_MAINT.AC_SERIAL_NO
    and regexp_instr (SCHED_MAINT.Remarks, '[^,]+', 1, level) > 0
    and prior dbms_random.string ('p', 10) is not null;
    The Problem is that, with this few rows it works, but slow, if i have more rows e.g 1000, I killed the runtime after 2h without any output
    If I run this script without the DISTINCT it runs fast in one second but i get duplicated rows
    any suggestions to solve this problem
    unfortunately i cannot use funktions or procedures
    thanks in advanced
    cu ice

    WITH clause is just aon-the-fly sample of your real table. Simply remove WITH clause and run:
    select  distinct ac_serial_no,
                     trim(regexp_substr(remarks,'[^,]+',9,column_value)) as DMC
      from  sched_maint,
            table(
                  cast(
                       multiset(
                                select  level
                                  from  dual
                                  connect by level < regexp_count(remarks,',',9) + 1
                       as sys.OdciNumberList
    / And it would take you less time to test multiple ac_serial_no than to post the question:
    with sched_maint as (
                         select 'AS0007' ac_serial_no,'execute 1B-B-06-34-61-00A-281A-A, 1B-B-06-37-10-00A-281A-A, 1B-B-06-37-20-00A-281A-A, 1B-B-06-37-30-00A-281A-A' remarks from dual union all
                         select 'AS0007','execute 1B-B-28-52-00-00A-340C-A' from dual union all
                         select 'AS0007','execute 1B-B-57-11-03-06A-281A-A, 1B-B-57-11-03-07A-281A-A, 1B-B-57-11-03-07B-281A-A' from dual union all
                         select 'AS0008' ac_serial_no,'execute 1B-B-06-34-61-00A-281A-A, 1B-B-06-37-10-00A-281A-A, 1B-B-06-37-20-00A-281A-A, 1B-B-06-37-30-00A-281A-A' remarks from dual union all
                         select 'AS0008','execute 1B-B-28-52-00-00A-340C-A' from dual union all
                         select 'AS0008','execute 1B-B-57-11-03-06A-281A-A, 1B-B-57-11-03-07A-281A-A, 1B-B-57-11-03-07B-281A-A' from dual
    select  distinct ac_serial_no,
                     trim(regexp_substr(remarks,'[^,]+',9,column_value)) as DMC
      from  sched_maint,
            table(
                  cast(
                       multiset(
                                select  level
                                  from  dual
                                  connect by level < regexp_count(remarks,',',9) + 1
                       as sys.OdciNumberList
    AC_SER DMC
    AS0007 1B-B-06-34-61-00A-281A-A
    AS0007 1B-B-06-37-10-00A-281A-A
    AS0007 1B-B-06-37-20-00A-281A-A
    AS0007 1B-B-28-52-00-00A-340C-A
    AS0007 1B-B-57-11-03-06A-281A-A
    AS0007 1B-B-57-11-03-07A-281A-A
    AS0008 1B-B-06-34-61-00A-281A-A
    AS0008 1B-B-06-37-10-00A-281A-A
    AS0008 1B-B-06-37-20-00A-281A-A
    AS0008 1B-B-28-52-00-00A-340C-A
    AS0008 1B-B-57-11-03-06A-281A-A
    AC_SER DMC
    AS0008 1B-B-57-11-03-07A-281A-A
    12 rows selected.
    SQL> SY.

  • SELECT query very slow, need suggestion.

    Dear all,
    Below stmt was coded in my report program.
    It was taking around 14 seconds in development system. The days in s_datum was just 1 or 2 days max.
    But when the same was transferred to test system, it is taking almost 10 minutes, though it we gave just 1 day.
      SELECT * FROM likp INTO TABLE i_likp                  
            WHERE erdat IN s_datum AND wadat_ist > '00000000' 
              AND lfart <> 'EL'                               
              AND vstel not in s_vstel.
    Some of you might suggest to make SELECT query with only s_datum, but i tried it in dev system, it was taking almost 22 secs with only s_datum.  I thought it could be more worse in test system so, did not move that idea.
    Can some one please suggest me why it is happening so.

    Hi,
    The difference, as I suppose you know, happens because LIKP probably has much more records in production than in the development system.
    You must think what is selective in your WHERE clause:
    - erdat in s_datum is selective if you are are only using one day
    - wadat_ist GE '00000000' is not selective (all deliveries with goods issue fulfill that condition)
    - lfart NE 'EL' probably is not selective
    - vsten not in s_vstel probably is not selective
    So in the end only erdat is selective. There is no index in LIKP by ERDAT, so if you really want to make it faster you would need an index by ERDAT.
    Still, if you are only making one SELECT (not inside a loop) I wouldn't expect that to take more than 10 minutes.
    I would measure the program with SE30 to make sure it is really the SELECT that is taking so much time (post here the results), and if it really is the select post here the explain plan.
    By the way, if you need to know all goods issues for the last day I would use change pointers instead.
    Hope this helps,
    Rui Dantas

  • Select count(*) VERY slow!

    The table has only 8 columns and 5 way partitioned.
    It was fine till it had 550 million rows [Oracle 11g + Windows XP Pro]. Select count(*) from table used to take ~ 500 seconds.
    When records count reached 600 million, suddenly looks like database hit a brick wall. Now even select count(*) runs for whopping 2800 seconds!!
    What went wrong by just adding 50 million extra records??
    Thanx.

    analyze table Has been obsoleted by DBMS_STATS package.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_4005.htm#sthref5767
    Note:
    Do not use the COMPUTE and ESTIMATE clauses of ANALYZE to collect optimizer statistics. These clauses are supported for backward compatibility. Instead, use the DBMS_STATS package, which lets you collect statistics in parallel, collect global statistics for partitioned objects, and fine tune your statistics collection in other ways. The optimizer, which depends upon statistics, will eventually use only statistics that have been collected by DBMS_STATS. See PL/SQL Packages and Types Reference for more information on the DBMS_STATS package.
    Edited by: sb92075 on May 16, 2009 11:36 AM

  • The problem is with the new operating system  and sending photo via email when used in my iPad.   From photo I selected 3 photos to send via email. I choose the upload key and choose to send by email. Typing text on the email is very slow.

    The problem is with the new operating system  and sending photo via email when used in my iPad.
    From photo I selected 3 photos to send via email. I choose the upload key and choose to send by email. Typing text on the email is very slow. This is solved by saving the email as a draft and opening the email again from mail.
    Can you amend he system to allow emails to be sent from photo as previously.

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"

  • A very slow select with sub selects sql statement on Oracle

    Hi,
    I'm moving an application from MySql to Oracle. The following select were very efficiently executed in MySql. In oracle its slow like a snail.
    Do anyone have a hint on how to speed it up?
    The slow part is the four sub selects in the select part. Removing them makes the select about 50 times faster on Oracle.
    Best Regards,
    Stephane
    select
    (select count(*) from relation rr where rr.document_id = d.id and rr.product_id = ? and (rr.relation_type_id = 'link' OR rr.relation_type_id = 'product')) as relationList,
    (select count(*) from relation rr where rr.document_id = d.id and rr.product_id = ? and rr.relation_type_id = 'number') as relationNumber,
    (select count(*) from relation rr where rr.document_id = d.id and rr.product_id = ? and rr.relation_type_id = 'title') as relationTitle,
    (select count(*) from relation rr where rr.document_id = d.id and rr.product_id = ? and rr.relation_type_id = 'content') as relationText,
    d.*
    from document d,(
    select distinct r.document_id id
    from relation r
    where
    r.product_id = ?
    ) dd
    where d.id=dd.id

    You are accessing the relation-table too many times, so a rewrite to a query like this
    SQL> select dept.deptno
      2       , dept.dname
      3       , count(decode(job,'CLERK',1)) clerk
      4       , count(decode(job,'MANAGER',1)) manager
      5       , count(decode(job,'SALESMAN',1)) salesman
      6    from dept, emp
      7   where dept.deptno = emp.deptno (+)
      8   group by dept.deptno
      9       , dept.dname
    10  /
        DEPTNO DNAME               CLERK    MANAGER   SALESMAN
            10 ACCOUNTING              1          1          0
            20 RESEARCH                2          1          0
            30 SALES                   1          1          4
            40 OPERATIONS              0          0          0
    4 rijen zijn geselecteerd.will be worth the effort.
    If still not satisfied, you have to do some investigation, as described [url http://forums.oracle.com/forums/thread.jspa?threadID=501834&tstart=0]here
    Regards,
    Rob.

  • Same select max is very slow in one program but fast in another

    Hi,
    I have a report that becomes very slow these few months. I used SQL trace for the report and found out its these codes that slow down the report:
    SELECT MAX( mkpf~budat )
                  FROM mkpf
        INNER JOIN mseg
                       ON mseg~mblnr = mkpf~mblnr AND mseg~mjahr = mkpf~mjahr
                    INTO posting_date
               WHERE mseg~werks  = w_matl-batch_reservations-werks
                     AND mseg~charg  = w_matl-batch_reservations-charg
                     AND mseg~bwart  IN ('261', 'Z61').
    The thing is these codes have been used in different system, DEV, QAS, and PRD. But only in PRD it is very slow, other systems are pretty fast.
    I even created a local copy of that report in PRD, with the same code. The local file runs fast and perfectly. But the original code is just slow.
    Just wondering if anybody met this problem too? any ideas??

    Hi Liu,
    Index creation is not a advisable solution.Please follow the existing indexes by adding Mandt field.
    Try like this
    SELECT MAX( mkpf~budat )
                  FROM mkpf
        INNER JOIN mseg
                       ON mseg~mblnr = mkpf~mblnr AND mseg~mjahr = mkpf~mjahr
                    INTO posting_date
               WHERE mseg~mandt = sy-mandt
                      AND mkpf~mandt = sy-mandt
                      AND mseg~werks  = w_matl-batch_reservations-werks
                     AND mseg~charg  = w_matl-batch_reservations-charg
                     AND mseg~bwart  IN ('261', 'Z61').
    Hope it will be helpful.
    Regards,
    Kannan

  • Variable Selection Screen Issue in WAD

    Hi Guru's,
    I have created a Query in 3.5 and having Variables for the same as Acutal Good's Issued Date & Plant. I am able to see the variable screen with selection option(Intervals) in Query level. But I am not able to see the Variable selection option as interval in Portal (WAD). The variable is showing only as single value.
    Please suggest to get the variable selection screen as interval's.
    Regards,
    Bandi

    Hi,
    I got your point.When you open that query in Analyzer,it shows the variable screen and the variable is shown as a interval variable.But if you open the same query in Web Analyzer,the variable shown as single value variable.
    This looks little weird because both Web and BEx Analyzer uses the same Query.Can you execute the query in RSRT Tcode and check how the variable shown(whether as a Single or interval variable).
    And also check the variable definition.Try to create a new variable with the same settings and check the behavior.
    Rgds,
    Murali

  • My Photoshop CS3 goes very slow/choppy when I have a selection made.

    Hello,
    My Photoshop CS3 goes very slow/choppy when I have a selection made, with those little moving lines indicating the selection (the lines that look like walking ants). When I'm adding to the selection, it's fine again, because the "ants" aren't moving, same with when I hit Q to enter Quick Mask Mode--as long as the "ants" aren't moving, my Photoshop isn't slow. Is there any way to fix this? To either speed up Photoshop or to stop the "ants" from moving, and simply allow selections to be indicated by broken lines, but not moving broken lines?
    Thanks

    Operating System: Windows 7 Ultimate 32-bit (6.1, Build 7600) (7600.win7_rtm.090713-1255)
               Language: English (Regional Setting: English)
    System Manufacturer: Tyan Computer Corporation
           System Model: S2668 Tiger i7505              
                   BIOS: PhoenixBIOS 4.0 Release 6.0    
              Processor: Intel(R) Xeon(TM) CPU 3.06GHz (4 CPUs), ~3.1GHz
                 Memory: 4096MB RAM
    Available OS Memory: 3072MB RAM
              Page File: 2548MB used, 3589MB available
    49.9 GB of 465 GB free.

  • Scrolling slow with initial marquee selection, but very fast when adding to selection

    I've found that when I zoom in and try to make a selection that requires me to scroll beyond the viewable area, the scrolling becomes very slow when I scroll down. And if I add to the selection (via shift) the scroll becomes very fast, as if the shift key nudges the screen by x number of pixels, just as if I were to shift-move a layer. Is this the intended behavior?

    Ramon, my apologies. I own a MacBook Pro running OS 10.5.6, 2.4 GHz prcoessor with 2 GB of RAM, and 256 MB of VRAM. I'm using Photoshop CS4.
    So I ran a couple tests and I think I know what's occurring. The scroll speed seems dependent on how close or far the cursor is from the canvas edge (the axis in between the image and the scrollbar). So for example, if I were to do a max zoom the window would expand to the very edge of the desktop. When I start the marquee and move my cursor to scroll it's unable to move any further from the axis because of the desktop edge. This would cause it to scroll more slowly.
    Here are a couple of test vids (The zoom is at 3200% and I set up the camera to focus on the top right of the screen):
    Window right up against desktop edge (automatically positioned via Photoshop max zoom)
    http://s87.photobucket.com/albums/k156/darthsauce/mac/?action=view&current=horiz01.flv
    Window edge moved a little away from desktop edge
    http://s87.photobucket.com/albums/k156/darthsauce/mac/?action=view&current=horiz03.flv
    Window edge moved past the desktop edge (but axis is still visible)
    http://s87.photobucket.com/albums/k156/darthsauce/mac/?action=view&current=horiz00.flv
    Could this be considered an oversight in the design since zoom automatically resizes the window for us (of course, this would affect users differently depending on their zoom ratio and display resolution)? This means that I'll have to resize the window each time the zoom fills the desktop in order to scroll at a proper rate.

  • Selecting sidebar actions under Lion very slow

    Under Snow Leopard, when I would move between some sidebard items like iPhone, iPad, or the apps list, my system was very quick.  I synch my devices very frequently to keep my business calendar updated all the time so switching is happening all the time.
    Under Lion, the store, the library items, in the sidebard all switch very fast.  But selecting the iPhone, the iPad or the list of apps in the library is incredibly slow.  Timed, its 12 to 13 seconds every time they are selected before the change takes place.  I even get the spinning beachball every time.  And, same thing reselecting, its not just the first time.
    Is this unusual?  Any suggestions appreciated.  It just seems very unusual that this one app would have some specific things like this suddenly get so very slow.
    Thanks!

    Hello, the problem seems to be more specific about my use of mod_auth_kerb with apache. The authentication seems to take quite some time.
    Greetings,
    Michel

  • LR 5 is very slow to give me a visual so I can properly select them for import. What's the problem?

    LR 5 is very very very slow in giving me a visual of my images so I can properly select them for import. What's the problem? I'm very disappointed with this glitch! Please Adobe fix it quickly! Has anyone else come across this problem? Any solutions? thanks

    trygzuz wrote:
    LR 5 is very very very slow in giving me a visual of my images so I can properly select them for import. What's the problem? I'm very disappointed with this glitch! Please Adobe fix it quickly! Has anyone else come across this problem? Any solutions? thanks
    Is "very very very slow" 30 seconds or 30 minutes or 30 hours or 30 years?
    It is possible that you have a hardware problem which is causing the slow operation (in my case, it was a bad card reader, but it could also be a bad USB port or USB cable or bad camera card). In fact, in my opinion, these issues are 99.9% of the time hardware issues.

  • Gmail performance is very slow in Firefox 4.

    Gmail performance is very slow in Firefox 4 and much slower when compared to performance in Firefox 3.6.x After clicking a button within the Gmail interface (e.g. refresh, opening an email, sending an email etc.) there is a noticeable wait time in Firefox 4. In Firefox 3.6 and actually in any/all previous versions of Firefox, this was not the case. Using same machine for Firefox 4 as I was for Firefox 3.x. Dell Inspiron Laptop E6400, Dual core Intel 2 GHz, 3.5 GB RAM, 80 GB free HDD space, 32-bit Windows XP SP3. Gmail is set to use HTTPS always.

    Hi GoldMoon,
    (1)
    Refer to your last posting, seems that you've created index which wouldn't help your query performance.
    You need to create index from the field which supplied from your 'WHERE' condition. So if I follow your initial posting in this thread, your index should contains:
    - BUKRS (which will be compared with your company variable)
    - PRCTR (which will be compared with your s_prctr variable)
    - GJAHR (which will be compared with your s_year variable)
    - HKONT (which will be compared with your glcode value in your it_final[])
    - BUDAT (which will be compared with your s_budat range/select option.
    And to follow the BSIS field order, the above index field need to be arranged as follow
    - BUKRS
    - HKONT
    - GJAHR
    - BUDAT
    - PRCTR
    (2).
    Try not to use 'INTO CORRESPONDING FIELDS' as it will increase table-memory overhead, but use 'INTO' and make sure the field list and internal table fields is in the same order.
    So, once the index has been created, and 'INTO CORRESPONDING FIELDS' has been changed to 'INTO' your selection should looks like this:
    IF NOT it_final[] IS INITIAL.
    SELECT bukrs
              hkont
              augdt
              augbl
              zuonr
              gjahr
              belnr
              buzei
              budat
              werks
              kostl
              aufnr
              shkzg
              dmbtr
              prctr
        FROM bsis
         INTO TABLE it_bseg
          FOR ALL ENTRIES IN it_final
    WHERE bukrs eq company
        AND hkont eq it_final-glcode
        AND gjahr eq s_year
        AND budat in s_budat
        AND prctr eq s_prctr.
    ENDIF.
    Hope it helps

  • My Arch is very slow after upgrading to kernel 3.0

    Hi men! This is my first post on this forum, i'm italian and i'm using archlinux since 4 months (sorry if my english is bad)...  I would like you to help me to solve a problem: as i wrote in object  my system has became very slow after upgrading to kernel 3.0: system booting, applications launch, general responses of my tasks....what's the problem? How can i resolve it? Thanks!!

    However the kernel26-lts looks slower than 3.0 so i returned to the last one...iìm going to see dmesg outputs...i've to remove "quiet" from the grub.cfg
    EDIT: I've checked but no error is shown....this is dmesg.log:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.0-ARCH (tobias@T-POWA-LX) (gcc version 4.6.1 (GCC) ) #1 SMP PREEMPT Tue Aug 16 08:44:20 CEST 2011
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/disk/by-uuid/ea679d77-65a5-4cc3-b46e-286b953789f7 resume=/dev/sda9 ro vga=0x3f0 nomodeset
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [ 0.000000] BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000dee74000 (usable)
    [ 0.000000] BIOS-e820: 00000000dee74000 - 00000000deebc000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000deebc000 - 00000000deecd000 (reserved)
    [ 0.000000] BIOS-e820: 00000000deecd000 - 00000000deedf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000deedf000 - 00000000deee0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000deee0000 - 00000000deee3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000deee3000 - 00000000def11000 (reserved)
    [ 0.000000] BIOS-e820: 00000000def11000 - 00000000def12000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000def12000 - 00000000def15000 (reserved)
    [ 0.000000] BIOS-e820: 00000000def15000 - 00000000def17000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000def17000 - 00000000def1b000 (reserved)
    [ 0.000000] BIOS-e820: 00000000def1b000 - 00000000def1e000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000def1e000 - 00000000def22000 (reserved)
    [ 0.000000] BIOS-e820: 00000000def22000 - 00000000def31000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000def31000 - 00000000e0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffa00000 - 00000000ffc00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000118000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: Sony Corporation VPCEC1M1E/VAIO, BIOS R0300Y8 07/20/2010
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x118000 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-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 3 base 100000000 mask FE0000000 write-back
    [ 0.000000] 4 base 118000000 mask FF8000000 uncachable
    [ 0.000000] 5 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xdee74 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fc980] fc980
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000dee74000
    [ 0.000000] 0000000000 - 00dee00000 page 2M
    [ 0.000000] 00dee00000 - 00dee74000 page 4k
    [ 0.000000] kernel direct mapping tables up to dee74000 @ dee6e000-dee74000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000118000000
    [ 0.000000] 0100000000 - 0118000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 118000000 @ 117ffa000-118000000
    [ 0.000000] RAMDISK: 37c76000 - 37e33000
    [ 0.000000] ACPI: RSDP 00000000000f0410 00024 (v02 Sony)
    [ 0.000000] ACPI: XSDT 00000000def1ce18 0005C (v01 Sony VAIO 20100720 MSFT 00010013)
    [ 0.000000] ACPI: FACP 00000000def15d98 000F4 (v04 Sony VAIO 20100720 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110413/tbfadt-369)
    [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEF2DF40/0x00000000DEF30D40, using 32 (20110413/tbfadt-489)
    [ 0.000000] ACPI: DSDT 00000000deecd018 0ADBB (v01 Sony VAIO 20100720 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000def2df40 00040
    [ 0.000000] ACPI: APIC 00000000def1bf18 0008C (v02 Sony VAIO 20100720 MSFT 00010013)
    [ 0.000000] ACPI: MCFG 00000000def2fd18 0003C (v01 Sony VAIO 20100720 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000def2fc98 00038 (v01 Sony VAIO 20100720 MSFT 00000003)
    [ 0.000000] ACPI: SLIC 00000000def28a18 00176 (v01 Sony VAIO 20100720 Sony 01000000)
    [ 0.000000] ACPI: SSDT 00000000def16018 009F1 (v01 Sony VAIO 20100720 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000def15c18 0014B (v01 Sony VAIO 20100720 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000118000000
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000118000000
    [ 0.000000] NODE_DATA [0000000117ffb000 - 0000000117ffffff]
    [ 0.000000] [ffffea0000000000-ffffea0003dfffff] PMD -> [ffff880113800000-ffff880116ffffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00118000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[3] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009e
    [ 0.000000] 0: 0x00000100 -> 0x000dee74
    [ 0.000000] 0: 0x00100000 -> 0x00118000
    [ 0.000000] On node 0 totalpages: 1011202
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3921 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 894636 pages, LIFO batch:31
    [ 0.000000] Normal zone: 1344 pages used for memmap
    [ 0.000000] Normal zone: 96960 pages, LIFO batch:31
    [ 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[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 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: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000dee74000 - 00000000deebc000
    [ 0.000000] PM: Registered nosave memory: 00000000deebc000 - 00000000deecd000
    [ 0.000000] PM: Registered nosave memory: 00000000deecd000 - 00000000deedf000
    [ 0.000000] PM: Registered nosave memory: 00000000deedf000 - 00000000deee0000
    [ 0.000000] PM: Registered nosave memory: 00000000deee0000 - 00000000deee3000
    [ 0.000000] PM: Registered nosave memory: 00000000deee3000 - 00000000def11000
    [ 0.000000] PM: Registered nosave memory: 00000000def11000 - 00000000def12000
    [ 0.000000] PM: Registered nosave memory: 00000000def12000 - 00000000def15000
    [ 0.000000] PM: Registered nosave memory: 00000000def15000 - 00000000def17000
    [ 0.000000] PM: Registered nosave memory: 00000000def17000 - 00000000def1b000
    [ 0.000000] PM: Registered nosave memory: 00000000def1b000 - 00000000def1e000
    [ 0.000000] PM: Registered nosave memory: 00000000def1e000 - 00000000def22000
    [ 0.000000] PM: Registered nosave memory: 00000000def22000 - 00000000def31000
    [ 0.000000] PM: Registered nosave memory: 00000000def31000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
    [ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
    [ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffa00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffa00000 - 00000000ffc00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffc00000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at e0000000 (gap: e0000000:18000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff880117c00000 s78464 r8192 d23936 u262144
    [ 0.000000] pcpu-alloc: s78464 r8192 d23936 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 995517
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/disk/by-uuid/ea679d77-65a5-4cc3-b46e-286b953789f7 resume=/dev/sda9 ro vga=0x3f0 nomodeset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] 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: 3909052k/4587520k available (4064k kernel code, 542712k absent, 135756k reserved, 3304k data, 712k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 32505856 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] spurious 8259A interrupt: IRQ7.
    [ 0.003333] Detected 2127.784 MHz processor.
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4257.88 BogoMIPS (lpj=7092613)
    [ 0.000008] pid_max: default: 32768 minimum: 301
    [ 0.000120] Security Framework initialized
    [ 0.000125] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000524] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001546] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.001968] Mount-cache hash table entries: 256
    [ 0.002354] Initializing cgroup subsys cpuacct
    [ 0.002387] Initializing cgroup subsys memory
    [ 0.002403] Initializing cgroup subsys devices
    [ 0.002406] Initializing cgroup subsys freezer
    [ 0.002408] Initializing cgroup subsys net_cls
    [ 0.002410] Initializing cgroup subsys blkio
    [ 0.002461] CPU: Physical Processor ID: 0
    [ 0.002462] CPU: Processor Core ID: 0
    [ 0.002468] mce: CPU supports 9 MCE banks
    [ 0.002478] CPU0: Thermal monitoring handled by SMI
    [ 0.002487] using mwait in idle threads.
    [ 0.003640] ACPI: Core revision 20110413
    [ 0.019108] ftrace: allocating 16144 entries in 64 pages
    [ 0.025543] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.058531] CPU0: Intel(R) Core(TM) i3 CPU M 330 @ 2.13GHz stepping 02
    [ 0.163154] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver.
    [ 0.163161] ... version: 3
    [ 0.163162] ... bit width: 48
    [ 0.163164] ... generic registers: 4
    [ 0.163165] ... value mask: 0000ffffffffffff
    [ 0.163167] ... max period: 000000007fffffff
    [ 0.163168] ... fixed-purpose events: 3
    [ 0.163169] ... event mask: 000000070000000f
    [ 0.183294] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.209823] Booting Node 0, Processors #1
    [ 0.209829] smpboot cpu 1: start_ip = 99000
    [ 0.303122] CPU1: Thermal monitoring handled by SMI
    [ 0.323240] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.343129] #2
    [ 0.343133] smpboot cpu 2: start_ip = 99000
    [ 0.436405] CPU2: Thermal monitoring handled by SMI
    [ 0.456532] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.476405] #3
    [ 0.476409] smpboot cpu 3: start_ip = 99000
    [ 0.569682] CPU3: Thermal monitoring handled by SMI
    [ 0.589820] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.596326] Brought up 4 CPUs
    [ 0.596331] Total of 4 processors activated (17030.31 BogoMIPS).
    [ 0.598893] devtmpfs: initialized
    [ 0.600028] PM: Registering ACPI NVS region at dee74000 (294912 bytes)
    [ 0.600036] PM: Registering ACPI NVS region at deecd000 (73728 bytes)
    [ 0.600039] PM: Registering ACPI NVS region at deee0000 (12288 bytes)
    [ 0.600041] PM: Registering ACPI NVS region at def11000 (4096 bytes)
    [ 0.600042] PM: Registering ACPI NVS region at def15000 (8192 bytes)
    [ 0.600044] PM: Registering ACPI NVS region at def22000 (61440 bytes)
    [ 0.600970] print_constraints: dummy:
    [ 0.601050] NET: Registered protocol family 16
    [ 0.601156] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.601159] ACPI: bus type pci registered
    [ 0.601319] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.601322] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.613921] PCI: Using configuration type 1 for base access
    [ 0.614412] bio: create slab <bio-0> at 0
    [ 0.616187] ACPI: EC: Look up EC in DSDT
    [ 0.626457] ACPI: Executed 2 blocks of module-level executable AML code
    [ 0.646350] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.646723] ACPI: SSDT 00000000def1ac18 003AE (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.647118] ACPI: Dynamic OEM Table Load:
    [ 0.647121] ACPI: SSDT (null) 003AE (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.647269] ACPI: SSDT 00000000def18018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.647646] ACPI: Dynamic OEM Table Load:
    [ 0.647648] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.666577] ACPI: SSDT 00000000def19a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.667016] ACPI: Dynamic OEM Table Load:
    [ 0.667018] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.676431] ACPI: SSDT 00000000def17d98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.676844] ACPI: Dynamic OEM Table Load:
    [ 0.676846] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 1.089727] ACPI: Interpreter enabled
    [ 1.089731] ACPI: (supports S0 S3 S4 S5)
    [ 1.089754] ACPI: Using IOAPIC for interrupt routing
    [ 1.120583] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 1.120814] ACPI: No dock devices found.
    [ 1.120815] HEST: Table not found.
    [ 1.120818] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 1.121147] \_SB_.PCI0:_OSC invalid UUID
    [ 1.121149] _OSC request data:1 8 1f
    [ 1.121153] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 1.121658] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 1.121661] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 1.121663] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 1.121666] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 1.121668] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 1.121670] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 1.121672] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    [ 1.121675] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    [ 1.121677] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    [ 1.121679] pci_root PNP0A08:00: host bridge window [mem 0xe0000000-0xfeafffff]
    [ 1.121692] pci 0000:00:00.0: [8086:0044] type 0 class 0x000600
    [ 1.121712] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
    [ 1.121730] pci 0000:00:01.0: [8086:0045] type 1 class 0x000604
    [ 1.121757] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.121761] pci 0000:00:01.0: PME# disabled
    [ 1.121809] pci 0000:00:16.0: [8086:3b64] type 0 class 0x000780
    [ 1.121841] pci 0000:00:16.0: reg 10: [mem 0xf5e0a000-0xf5e0a00f 64bit]
    [ 1.121922] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 1.121927] pci 0000:00:16.0: PME# disabled
    [ 1.121966] pci 0000:00:1a.0: [8086:3b3c] type 0 class 0x000c03
    [ 1.121992] pci 0000:00:1a.0: reg 10: [mem 0xf5e08000-0xf5e083ff]
    [ 1.122083] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 1.122088] pci 0000:00:1a.0: PME# disabled
    [ 1.122118] pci 0000:00:1b.0: [8086:3b56] type 0 class 0x000403
    [ 1.122140] pci 0000:00:1b.0: reg 10: [mem 0xf5e00000-0xf5e03fff 64bit]
    [ 1.122219] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.122223] pci 0000:00:1b.0: PME# disabled
    [ 1.122251] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604
    [ 1.122332] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.122337] pci 0000:00:1c.0: PME# disabled
    [ 1.122366] pci 0000:00:1c.1: [8086:3b44] type 1 class 0x000604
    [ 1.122446] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 1.122451] pci 0000:00:1c.1: PME# disabled
    [ 1.122480] pci 0000:00:1c.2: [8086:3b46] type 1 class 0x000604
    [ 1.122560] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 1.122565] pci 0000:00:1c.2: PME# disabled
    [ 1.122598] pci 0000:00:1c.5: [8086:3b4c] type 1 class 0x000604
    [ 1.122681] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 1.122686] pci 0000:00:1c.5: PME# disabled
    [ 1.122723] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03
    [ 1.122749] pci 0000:00:1d.0: reg 10: [mem 0xf5e07000-0xf5e073ff]
    [ 1.122839] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.122844] pci 0000:00:1d.0: PME# disabled
    [ 1.122869] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 1.122953] pci 0000:00:1f.0: [8086:3b09] type 0 class 0x000601
    [ 1.123075] pci 0000:00:1f.2: [8086:3b29] type 0 class 0x000106
    [ 1.123103] pci 0000:00:1f.2: reg 10: [io 0xe070-0xe077]
    [ 1.123114] pci 0000:00:1f.2: reg 14: [io 0xe060-0xe063]
    [ 1.123126] pci 0000:00:1f.2: reg 18: [io 0xe050-0xe057]
    [ 1.123137] pci 0000:00:1f.2: reg 1c: [io 0xe040-0xe043]
    [ 1.123149] pci 0000:00:1f.2: reg 20: [io 0xe020-0xe03f]
    [ 1.123161] pci 0000:00:1f.2: reg 24: [mem 0xf5e06000-0xf5e067ff]
    [ 1.123209] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.123214] pci 0000:00:1f.2: PME# disabled
    [ 1.123237] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05
    [ 1.123259] pci 0000:00:1f.3: reg 10: [mem 0xf5e05000-0xf5e050ff 64bit]
    [ 1.123290] pci 0000:00:1f.3: reg 20: [io 0xe000-0xe01f]
    [ 1.123360] pci 0000:01:00.0: [1002:68e0] type 0 class 0x000300
    [ 1.123380] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 1.123394] pci 0000:01:00.0: reg 18: [mem 0xf0020000-0xf003ffff 64bit]
    [ 1.123405] pci 0000:01:00.0: reg 20: [io 0xd000-0xd0ff]
    [ 1.123424] pci 0000:01:00.0: reg 30: [mem 0xf0000000-0xf001ffff pref]
    [ 1.123443] pci 0000:01:00.0: supports D1 D2
    [ 1.123468] pci 0000:01:00.1: [1002:aa68] type 0 class 0x000403
    [ 1.123487] pci 0000:01:00.1: reg 10: [mem 0xf0040000-0xf0043fff 64bit]
    [ 1.123555] pci 0000:01:00.1: supports D1 D2
    [ 1.123579] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 1.123582] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.123585] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf00fffff]
    [ 1.123589] pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.123667] pci 0000:02:00.0: [168c:002b] type 0 class 0x000280
    [ 1.123693] pci 0000:02:00.0: reg 10: [mem 0xf4a00000-0xf4a0ffff 64bit]
    [ 1.123783] pci 0000:02:00.0: supports D1
    [ 1.123785] pci 0000:02:00.0: PME# supported from D0 D1 D3hot D3cold
    [ 1.123790] pci 0000:02:00.0: PME# disabled
    [ 1.123824] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 1.123829] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.123834] pci 0000:00:1c.0: bridge window [mem 0xf4a00000-0xf5dfffff]
    [ 1.123842] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.123953] pci 0000:03:00.0: [1180:e822] type 0 class 0x000805
    [ 1.123976] pci 0000:03:00.0: reg 10: [mem 0xf3602000-0xf36020ff]
    [ 1.124115] pci 0000:03:00.0: supports D1 D2
    [ 1.124117] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.124123] pci 0000:03:00.0: PME# disabled
    [ 1.124175] pci 0000:03:00.1: [1180:e230] type 0 class 0x000880
    [ 1.124198] pci 0000:03:00.1: reg 10: [mem 0xf3601000-0xf36010ff]
    [ 1.124336] pci 0000:03:00.1: supports D1 D2
    [ 1.124338] pci 0000:03:00.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.124344] pci 0000:03:00.1: PME# disabled
    [ 1.124394] pci 0000:03:00.4: [1180:e822] type 0 class 0x000805
    [ 1.124418] pci 0000:03:00.4: reg 10: [mem 0xf3600000-0xf36000ff]
    [ 1.124554] pci 0000:03:00.4: supports D1 D2
    [ 1.124556] pci 0000:03:00.4: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.124562] pci 0000:03:00.4: PME# disabled
    [ 1.124630] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    [ 1.124635] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 1.124640] pci 0000:00:1c.1: bridge window [mem 0xf3600000-0xf49fffff]
    [ 1.124648] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.124886] pci 0000:04:00.0: [11ab:4381] type 0 class 0x000200
    [ 1.125105] pci 0000:04:00.0: reg 10: [mem 0xf2220000-0xf2223fff 64bit]
    [ 1.125212] pci 0000:04:00.0: reg 18: [io 0xa000-0xa0ff]
    [ 1.125642] pci 0000:04:00.0: reg 30: [mem 0xf2200000-0xf221ffff pref]
    [ 1.125967] pci 0000:04:00.0: supports D1 D2
    [ 1.125968] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.126008] pci 0000:04:00.0: PME# disabled
    [ 1.126269] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    [ 1.126274] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 1.126279] pci 0000:00:1c.2: bridge window [mem 0xf2200000-0xf35fffff]
    [ 1.126287] pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.126344] pci 0000:00:1c.5: PCI bridge to [bus 05-0c]
    [ 1.126348] pci 0000:00:1c.5: bridge window [io 0x9000-0x9fff]
    [ 1.126353] pci 0000:00:1c.5: bridge window [mem 0xf0200000-0xf21fffff]
    [ 1.126361] pci 0000:00:1c.5: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.126438] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode)
    [ 1.126443] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 1.126448] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 1.126456] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.126459] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 1.126461] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 1.126463] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 1.126466] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 1.126468] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 1.126470] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 1.126473] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 1.126475] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 1.126478] pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 1.126480] pci 0000:00:1e.0: bridge window [mem 0xe0000000-0xfeafffff] (subtractive decode)
    [ 1.126515] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 1.126656] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 1.126708] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    [ 1.126765] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 1.126833] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 1.126882] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
    [ 1.126997] \_SB_.PCI0:_OSC invalid UUID
    [ 1.126998] _OSC request data:1 1f 1f
    [ 1.127003] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 1.127035] \_SB_.PCI0:_OSC invalid UUID
    [ 1.127037] _OSC request data:1 0 1d
    [ 1.127041] pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
    [ 1.127042] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 1.130982] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 3f])
    [ 1.131046] pci 0000:3f:00.0: [8086:2c62] type 0 class 0x000600
    [ 1.131066] pci 0000:3f:00.1: [8086:2d01] type 0 class 0x000600
    [ 1.131087] pci 0000:3f:02.0: [8086:2d10] type 0 class 0x000600
    [ 1.131107] pci 0000:3f:02.1: [8086:2d11] type 0 class 0x000600
    [ 1.131125] pci 0000:3f:02.2: [8086:2d12] type 0 class 0x000600
    [ 1.131143] pci 0000:3f:02.3: [8086:2d13] type 0 class 0x000600
    [ 1.131176] pci0000:3f: Requesting ACPI _OSC control (0x1d)
    [ 1.131179] pci0000:3f: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 1.131181] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 1.131415] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 1.131460] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 1.131503] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 *4 5 6 7 10 12 14 15)
    [ 1.131546] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    [ 1.131588] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 1.131636] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 1.131679] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    [ 1.131722] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 1.131820] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.131826] vgaarb: loaded
    [ 1.131827] vgaarb: bridge control possible 0000:01:00.0
    [ 1.131900] PCI: Using ACPI for IRQ routing
    [ 1.134142] PCI: pci_cache_line_size set to 64 bytes
    [ 1.134246] reserve RAM buffer: 000000000009e800 - 000000000009ffff
    [ 1.134248] reserve RAM buffer: 00000000dee74000 - 00000000dfffffff
    [ 1.134372] NetLabel: Initializing
    [ 1.134374] NetLabel: domain hash size = 128
    [ 1.134375] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.134389] NetLabel: unlabeled traffic allowed by default
    [ 1.134412] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.134418] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.136441] Switching to clocksource hpet
    [ 1.139456] Switched to NOHz mode on CPU #0
    [ 1.139583] Switched to NOHz mode on CPU #1
    [ 1.139590] Switched to NOHz mode on CPU #2
    [ 1.139598] Switched to NOHz mode on CPU #3
    [ 1.142357] pnp: PnP ACPI init
    [ 1.142375] ACPI: bus type pnp registered
    [ 1.142679] pnp 00:00: [bus 00-3e]
    [ 1.142682] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 1.142684] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 1.142686] pnp 00:00: [io 0x0d00-0xffff window]
    [ 1.142689] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 1.142691] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 1.142693] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 1.142695] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 1.142697] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 1.142699] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 1.142700] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 1.142702] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 1.142707] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 1.142709] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 1.142711] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 1.142713] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 1.142715] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 1.142716] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 1.142718] pnp 00:00: [mem 0xe0000000-0xfeafffff window]
    [ 1.142826] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 1.142841] pnp 00:01: [io 0x0000-0x001f]
    [ 1.142843] pnp 00:01: [io 0x0081-0x0091]
    [ 1.142844] pnp 00:01: [io 0x0093-0x009f]
    [ 1.142846] pnp 00:01: [io 0x00c0-0x00df]
    [ 1.142848] pnp 00:01: [dma 4]
    [ 1.142872] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.142880] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 1.142901] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.142976] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 1.142999] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.143008] pnp 00:04: [io 0x00f0]
    [ 1.143019] pnp 00:04: [irq 13]
    [ 1.143044] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.143054] pnp 00:05: [io 0x002e-0x002f]
    [ 1.143056] pnp 00:05: [io 0x004e-0x004f]
    [ 1.143057] pnp 00:05: [io 0x0061]
    [ 1.143059] pnp 00:05: [io 0x0063]
    [ 1.143061] pnp 00:05: [io 0x0065]
    [ 1.143062] pnp 00:05: [io 0x0067]
    [ 1.143064] pnp 00:05: [io 0x0070]
    [ 1.143065] pnp 00:05: [io 0x0080]
    [ 1.143066] pnp 00:05: [io 0x0092]
    [ 1.143068] pnp 00:05: [io 0x00b2-0x00b3]
    [ 1.143070] pnp 00:05: [io 0x0680-0x069f]
    [ 1.143072] pnp 00:05: [io 0xff00-0xff0f]
    [ 1.143073] pnp 00:05: [io 0xff10-0xff13]
    [ 1.143075] pnp 00:05: [io 0x0800-0x0803]
    [ 1.143076] pnp 00:05: [io 0x0400-0x047f]
    [ 1.143078] pnp 00:05: [io 0x0500-0x057f]
    [ 1.143080] pnp 00:05: [io 0x164e-0x164f]
    [ 1.143140] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 1.143143] system 00:05: [io 0xff00-0xff0f] has been reserved
    [ 1.143145] system 00:05: [io 0xff10-0xff13] has been reserved
    [ 1.143148] system 00:05: [io 0x0800-0x0803] has been reserved
    [ 1.143150] system 00:05: [io 0x0400-0x047f] has been reserved
    [ 1.143152] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 1.143154] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 1.143157] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.143166] pnp 00:06: [io 0x0070-0x0077]
    [ 1.143171] pnp 00:06: [irq 8]
    [ 1.143208] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.143218] pnp 00:07: [io 0x0060]
    [ 1.143220] pnp 00:07: [io 0x0064]
    [ 1.143225] pnp 00:07: [irq 1]
    [ 1.143250] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.143262] pnp 00:08: [irq 12]
    [ 1.143288] pnp 00:08: Plug and Play ACPI device, IDs SNY9011 PNP0f13 (active)
    [ 1.143642] pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
    [ 1.143644] pnp 00:09: [mem 0xfed10000-0xfed13fff]
    [ 1.143646] pnp 00:09: [mem 0xfed18000-0xfed18fff]
    [ 1.143650] pnp 00:09: [mem 0xfed19000-0xfed19fff]
    [ 1.143651] pnp 00:09: [mem 0xf8000000-0xfbffffff]
    [ 1.143653] pnp 00:09: [mem 0xfed20000-0xfed3ffff]
    [ 1.143655] pnp 00:09: [mem 0xfed90000-0xfed8ffff disabled]
    [ 1.143657] pnp 00:09: [mem 0xfed45000-0xfed8ffff]
    [ 1.143659] pnp 00:09: [mem 0xff000000-0xffffffff]
    [ 1.143661] pnp 00:09: [mem 0xfee00000-0xfeefffff]
    [ 1.143663] pnp 00:09: [mem 0xf5e0b000-0xf5e0bfff]
    [ 1.143733] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.143736] system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 1.143739] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.143741] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.143744] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 1.143746] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.143749] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 1.143751] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.143754] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.143757] system 00:09: [mem 0xf5e0b000-0xf5e0bfff] has been reserved
    [ 1.143760] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.143900] pnp 00:0a: [bus 3f]
    [ 1.143951] pnp 00:0a: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 1.157077] pnp: PnP ACPI: found 11 devices
    [ 1.157079] ACPI: ACPI bus type pnp unregistered
    [ 1.163064] PCI: max bus depth: 1 pci_try_num: 2
    [ 1.163124] pci 0000:00:1c.5: BAR 15: assigned [mem 0xf5f00000-0xf60fffff 64bit pref]
    [ 1.163130] pci 0000:00:1c.2: BAR 15: assigned [mem 0xf6100000-0xf62fffff 64bit pref]
    [ 1.163135] pci 0000:00:1c.1: BAR 15: assigned [mem 0xf6300000-0xf64fffff 64bit pref]
    [ 1.163140] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf6500000-0xf66fffff 64bit pref]
    [ 1.163143] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 1.163146] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.163149] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf00fffff]
    [ 1.163152] pci 0000:00:01.0: bridge window [mem pref disabled]
    [ 1.163156] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 1.163159] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.163166] pci 0000:00:1c.0: bridge window [mem 0xf4a00000-0xf5dfffff]
    [ 1.163171] pci 0000:00:1c.0: bridge window [mem 0xf6500000-0xf66fffff 64bit pref]
    [ 1.163191] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    [ 1.163195] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 1.163202] pci 0000:00:1c.1: bridge window [mem 0xf3600000-0xf49fffff]
    [ 1.163207] pci 0000:00:1c.1: bridge window [mem 0xf6300000-0xf64fffff 64bit pref]
    [ 1.163215] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    [ 1.163219] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 1.163225] pci 0000:00:1c.2: bridge window [mem 0xf2200000-0xf35fffff]
    [ 1.163230] pci 0000:00:1c.2: bridge window [mem 0xf6100000-0xf62fffff 64bit pref]
    [ 1.163238] pci 0000:00:1c.5: PCI bridge to [bus 05-0c]
    [ 1.163242] pci 0000:00:1c.5: bridge window [io 0x9000-0x9fff]
    [ 1.163248] pci 0000:00:1c.5: bridge window [mem 0xf0200000-0xf21fffff]
    [ 1.163253] pci 0000:00:1c.5: bridge window [mem 0xf5f00000-0xf60fffff 64bit pref]
    [ 1.163262] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
    [ 1.163263] pci 0000:00:1e.0: bridge window [io disabled]
    [ 1.163269] pci 0000:00:1e.0: bridge window [mem disabled]
    [ 1.163274] pci 0000:00:1e.0: bridge window [mem pref disabled]
    [ 1.163293] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.163296] pci 0000:00:01.0: setting latency timer to 64
    [ 1.163303] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.163308] pci 0000:00:1c.0: setting latency timer to 64
    [ 1.163318] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 1.163323] pci 0000:00:1c.1: setting latency timer to 64
    [ 1.163333] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.163338] pci 0000:00:1c.2: setting latency timer to 64
    [ 1.163345] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 1.163350] pci 0000:00:1c.5: setting latency timer to 64
    [ 1.163359] pci 0000:00:1e.0: setting latency timer to 64
    [ 1.163363] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.163366] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.163368] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.163370] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 1.163372] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 1.163374] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 1.163376] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 1.163378] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 1.163380] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 1.163383] pci_bus 0000:00: resource 13 [mem 0xe0000000-0xfeafffff]
    [ 1.163385] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 1.163387] pci_bus 0000:01: resource 1 [mem 0xe0000000-0xf00fffff]
    [ 1.163389] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 1.163391] pci_bus 0000:02: resource 1 [mem 0xf4a00000-0xf5dfffff]
    [ 1.163394] pci_bus 0000:02: resource 2 [mem 0xf6500000-0xf66fffff 64bit pref]
    [ 1.163396] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 1.163398] pci_bus 0000:03: resource 1 [mem 0xf3600000-0xf49fffff]
    [ 1.163400] pci_bus 0000:03: resource 2 [mem 0xf6300000-0xf64fffff 64bit pref]
    [ 1.163403] pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    [ 1.163405] pci_bus 0000:04: resource 1 [mem 0xf2200000-0xf35fffff]
    [ 1.163407] pci_bus 0000:04: resource 2 [mem 0xf6100000-0xf62fffff 64bit pref]
    [ 1.163409] pci_bus 0000:05: resource 0 [io 0x9000-0x9fff]
    [ 1.163411] pci_bus 0000:05: resource 1 [mem 0xf0200000-0xf21fffff]
    [ 1.163414] pci_bus 0000:05: resource 2 [mem 0xf5f00000-0xf60fffff 64bit pref]
    [ 1.163416] pci_bus 0000:0d: resource 4 [io 0x0000-0x0cf7]
    [ 1.163418] pci_bus 0000:0d: resource 5 [io 0x0d00-0xffff]
    [ 1.163420] pci_bus 0000:0d: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.163422] pci_bus 0000:0d: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 1.163424] pci_bus 0000:0d: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 1.163426] pci_bus 0000:0d: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 1.163428] pci_bus 0000:0d: resource 10 [mem 0x000dc000-0x000dffff]
    [ 1.163431] pci_bus 0000:0d: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 1.163433] pci_bus 0000:0d: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 1.163435] pci_bus 0000:0d: resource 13 [mem 0xe0000000-0xfeafffff]
    [ 1.163511] NET: Registered protocol family 2
    [ 1.163700] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 1.164727] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 1.167663] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.168014] TCP: Hash tables configured (established 524288 bind 65536)
    [ 1.168016] TCP reno registered
    [ 1.168027] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 1.168066] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 1.168344] NET: Registered protocol family 1
    [ 2.499376] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
    [ 3.832221] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
    [ 3.832352] pci 0000:01:00.0: Boot video device
    [ 3.832384] PCI: CLS 64 bytes, default 64
    [ 3.832433] Unpacking initramfs...
    [ 3.861003] Freeing initrd memory: 1780k freed
    [ 3.861298] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 3.861302] Placing 64MB software IO TLB between ffff8800dae6e000 - ffff8800dee6e000
    [ 3.861304] software IO TLB at phys 0xdae6e000 - 0xdee6e000
    [ 3.861787] audit: initializing netlink socket (disabled)
    [ 3.861799] type=2000 audit(1313594250.696:1): initialized
    [ 3.869728] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 3.886559] VFS: Disk quotas dquot_6.5.2
    [ 3.886700] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 3.886869] msgmni has been set to 7638
    [ 3.887107] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 3.887147] io scheduler noop registered
    [ 3.887150] io scheduler deadline registered
    [ 3.887202] io scheduler cfq registered (default)
    [ 3.887320] pcieport 0000:00:01.0: setting latency timer to 64
    [ 3.887348] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 3.887672] vesafb: mode is 1600x900x32, linelength=6400, pages=1
    [ 3.887674] vesafb: scrolling: redraw
    [ 3.887677] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 3.890141] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005100000, using 11250k, total 16384k
    [ 4.087472] Console: switching to colour frame buffer device 200x56
    [ 4.281840] fb0: VESA VGA frame buffer device
    [ 4.281854] intel_idle: MWAIT substates: 0x1120
    [ 4.281856] intel_idle: v0.4 model 0x25
    [ 4.281857] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 4.281902] ERST: Table is not found!
    [ 4.281955] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 4.469026] Linux agpgart interface v0.103
    [ 4.469114] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 4.473482] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 4.473514] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 4.473591] mousedev: PS/2 mouse device common for all mice
    [ 4.473653] rtc_cmos 00:06: RTC can wake from S4
    [ 4.473761] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 4.473791] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 4.473886] cpuidle: using governor ladder
    [ 4.474031] cpuidle: using governor menu
    [ 4.474245] TCP cubic registered
    [ 4.474248] NET: Registered protocol family 17
    [ 4.474257] Registering the dns_resolver key type
    [ 4.474353] PM: Checking hibernation image partition /dev/sda9
    [ 4.496169] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 4.502184] PM: Hibernation image not present or could not be loaded.
    [ 4.502194] registered taskstats version 1
    [ 4.512403] rtc_cmos 00:06: setting system clock to 2011-08-17 15:17:31 UTC (1313594251)
    [ 4.512569] Initializing network drop monitor service
    [ 4.516031] Freeing unused kernel memory: 712k freed
    [ 4.516201] Write protecting the kernel read-only data: 6144k
    [ 4.516747] Freeing unused kernel memory: 12k freed
    [ 4.522858] Freeing unused kernel memory: 776k freed
    [ 4.564188] udevd[93]: starting version 173
    [ 4.566281] ACPI: acpi_idle yielding to intel_idle
    [ 4.624591] SCSI subsystem initialized
    [ 4.630767] libata version 3.00 loaded.
    [ 4.632419] ahci 0000:00:1f.2: version 3.0
    [ 4.632443] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 4.632515] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 4.632554] ahci: SSS flag set, parallel bus scan disabled
    [ 4.632606] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
    [ 4.632610] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part sxs apst
    [ 4.632616] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.634910] scsi0 : ahci
    [ 4.635536] scsi1 : ahci
    [ 4.636083] scsi2 : ahci
    [ 4.636721] scsi3 : ahci
    [ 4.637168] scsi4 : ahci
    [ 4.637475] scsi5 : ahci
    [ 4.637727] ata1: SATA max UDMA/133 abar m2048@0xf5e06000 port 0xf5e06100 irq 41
    [ 4.637731] ata2: SATA max UDMA/133 abar m2048@0xf5e06000 port 0xf5e06180 irq 41
    [ 4.637733] ata3: DUMMY
    [ 4.637734] ata4: DUMMY
    [ 4.637737] ata5: SATA max UDMA/133 abar m2048@0xf5e06000 port 0xf5e06300 irq 41
    [ 4.637741] ata6: SATA max UDMA/133 abar m2048@0xf5e06000 port 0xf5e06380 irq 41
    [ 4.861932] Refined TSC clocksource calibration: 2128.123 MHz.
    [ 4.861939] Switching to clocksource tsc
    [ 4.955224] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 4.965120] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 4.965397] ata1.00: ATA-8: SAMSUNG HM500JI, 2AC101C4, max UDMA/133
    [ 4.965402] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 4.975403] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 4.975693] ata1.00: configured for UDMA/133
    [ 4.976014] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HM500JI 2AC1 PQ: 0 ANSI: 5
    [ 5.295101] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.296935] ata2.00: ATAPI: Optiarc DVD RW AD-7700H, 1.V0, max UDMA/100
    [ 5.303748] ata2.00: configured for UDMA/100
    [ 5.319899] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7700H 1.V0 PQ: 0 ANSI: 5
    [ 5.638306] ata5: SATA link down (SStatus 0 SControl 300)
    [ 5.958189] ata6: SATA link down (SStatus 0 SControl 300)
    [ 5.964558] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 5.964596] sd 0:0:0:0: [sda] Write Protect is off
    [ 5.964599] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.964614] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 6.073618] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 sda9 sda10 >
    [ 6.074200] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 6.091859] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 6.091865] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 6.092089] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 7.960526] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 9.667393] udevd[273]: starting version 173
    [ 10.439749] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 10.447052] ACPI: Lid Switch [LID0]
    [ 10.449942] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 10.449952] ACPI: Power Button [PWRB]
    [ 10.463109] [Firmware Bug]: ACPI(VGA) defines _DOD but not _DOS
    [ 10.484243] acpi device:4b: registered as cooling_device4
    [ 10.484911] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:4a/LNXVIDEO:01/input/input3
    [ 10.484921] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 10.494126] thermal LNXTHERM:00: registered as thermal_zone0
    [ 10.494129] ACPI: Thermal Zone [TZ00] (58 C)
    [ 10.506259] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 10.506267] ACPI: Battery Slot [BAT0] (battery present)
    [ 10.517446] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 10.524583] thermal LNXTHERM:01: registered as thermal_zone1
    [ 10.524586] ACPI: Thermal Zone [TZ01] (58 C)
    [ 10.530700] ACPI: AC Adapter [ADP1] (off-line)
    [ 10.648271] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 10.773153] iTCO_vendor_support: vendor-support=0
    [ 10.924548] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 10.924706] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
    [ 10.924868] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 10.926971] sky2: driver version 1.28
    [ 10.927036] sky2 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 10.927049] sky2 0000:04:00.0: setting latency timer to 64
    [ 10.927089] sky2 0000:04:00.0: Yukon-2 Optima chip revision 1
    [ 10.927203] sky2 0000:04:00.0: irq 42 for MSI/MSI-X
    [ 10.927532] sky2 0000:04:00.0: eth0: addr 54:42:49:10:6d:46
    [ 11.021491] cfg80211: Calling CRDA to update world regulatory domain
    [ 11.030984] usbcore: registered new interface driver usbfs
    [ 11.031163] usbcore: registered new interface driver hub
    [ 11.031208] usbcore: registered new device driver usb
    [ 11.054022] sony_laptop: Sony Notebook Control Driver v0.6
    [ 11.064072] input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/SNY5001:00/input/input5
    [ 11.064128] input: Sony Vaio Jogdial as /devices/virtual/input/input6
    [ 11.064240] sony_laptop: brightness ignored, must be controlled by ACPI video driver
    [ 11.268875] mei: module is from the staging directory, the quality is unknown, you have been warned.
    [ 11.269169] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 11.269177] mei 0000:00:16.0: setting latency timer to 64
    [ 11.304449] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 11.319698] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 11.319743] sr 1:0:0:0: Attached scsi generic sg1 type 5
    [ 11.354358] sdhci: Secure Digital Host Controller Interface driver
    [ 11.354362] sdhci: Copyright(c) Pierre Ossman
    [ 11.374472] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 11.374519] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 11.374559] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 11.374564] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 11.374590] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 11.374630] ehci_hcd 0000:00:1a.0: debug port 2
    [ 11.378526] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 11.378534] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf5e08000
    [ 11.389468] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 11.389714] hub 1-0:1.0: USB hub found
    [ 11.389721] hub 1-0:1.0: 2 ports detected
    [ 11.389823] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 11.389872] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 11.389877] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 11.389894] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 11.389929] ehci_hcd 0000:00:1d.0: debug port 2
    [ 11.393814] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 11.393838] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf5e07000
    [ 11.406179] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 11.406377] hub 2-0:1.0: USB hub found
    [ 11.406382] hub 2-0:1.0: 2 ports detected
    [ 11.514999] sdhci-pci 0000:03:00.0: SDHCI controller found [1180:e822] (rev 0)
    [ 11.515023] sdhci-pci 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 11.515072] sdhci-pci 0000:03:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 11.515081] sdhci-pci 0000:03:00.0: setting latency timer to 64
    [ 11.515108] _regulator_get: 0000:03:00.0 supply vmmc not found, using dummy regulator
    [ 11.515145] Registered led device: mmc0::
    [ 11.515206] mmc0: SDHCI controller on PCI [0000:03:00.0] using DMA
    [ 11.515222] sdhci-pci 0000:03:00.4: SDHCI controller found [1180:e822] (rev 0)
    [ 11.515237] sdhci-pci 0000:03:00.4: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    [ 11.515253] sdhci-pci 0000:03:00.4: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 11.515261] sdhci-pci 0000:03:00.4: setting latency timer to 64
    [ 11.515278] _regulator_get: 0000:03:00.4 supply vmmc not found, using dummy regulator
    [ 11.515308] Registered led device: mmc1::
    [ 11.515344] mmc1: SDHCI controller on PCI [0000:03:00.4] using DMA
    [ 11.696095] usb 1-1: new high speed USB device number 2 using ehci_hcd
    [ 11.800486] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7
    [ 11.823379] hub 1-1:1.0: USB hub found
    [ 11.823555] hub 1-1:1.0: 6 ports detected
    [ 11.881300] ath9k 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 11.881313] ath9k 0000:02:00.0: setting latency timer to 64
    [ 11.899363] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 11.899454] HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    [ 11.899494] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 11.929270] usb 2-1: new high speed USB device number 2 using ehci_hcd
    [ 11.931327] ath: EEPROM regdomain: 0x65
    [ 11.931329] ath: EEPROM indicates we should expect a direct regpair map
    [ 11.931333] ath: Country alpha2 being used: 00
    [ 11.931334] ath: Regpair used: 0x65
    [ 12.053537] hub 2-1:1.0: USB hub found
    [ 12.053638] hub 2-1:1.0: 8 ports detected
    [ 12.058338] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 12.058344] Disabling lock debugging due to kernel taint
    [ 12.089898] [fglrx] Maximum main memory to use for locked dma buffers: 3660 MBytes.
    [ 12.090143] [fglrx] vendor: 1002 device: 68e0 count: 1
    [ 12.090556] [fglrx] ioport: bar 4, base 0xd000, size: 0x100
    [ 12.090572] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 12.090577] pci 0000:01:00.0: setting latency timer to 64
    [ 12.090779] [fglrx] Kernel PAT support is enabled
    [ 12.090802] [fglrx] module loaded - fglrx 8.87.5 [Jul 7 2011] with 1 minors
    [ 12.101099] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [ 12.101452] Registered led device: ath9k-phy0
    [ 12.101460] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90005d00000, irq=16
    [ 12.115758] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
    [ 12.117699] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 12.117756] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 12.117877] HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 12.117956] HDA Intel 0000:01:00.1: irq 44 for MSI/MSI-X
    [ 12.117979] HDA Intel 0000:01:00.1: setting latency timer to 64
    [ 12.132761] usb 1-1.2: new full speed USB device number 3 using ehci_hcd
    [ 12.168259] HDMI status: Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 12.168639] input: HD-Audio Generic HDMI/DP as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
    [ 12.265962] usb 1-1.2: new high speed USB device number 4 using ehci_hcd
    [ 12.387463] cfg80211: World regulatory domain updated:
    [ 12.387466] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 12.387469] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 12.387472] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    [ 12.387474] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    [ 12.387477] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 12.387479] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 12.387493] cfg80211: Calling CRDA for country: IT
    [ 12.390329] cfg80211: Regulatory domain changed to country: IT
    [ 12.390332] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 12.390334] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 12.390337] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 12.390339] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 12.390341] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
    [ 12.462672] usb 2-1.2: new low speed USB device number 3 using ehci_hcd
    [ 12.939879] Linux media interface: v0.10
    [ 12.994380] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input12
    [ 12.994487] generic-usb 0003:15D9:0A4C.0001: input,hidraw0: USB HID v1.11 Mouse [ USB OPTICAL MOUSE] on usb-0000:00:1d.0-1.2/input0
    [ 12.994502] usbcore: registered new interface driver usbhid
    [ 12.994504] usbhid: USB HID core driver
    [ 13.030968] Linux video capture interface: v2.00
    [ 13.053392] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (064e:a213)
    [ 13.060994] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input13
    [ 13.061057] usbcore: registered new interface driver uvcvideo
    [ 13.061059] USB Video Class driver (v1.1.0)
    [ 15.202804] EXT4-fs (sda7): re-mounted. Opts: (null)
    [ 15.503756] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
    [ 15.505206] SGI XFS Quota Management subsystem
    [ 15.527846] XFS (sda10): Mounting Filesystem
    [ 16.058466] XFS (sda10): Ending clean mount
    [ 16.172238] REISERFS (device sda8): found reiserfs format "3.6" with standard journal
    [ 16.172257] REISERFS (device sda8): using ordered data mode
    [ 16.180082] REISERFS (device sda8): journal params: device sda8, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    [ 16.180470] REISERFS (device sda8): checking transaction log (sda8)
    [ 16.225092] REISERFS (device sda8): Using r5 hash to sort names
    [ 16.362086] EXT3-fs: barriers not enabled
    [ 16.377355] kjournald starting. Commit interval 5 seconds
    [ 16.377554] EXT3-fs (sda6): using internal journal
    [ 16.377560] EXT3-fs (sda6): mounted filesystem with ordered data mode
    [ 16.475339] fuse init (API version 7.16)
    [ 17.345752] Adding 1052220k swap on /dev/sda9. Priority:-1 extents:1 across:1052220k
    Last edited by TheImmortalPhoenix (2011-08-17 13:23:54)

  • User Defined Type - Array bind Query very slow

    Hi.
    I have following Problem. I try to use Oracle Instant Client 11 and ODP.NET to pass Arrays in SELECT statements as Bind Parameters. I did it, but it runs very-very slow. Example:
    - Inittial Query:
    SELECT tbl1.field1, tbl1.field2, tbl2.field1, tbl2.field2 ... FROM tbl1
    LEFT JOIN tbl2 ON tbl1.field11=tbl2.field0
    LEFT JOIN tbl3 ON tbl2.field11=tbl3.field0 AND tbll1.field5=tbl3.field1
    ...and another LEFT JOINS
    WHERE
    tbl1.field0 IN ('id01', 'id02', 'id03'...)
    this query with 100 elements in "IN" on my database takes 3 seconds.
    - Query with Array bind:
    in Oracle I did UDT: create or replace type myschema.mytype as table of varchar2(1000)
    than, as described in Oracle Example I did few classes (Factory and implementing IOracleCustomType) and use it in Query,
    instead of IN ('id01', 'id02', 'id03'...) I have tbl1.field0 IN (select column_value from table(:prmTable)), and :prmTable is bound array.
    this query takes 190 seconds!!! Why? I works, but the HDD of Oracle server works very hard, and it takes too long.
    Oracle server we habe 10g.
    PS: I tried to use only 5 elements in array - the same result, it takes also 190 seconds...
    Please help!

    I recommend you generate an explain plan for each query and post them here. Based on what you have given the following MAY be happening:
    Your first query has as static IN list when it is submitted to the server. Therefore when Oracle generates the execution plan the CBO can accurately determine it based on a KNOWN set of input parameters. However the second query has a bind variable for this list of parameters and Oracle has no way of knowing at the time the execution plan is generated what that list contains. If it does not know what the list contains it cannot generate the most optimal execution plan. Therefore I would guess that it is probably doing some sort of full table scan (although these aren't always bad, remember that!).
    Again please post the execution plans for each.
    HTH!

Maybe you are looking for

  • Adobe form as PDF string in Webservice importing parameter

    Hello Experts, Can you please clarify the below issue. I have created a webdynpro. I have placed an interactive form on one of it's view. And kept one Submit button(Execute type) on the form to trigger one webservice. This webservice has the importin

  • Facebook sharing not working

    The facebook-button in Notification center isn't working for me. Not the twitter-button either thou that can be fixed by terminating the notification center process in activity terminal. But if I try to use the facebook-butto the twitter-button stops

  • Upgrade and Restore?

    I've been following this forum over the weekend. I've got the new OS but haven't yet installed it. I'm a bit confused about a couple things and wondered if someone could explain. 1) Upgrading is bad: Why do they offer an upgrade path if it obviously

  • Java commands problem

    I have installed java. But when I run in a dos shell commands Java, jar etc, it does not recognize them. I want to execute these commands from any directory; Today, I must use C:\j2sdk1.4.2_13\bin to work properly. Thanks,

  • Negative

    Hi All. Can anyone tell me how I can come to know if a value is negative or not. For ex. Suppose a = -2 I want to know a way where I can write. If a is  negative. else endif. Thanks