URGENT : FRM-41219 Can not find report : INVALID ID

hello all
The same problem i have also posted in forms forum..
i am getting the exception FRM-41219 when calling the report from my form with the method RUN_REPORT_OBJECT.
I m calling the report in my program unit method as follows :
DECLARE
Pl_Id ParameterList;
RepId REPORT_OBJECT;
Vrep Varchar2(1000);
BEGIN
add_parameter(pl_id,'report_parameter',text_parameter,record_block.input_box);
RepId := find_repor_object('report_name');
Vrep := RUN_REPORT_OBJECT(RepId,Pl_Id);
END;
But when i run the fmx .. i get the exception "FRM-41219 can not find report :Invalid ID"
I have checked all possiblities i.e. i have also called the method as RUN_REPORT_OBJECT(RepId) and also RUN_REPORT_OBJECT(ReportName)..but in all cases i am getting the same error..i have also checked the environment variable ..it contains the correct path of my application folder where the report is available.
Kindly help me with this
if any body knows the solution..or the cause for it..please let me know here or contact me on this address
[email protected]
thank you.

Try this:
DECLARE
Report_Id report_object;
v_rep varchar2(200);
rep_status varchar2(20);
BEGIN
report_id:=FIND_REPORT_OBJECT('EMP');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,:REPORT_NAME);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,:REPORT_DESFORMAT);
if :REPORT_DESTYPE='CACHE' then
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
elsif :REPORT_DESTYPE='FILE' then
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
end if
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:REPORT_DESNAME);
v_rep := RUN_REPORT_OBJECT(report_id);
rep_status := REPORT_OBJECT_STATUS(v_rep);
if rep_status = 'FINISHED' then
message('Report Completed');
else
message('Error when running report.');
end if;
END;
Thanks
Rohit

Similar Messages

  • FRM 41215: CAN NOT FIND REPORT - Please help

    Hi,
    I am new to oracle 9i. I am trying to convert the forms in 8i to 9i. While i am doing i have many forms calling reports thru run_product. Now i am changing those into run_report_object. Even though i am getting errors like FRM 41215: CAN NOT FIND REPORT , INVALID REPORT ID.
    declare
    repid report_object;
    v_rep varchar2(100);
    begin
    repid := find_report_object('mrnr0028');
    v_rep := RUN_REPORT_OBJECT(repid);
    end;
    This is the command i have used. Is there anything wrong, or is there any necessity to specify any particular path for report files.
    Pls help me asap.
    Thanks

    I HAVE CREATE THIS PROGRAM UNIT(WITH LOT OF HARD WORK) FOR CHARACTRE AS WELL AS DEFAULT REPORT
    RUNING ON WEB
    -----------------FOR CHARACTER REPORT
    procedure web_report_c ( type varchar2,parameter varchar2) is
    report_id Report_Object;
    report_job_id VARCHAR2(100);
    report_status varchar2(100);
    FILE_NAME VARCHAR2(100);
    web_name varchar2(300);
    user_name varchar2(30);
    BEGIN
    user_name:=get_application_property(username);
    if type='PRINTER' THEN
    report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report is finished then make call to report
              --          web_name:='HTTP://logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    ELSIF type='SCREEN' THEN
         report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                        --web_name:='HTTP://ORACORP/logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    end if;
    end;
    ------------FOR DEFAULT REPORT
    procedure web_report_c ( type varchar2,parameter varchar2) is
    report_id Report_Object;
    report_job_id VARCHAR2(100);
    report_status varchar2(100);
    FILE_NAME VARCHAR2(100);
    web_name varchar2(300);
    user_name varchar2(30);
    BEGIN
    user_name:=get_application_property(username);
    if type='PRINTER' THEN
    report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report is finished then make call to report
              --          web_name:='HTTP://logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    ELSIF type='SCREEN' THEN
         report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                        --web_name:='HTTP://ORACORP/logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    end if;
    end;

  • Why I can not find reports object in Jdeveloper

    How are you!
    I want to use Jdeveloper to generate a report jsp file,but I can not find reports object . How can I do! I have installes Oracle9iDSrelease2.0 in my computer.
    Best regards!
    Jonan Zhou

    If you installed Oracle9iDS then you should have the report object inside the JDeveloper that came with this install (9.0.2). It won't work in a JDeveloper that you installed separatly.

  • FRM - 41219 CANNOT FIND REPORT INVALID ID  - CALLING REPORT FROM FORM

    I am using Developer Suite 10g (forms 9i, reports 9i) . windows XP.
    I am using the following code in WHEN-BUTTON-PRESSED-PRESSED trigger in form to call report.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status varchar2(20);
    BEGIN
    repid := find_report_object('C:\EMP.RDF');
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    as as result It is displaying FRM - 41219 CANNOT FIND REPORT INVALID ID.
    I have used the EMP.JSP also in find_report_object built-in. But there is no difference.
    what could be the reason - plz give the solution.
    with thanks
    by GMS

    Unless you made a mistake and overlooked it, what I suggested should work. Having said that, you did not mention the exact Forms version you are using. There may have been a problem in the version you are using which was corrected in a later release. I tested the example I offered using Forms 10.1.2.3 and it works correctly. Carefully review what you did. Verify that the file actually exists in the file system. Also, I would recommend renaming the file with all lower case letters and referencing it in the form with all lower case letters. Here is the complete code of the form I tested. I will also include the property values from the Report object.
    Report1 settings:
    Name - REPORT1
    Subclass Information -
    Comments -
    Filename - dummy.rdf
    Execution Mode - Batch
    Communication Mode - Synchronous
    Data Source Data Block - <Null>
    Query Name -
    Report Destination Type - File
    Report Destination Name -
    Report Destination Format -
    Report Server -
    Other Reports Parameters - On the form create the following items in BLOCK1:
    Text fields:
    <li>SERVERNAME
    <li>REPNAME
    <li>OTHERPARAMS
    Button:
    <li>CALL_REP
    In the WHEN-BUTTON-PRESSED trigger add this code:
    Declare
    repid REPORT_OBJECT;
    v_rep varchar2(256);
    rep_status varchar2(256);
    Begin
       repid := find_report_object('REPORT1');
    -- Set Report Object properties
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT, 'HTML');
    -- Comm mode 1 = SYNCHRONOUS
    -- Comm mode 2 = ASYNCHRONOUS
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, 1);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_SERVER, :block1.SERVERNAME);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_FILENAME, :block1.REPNAME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,:block1.otherparams);
    SYNCHRONIZE;
    -- Run report and get status
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := report_object_status(v_rep);
    SYNCHRONIZE;
    -- Wait for Reports to generate results
        WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
        LOOP
          rep_status := report_object_status(v_rep);
        END LOOP;
        SYNCHRONIZE;
    -- If DESTYPE is appropriate for displaying to user, execute WEB.SHOW ;   
        IF rep_status = 'FINISHED' THEN
          WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||:block1.SERVERNAME,'_blank');
        ELSE
          message(rep_status);
        END IF;  
    END; When you run the form, enter the Report Server name and the Report filename (include the path if you have not configured REPORTS_PATH). Then click on the button. Note that the substr logic may need to be altered slightly if you are using an old version of Forms/Reports.
    .

  • FRM-10044 Can not create a file URGENT PLEASE!!

    I installed Oracle 8i and Forms 6i in a pentium 4 changing the symcjit.dll -> symcjit.old.
    Now I want to use the same scripts and Forms that I have saved using my old machine but I can't save new forms or update the old ones.
    FRM 10044 Can not create the file
    I can run the scripts in SQL.
    Please Help me it is urgent.
    I have installed and uninstalled the Data Base many times and I have read previous posts.
    Thank you a lot.

    Hi,
    "Cannot Create File" means forms failed to create/save the file. Check the following
    * Do you have full access to the drive?
    * Did you mark either the form or its directory as read only?
    Regards,
    Momen.
    Hi Helena,
    How are you? We are into Arabic development environment. I am trying to migrate from 6i (CS) to 9i (web). Everything went fine but when I run the report, the browser is displaying junk characters.
    Did you experience this problem?
    If you have any suggestions you can mail me on [email protected]
    Regards,
    Momen.

  • [Urgent] can not find Web service diagram in new gallery

    New Gallery -> Business Tier -> Web services
    can not find web services diagram item.
    But i read book about 10g there is web services diagram
    my version is 10.1.3.3

    Hi,
    I think the book means the WSDL editor that opens when you click on a WSDL file
    Frank

  • Cannot find report Invalid ID

    I am running Oracle10gAS, and running report from form and getting this message "FRM-41219: Cannot find report Invalid ID" The coding is
    declare
         repid report_object;
         v_rep varchar2(100);
    begin
         repid:=find_report_object('erp_emp_asgn');
         v_rep:=run_report_object(repid);
    end ;
    I have already set REPORTS_PATH =c:\new_erp;
    But still i am getting the same message
    Please if somebody can help me.
    Thank You

    Did you define a Report Object in Forms Builder called 'erp_emp_asgn'?

  • Wireless card can not find any network.

    I have 2 wireless card:
    TP-Link PCI card:TL-WN851N
    D-Link USB card:DWA-127
    both card work fine under windows.
    but TP-Link can not find any wireless network,even if I moved my wirelss router to same room with TP-Link wireless card.
    Anybody have an idea ?
    I comfirmed the kernel driver is properly loaded:
    [root@XSign ~]# lspci -k
    04:00.0 Network controller: Qualcomm Atheros AR9227 Wireless Network Adapter (rev 01)
    Subsystem: Qualcomm Atheros Device 0300
    Kernel driver in use: ath9k
    Kernel modules: ath9k
    [root@XSign ~]# ifconfig -a
    //this is D-Link card
    wlp0s20u11: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 192.168.2.101 netmask 255.255.255.0 broadcast 255.255.255.255
    inet6 fe80::bef6:85ff:fe67:57c prefixlen 64 scopeid 0x20<link>
    ether bc:f6:85:67:05:7c txqueuelen 1000 (Ethernet)
    RX packets 171436 bytes 230296030 (219.6 MiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 107153 bytes 12458452 (11.8 MiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    //this is TP-Link card
    wlp4s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
    ether 08:57:00:34:4f:c5 txqueuelen 1000 (Ethernet)
    RX packets 0 bytes 0 (0.0 B)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 0 bytes 0 (0.0 B)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    [root@XSign ~]# ifconfig wlp4s0 up
    [root@XSign ~]# iwlist wlp4s0 scan
    wlp4s0 No scan results
    and I can find many wireless network with same command through card wlp0s20u11
    AR9227 is supported : http://wireless.kernel.org/en/users/Drivers/ath9k/

    Thanks for reply.
    one more thing, I noticed the power LED didn't "light up" when I execute the "power up" command.
    [root@XSign hacksign]# ip link show wlp4s0
    3: wlp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
    link/ether 08:57:00:34:4f:c5 brd ff:ff:ff:ff:ff:ff
    [root@XSign hacksign]# ip link set wlp4s0 up
    [root@XSign hacksign]# ip link show wlp4s0
    3: wlp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
    link/ether 08:57:00:34:4f:c5 brd ff:ff:ff:ff:ff:ff
    [root@XSign hacksign]# dmesg | grep firmware
    [root@XSign hacksign]#
    any suggesstions ?
    below is my complete demsg output:
    [root@XSign hacksign]# dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.15.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.0 20140604 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jun 17 09:32:20 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=08871484-d630-41f6-a743-4086ad9f8628 rw noisy init=/usr/lib/systemd/systemd nomodeset
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb231fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bb232000-0x00000000bb238fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bb239000-0x00000000bc247fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bc248000-0x00000000bc74dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bc74e000-0x00000000ce799fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ce79a000-0x00000000ce9adfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ce9ae000-0x00000000cea93fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cea94000-0x00000000cf7fefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cf7ff000-0x00000000cf7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022dffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. G1.Sniper B5/G1.Sniper B5-CF, BIOS F6 01/17/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x22e000 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 0000000000 mask 7E00000000 write-back
    [ 0.000000] 1 base 0200000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 0220000000 mask 7FF8000000 write-back
    [ 0.000000] 3 base 0228000000 mask 7FFC000000 write-back
    [ 0.000000] 4 base 022C000000 mask 7FFE000000 write-back
    [ 0.000000] 5 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 6 base 00D0000000 mask 7FF0000000 uncachable
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcf800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd710-0x000fd71f] mapped at [ffff8800000fd710]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b3e000, 0x01b3efff] PGTABLE
    [ 0.000000] BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    [ 0.000000] BRK [0x01b40000, 0x01b40fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22de00000-0x22dffffff]
    [ 0.000000] [mem 0x22de00000-0x22dffffff] page 2M
    [ 0.000000] BRK [0x01b41000, 0x01b41fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22c000000-0x22ddfffff]
    [ 0.000000] [mem 0x22c000000-0x22ddfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x22bffffff]
    [ 0.000000] [mem 0x200000000-0x22bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbb231fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0xbb1fffff] page 2M
    [ 0.000000] [mem 0xbb200000-0xbb231fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbb239000-0xbc247fff]
    [ 0.000000] [mem 0xbb239000-0xbb3fffff] page 4k
    [ 0.000000] [mem 0xbb400000-0xbc1fffff] page 2M
    [ 0.000000] [mem 0xbc200000-0xbc247fff] page 4k
    [ 0.000000] BRK [0x01b42000, 0x01b42fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbc74e000-0xce799fff]
    [ 0.000000] [mem 0xbc74e000-0xbc7fffff] page 4k
    [ 0.000000] [mem 0xbc800000-0xce5fffff] page 2M
    [ 0.000000] [mem 0xce600000-0xce799fff] page 4k
    [ 0.000000] BRK [0x01b43000, 0x01b43fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xcf7ff000-0xcf7fffff]
    [ 0.000000] [mem 0xcf7ff000-0xcf7fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x379c0000-0x37cd7fff]
    [ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000CEA6C078 000074 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000CEA77460 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000CEA6C188 00B2D7 (v02 ALASKA A M I 000000F6 INTL 20091112)
    [ 0.000000] ACPI: FACS 0x00000000CEA92080 000040
    [ 0.000000] ACPI: APIC 0x00000000CEA77570 000072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000CEA775E8 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 0x00000000CEA77630 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x00000000CEA77B70 000AD8 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: MCFG 0x00000000CEA78648 00003C (v01 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000CEA78688 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000CEA786C0 00036D (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000CEA78A30 003299 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: DMAR 0x00000000CEA7BCD0 000080 (v01 INTEL HSW 00000001 INTL 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000022dffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x22dffffff]
    [ 0.000000] NODE_DATA [mem 0x22dff6000-0x22dffafff]
    [ 0.000000] [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880225600000-ffff88022d5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x22dffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0xbb231fff]
    [ 0.000000] node 0: [mem 0xbb239000-0xbc247fff]
    [ 0.000000] node 0: [mem 0xbc74e000-0xce799fff]
    [ 0.000000] node 0: [mem 0xcf7ff000-0xcf7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x22dffffff]
    [ 0.000000] On node 0 totalpages: 2081322
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13131 pages used for memmap
    [ 0.000000] DMA32 zone: 840334 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19328 pages used for memmap
    [ 0.000000] Normal zone: 1236992 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 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[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge 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-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] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-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 0xbb232000-0xbb238fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbc248000-0xbc74dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xce79a000-0xce9adfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xce9ae000-0xcea93fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcea94000-0xcf7fefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcf800000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xcf800000-0xf7ffffff] 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 @ffff88022dc00000 s87168 r8192 d23424 u524288
    [ 0.000000] pcpu-alloc: s87168 r8192 d23424 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2048778
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=08871484-d630-41f6-a743-4086ad9f8628 rw noisy init=/usr/lib/systemd/systemd nomodeset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 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: 8112620K/8325288K available (5222K kernel code, 885K rwdata, 1644K rodata, 1116K init, 1284K bss, 212668K 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:712 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 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] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 3192.796 MHz processor
    [ 0.000021] Calibrating delay loop (skipped), value calculated using timer frequency.. 6388.65 BogoMIPS (lpj=10642653)
    [ 0.000023] pid_max: default: 32768 minimum: 301
    [ 0.000027] ACPI: Core revision 20140214
    [ 0.007164] ACPI: All ACPI Tables successfully acquired
    [ 0.008322] Security Framework initialized
    [ 0.008326] Yama: becoming mindful.
    [ 0.008691] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.010281] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.010989] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.010996] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.011160] Initializing cgroup subsys memory
    [ 0.011162] Initializing cgroup subsys devices
    [ 0.011164] Initializing cgroup subsys freezer
    [ 0.011165] Initializing cgroup subsys net_cls
    [ 0.011166] Initializing cgroup subsys blkio
    [ 0.011180] CPU: Physical Processor ID: 0
    [ 0.011181] CPU: Processor Core ID: 0
    [ 0.011958] mce: CPU supports 9 MCE banks
    [ 0.011969] CPU0: Thermal monitoring enabled (TM1)
    [ 0.011978] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    [ 0.012042] Freeing SMP alternatives memory: 20K (ffffffff819f6000 - ffffffff819fb000)
    [ 0.012591] ftrace: allocating 20223 entries in 79 pages
    [ 0.018707] dmar: Host address width 39
    [ 0.018709] dmar: DRHD base: 0x000000fed90000 flags: 0x1
    [ 0.018715] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap d2008c20660462 ecap f010da
    [ 0.018716] dmar: RMRR base: 0x000000ce92c000 end: 0x000000ce938fff
    [ 0.018781] IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
    [ 0.018781] HPET id 0 under DRHD base 0xfed90000
    [ 0.018782] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.018855] Enabled IRQ remapping in x2apic mode
    [ 0.018856] Enabling x2apic
    [ 0.018856] Enabled x2apic
    [ 0.018860] Switched APIC routing to cluster x2apic.
    [ 0.019222] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.052254] smpboot: CPU0: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.052259] TSC deadline timer enabled
    [ 0.052264] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.052268] ... version: 3
    [ 0.052269] ... bit width: 48
    [ 0.052270] ... generic registers: 8
    [ 0.052270] ... value mask: 0000ffffffffffff
    [ 0.052271] ... max period: 0000ffffffffffff
    [ 0.052271] ... fixed-purpose events: 3
    [ 0.052272] ... event mask: 00000007000000ff
    [ 0.079047] x86: Booting SMP configuration:
    [ 0.079048] .... node #0, CPUs: #1
    [ 0.093027] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.099712] #2 #3
    [ 0.134308] x86: Booted up 1 node, 4 CPUs
    [ 0.134310] smpboot: Total of 4 processors activated (25552.63 BogoMIPS)
    [ 0.136937] devtmpfs: initialized
    [ 0.138913] PM: Registering ACPI NVS region [mem 0xbb232000-0xbb238fff] (28672 bytes)
    [ 0.138915] PM: Registering ACPI NVS region [mem 0xce9ae000-0xcea93fff] (942080 bytes)
    [ 0.139415] pinctrl core: initialized pinctrl subsystem
    [ 0.139443] RTC time: 11:10:27, date: 06/26/14
    [ 0.139466] NET: Registered protocol family 16
    [ 0.139522] cpuidle: using governor ladder
    [ 0.139522] cpuidle: using governor menu
    [ 0.139531] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.139532] ACPI: bus type PCI registered
    [ 0.139533] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.139569] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.139570] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.143859] PCI: Using configuration type 1 for base access
    [ 0.144410] ACPI: Added _OSI(Module Device)
    [ 0.144411] ACPI: Added _OSI(Processor Device)
    [ 0.144412] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.144413] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.147021] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.148606] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.161070] ACPI: SSDT 0x00000000CE9A3C18 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.161369] ACPI: Dynamic OEM Table Load:
    [ 0.161370] ACPI: SSDT 0x0000000000000000 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.174502] ACPI: SSDT 0x00000000CE9A3618 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.174917] ACPI: Dynamic OEM Table Load:
    [ 0.174918] ACPI: SSDT 0x0000000000000000 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.184454] ACPI: SSDT 0x00000000CE9A2D98 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.184763] ACPI: Dynamic OEM Table Load:
    [ 0.184765] ACPI: SSDT 0x0000000000000000 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.194062] ACPI: Interpreter enabled
    [ 0.194068] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140214/hwxface-580)
    [ 0.194072] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140214/hwxface-580)
    [ 0.194082] ACPI: (supports S0 S3 S4 S5)
    [ 0.194083] ACPI: Using IOAPIC for interrupt routing
    [ 0.194102] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.199374] ACPI: Power Resource [FN00] (off)
    [ 0.199419] ACPI: Power Resource [FN01] (off)
    [ 0.199463] ACPI: Power Resource [FN02] (off)
    [ 0.199506] ACPI: Power Resource [FN03] (off)
    [ 0.199551] ACPI: Power Resource [FN04] (off)
    [ 0.199896] ACPI: \_PR_.CPU4: failed to get CPU APIC ID.
    [ 0.199899] ACPI: \_PR_.CPU5: failed to get CPU APIC ID.
    [ 0.199901] ACPI: \_PR_.CPU6: failed to get CPU APIC ID.
    [ 0.199903] ACPI: \_PR_.CPU7: failed to get CPU APIC ID.
    [ 0.200027] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.200030] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.200156] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 0.200234] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 0.200577] PCI host bridge to bus 0000:00
    [ 0.200579] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.200581] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.200582] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.200583] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.200584] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.200585] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.200586] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.200587] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.200587] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.200588] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.200589] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfeafffff]
    [ 0.200595] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    [ 0.200653] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 0.200679] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.200711] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.200755] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 0.200771] pci 0000:00:14.0: reg 0x10: [mem 0xf3220000-0xf322ffff 64bit]
    [ 0.200822] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.200847] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.200874] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 0.200890] pci 0000:00:16.0: reg 0x10: [mem 0xf323c000-0xf323c00f 64bit]
    [ 0.200945] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.200993] pci 0000:00:16.3: [8086:8c3d] type 00 class 0x070002
    [ 0.201006] pci 0000:00:16.3: reg 0x10: [io 0xf0a0-0xf0a7]
    [ 0.201013] pci 0000:00:16.3: reg 0x14: [mem 0xf323a000-0xf323afff]
    [ 0.201114] pci 0000:00:19.0: [8086:153b] type 00 class 0x020000
    [ 0.201128] pci 0000:00:19.0: reg 0x10: [mem 0xf3200000-0xf321ffff]
    [ 0.201135] pci 0000:00:19.0: reg 0x14: [mem 0xf3239000-0xf3239fff]
    [ 0.201141] pci 0000:00:19.0: reg 0x18: [io 0xf040-0xf05f]
    [ 0.201192] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.201219] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.201246] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    [ 0.201264] pci 0000:00:1a.0: reg 0x10: [mem 0xf3238000-0xf32383ff]
    [ 0.201342] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.201378] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.201405] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 0.201416] pci 0000:00:1b.0: reg 0x10: [mem 0xf3230000-0xf3233fff 64bit]
    [ 0.201476] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.201503] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.201526] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 0.201583] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.201611] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.201635] pci 0000:00:1c.3: [8086:244e] type 01 class 0x060401
    [ 0.201692] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.201720] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.201750] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    [ 0.201768] pci 0000:00:1d.0: reg 0x10: [mem 0xf3237000-0xf32373ff]
    [ 0.201847] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.201883] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.201910] pci 0000:00:1f.0: [8086:8c50] type 00 class 0x060100
    [ 0.202046] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
    [ 0.202058] pci 0000:00:1f.2: reg 0x10: [io 0xf090-0xf097]
    [ 0.202064] pci 0000:00:1f.2: reg 0x14: [io 0xf080-0xf083]
    [ 0.202070] pci 0000:00:1f.2: reg 0x18: [io 0xf070-0xf077]
    [ 0.202076] pci 0000:00:1f.2: reg 0x1c: [io 0xf060-0xf063]
    [ 0.202081] pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f]
    [ 0.202087] pci 0000:00:1f.2: reg 0x24: [mem 0xf3236000-0xf32367ff]
    [ 0.202118] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.202161] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 0.202173] pci 0000:00:1f.3: reg 0x10: [mem 0xf3235000-0xf32350ff 64bit]
    [ 0.202190] pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f]
    [ 0.202273] pci 0000:01:00.0: [10de:11c0] type 00 class 0x030000
    [ 0.202282] pci 0000:01:00.0: reg 0x10: [mem 0xf2000000-0xf2ffffff]
    [ 0.202291] pci 0000:01:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
    [ 0.202300] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.202306] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.202312] pci 0000:01:00.0: reg 0x30: [mem 0xf3000000-0xf307ffff pref]
    [ 0.202361] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.202388] pci 0000:01:00.1: [10de:0e0b] type 00 class 0x040300
    [ 0.202397] pci 0000:01:00.1: reg 0x10: [mem 0xf3080000-0xf3083fff]
    [ 0.208685] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.208687] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.208689] pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf30fffff]
    [ 0.208737] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.208807] pci 0000:03:00.0: [8086:244e] type 01 class 0x060401
    [ 0.208933] pci 0000:03:00.0: supports D1 D2
    [ 0.208934] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.208954] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.208973] pci 0000:00:1c.3: PCI bridge to [bus 03-04] (subtractive decode)
    [ 0.208977] pci 0000:00:1c.3: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.208981] pci 0000:00:1c.3: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.208982] pci 0000:00:1c.3: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.208983] pci 0000:00:1c.3: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.208984] pci 0000:00:1c.3: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.208985] pci 0000:00:1c.3: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.208986] pci 0000:00:1c.3: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.208987] pci 0000:00:1c.3: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.208988] pci 0000:00:1c.3: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.208989] pci 0000:00:1c.3: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.208990] pci 0000:00:1c.3: bridge window [mem 0xd0000000-0xfeafffff] (subtractive decode)
    [ 0.209061] pci 0000:04:00.0: [168c:002d] type 00 class 0x028000
    [ 0.209095] pci 0000:04:00.0: reg 0x10: [mem 0xf3100000-0xf310ffff]
    [ 0.209351] pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
    [ 0.209364] pci 0000:03:00.0: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.209373] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    [ 0.209374] pci 0000:03:00.0: bridge window [mem 0xf3100000-0xf31fffff] (subtractive decode)
    [ 0.209375] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    [ 0.209376] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    [ 0.209377] pci 0000:03:00.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.209378] pci 0000:03:00.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.209379] pci 0000:03:00.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.209380] pci 0000:03:00.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.209381] pci 0000:03:00.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.209382] pci 0000:03:00.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.209383] pci 0000:03:00.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.209384] pci 0000:03:00.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.209385] pci 0000:03:00.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.209386] pci 0000:03:00.0: bridge window [mem 0xd0000000-0xfeafffff] (subtractive decode)
    [ 0.209408] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.209784] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.209814] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.209842] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.209869] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.209897] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.209925] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.209954] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.209982] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.210114] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.210172] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.210173] vgaarb: loaded
    [ 0.210173] vgaarb: bridge control possible 0000:01:00.0
    [ 0.210188] PCI: Using ACPI for IRQ routing
    [ 0.211404] PCI: pci_cache_line_size set to 64 bytes
    [ 0.211442] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.211443] e820: reserve RAM buffer [mem 0xbb232000-0xbbffffff]
    [ 0.211444] e820: reserve RAM buffer [mem 0xbc248000-0xbfffffff]
    [ 0.211445] e820: reserve RAM buffer [mem 0xce79a000-0xcfffffff]
    [ 0.211446] e820: reserve RAM buffer [mem 0xcf800000-0xcfffffff]
    [ 0.211446] e820: reserve RAM buffer [mem 0x22e000000-0x22fffffff]
    [ 0.211499] NetLabel: Initializing
    [ 0.211500] NetLabel: domain hash size = 128
    [ 0.211500] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.211507] NetLabel: unlabeled traffic allowed by default
    [ 0.211519] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.211523] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.213540] Switched to clocksource hpet
    [ 0.216475] pnp: PnP ACPI init
    [ 0.216483] ACPI: bus type PNP registered
    [ 0.216524] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.216527] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.216533] pnp 00:01: [dma 4]
    [ 0.216544] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.216555] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.216614] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.216684] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.216686] system 00:04: [io 0xffff] has been reserved
    [ 0.216687] system 00:04: [io 0xffff] has been reserved
    [ 0.216688] system 00:04: [io 0xffff] has been reserved
    [ 0.216689] system 00:04: [io 0x1c00-0x1cfe] has been reserved
    [ 0.216690] system 00:04: [io 0x1d00-0x1dfe] has been reserved
    [ 0.216691] system 00:04: [io 0x1e00-0x1efe] has been reserved
    [ 0.216692] system 00:04: [io 0x1f00-0x1ffe] has been reserved
    [ 0.216693] system 00:04: [io 0x1800-0x18fe] could not be reserved
    [ 0.216695] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.216696] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.216715] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.216745] system 00:06: [io 0x1854-0x1857] has been reserved
    [ 0.216746] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.216822] system 00:07: [io 0x0a00-0x0a0f] has been reserved
    [ 0.216823] system 00:07: [io 0x0a30-0x0a3f] has been reserved
    [ 0.216824] system 00:07: [io 0x0a20-0x0a2f] has been reserved
    [ 0.216825] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.216983] pnp 00:08: [dma 0 disabled]
    [ 0.217013] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.217187] pnp 00:09: [dma 0 disabled]
    [ 0.217255] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.217285] system 00:0a: [io 0x04d0-0x04d1] has been reserved
    [ 0.217286] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.217303] pnp 00:0b: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.217561] system 00:0c: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.217562] system 00:0c: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.217563] system 00:0c: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.217564] system 00:0c: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.217566] system 00:0c: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.217567] system 00:0c: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.217568] system 00:0c: [mem 0xfed90000-0xfed93fff] could not be reserved
    [ 0.217569] system 00:0c: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.217570] system 00:0c: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.217572] system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.217573] system 00:0c: [mem 0xf7fef000-0xf7feffff] has been reserved
    [ 0.217574] system 00:0c: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
    [ 0.217575] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.217728] pnp: PnP ACPI: found 13 devices
    [ 0.217729] ACPI: bus type PNP unregistered
    [ 0.223413] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.223415] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.223417] pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf30fffff]
    [ 0.223421] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.223429] pci 0000:03:00.0: PCI bridge to [bus 04]
    [ 0.223436] pci 0000:03:00.0: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.223448] pci 0000:00:1c.3: PCI bridge to [bus 03-04]
    [ 0.223452] pci 0000:00:1c.3: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.223458] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.223459] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.223460] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.223461] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.223462] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.223463] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.223464] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.223465] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.223466] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.223467] pci_bus 0000:00: resource 13 [mem 0xd0000000-0xfeafffff]
    [ 0.223468] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.223469] pci_bus 0000:01: resource 1 [mem 0xe8000000-0xf30fffff]
    [ 0.223470] pci_bus 0000:03: resource 1 [mem 0xf3100000-0xf31fffff]
    [ 0.223471] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.223472] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.223473] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.223474] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.223475] pci_bus 0000:03: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.223476] pci_bus 0000:03: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.223477] pci_bus 0000:03: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.223478] pci_bus 0000:03: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.223479] pci_bus 0000:03: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.223480] pci_bus 0000:03: resource 13 [mem 0xd0000000-0xfeafffff]
    [ 0.223481] pci_bus 0000:04: resource 1 [mem 0xf3100000-0xf31fffff]
    [ 0.223482] pci_bus 0000:04: resource 5 [mem 0xf3100000-0xf31fffff]
    [ 0.223483] pci_bus 0000:04: resource 8 [io 0x0000-0x0cf7]
    [ 0.223484] pci_bus 0000:04: resource 9 [io 0x0d00-0xffff]
    [ 0.223485] pci_bus 0000:04: resource 10 [mem 0x000a0000-0x000bffff]
    [ 0.223486] pci_bus 0000:04: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.223487] pci_bus 0000:04: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.223488] pci_bus 0000:04: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.223489] pci_bus 0000:04: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.223490] pci_bus 0000:04: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.223491] pci_bus 0000:04: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.223492] pci_bus 0000:04: resource 17 [mem 0xd0000000-0xfeafffff]
    [ 0.223506] NET: Registered protocol family 2
    [ 0.223609] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.223730] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.223895] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.223910] TCP: reno registered
    [ 0.223917] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.223944] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.223988] NET: Registered protocol family 1
    [ 0.256980] pci 0000:01:00.0: Boot video device
    [ 0.256994] PCI: CLS 64 bytes, default 64
    [ 0.257020] Unpacking initramfs...
    [ 0.294705] Freeing initrd memory: 3168K (ffff8800379c0000 - ffff880037cd8000)
    [ 0.294716] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.294717] software IO TLB [mem 0xca79a000-0xce79a000] (64MB) mapped at [ffff8800ca79a000-ffff8800ce799fff]
    [ 0.294842] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.294863] Scanning for low memory corruption every 60 seconds
    [ 0.294994] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.303763] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.304553] zbud: loaded
    [ 0.304660] VFS: Disk quotas dquot_6.5.2
    [ 0.304681] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.304745] msgmni has been set to 15851
    [ 0.304773] Key type big_key registered
    [ 0.304856] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.304885] io scheduler noop registered
    [ 0.304886] io scheduler deadline registered
    [ 0.304909] io scheduler cfq registered (default)
    [ 0.305005] pcieport 0000:00:01.0: irq 41 for MSI/MSI-X
    [ 0.305115] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.305124] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.305139] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.305140] vesafb: scrolling: redraw
    [ 0.305141] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.305727] vesafb: framebuffer at 0xf1000000, mapped to 0xffffc90004e80000, using 8128k, total 8128k
    [ 0.421564] Console: switching to colour frame buffer device 240x67
    [ 0.536923] fb0: VESA VGA frame buffer device
    [ 0.536932] intel_idle: MWAIT substates: 0x42120
    [ 0.536933] intel_idle: v0.4 model 0x3C
    [ 0.536934] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.537045] GHES: HEST is not enabled!
    [ 0.537073] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.557614] 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.578155] 0000:00:16.3: ttyS1 at I/O 0xf0a0 (irq = 19, base_baud = 115200) is a 16550A
    [ 0.578323] Linux agpgart interface v0.103
    [ 0.578347] rtc_cmos 00:05: RTC can wake from S4
    [ 0.578460] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.578493] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.578499] Intel P-state driver initializing.
    [ 0.578506] Intel pstate controlling: cpu 0
    [ 0.578516] Intel pstate controlling: cpu 1
    [ 0.578525] Intel pstate controlling: cpu 2
    [ 0.578533] Intel pstate controlling: cpu 3
    [ 0.578547] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.578599] TCP: cubic registered
    [ 0.578655] NET: Registered protocol family 10
    [ 0.578791] NET: Registered protocol family 17
    [ 0.579032] registered taskstats version 1
    [ 0.579379] Magic number: 2:735:176
    [ 0.579408] acpi device:39: hash matches
    [ 0.579414] acpi device:0c: hash matches
    [ 0.579465] rtc_cmos 00:05: setting system clock to 2014-06-26 11:10:28 UTC (1403781028)
    [ 0.579516] PM: Hibernation image not present or could not be loaded.
    [ 0.579998] Freeing unused kernel memory: 1116K (ffffffff818df000 - ffffffff819f6000)
    [ 0.579999] Write protecting the kernel read-only data: 8192k
    [ 0.581473] Freeing unused kernel memory: 912K (ffff88000151c000 - ffff880001600000)
    [ 0.582105] Freeing unused kernel memory: 404K (ffff88000179b000 - ffff880001800000)
    [ 0.586339] random: systemd-tmpfile urandom read with 65 bits of entropy available
    [ 0.587122] systemd-udevd[58]: starting version 213
    [ 0.595903] ACPI: bus type USB registered
    [ 0.595926] usbcore: registered new interface driver usbfs
    [ 0.595933] usbcore: registered new interface driver hub
    [ 0.596405] usbcore: registered new device driver usb
    [ 0.596719] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.596815] ehci-pci: EHCI PCI platform driver
    [ 0.596919] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.596924] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.596934] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.597169] SCSI subsystem initialized
    [ 0.598545] libata version 3.00 loaded.
    [ 0.600825] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.600841] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf3238000
    [ 0.600943] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.601297] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.601307] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.610538] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.610659] hub 1-0:1.0: USB hub found
    [ 0.610663] hub 1-0:1.0: 2 ports detected
    [ 0.610845] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.610849] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.610858] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.614752] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.614762] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf3237000
    [ 0.623945] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.624126] hub 2-0:1.0: USB hub found
    [ 0.624130] hub 2-0:1.0: 2 ports detected
    [ 0.624306] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.624310] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.624428] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.624442] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    [ 0.624616] hub 3-0:1.0: USB hub found
    [ 0.624632] hub 3-0:1.0: 12 ports detected
    [ 0.625905] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.625908] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.626071] hub 4-0:1.0: USB hub found
    [ 0.626082] hub 4-0:1.0: 6 ports detected
    [ 0.626739] ahci 0000:00:1f.2: version 3.0
    [ 0.626827] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.626869] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
    [ 0.626871] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
    [ 0.631106] scsi0 : ahci
    [ 0.631237] scsi1 : ahci
    [ 0.631544] scsi2 : ahci
    [ 0.631847] scsi3 : ahci
    [ 0.632048] scsi4 : ahci
    [ 0.632210] scsi5 : ahci
    [ 0.632245] ata1: SATA max UDMA/133 abar m2048@0xf3236000 port 0xf3236100 irq 43
    [ 0.632247] ata2: SATA max UDMA/133 abar m2048@0xf3236000 port 0xf3236180 irq 43
    [ 0.632247] ata3: DUMMY
    [ 0.632248] ata4: DUMMY
    [ 0.632249] ata5: DUMMY
    [ 0.632249] ata6: DUMMY
    [ 0.917514] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.950851] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.950865] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.951513] ata2.00: ATA-9: WDC WD10EZEX-08M2NA0, 01.01A01, max UDMA/100
    [ 0.951515] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.952272] ata2.00: configured for UDMA/100
    [ 0.965729] ata1.00: ATA-8: KINGSTON SV300S37A120G, 527ABBF0, max UDMA/133
    [ 0.965731] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.975526] ata1.00: configured for UDMA/133
    [ 0.975682] scsi 0:0:0:0: Direct-Access ATA KINGSTON SV300S3 527A PQ: 0 ANSI: 5
    [ 0.976133] scsi 1:0:0:0: Direct-Access ATA WDC WD10EZEX-08M 01.0 PQ: 0 ANSI: 5
    [ 0.979123] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    [ 0.979131] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 0.979133] sd 1:0:0:0: [sdb] 4096-byte physical blocks
    [ 0.979142] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.979144] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.979150] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.979241] sd 1:0:0:0: [sdb] Write Protect is off
    [ 0.979242] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 0.979260] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.979452] sda: sda1 sda2 sda3
    [ 0.979690] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.992405] sdb: sdb1 sdb2 sdb3 sdb4
    [ 0.992837] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 1.041522] hub 1-1:1.0: USB hub found
    [ 1.041639] hub 1-1:1.0: 6 ports detected
    [ 1.147659] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.271718] hub 2-1:1.0: USB hub found
    [ 1.271809] hub 2-1:1.0: 6 ports detected
    [ 1.297769] tsc: Refined TSC clocksource calibration: 3192.606 MHz
    [ 1.431263] usb 3-5: new low-speed USB device number 2 using xhci_hcd
    [ 1.537046] random: nonblocking pool is initialized
    [ 1.556157] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.587430] systemd[1]: systemd 214 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    [ 1.587513] systemd[1]: Detected architecture 'x86-64'.
    [ 1.588205] systemd[1]: Set hostname to <XSign>.
    [ 1.614195] usb 3-5: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.626104] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 1.626132] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 1.626139] systemd[1]: Starting Remote File Systems.
    [ 1.626581] systemd[1]: Reached target Remote File Systems.
    [ 1.626590] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 1.626605] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 1.626610] systemd[1]: Starting Paths.
    [ 1.626945] systemd[1]: Reached target Paths.
    [ 1.626950] systemd[1]: Starting Encrypted Volumes.
    [ 1.627363] systemd[1]: Reached target Encrypted Volumes.
    [ 1.627373] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 1.628175] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 1.628182] systemd[1]: Expecting device dev-sdb4.device...
    [ 1.628567] systemd[1]: Expecting device dev-sda1.device...
    [ 1.628950] systemd[1]: Expecting device dev-sdb3.device...
    [ 1.629332] systemd[1]: Starting Root Slice.
    [ 1.632141] systemd[1]: Created slice Root Slice.
    [ 1.632148] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 1.632697] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 1.632703] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 1.633212] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 1.633217] systemd[1]: Starting Delayed Shutdown Socket.
    [ 1.633664] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 1.633669] systemd[1]: Starting Journal Socket (/dev/log).
    [ 1.634133] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 1.634139] systemd[1]: Starting udev Control Socket.
    [ 1.634558] systemd[1]: Listening on udev Control Socket.
    [ 1.634564] systemd[1]: Starting udev Kernel Socket.
    [ 1.634987] systemd[1]: Listening on udev Kernel Socket.
    [ 1.634993] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 1.635469] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 1.635474] systemd[1]: Starting User and Session Slice.
    [ 1.635984] systemd[1]: Created slice User and Session Slice.
    [ 1.635990] systemd[1]: Starting Journal Socket.
    [ 1.636382] systemd[1]: Listening on Journal Socket.
    [ 1.636391] systemd[1]: Starting System Slice.
    [ 1.636828] systemd[1]: Created slice System Slice.
    [ 1.636837] systemd[1]: Started File System Check on Root Device.
    [ 1.636841] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 1.637390] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 1.637397] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 1.638043] systemd[1]: Mounting Temporary Directory...
    [ 1.639117] systemd[1]: Mounting Debug File System...
    [ 1.639740] systemd[1]: Starting udev Coldplug all Devices...
    [ 1.640987] systemd[1]: Started Load Kernel Modules.
    [ 1.640998] systemd[1]: Mounted FUSE Control File System.
    [ 1.641689] systemd[1]: Starting Apply Kernel Variables...
    [ 1.642275] systemd[1]: Mounting POSIX Message Queue File System...
    [ 1.642976] systemd[1]: Starting Setup Virtual Console...
    [ 1.644065] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 1.645742] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 1.646672] systemd[1]: Mounting Huge Pages File System...
    [ 1.647253] systemd[1]: Mounting Configuration File System...
    [ 1.648402] systemd[1]: Started Set Up Additional Binary Formats.
    [ 1.648413] systemd[1]: Starting system-getty.slice.
    [ 1.649035] systemd[1]: Created slice system-getty.slice.
    [ 1.649044] systemd[1]: Starting Journal Service...
    [ 1.649940] systemd[1]: Started Journal Service.
    [ 1.684590] systemd-udevd[160]: starting version 214
    [ 1.714384] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 1.714388] ACPI: Power Button [PWRB]
    [ 1.714417] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 1.714419] ACPI: Power Button [PWRF]
    [ 1.716491] pps_core: LinuxPPS API ver. 1 registered
    [ 1.716493] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 1.716760] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 1.717286] PTP clock support registered
    [ 1.718023] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [ 1.721435] parport_pc 00:09: reported by Plug and Play ACPI
    [ 1.721481] parport0: PC-style at 0x378, irq 5 [PCSPP,TRISTATE]
    [ 1.721541] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 1.721542] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
    [ 1.721903] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 1.721917] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 1.748190] ACPI: Fan [FAN0] (off)
    [ 1.748215] ACPI: Fan [FAN1] (off)
    [ 1.748234] ACPI: Fan [FAN2] (off)
    [ 1.748255] ACPI: Fan [FAN3] (off)
    [ 1.748276] ACPI: Fan [FAN4] (off)
    [ 1.749478] thermal LNXTHERM:00: registered as thermal_zone0
    [ 1.749479] ACPI: Thermal Zone [TZ00] (28 C)
    [ 1.749609] thermal LNXTHERM:01: registered as thermal_zone1
    [ 1.749610] ACPI: Thermal Zone [TZ01] (30 C)
    [ 1.757876] [drm] Initialized drm 1.1.0 20060810
    [ 1.767187] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 1.774098] cfg80211: Calling CRDA to update world regulatory domain
    [ 1.774823] usb 3-6: new full-speed USB device number 3 using xhci_hcd
    [ 1.795673] Adding 16002224k swap on /dev/sdb4. Priority:-1 extents:1 across:16002224k FS
    [ 1.801517] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.805001] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.806877] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.806888] microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.806895] microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.806928] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.823570] AVX2 version of gcm_enc/dec engaged.
    [ 1.849773] nvidia: module license 'NVIDIA' taints kernel.
    [ 1.849774] Disabling lock debugging due to kernel taint
    [ 1.856456] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 1.856549] ppdev: user-space parallel port driver
    [ 1.856785] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
    [ 1.856789] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 337.25 Tue May 27 11:05:28 PDT 2014
    [ 1.993532] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 1.993533] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 74:d4:35:86:a4:73
    [ 1.993534] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 1.993584] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
    [ 1.993718] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 1.993806] snd_hda_intel 0000:01:00.1: Disabling MSI
    [ 1.993810] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 1.993950] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
    [ 1.994002] ACPI Warning: SystemIO range 0x000000000000f000-0x000000000000f01f conflicts with OpRegion 0x000000000000f000-0x000000000000f00f (\_SB_.PCI0.SBUS.SMBI) (20140214/utaddress-258)
    [ 1.994003] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.996461] iTCO_vendor_support: vendor-support=0
    [ 1.996939] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 1.996968] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
    [ 2.005457] sound hdaudioC0D2: autoconfig: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
    [ 2.005458] sound hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 2.005459] sound hdaudioC0D2: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
    [ 2.005459] sound hdaudioC0D2: mono: mono_out=0x0
    [ 2.005460] sound hdaudioC0D2: dig-out=0x11/0x1e
    [ 2.005460] sound hdaudioC0D2: inputs:
    [ 2.005461] sound hdaudioC0D2: Rear Mic=0x18
    [ 2.005462] sound hdaudioC0D2: Front Mic=0x19
    [ 2.005462] sound hdaudioC0D2: Line=0x1a
    [ 2.005463] sound hdaudioC0D2: CD=0x1c
    [ 2.005463] sound hdaudioC0D2: dig-in=0x1f
    [ 2.008421] systemd-udevd[162]: renamed network interface eth0 to eno1
    [ 2.019322] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D2/input6
    [ 2.020297] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 2.020335] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 2.020370] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 2.020403] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 2.020435] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 2.020468] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 2.026197] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 2.132907] systemd-journald[153]: Received request to flush runtime journal from PID 1
    [ 2.157519] ath: EEPROM regdomain: 0x809c
    [ 2.157520] ath: EEPROM indicates we should expect a country code
    [ 2.157520] ath: doing EEPROM country->regdmn map search
    [ 2.157520] ath: country maps to regdmn code: 0x52
    [ 2.157521] ath: Country alpha2 being used: CN
    [ 2.157521] ath: Regpair used: 0x52
    [ 2.160431] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 2.160562] ieee80211 phy0: Atheros AR9287 Rev:2 mem=0xffffc90006800000, irq=19
    [ 2.181947] systemd-udevd[162]: renamed network interface wlan0 to wlp4s0
    [ 2.298729] Switched to clocksource tsc
    [ 2.376487] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
    [ 2.376547] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
    [ 2.376591] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
    [ 2.376632] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
    [ 2.560514] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
    [ 3.062601] nvidia 0000:01:00.0: irq 47 for MSI/MSI-X
    [ 3.592415] NVRM: Your system is not currently configured to drive a VGA console
    [ 3.592417] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 3.592418] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 3.592419] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 3.592420] NVRM: corruption and stability problems, and is not supported.
    [ 7.032503] usb 3-6: unable to read config index 0 descriptor/all
    [ 7.032509] usb 3-6: can't read configurations, error -110
    [ 7.299384] usb 3-11: new high-speed USB device number 5 using xhci_hcd
    [ 7.769759] usb 3-6: new full-speed USB device number 6 using xhci_hcd
    [ 7.973941] hidraw: raw HID events driver (C) Jiri Kosina
    [ 7.986288] usbcore: registered new interface driver usbhid
    [ 7.986290] usbhid: USB HID core driver
    [ 7.987065] input: HID 046a:0011 as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:046A:0011.0001/input/input17
    [ 7.987234] hid-generic 0003:046A:0011.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 046a:0011] on usb-0000:00:14.0-5/input0
    [ 7.987314] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.0/0003:1532:0016.0002/input/input18
    [ 7.987439] hid-generic 0003:1532:0016.0002: input,hidraw1: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:14.0-6/input0
    [ 7.989050] mousedev: PS/2 mouse device common for all mice
    [ 8.124996] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 8.136818] usb 3-11: reset high-speed USB device number 5 using xhci_hcd
    [ 8.136826] xhci_hcd 0000:00:14.0: Setup ERROR: setup context command for slot 4.
    [ 8.136827] usb 3-11: hub failed to enable device, error -22
    [ 8.226730] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 8.226799] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
    [ 8.296772] usb 3-11: reset high-speed USB device number 5 using xhci_hcd
    [ 8.296839] xhci_hcd 0000:00:14.0: Setup ERROR: setup context command for slot 4.
    [ 8.296841] usb 3-11: hub failed to enable device, error -22
    [ 8.456902] usb 3-11: reset high-speed USB device number 5 using xhci_hcd
    [ 8.481367] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95848
    [ 8.481369] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95800
    [ 8.481370] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95890
    [ 8.481371] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f958d8
    [ 8.481372] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95920
    [ 8.481373] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95968
    [ 8.481374] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f959b0
    [ 8.481751] ieee80211 phy1: rt2x00_set_rt: Info - RT chipset 3070, rev 0201 detected
    [ 8.491510] ieee80211 phy1: rt2x00_set_rf: Info - RF chipset 0005 detected
    [ 8.491667] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
    [ 8.491846] usbcore: registered new interface driver rt2800usb
    [ 8.527024] systemd-udevd[163]: renamed network interface wlan0 to wlp0s20u11
    [ 37.746771] fuse init (API version 7.23)
    [ 162.364940] ieee80211 phy1: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
    [ 162.368409] ieee80211 phy1: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.29
    [ 162.630888] IPv6: ADDRCONF(NETDEV_UP): wlp0s20u11: link is not ready
    [ 165.603287] IPv6: ADDRCONF(NETDEV_UP): wlp0s20u11: link is not ready
    [ 165.711742] e1000e: eno1 NIC Link is Down
    [ 165.815617] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 165.917212] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 165.917299] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
    [ 166.200400] IPv6: ADDRCONF(NETDEV_UP): wlp0s20u11: link is not ready
    [ 169.526968] wlp0s20u11: authenticate with f8:d1:11:e0:43:42
    [ 169.559811] wlp0s20u11: send auth to f8:d1:11:e0:43:42 (try 1/3)
    [ 169.561558] wlp0s20u11: authenticated
    [ 169.563460] wlp0s20u11: associate with f8:d1:11:e0:43:42 (try 1/3)
    [ 169.566987] wlp0s20u11: RX AssocResp from f8:d1:11:e0:43:42 (capab=0x431 status=0 aid=2)
    [ 169.569703] wlp0s20u11: associated
    [ 169.569713] IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20u11: link becomes ready
    [ 169.601748] wlp0s20u11: Limiting TX power to 20 (20 - 0) dBm as advertised by f8:d1:11:e0:43:42

  • Error!! Can not find the delivery details for the delivery Id :

    hi all,
    I have a report which i need to burst in seven different reports wherein my delivery key is column "emp_id". Now when i schedule the report to burst then the report completes with a warning. I see that there are various delivery cycles for the report and for one of the cycles i get the following message
    Error!! Can not find the delivery details for the delivery Id :
    hence, what happens due to this is, even there are successful deliveries for other delivery ids but then i get only two rows of data in each of the seven bursted ouput xls files. wheareas the data runs in thousands of rows for each cycle.
    Hence whats happening is, that due to error /warning in one of the delivery cycles other reports are also not showing data.
    I am not sure whats causing the issue and why i am not getting complete bursted files out.
    Please suggest
    Thanks
    Ronny

    I guess, you are in 10.1.3.3.2 :),
    in the latest release 10.1.3.4.1, there are more enhancement wrto bursting and performance i believe.
    check th release notes
    can you send me the xml and bursting query you have, i can try simulating in my local.

  • [Error ORABPEL - 10900]... : Can not find definition for element 'process'

    Hi,
    When I try to deploy a bpel process using JDeveloper I'm having the following xml parse error:
    Error(21):
    [Error ORABPEL-10900]: xml parser error
    [Description]: in line 21 of "file:/C:/JDeveloper/jdev/mywork/NERGA/CriarProjectoSA/bpel/CriarProjectoSA.bpel", XML parsing failed because file:/C:/JDeveloper/jdev/mywork/NERGA/CriarProjectoSA/bpel/CriarProjectoSA.bpel<Line 21, Column 63>: XML-24538: (Error) Can not find definition for element 'process'.
    [Potential fix]: Fix the invalid XML.
    I don't understand why... Any idea?

    Ok.
    This is my BPEL code. The sapattern tags are from a program that is generating part of the code. The JDeveloper doesn't show any error, I only get the error when I try to deploy.
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <process name="CriarProjectoSA"
    targetNamespace="http://xmlns.oracle.com/CriarProjectoSA"
    suppressJoinFailure="no"
    xmlns="http://xmlns.oracle.com/CriarProjectoSA"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ns4="http://xmlns.oracle.com/CriarProjectoSA"
    xmlns:ns7="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ns5="http://schemas.oracle.com/xpath/extension"
    xmlns:ns6="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:ns11="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
    xmlns:ns9="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:ns1="http://xmlns.oracle.com/ValidacaoProjectos"
    xmlns:ns3="http://www.nerga.pt" xmlns:ns2="http://tempuri.org/"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:ns10="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:ns8="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    <!--Generated by Telelogic System Architect on 05/01/2007 11:06:18 by easm-->
    <sapattern>
    <guid>41207640-d934-480f-902a-b3764f3d9c9f</guid>
    </sapattern>
    <partnerLinks>
    <partnerLink name="client" partnerLinkType="ns4:CriarProjectoSA"
    myRole="CriarProjectoSAProvider"/>
    <partnerLink name="NergaIS" partnerLinkType="ns2:ServiceSoap_PL"
    myRole="ServiceSoap_Role" partnerRole="ServiceSoap_Role"/>
    <partnerLink name="ValidacaoProjectos"
    partnerLinkType="ns1:ValidacaoProjectos"
    myRole="ValidacaoProjectosRequester"
    partnerRole="ValidacaoProjectosProvider"/>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e728e550-f404-47bf-aa13-72429480cbc6</guid>
    <guid>3111d1af-0b31-4d02-b3fc-73d14ce95405</guid>
    <guid>e9cdca59-888a-4e67-af54-a63ce2347ad3</guid>
    </sapattern>
    </partnerLinks>
    <variables>
    <variable name="outputVariable"
    messageType="ns4:CriarProjectoSAResponseMessage"/>
    <variable name="inputVariable"
    messageType="ns4:CriarProjectoSARequestMessage"/>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>2503e820-3add-4cd1-bbc5-5cc5fff57090</guid>
    <guid>8bcc3532-46b7-4e88-816f-72ecdaee76ab</guid>
    </sapattern>
    <variable name="invocaVP_initiate_InputVariable"
    messageType="ns1:ValidacaoProjectosRequestMessage"/>
    <variable name="recebeVP_onResult_InputVariable"
    messageType="ns1:ValidacaoProjectosResponseMessage"/>
    <variable name="InvocaAdicionarProjecto_InputVariable"
    messageType="ns2:AdicionarProjectoSoapIn"/>
    <variable name="InvocaAdicionarProjecto_OutputVariable"
    messageType="ns2:AdicionarProjectoSoapOut"/>
    </variables>
    <sequence>
    <receive name="recebeTemplate" joinCondition="False" partnerLink="client"
    portType="ns4:CriarProjectoSA" operation="process"
    variable="inputVariable" createInstance="yes">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e728e550-f404-47bf-aa13-72429480cbc6</guid>
    <guid>68e62379-55ac-48eb-b681-aee8f5a7696d</guid>
    </sapattern>
    </receive>
    <scope variableAccessSerializable="no" name="ValidarExigências"
    joinCondition="False">
    <faultHandlers>
    <catchAll>
    <assign name="assignInvalid">
    <bpelx:append>
    <bpelx:from expression="concat(ns8:getVariableData('inputVariable','payload','/ns3:Template/ns3:Projecto/ns3:Observacoes'), string('Projecto inválido!!'))"/>
    <bpelx:to variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto/ns3:Observacoes"/>
    </bpelx:append>
    </assign>
    </catchAll>
    </faultHandlers>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>2e56af66-6622-43e0-9adc-6d5f109cf374</guid>
    </sapattern>
    <sequence name="ValidarExigências" joinCondition="False">
    <assign name="assignVPIn">
    <copy>
    <from variable="inputVariable" part="payload"/>
    <to variable="invocaVP_initiate_InputVariable" part="payload"/>
    </copy>
    </assign>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>2e56af66-6622-43e0-9adc-6d5f109cf374</guid>
    </sapattern>
    <invoke name="invocaVP" joinCondition="False"
    partnerLink="ValidacaoProjectos" portType="ns1:ValidacaoProjectos"
    operation="initiate"
    inputVariable="invocaVP_initiate_InputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>f3bc9c04-f4d2-4e96-acc8-7a6c88a8ced5</guid>
    </sapattern>
    </invoke>
    <receive name="recebeVP" joinCondition="False"
    partnerLink="ValidacaoProjectos"
    portType="ns1:ValidacaoProjectosCallback" operation="onResult"
    createInstance="no" variable="recebeVP_onResult_InputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e9cdca59-888a-4e67-af54-a63ce2347ad3</guid>
    <guid>1eba96a8-330a-4e4d-a14b-cdf6641fa614</guid>
    </sapattern>
    </receive>
    <assign name="assignVPOut">
    <copy>
    <from variable="recebeVP_onResult_InputVariable" part="payload"/>
    <to variable="inputVariable" part="payload"/>
    </copy>
    </assign>
    </sequence>
    </scope>
    <scope variableAccessSerializable="no" name="AdicionarProjecto"
    joinCondition="False">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>89c02eae-7788-4892-a616-e46b65ef1b50</guid>
    </sapattern>
    <sequence name="InvocarISAdicionarProjecto" joinCondition="False">
    <assign name="assignIS">
    <copy>
    <from variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto/ns3:NomeProjecto"/>
    <to variable="InvocaAdicionarProjecto_InputVariable" part="parameters"
    query="/ns2:AdicionarProjecto/ns2:nome"/>
    </copy>
    <copy>
    <from variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto/ns3:TipoProjecto"/>
    <to variable="InvocaAdicionarProjecto_InputVariable" part="parameters"
    query="/ns2:AdicionarProjecto/ns2:tipo"/>
    </copy>
    </assign>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>89c02eae-7788-4892-a616-e46b65ef1b50</guid>
    </sapattern>
    <invoke name="InvocaAdicionarProjecto" joinCondition="False"
    partnerLink="NergaIS" portType="ns2:ServiceSoap"
    operation="AdicionarProjecto"
    inputVariable="InvocaAdicionarProjecto_InputVariable"
    outputVariable="InvocaAdicionarProjecto_OutputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>76519bd3-c506-4c79-8190-8ff09abdd27d</guid>
    </sapattern>
    </invoke>
    </sequence>
    </scope>
    <assign name="assignOutput">
    <copy>
    <from variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto"/>
    <to variable="outputVariable" part="payload"/>
    </copy>
    </assign>
    <reply name="devolveProjecto" joinCondition="False" partnerLink="client"
    portType="ns4:CriarProjectoSA" operation="process"
    variable="outputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e728e550-f404-47bf-aa13-72429480cbc6</guid>
    <guid>0dbefef0-3d04-4356-abbc-b291ea40d256</guid>
    </sapattern>
    </reply>
    </sequence>
    </process>

  • Query engine : Can not find DSN in Connection String

    DearSir/Madam,
    Opearating System Windows 7 Professional(32-bit).
    I am using Application, which is developed : Visual basic 6.0(32-bit), Report Writer : Crystal Report 9.2.693(32-bit) and database: Oracle 9.2.0.10(32-bit).
    ODBC Data source : System DSN created and Connection established (Based on Driver : CR ORACLE ODBC Driver 4.10 (cror818.dll))
    In windows 7 environment Data Base connectivity and data fetching also wroking fine.
    My problem is while running reports it display error as "Query engine : Can not find DSN in Connection String"
    I want run time reports.
    For your kind information, at the same time in Windows XP Professional there is no problem found and working fine.
    Kindly help me.
    Thanks and regards,
    Swarup

    Crystal Reports 9.x is not supported on Win 7. See the following wiki:
    http://wiki.sdn.sap.com/wiki/x/b4JiAw
    - Ludek

  • Had to uninstall Firefox, now I can't reinstall. Get error message "Can not find archive file." Please help!

    I believe I had some kind of virus attack. I got everything cleaned up. (I HOPE) In the process of cleaning the virus, I unintalled Firefox because it wouldn't open. Kept getting the error message that Firefox was already open and I had to close out of the sessions or restart the computer. After restarting the computer several times and not being able to find any open sessions in task manager, I uninstalled. When trying to reinstall, I get the error message "can not find archive file." I've tried downloading Firefox from cnet as well as the Mozilla site to no avail. Please help. I'm getting tired of using Chrome already!

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • I opened my computer and the whole top only shows web search, I can not find my bookmarks and I tried reloading firefox and still nothing but tab bar

    Question
    I opened my computer and the whole top only shows web search, I can not find my bookmarks and I tried reloading firefox and still nothing but tab bar. Tried f10, alt, nothing! Can I reload an old firefox? There is no firefox logo at top. When I rt click at top I see hide toolbar and leave full screen. To the right there is only a home sign. How can I get my BOOKMARKS ??????? I so need them and hate what ever this is that now shows up on firefox.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • HT1338 kindly advise how do i install Bonjour to my MacBook Pro. i have quite a fewApps that won't work and have troubleshot them and can not find this application anywhere.

    kindly advise how do i install Bonjour to my MacBook Pro. i have quite a fewApps that won't work and have troubleshot them and can not find this application anywhere.

    this is the error page i get when trying to open Docs to Go on my MacBook
    Process:         Documents To Go Desktop [2042]
    Path:            /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
    Identifier:      com.dataviz.Documents_To_Go_Desktop
    Version:         4.0001.9
    Code Type:       X86 (Native)
    Parent Process:  launchd [187]
    User ID:         501
    Date/Time:       2013-01-28 17:24:34.373 +0200
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Sleep/Wake UUID: 7B3C101D-5145-46E9-87BC-8CC4F7A0AAB9
    Interval Since Last Report:          80267 sec
    Crashes Since Last Report:           1456
    Per-App Crashes Since Last Report:   19
    Anonymous UUID:                      824A531E-DA88-A4D2-F85C-B0E0B6351CDF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
        __TEXT                 0000000000001000-0000000000061000 [  384K] r-x/rwx SM=COW  /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x93030780 strncpy + 112
    1   com.dataviz.Documents_To_Go_Desktop          0x000130dc 0x1000 + 73948
    2   com.apple.Foundation                    0x912acfcf __NSFireDelayedPerform + 413
    3   com.apple.CoreFoundation                0x99f209b6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    4   com.apple.CoreFoundation                0x99f20355 __CFRunLoopDoTimer + 709
    5   com.apple.CoreFoundation                0x99f05162 __CFRunLoopRun + 1730
    6   com.apple.CoreFoundation                0x99f0463a CFRunLoopRunSpecific + 378
    7   com.apple.CoreFoundation                0x99f044ab CFRunLoopRunInMode + 123
    8   com.apple.HIToolbox                     0x94e5b15a RunCurrentEventLoopInMode + 242
    9   com.apple.HIToolbox                     0x94e5aec9 ReceiveNextEventCommon + 374
    10  com.apple.HIToolbox                     0x94e5ad44 BlockUntilNextEventMatchingListInMode + 88
    11  com.apple.AppKit                        0x97b77a3a _DPSNextEvent + 724
    12  com.apple.AppKit                        0x97b7726c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    13  com.apple.AppKit                        0x97b6d6cc -[NSApplication run] + 855
    14  com.apple.AppKit                        0x97b106f6 NSApplicationMain + 1053
    15  com.dataviz.Documents_To_Go_Desktop          0x00002d59 0x1000 + 7513
    16  com.dataviz.Documents_To_Go_Desktop          0x00002c88 0x1000 + 7304
    Thread 1:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x909539ae kevent + 10
    1   libdispatch.dylib                       0x94df4c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x94df47a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 10:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x90952be6 __select + 10
    1   com.apple.CoreFoundation                0x99f48c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x93044557 _pthread_start + 344
    3   libsystem_c.dylib                       0x9302ecee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x00000100  edx: 0x00000010
      edi: 0x009200c0  esi: 0x00000000  ebp: 0xbfffe4d8  esp: 0xbfffe494
       ss: 0x00000023  efl: 0x00010202  eip: 0x93030780   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x60ff7 +com.dataviz.Documents_To_Go_Desktop (4.0001.9) <F358E67C-827D-3CDD-8336-2E6D541F8363> /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
       0xdf000 -    0xecff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
      0x7e8000 -   0x7f0ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
      0x7f7000 -   0x7f9fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x3ff2000 -  0x3ff2ffb +cl_kernels (???) <53FCF3CC-E043-4F29-818E-4FD5879EC129> cl_kernels
    0x3ffc000 -  0x3ffcff7 +cl_kernels (???) <ABBCDE1B-10FB-409E-A3CA-AB362AF8DB9A> cl_kernels
    0x8483000 -  0x8512ff7  unorm8_rgba.dylib (2.1.19) <EAF23AD7-DEC1-3346-A7AA-21B308CA2A85> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x8524000 -  0x85b6ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x8fed1000 - 0x8ff03e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90023ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90024000 - 0x900c4ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x900c5000 - 0x900c5fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x900c6000 - 0x9011fff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90120000 - 0x9014aff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9014b000 - 0x90256ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x90257000 - 0x903afffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x903b0000 - 0x903d4fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x903d5000 - 0x903f2fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x9040d000 - 0x906b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x906b1000 - 0x906d6ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x906e3000 - 0x9070cfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9070d000 - 0x9071dff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x9071e000 - 0x90735fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x90736000 - 0x90736fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x90737000 - 0x9073affd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9073b000 - 0x9076eff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9076f000 - 0x90782ff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90783000 - 0x9078fffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90790000 - 0x90888ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x90889000 - 0x9088cffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x9088d000 - 0x90925fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90926000 - 0x9093dff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9093e000 - 0x90958ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x90959000 - 0x9099aff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x9099b000 - 0x909a3fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x909a4000 - 0x909e6fff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x909e7000 - 0x90de3feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90de4000 - 0x90e30fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x90e31000 - 0x91089ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9108a000 - 0x910ffff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91100000 - 0x9116fffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91170000 - 0x91171fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91181000 - 0x9118dff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9118e000 - 0x911b3ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x911b4000 - 0x911cdfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91234000 - 0x91551ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91555000 - 0x915acff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x915ad000 - 0x915efffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x91969000 - 0x9196bfff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9196c000 - 0x91975ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x91976000 - 0x91d09ffb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x91d15000 - 0x91d22fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91ddb000 - 0x91ddcfff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x91ddd000 - 0x91dddfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91dde000 - 0x91de8fff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91de9000 - 0x91e42fff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91e43000 - 0x91e43ffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x91e44000 - 0x924d0feb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x924d4000 - 0x9255cfff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9255d000 - 0x92631fff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92632000 - 0x9274aff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x927b4000 - 0x927b4fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x927b5000 - 0x92819ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9281a000 - 0x92893ff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x92894000 - 0x92898fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92899000 - 0x9289cff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x928dd000 - 0x929ceffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x929cf000 - 0x929ecff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x929ed000 - 0x92ae9ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x92d84000 - 0x92e78ff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92e79000 - 0x92ef5ff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92f4d000 - 0x92fa7fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92fa8000 - 0x92fc7ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x92fc8000 - 0x92fd2fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92fd3000 - 0x92fd9fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x92fda000 - 0x92fe1ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9302e000 - 0x930ebfeb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x930ec000 - 0x93166ff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93167000 - 0x931a6ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x931a7000 - 0x931a9fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x931aa000 - 0x931b8ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x931b9000 - 0x931bcfff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x931bd000 - 0x931c6ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x931c7000 - 0x93302ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93303000 - 0x9336bfe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9340a000 - 0x9342efff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93460000 - 0x934b7ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x934b8000 - 0x937bdff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x937be000 - 0x937befff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x937bf000 - 0x937c0ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x937c1000 - 0x9381afff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93828000 - 0x9382cffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x94566000 - 0x945fdff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x945fe000 - 0x94645ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94646000 - 0x94646fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94647000 - 0x946a2ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x946a3000 - 0x9482cff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9482d000 - 0x949a5ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x949b4000 - 0x949f4fff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x949f5000 - 0x94a1eff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a2b000 - 0x94a33fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94a7d000 - 0x94aaaffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94aab000 - 0x94d6bfff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94d6c000 - 0x94d6dfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x94d6e000 - 0x94d72ffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94df0000 - 0x94e02ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x94e03000 - 0x951e6ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x951e7000 - 0x951e7fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x95214000 - 0x9527cff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9527d000 - 0x9529dffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x95592000 - 0x95668fff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95669000 - 0x95695ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x95696000 - 0x956a2ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x956a3000 - 0x9592fffb  com.apple.RawCamera.bundle (4.03 - 676) <53F1CD12-96E9-3E41-BEA9-46B75FC707D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95930000 - 0x95d4dfff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x95d4e000 - 0x95f0affd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x95f0b000 - 0x95f11ffc  libCGXCoreImage.A.dylib (324.6) <D75B1309-D224-344F-A28F-2B552859DDFC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95f12000 - 0x95facfff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x96076000 - 0x960fbff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x960fc000 - 0x9610afff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9610b000 - 0x96218057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96219000 - 0x962abffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x962ac000 - 0x962b8ffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0x962b9000 - 0x96308ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96309000 - 0x9634dfff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9634e000 - 0x9639eff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9639f000 - 0x963bdff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x963be000 - 0x9647cff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9647d000 - 0x9647dfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9647e000 - 0x964c0ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x964c1000 - 0x964d6fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x964dd000 - 0x9653ffff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x96544000 - 0x96986fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96987000 - 0x96a68fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x96a69000 - 0x96a69fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a6a000 - 0x96a6bfff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x9742d000 - 0x9742effd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9742f000 - 0x9752dff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9752e000 - 0x97573ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x97574000 - 0x977a4fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x977a5000 - 0x977f3ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x977f4000 - 0x97901ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97902000 - 0x9790cfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x9790d000 - 0x97910ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x97911000 - 0x97913fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97919000 - 0x97946ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x97947000 - 0x97959fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9795a000 - 0x9795eff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x9795f000 - 0x97a13fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97a14000 - 0x985d0ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x985d1000 - 0x985dffff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x985e0000 - 0x986c9ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x986ca000 - 0x98700ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x98701000 - 0x98711ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x98712000 - 0x98712ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98713000 - 0x9871afff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x9871d000 - 0x98721fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98722000 - 0x98767ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x98768000 - 0x989d5fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x989d6000 - 0x98a85ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x98a86000 - 0x98bd3ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x98bd4000 - 0x98bf6fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x98c2d000 - 0x98c52ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98c53000 - 0x98d71ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x98d72000 - 0x9912affa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9912b000 - 0x99174ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x99175000 - 0x9917cff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99184000 - 0x99199fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9919a000 - 0x991d5fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x991d6000 - 0x99452ff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99453000 - 0x994a1ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x994a2000 - 0x994b0ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x994b1000 - 0x99517fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x99518000 - 0x9951cfff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9951d000 - 0x99533fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x99534000 - 0x99537ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99538000 - 0x9956fffa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x99570000 - 0x99571fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x99572000 - 0x99575ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x99576000 - 0x99620fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x99621000 - 0x99662ff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x99663000 - 0x9966cffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9966f000 - 0x9967cff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9967d000 - 0x996aefff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x996af000 - 0x996b0fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x996b1000 - 0x996bcfff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x996bd000 - 0x99721fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x99748000 - 0x99748fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x99749000 - 0x997a6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99eaf000 - 0x99eccfff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x99ecd000 - 0x9a0b5ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9a0f9000 - 0x9a101fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x9a102000 - 0x9a102fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9a103000 - 0x9a31afff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9a373000 - 0x9a3a6ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x9a3a7000 - 0x9a3a9ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x9a3aa000 - 0x9a405fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9a406000 - 0x9a522ff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9a523000 - 0x9a529fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9a52a000 - 0x9a534ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9a535000 - 0x9a53cfff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x9a540000 - 0x9a69dffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 1914
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=154.1M resident=96.1M(62%) swapped_out_or_unallocated=58.1M(38%)
    Writable regions: Total=114.3M written=2316K(2%) resident=21.9M(19%) swapped_out=0K(0%) unallocated=92.4M(81%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2128K
    CG image                              4K
    CG raster data                       16K
    CG shared images                   1216K
    CoreImage                            96K
    CoreServices                       2656K
    MALLOC                             82.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=35                      4408K
    OpenCL                               16K
    Stack                              68.6M
    VM_ALLOCATE                        16.1M
    __DATA                             7392K
    __DATA/__OBJC                       252K
    __IMAGE                             528K
    __LINKEDIT                         31.2M
    __OBJC                             2332K
    __OBJC/__DATA                        60K
    __PAGEZERO                            4K
    __TEXT                            122.9M
    __UNICODE                           544K
    mapped file                        87.5M
    shared memory                       308K
    ===========                      =======
    TOTAL                             429.9M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 8 GB, SMC 1.69f3
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393955353432382D3034302E4130314C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393955353432382D3034302E4130314C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9A302, 500,11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: hub_device, 0x058f  (Alcor Micro, Corp.), 0x6254, 0xfd120000 / 4
    USB Device: hub_device, 0x058f  (Alcor Micro, Corp.), 0x6254, 0xfd124000 / 6
    USB Device: CanoScan, 0x04a9  (Canon Inc.), 0x1905, 0xfd124400 / 7
    USB Device: Aficio MP 161, 0x05ca  (Ricoh Company Ltd.), 0x0403, 0xfd121000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0246, 0xfa120000 / 4

  • Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Welcome to the Apple community.
    A number of people have reported similar issues recently, many appear to have found a discrepancy of some kind in their account settings and making changes to these settings or simply resetting them has resolved the matter.
    Check your account details are correct, check that you are using the correct details for Location, Region and Time Zone. You may want to change these settings and then change them back to see if that helps.
    You might also try logging out of and then back into your iTunes account (Settings > iTunes Store > Apple ID’s > Sign Out) and restarting your router. (Some have reported that after doing this, they need to check for rentals even though it may report that there aren’t any, after which rentals once again appear in the ‘movies’ feature)
    Rentals should appear under their own heading in the ‘Movies’ feature, you might also check at Settings > iTunes Store > Check For Rentals.

Maybe you are looking for