EWA report from SOLMAN not generating properly.

Hi expert,
EWA report from SOLMAN not generating properly. It's generating like Rating not Determined (Gray) - SAP EarlyWatch Alert.
Solman version: SAP EHP 1 for SAP Solution Manager 7.0
Thanks in advance. Any help appreciated.
Regards,
Debi pal

Hi,
Refer to SAP note: Note 762696 - Grey rating for Earlywatch Alert
Thanks
Anil

Similar Messages

  • Steps to configure BPM report from Solman 7.00 for productive system ECC6.0

    Hi all,
    Please given me the steps to configure Buisness process Monitoring reports from Solman 7.0 for productive system( ECC6.0, windows & database oracle 10.2),
    I wanted to create the Reports of  monitoring the buisness.
    Regards,
    Akash Basis consultant.

    Thanks for replying Volker von Gloeden,
    This thread is my first one in SDN & I am very glad that someone has given the answer ,
    I will take a look for solution you have provided & will inform you.
    Thanks again.

  • Customized Seeded report to XMLP report but its not generating output file?

    I want to customize "Dunning Letter Print from Dunning Letter Generate" Report, which is called from "Dunning Letter Generate" Report
    Steps i followed to Customize reports are.
    1. Changed output format to xml for "Dunning Letter Print from Dunning Letter Generate" Report.
    2. Ran report to generate xml data and using xml data created RTF file
    3. Registered data definition and template with code and short name same which is ARDLP_NON_SRS
    Now while i am running report its completing normal, but its not generating output file giving Error like –
    "Unable to find Published Output for this request"
    “No Output File Exist for Request No - xxxxx”
    No Idea why its not picking template, Can anyone help me in this?
    Using:
    Oracle Applications : 10.0.5.2,
    MS Word 2007
    Thanks,

    I am not giving the solution, providing you a hint..
    This is the query you need to satisfy,
    SELECT NVL(R.DESCRIPTION ,CP.USER_CONCURRENT_PROGRAM_NAME)
    FROM FND_CONCURRENT_REQUESTS R, FND_CONCURRENT_PROGRAMS_VL CP,XDO_DS_DEFINITIONS_B XDS
    WHERE ( ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'U'
    AND R.REQUESTED_BY = :$PROFILES$.USER_ID ) or
    ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'R'
    AND R.RESPONSIBILITY_ID = :$PROFILES$.RESP_ID ) )
    AND R.PROGRAM_APPLICATION_ID = CP.APPLICATION_ID
    AND R.CONCURRENT_PROGRAM_ID = CP.CONCURRENT_PROGRAM_ID
    AND XDS.APPLICATION_SHORT_NAME=
    ( SELECT APPLICATION_SHORT_NAME
    FROM FND_APPLICATION
    WHERE APPLICATION_ID=CP.APPLICATION_ID)
    AND XDS.DATA_SOURCE_CODE = CP.CONCURRENT_PROGRAM_NAME
    AND R.OUTPUT_FILE_TYPE='XML'
    AND R.STATUS_CODE not in ('E', 'D', 'T', 'X')
    ORDER BY R.REQUEST_ID DESC
    Go to system profiles and query for 'Concurrent:Report Access Level', responsibility you need and modify the profile name accordingly....

  • Mailing the Report Output-Does not generating file name

    Dear Gurus,
           The below program fulfils the "mailing the report" requirement .it sends the out put as an attachment in XLS format.But one problem exists i.e.,it does not generate  filename.It gives the filename as ".XLS"(DOT XLS).
    What should be done that system generates a filename?
    *& Report  ZTESTMAIL                                                   *
    REPORT  ZTESTMAIL                               .
    tables: ekko.
    parameters: p_email type somlreci1-receiver.
    types: begin of t_ekpo,
    ebeln type ekpo-ebeln,
    ebelp type ekpo-ebelp,
    aedat type ekpo-aedat,
    matnr type ekpo-matnr,
    end of t_ekpo.
    data: it_ekpo type standard table of t_ekpo initial size 0,
    wa_ekpo type t_ekpo.
    types: begin of t_charekpo,
    ebeln(10) type c,
    ebelp(5) type c,
    aedat(8) type c,
    matnr(18) type c,
    end of t_charekpo.
    data: wa_charekpo type t_charekpo.
    data: it_message type standard table of solisti1 initial size 0
    with header line.
    data: it_attach type standard table of solisti1 initial size 0
    with header line.
    data: t_packing_list like sopcklsti1 occurs 0 with header line,
    t_contents like solisti1 occurs 0 with header line,
    t_receivers like somlreci1 occurs 0 with header line,
    t_attachment like solisti1 occurs 0 with header line,
    t_object_header like solisti1 occurs 0 with header line,
    w_cnt type i,
    w_sent_all(1) type c,
    w_doc_data like sodocchgi1,
    gd_error type sy-subrc,
    gd_reciever type sy-subrc.
    t_object_header = 'Text.xls'. append t_object_header.
    *START_OF_SELECTION
    start-of-selection.
    Retrieve sample data from table ekpo
    perform data_retrieval.
    Populate table with detaisl to be entered into .xls file
    perform build_xls_data_table.
    *END-OF-SELECTION
    end-of-selection.
    Populate message body text
    perform populate_email_message_body.
    Send file by email as .xls speadsheet
    perform send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Example .xls documnet attachment'
    'XLS'
    'PO'
    changing gd_error
    gd_reciever.
    Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select ebeln ebelp aedat matnr
    up to 10 rows
    from ekpo
    into table it_ekpo.
    endform. " DATA_RETRIEVAL
    *& Form BUILD_XLS_DATA_TABLE
    Build data table for .xls document
    form build_xls_data_table.
    *CONSTANTS: con_cret TYPE x VALUE '0D', "OK for non Unicode
    *con_tab TYPE x VALUE '09'. "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    constants:
    con_tab type c value cl_abap_char_utilities=>horizontal_tab,
    con_cret type c value cl_abap_char_utilities=>cr_lf.
    concatenate 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
    into it_attach separated by con_tab.
    concatenate con_cret it_attach into it_attach.
    append it_attach.
    loop at it_ekpo into wa_charekpo.
    concatenate wa_charekpo-ebeln wa_charekpo-ebelp
    wa_charekpo-aedat wa_charekpo-matnr
    into it_attach separated by con_tab.
    concatenate con_cret it_attach into it_attach.
    append it_attach.
    endloop.
    endform. " BUILD_XLS_DATA_TABLE
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    Send email
    form send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    data: ld_error type sy-subrc,
    ld_reciever type sy-subrc,
    ld_mtitle like sodocchgi1-obj_descr,
    ld_email like somlreci1-receiver,
    ld_format type so_obj_tp ,
    ld_attdescription type so_obj_nam ,
    ld_attfilename type so_obj_des ,
    ld_sender_address like soextreci1-receiver,
    ld_sender_address_type like soextreci1-adr_typ,
    ld_receiver like sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    clear w_doc_data.
    read table it_attach index w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + strlen( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    clear t_attachment.
    refresh t_attachment.
    t_attachment[] = pit_attach[].
    Describe the body of the message
    clear t_packing_list.
    refresh t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    describe table it_message lines t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    append t_packing_list.
    Create attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    describe table t_attachment lines t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    append t_packing_list.
    Add the recipients email address
    clear t_receivers.
    refresh t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    append t_receivers.
    call function 'SO_DOCUMENT_SEND_API1'
    exporting
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    importing
    sent_to_all = w_sent_all
    tables
    object_header = t_object_header
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    others = 8.
    Populate zerror return code
    ld_error = sy-subrc.
    Populate zreceiver return code
    loop at t_receivers.
    ld_receiver = t_receivers-retrn_code.
    endloop.
    endform.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
    wait up to 2 seconds.
    submit rsconn01 with mode = 'INT'
    with output = 'X'
    and return.
    endform. " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    Populate message body text
    form populate_email_message_body.
    refresh it_message.
    it_message = 'Please find attached a list test ekpo records'.
    append it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY
    Your suggestions will be appreciated and rewarded.
    Thanks in advance
    Murali

    Hi
    Your pgm is not passing anything in obj_descr in packing list for excel file. If you pass a name your excel file will have that.
    Regards
    Sathar
    perform send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Example .xls documnet attachment'
    'XLS'
    'PO'
    ' '  *------> no value*
    changing gd_error
    gd_reciever.
    form send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription *----> no value*
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    t_packing_list-obj_descr = ld_attdescription.

  • Daily System Health monitoring report from SOLMAN

    Hi Experts,
    I am working on a project where I need to triiger a consolidated system health report from sol man, much like early watch report.
    Only thing is that it should be generated daily for each system.
    Well That makes the expectation.
    Progress so far :-
         a. Applied E2E120 for managed system ie Technical monitoring is working for that system.
    Challenge :-
       a. Generating a consolidated report, with checklists for system logs, dumps, qrfc / trfc's. As Technical monitoring is giving these info separately.
       b. Options in technical monitoring are too many and not sure which can deliver what i am looking for.
              a. IT Performance reporting
              b. Service level reporting
              c. SDCCN Reporting.
              d. or automatic configure reporting.
       c. The report has to be generated periodically only once in a day. It should not be alert monitoring that an system alert triggers a mail and management is bombarded with too many mails.
    Any valuable suggestion will be very helpful and will certainly be rewarded.
    Thanks
    Abhijeet

    Hi Jhansi,
    few things first, I have really liked your blogs and forum discussion on Sol Man. They have been really very helpful.
    Now, after spending around 2-3 days on it, Closest bet is  "IT Performance reporting". With this i am compromising with consolidated report. (Just hoping management agrees for it )
    But here is the new challenge I am going through. It is the web templates to use for specific checklist.
    I used below link.
    http://help.sap.de/saphelp_sm71_sp05/helpdata/en/3f/ecbef23769488f806177717adee541/content.htm?frameset=/en/a3/074aa01bbe4662b99bc20ec5263cf8/frameset.htm&current_toc=/en/81/6f8fe54f854ef2bd412c8660f5ed6e/plain.htm&node_id=463
    I need template for System logs, qrfc, trfc, PI messages etc. It is not present in the link provided. Even searched on SMP, it was not available. Can we manually create and use the web templates.
    Also when i used such templates, I am getting following error message in the monitoring
    Let me know your inputs.
    Thanks
    Abhijeet

  • Crystal Report Toolbar images not displaying properly in IE?

    Hi,
    I am using VisualStudio 2012 ,crystal report version 13.0.2000.0 and sp5.
    My problem is that after loading crystal report, toolbar image icons (such as print,export etc) are not showing properly in internet explorer(version ie10). But it is displaying correctly in chrome and firefox.
    What could be problem ?? Any help will be appreciated ..

    See this re. images:
    Visual Studio 2012 Crystal Report not working on Windows Server 2012/ 0x800a1391 – JavaScript runtime error: &…
    Also, don't forget to do your own searches - search box is in top right corner and simple search strings are best. E.g.; 'Crystal net red x'.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
      Follow us on
    Twitter

  • Report background engine not generated

    Hi Friends,
    I have installed Developer 6i -Forms and Reports.
    When I try to run a report in an aplication after giving parameters in the paraform it gives an error illegal operation for rwbe60 it doesn't generate the background engine and so the report in not run.
    If i run the same report through report builder it runs but no report background engine is generated.
    Pls give a solution uf anyone can.
    Thanks in advance
    Manoj

    Hi,
    Add the following:
    add_parameter(pl_id, 'ORACLE_SHUTDOWN', TEXT_PARAMETER, 'Yes');
    Note, the 'Yes' is case sensitive. The 'y' must be upper case followed by lower case 'es'.
    run_product(REPORTS, '<repname>', SYNCHRONUS, RUNTIME, FILESYSTEM, pl_id);
    Best Regards,
    Arun Malhotra,
    Oracle Support Services

  • PDF Report from internet not working in XP, works in Win7

    I have a report that I'm generating from a website.  If I try to generate the report in WinXP, I get either "Cannot display webpage", even though my ping to that website never goes down, or the page just sits there blank.  If I nagivate away from the page, I get a "Navigation tot his page has been canceled" message.  I have let it sit there upwards of an hour.
    If I try the same steps in Win7, the report pulls up within seconds with no issues.
    I have made sure the same add-ons are enabled/disabled.  I have made sure to allow add-on's from the website.  I have made sure that both machines have the same version of Adobe Reader with all of the available updates.
    I am at a loss for what to try.  Any help is appreciated.  Thanks.

    Hi,
    Could you please provide more information about this issue.
    What is version for Reader you are using ?
    What is version of IE ?
    Can you please try with Reader version XI.
    Regards,
    Deepak

  • Report window does not close properly when using openDocument

    XI R2 InfoView
    Windows 2003 server
    IIS
    IE7
    We have been experimenting with the use of openDocument and have managed to achieve what we wanted but have one small problem.  When the document is retrieved it is opened in a new browser window.  When Close is selected from the drop-down Document menu the document is closed but the window shrinks to approx 8.5cm x 6 cm and remains open.
    A similar thing happens when we use the Preview button to view a document in the CMC, except in that case the document does not close and closing the browser window leaves a button on the Windows taskbar.  There doesn't appear to be a related window as it cannot be restored but you have to right click and select Close to get rid of it.
    Any ideas what is causing these problems and how we can get round them?

    Anne,
    There are some parameters in opendocument (for ex. sWindow) that can help control certain things, have you tried employing anything like that?  What I find frustrating is the behavior of opendocument based on whether you're running Infoview or WebI -- each product, using the same exact opendocument syntax yields different results.  Based on the sample code below, what I'm seeing with Infoview is the same browser instance is used for calling the child report, however, in WebI, a new browser instance is started and the child report is rendered in Infoview.  In my case, when running within WebI and getting a new browser instance in Infoview, and then using the "Document", "close" workflow, the second instance is exiting and I'm back to the previous browser.  Staying within Infoview entirely through the process, when closing the child report I get brought back to the folder list page.  Who's to know?
    ="<a href=https://<server>/businessobjects/enterprise115/InfoView/scripts/opendocument.aspx?
    idocid=100798&lsSInput_Pos_Nbr="+[Position Number Tracking]+">"+[Position Number Tracking]
    +"</a>"
    (double spaced on purpose)
    Thanks,
    John

  • [Lenovo IdeaPad S10-3t] Waking up from suspend not working properly

    Hi,
    I'm having some issues with getting suspend to work on my S10-3t. I tried pm-utils and the s2ram script (with about any combination of options as my machine is not on the whitelist) and always get the same behaviour: Suspending seems to succeed but waking up takes about 5 minutes.
    I tried using pm-suspend under ubuntu 10.10, works flawlessly out of the box, so it *can* be done.. somehow.
    Apparently this was a kernel related issue in older versions of ubuntu too, I couldn't quite figure out how they fixed it though (https://bugs.launchpad.net/ubuntu/+sour … bug/598664).
    I tailed the pm-suspend.log and kernel.log through one suspend/wake up cycle, here's the output:
    pm-suspend.log:
    bash-4.1$ date;sudo tail -f /var/log/pm-suspend.log
    Sun Oct 24 20:27:47 CEST 2010
    Password:
    Running hook /usr/lib/pm-utils/sleep.d/01grub resume suspend:
    /usr/lib/pm-utils/sleep.d/01grub resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave resume suspend:
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00logging resume suspend:
    /usr/lib/pm-utils/sleep.d/00logging resume suspend: success.
    Sun Oct 24 20:25:36 CEST 2010: Finished.
    tail: /var/log/pm-suspend.log: file truncated
    Initial commandline parameters:
    Sun Oct 24 20:29:08 CEST 2010: Running hooks for suspend.
    Running hook /usr/lib/pm-utils/sleep.d/00logging suspend suspend:
    Linux netarch.haselwarter.org 2.6.35-ARCH #1 SMP PREEMPT Wed Sep 29 07:17:20 UTC 2010 i686 Intel(R) Atom(TM) CPU N470 @ 1.83GHz GenuineIntel GNU/Linux
    Module Size Used by
    cpufreq_ondemand 6971 2
    btusb 9745 0
    hid_cando 2611 0
    bluetooth 44753 1 btusb
    rfkill 12854 1 bluetooth
    usbhid 33564 0
    hid 60400 2 hid_cando,usbhid
    uvcvideo 53488 0
    videodev 39124 1 uvcvideo
    v4l1_compat 13562 2 uvcvideo,videodev
    joydev 7503 0
    snd_seq_dummy 1079 0
    snd_seq_oss 25072 0
    snd_seq_midi_event 4496 1 snd_seq_oss
    snd_seq 41752 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 4369 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_hda_codec_conexant 26292 1
    snd_pcm_oss 33662 0
    i915 267072 2
    snd_mixer_oss 14686 1 snd_pcm_oss
    snd_hda_intel 19020 0
    snd_hda_codec 67274 2 snd_hda_codec_conexant,snd_hda_intel
    drm_kms_helper 22043 1 i915
    drm 134132 3 i915,drm_kms_helper
    snd_hwdep 4764 1 snd_hda_codec
    snd_pcm 58308 3 snd_pcm_oss,snd_hda_intel,snd_hda_codec
    lib80211_crypt_tkip 7521 0
    uhci_hcd 19251 0
    snd_timer 15423 2 snd_seq,snd_pcm
    broadcom 5201 0
    i2c_algo_bit 4407 1 i915
    ehci_hcd 32860 0
    snd 43283 11 snd_seq_oss,snd_seq,snd_seq_device,snd_hda_codec_conexant,snd_pcm_oss,snd_mixer_oss,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    soundcore 5025 1 snd
    video 15889 1 i915
    wl 1943997 0
    tg3 115656 0
    usbcore 121737 6 btusb,usbhid,uvcvideo,uhci_hcd,ehci_hcd
    output 1448 1 video
    snd_page_alloc 5981 2 snd_hda_intel,snd_pcm
    intel_agp 24510 2 i915
    wmi 5962 0
    battery 7879 0
    i2c_i801 7426 0
    ac 2329 0
    i2c_core 15599 6 videodev,i915,drm_kms_helper,drm,i2c_algo_bit,i2c_i801
    psmouse 51529 0
    evdev 6820 9
    libphy 14543 2 broadcom,tg3
    lib80211 3158 2 lib80211_crypt_tkip,wl
    agpgart 23520 2 drm,intel_agp
    sg 20932 0
    thermal 9786 0
    coretemp 4665 0
    button 3746 1 i915
    serio_raw 3566 0
    acpi_cpufreq 5157 1
    freq_table 1999 2 cpufreq_ondemand,acpi_cpufreq
    processor 25126 3 acpi_cpufreq
    mperf 979 1 acpi_cpufreq
    rtc_cmos 7746 0
    rtc_core 11831 1 rtc_cmos
    rtc_lib 1494 1 rtc_core
    ext4 282610 1
    mbcache 4290 1 ext4
    jbd2 58396 1 ext4
    crc16 1053 1 ext4
    sd_mod 26768 3
    ahci 17813 0
    libahci 16174 3 ahci
    libata 140771 2 ahci,libahci
    scsi_mod 105888 3 sg,sd_mod,libata
    total used free shared buffers cached
    Mem: 2053592 233156 1820436 0 24724 102332
    -/+ buffers/cache: 106100 1947492
    Swap: 1952764 0 1952764
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave suspend suspend:
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub suspend suspend:
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01laptop-mode suspend suspend:
    /usr/lib/pm-utils/sleep.d/01laptop-mode suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend:
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend:
    Having NetworkManager put all interaces to sleep...Done.
    /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock suspend suspend:
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/91wicd suspend suspend:
    Unable to connect to wicd daemon - is it running?
    /usr/lib/pm-utils/sleep.d/91wicd suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led suspend suspend:
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:
    Kernel modesetting video driver detected, not using quirks.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/99video suspend suspend:
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: success.
    Sun Oct 24 20:29:10 CEST 2010: performing suspend
    Switching from vt7 to vt1
    fbcon fb0 state 1
    fbcon fb0 state 0
    switching back to vt7
    Sun Oct 24 20:34:40 CEST 2010: Awake.
    Sun Oct 24 20:34:40 CEST 2010: Running hooks for resume
    Running hook /usr/lib/pm-utils/sleep.d/99video resume suspend:
    /usr/lib/pm-utils/sleep.d/99video resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend:
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led resume suspend:
    /usr/lib/pm-utils/sleep.d/95led resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq resume suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/91wicd resume suspend:
    Unable to connect to wicd daemon - is it running?
    /usr/lib/pm-utils/sleep.d/91wicd resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock resume suspend:
    /usr/lib/pm-utils/sleep.d/90clock resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules resume suspend:
    Reloaded unloaded modules.
    /usr/lib/pm-utils/sleep.d/75modules resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend:
    Having NetworkManager wake interfaces back up...Done.
    /usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth resume suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/11netcfg resume suspend:
    /usr/lib/pm-utils/sleep.d/11netcfg resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01laptop-mode resume suspend:
    tail: /var/log/pm-suspend.log: file truncated
    Laptop mode
    tail: /var/log/pm-suspend.log: file truncated
    enabled, not active
    Error for wireless request "Set Power Management" (8B2C) :
    SET failed on device eth0 ; Operation not supported.
    tail: /var/log/pm-suspend.log: file truncated
    Failed.
    /usr/lib/pm-utils/sleep.d/01laptop-mode resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub resume suspend:
    /usr/lib/pm-utils/sleep.d/01grub resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave resume suspend:
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00logging resume suspend:
    /usr/lib/pm-utils/sleep.d/00logging resume suspend: success.
    Sun Oct 24 20:34:44 CEST 2010: Finished.
    kernel.log:
    bash-4.1$ sudo tail -f /var/log/kernel.log
    Password:
    Oct 24 20:27:15 netarch kernel: input: Cando Corporation Cando 10.1 Multi Touch Panel with Controller as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input9
    Oct 24 20:27:15 netarch kernel: cando-touch 0003:2087:0A01.0001: input,hidraw0: USB HID v1.11 Device [Cando Corporation Cando 10.1 Multi Touch Panel with Controller] on usb-0000:00:1d.1-1/input0
    Oct 24 20:27:15 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    Oct 24 20:27:15 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    Oct 24 20:27:15 netarch kernel: Adding 1952764k swap on /dev/sda2. Priority:-1 extents:1 across:1952764k
    Oct 24 20:27:16 netarch kernel: tg3 0000:05:00.0: irq 45 for MSI/MSI-X
    Oct 24 20:27:16 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:27:17 netarch kernel: CPUFREQ: Per core ondemand sysfs interface is deprecated - ignore_nice_load
    Oct 24 20:27:18 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:27:19 netarch kernel: WARNING! power/level is deprecated; use power/control instead
    Oct 24 20:29:08 netarch kernel: CE: hpet increased min_delta_ns to 7500 nsec
    Oct 24 20:29:08 netarch kernel: ata1.00: configured for UDMA/100
    Oct 24 20:29:08 netarch kernel: ata1: EH complete
    Oct 24 20:29:08 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
    Oct 24 20:34:40 netarch kernel: PM: Syncing filesystems ... done.
    Oct 24 20:34:40 netarch kernel: PM: Preparing system for mem sleep
    Oct 24 20:34:40 netarch kernel: Freezing user space processes ... (elapsed 0.01 seconds) done.
    Oct 24 20:34:40 netarch kernel: Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Oct 24 20:34:40 netarch kernel: PM: Entering mem sleep
    Oct 24 20:34:40 netarch kernel: Suspending console(s) (use no_console_suspend to debug)
    Oct 24 20:34:40 netarch kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Oct 24 20:34:40 netarch kernel: sd 0:0:0:0: [sda] Stopping disk
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: PCI INT D disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: PCI INT C disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: PCI INT B disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: PME# enabled
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: wake-up capability enabled by ACPI
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: ACPI handle has no context!
    Oct 24 20:34:40 netarch kernel: PM: suspend of devices complete after 429.517 msecs
    Oct 24 20:34:40 netarch kernel: PM: late suspend of devices complete after 13.649 msecs
    Oct 24 20:34:40 netarch kernel: ACPI: Preparing to enter system sleep state S3
    Oct 24 20:34:40 netarch kernel: PM: Saving platform NVS memory
    Oct 24 20:34:40 netarch kernel: Disabling non-boot CPUs ...
    Oct 24 20:34:40 netarch kernel: CPU 1 is now offline
    Oct 24 20:34:40 netarch kernel: SMP alternatives: switching to UP code
    Oct 24 20:34:40 netarch kernel: Extended CMOS year: 2000
    Oct 24 20:34:40 netarch kernel: Back to C!
    Oct 24 20:34:40 netarch kernel: PM: Restoring platform NVS memory
    Oct 24 20:34:40 netarch kernel: CPU0: Thermal monitoring handled by SMI
    Oct 24 20:34:40 netarch kernel: Extended CMOS year: 2000
    Oct 24 20:34:40 netarch kernel: Enabling non-boot CPUs ...
    Oct 24 20:34:40 netarch kernel: SMP alternatives: switching to SMP code
    Oct 24 20:34:40 netarch kernel: Booting Node 0 Processor 1 APIC 0x1
    Oct 24 20:34:40 netarch kernel: Initializing CPU#1
    Oct 24 20:34:40 netarch kernel: CPU1 is up
    Oct 24 20:34:40 netarch kernel: ACPI: Waking up from system sleep state S3
    Oct 24 20:34:40 netarch kernel: ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100428/evregion-474)
    Oct 24 20:34:40 netarch kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_.DSLD] (Node f7025600), AE_TIME
    Oct 24 20:34:40 netarch kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_WAK] (Node f7024768), AE_TIME
    Oct 24 20:34:40 netarch kernel: ACPI Exception: AE_TIME, During Method _WAK (20100428/hwsleep-601)
    Oct 24 20:34:40 netarch kernel: i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100102)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x40100, writing 0x4010b)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x80118001)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xf010f010)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x2020)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x40200, writing 0x40207)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x80318021)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xf020f020)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x3030)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900106, writing 0x2900102)
    Oct 24 20:34:40 netarch kernel: pci 0000:00:1e.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
    Oct 24 20:34:40 netarch kernel: pci 0000:00:1e.0: restoring config space at offset 0x8 (was 0x0, writing 0xfff0)
    Oct 24 20:34:40 netarch kernel: ahci 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20a)
    Oct 24 20:34:40 netarch kernel: ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x40100506)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xf0200004)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100106)
    Oct 24 20:34:40 netarch kernel: PM: early resume of devices complete after 2.675 msecs
    Oct 24 20:34:40 netarch kernel: i915 0000:00:02.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb2: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb3: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb4: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb5: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: pci 0000:00:1e.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: wake-up capability disabled by ACPI
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: PME# disabled
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: sd 0:0:0:0: [sda] Starting disk
    Oct 24 20:34:40 netarch kernel: ata2: SATA link down (SStatus 0 SControl 300)
    Oct 24 20:34:40 netarch kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Oct 24 20:34:40 netarch kernel: usb 3-2: reset full speed USB device using uhci_hcd and address 3
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: btusb 3-2:1.0: no reset_resume for driver btusb?
    Oct 24 20:34:40 netarch kernel: btusb 3-2:1.1: no reset_resume for driver btusb?
    Oct 24 20:34:40 netarch kernel: usb 1-8: reset high speed USB device using ehci_hcd and address 4
    Oct 24 20:34:40 netarch kernel: ata1.00: configured for UDMA/100
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: usb 3-1: reset full speed USB device using uhci_hcd and address 2
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: PM: resume of devices complete after 996.313 msecs
    Oct 24 20:34:40 netarch kernel: PM: Finishing wakeup.
    Oct 24 20:34:40 netarch kernel: Restarting tasks ...
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: done.
    Oct 24 20:34:40 netarch kernel: video LNXVIDEO:00: Restoring backlight state
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:34:41 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:34:43 netarch kernel: ata1.00: configured for UDMA/100
    Oct 24 20:34:43 netarch kernel: ata1: EH complete
    Oct 24 20:34:44 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
    dmesg:
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.35-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Wed Sep 29 07:17:20 UTC 2010
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
    BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
    BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
    BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007f5d0000 (usable)
    BIOS-e820: 000000007f5d0000 - 000000007f5e0000 (ACPI data)
    BIOS-e820: 000000007f5e0000 - 000000007f5e3000 (ACPI NVS)
    BIOS-e820: 000000007f5e3000 - 0000000080000000 (reserved)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    DMI 2.5 present.
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    last_pfn = 0x7f5d0 max_arch_pfn = 0x100000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-D3FFF write-protect
    D4000-DFFFF uncachable
    E0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask 080000000 write-back
    1 base 07F600000 mask 0FFE00000 uncachable
    2 base 07F800000 mask 0FF800000 uncachable
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000001000 (reserved)
    modified: 0000000000001000 - 0000000000002000 (usable)
    modified: 0000000000002000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009dc00 (usable)
    modified: 000000000009dc00 - 00000000000a0000 (reserved)
    modified: 00000000000d2000 - 00000000000d4000 (reserved)
    modified: 00000000000dc000 - 00000000000e0000 (reserved)
    modified: 00000000000e4000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 000000007f5d0000 (usable)
    modified: 000000007f5d0000 - 000000007f5e0000 (ACPI data)
    modified: 000000007f5e0000 - 000000007f5e3000 (ACPI NVS)
    modified: 000000007f5e3000 - 0000000080000000 (reserved)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000fec00000 - 00000000fec10000 (reserved)
    modified: 00000000fee00000 - 00000000fee01000 (reserved)
    modified: 00000000ff000000 - 0000000100000000 (reserved)
    initial memory mapped : 0 - 01800000
    found SMP MP-table at [c00f7cb0] f7cb0
    init_memory_mapping: 0000000000000000-00000000377fe000
    0000000000 - 0000400000 page 4k
    0000400000 - 0037400000 page 2M
    0037400000 - 00377fe000 page 4k
    kernel direct mapping tables up to 377fe000 @ 15000-1a000
    RAMDISK: 37e2a000 - 37ff0000
    Allocated new RAMDISK: 00100000 - 002c5f93
    Move RAMDISK from 0000000037e2a000 - 0000000037feff92 to 00100000 - 002c5f92
    ACPI: RSDP 000f7c80 00024 (v04 PTLTD )
    ACPI: XSDT 7f5d72d4 00074 (v01 LENOVO CB-01 06040000 LTP 00000000)
    ACPI: FACP 7f5dfc60 000F4 (v03 LENOVO CB-01 06040000 PTL 00000002)
    ACPI: DSDT 7f5d846a 07782 (v01 LENOVO CB-01 06040000 MSFT 03000000)
    ACPI: FACS 7f5e2fc0 00040
    ACPI: TCPA 7f5dfd54 00032 (v01 Phoeni x 06040000 TL 00000000)
    ACPI: MCFG 7f5dfd86 0003C (v01 PTLTD MCFG 06040000 LTP 00000000)
    ACPI: HPET 7f5dfdc2 00038 (v01 PTLTD HPETTBL 06040000 LTP 00000001)
    ACPI: APIC 7f5dfdfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    ACPI: BOOT 7f5dfe62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    ACPI: SLIC 7f5dfe8a 00176 (v01 LENOVO CB-01 06040000 LTP 00000000)
    ACPI: SSDT 7f5d78ca 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    ACPI: SSDT 7f5d7824 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624)
    ACPI: SSDT 7f5d7348 004DC (v02 PmRef CpuPm 00003000 INTL 20050624)
    ACPI: Local APIC address 0xfee00000
    1149MB HIGHMEM available.
    887MB LOWMEM available.
    mapped low ram: 0 - 377fe000
    low ram: 0 - 377fe000
    Zone PFN ranges:
    DMA 0x00000001 -> 0x00001000
    Normal 0x00001000 -> 0x000377fe
    HighMem 0x000377fe -> 0x0007f5d0
    Movable zone start PFN for each node
    early_node_map[3] active PFN ranges
    0: 0x00000001 -> 0x00000002
    0: 0x00000010 -> 0x0000009d
    0: 0x00000100 -> 0x0007f5d0
    On node 0 totalpages: 521566
    free_area_init_node: node 0, pgdat c1418ac0, node_mem_map c157b020
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3950 pages, LIFO batch:0
    Normal zone: 1744 pages used for memmap
    Normal zone: 221486 pages, LIFO batch:31
    HighMem zone: 2300 pages used for memmap
    HighMem zone: 292054 pages, LIFO batch:31
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x1008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0xffffffff base: 0xfed00000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 40
    early_res array is doubled to 64 at [16000 - 167ff]
    PM: Registered nosave memory: 0000000000002000 - 0000000000010000
    PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
    PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    PERCPU: Embedded 14 pages/cpu @c2800000 s34880 r0 d22464 u2097152
    pcpu-alloc: s34880 r0 d22464 u2097152 alloc=1*4194304
    pcpu-alloc: [0] 0 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517490
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz26 root=/dev/sda5
    PID hash table entries: 4096 (order: 2, 16384 bytes)
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    allocated 10433580 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Subtract (53 early reservations)
    #1 [0000001000 - 0000002000] EX TRAMPOLINE
    #2 [0001000000 - 0001572184] TEXT DATA BSS
    #3 [0001573000 - 000157921c] BRK
    #4 [00000f7cc0 - 0000100000] BIOS reserved
    #5 [00000f7cb0 - 00000f7cc0] MP-table mpf
    #6 [000009dc00 - 000009e071] BIOS reserved
    #7 [000009e199 - 00000f7cb0] BIOS reserved
    #8 [000009e071 - 000009e199] MP-table mpc
    #9 [0000010000 - 0000011000] TRAMPOLINE
    #10 [0000011000 - 0000015000] ACPI WAKEUP
    #11 [0000015000 - 0000016000] PGTABLE
    #12 [0000100000 - 00002c6000] NEW RAMDISK
    #13 [000157a000 - 000157b000] BOOTMEM
    #14 [000157b000 - 000256b000] BOOTMEM
    #15 [00015721c0 - 00015721c4] BOOTMEM
    #16 [0001572200 - 00015722c0] BOOTMEM
    #17 [00015722c0 - 0001572314] BOOTMEM
    #18 [000256b000 - 000256e000] BOOTMEM
    #19 [0001572340 - 00015723ac] BOOTMEM
    #20 [000256e000 - 0002574000] BOOTMEM
    #21 [00015723c0 - 00015723e5] BOOTMEM
    #22 [0001572400 - 0001572427] BOOTMEM
    #23 [0001572440 - 0001572600] BOOTMEM
    #24 [0001572600 - 0001572640] BOOTMEM
    #25 [0001572640 - 0001572680] BOOTMEM
    #26 [0001572680 - 00015726c0] BOOTMEM
    #27 [00015726c0 - 0001572700] BOOTMEM
    #28 [0001572700 - 0001572740] BOOTMEM
    #29 [0001572740 - 0001572780] BOOTMEM
    #30 [0001572780 - 00015727c0] BOOTMEM
    #31 [00015727c0 - 0001572800] BOOTMEM
    #32 [0001572800 - 0001572840] BOOTMEM
    #33 [0001572840 - 0001572880] BOOTMEM
    #34 [0001572880 - 00015728c0] BOOTMEM
    #35 [00015728c0 - 0001572900] BOOTMEM
    #36 [0001572900 - 0001572940] BOOTMEM
    #37 [0001572940 - 0001572950] BOOTMEM
    #38 [0001572980 - 0001572990] BOOTMEM
    #39 [00015729c0 - 00015729ea] BOOTMEM
    #40 [0001572a00 - 0001572a2a] BOOTMEM
    #41 [0002800000 - 000280e000] BOOTMEM
    #42 [0002a00000 - 0002a0e000] BOOTMEM
    #43 [0001572a40 - 0001572a44] BOOTMEM
    #44 [0001572a80 - 0001572a84] BOOTMEM
    #45 [0001572ac0 - 0001572ac8] BOOTMEM
    #46 [0001572b00 - 0001572b08] BOOTMEM
    #47 [0001572b40 - 0001572be8] BOOTMEM
    #48 [0001572c00 - 0001572c68] BOOTMEM
    #49 [0002574000 - 0002578000] BOOTMEM
    #50 [0002578000 - 00025f8000] BOOTMEM
    #51 [00025f8000 - 0002638000] BOOTMEM
    #52 [0002a0e000 - 000340142c] BOOTMEM
    Initializing HighMem for node 0 (000377fe:0007f5d0)
    Memory: 2051364k/2086720k available (2986k kernel code, 34900k reserved, 1238k data, 412k init, 1177416k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1421000 - 0xc1488000 ( 412 kB)
    .data : 0xc12eaacc - 0xc1420340 (1238 kB)
    .text : 0xc1000000 - 0xc12eaacc (2986 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
    NR_IRQS:512
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    hpet clockevent registered
    Fast TSC calibration using PIT
    Detected 1828.625 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3658.63 BogoMIPS (lpj=6095416)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 5 MCE banks
    CPU0: Thermal monitoring enabled (TM1)
    using mwait in idle threads.
    Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
    ... version: 3
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    ACPI: Core revision 20100428
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Atom(TM) CPU N470 @ 1.83GHz stepping 0a
    Booting Node 0, Processors #1 Ok.
    Initializing CPU#1
    Brought up 2 CPUs
    Total of 2 processors activated (7317.54 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-10] at [mem 0xe0000000-0xe10fffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xe10fffff] reserved in E820
    PCI: Using MMCONFIG for extended config space
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: SSDT 7f5d8193 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    ACPI: SSDT 7f5d7b29 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    ACPI: SSDT 7f5d8396 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    ACPI: SSDT 7f5d810e 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f390), AE_ALREADY_EXISTS
    ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xf7ffffff]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xfdff]
    pci 0000:00:02.0: reg 10: [mem 0xf0300000-0xf037ffff]
    pci 0000:00:02.0: reg 14: [io 0x18e8-0x18ef]
    pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
    pci 0000:00:02.0: reg 1c: [mem 0xf0000000-0xf00fffff]
    pci 0000:00:02.1: reg 10: [mem 0xf0380000-0xf03fffff]
    pci 0000:00:1b.0: reg 10: [mem 0xf0400000-0xf0403fff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1d.0: reg 20: [io 0x1820-0x183f]
    pci 0000:00:1d.1: reg 20: [io 0x1840-0x185f]
    pci 0000:00:1d.2: reg 20: [io 0x1860-0x187f]
    pci 0000:00:1d.3: reg 20: [io 0x1880-0x189f]
    pci 0000:00:1d.7: reg 10: [mem 0xf0604000-0xf06043ff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0x18e0-0x18e7]
    pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7]
    pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df]
    pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3]
    pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18cf]
    pci 0000:00:1f.2: reg 24: [mem 0xf0604400-0xf06047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 20: [io 0x18a0-0x18bf]
    pci 0000:05:00.0: reg 10: [mem 0xf0100000-0xf010ffff 64bit]
    pci 0000:05:00.0: PME# supported from D3hot D3cold
    pci 0000:05:00.0: PME# disabled
    pci 0000:00:1c.0: PCI bridge to [bus 05-05]
    pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.0: bridge window [mem 0xf0100000-0xf01fffff]
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:07:00.0: reg 10: [mem 0xf0200000-0xf0203fff 64bit]
    pci 0000:07:00.0: supports D1 D2
    pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
    pci 0000:07:00.0: PME# disabled
    pci 0000:00:1c.1: PCI bridge to [bus 07-07]
    pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf02fffff]
    pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x80000000-0xf7ffffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0x0d00-0xfdff] (subtractive decode)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f390), AE_ALREADY_EXISTS
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    HEST: Table is not found!
    vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    reserve RAM buffer: 0000000000002000 - 000000000000ffff
    reserve RAM buffer: 000000000009dc00 - 000000000009ffff
    reserve RAM buffer: 000000007f5d0000 - 000000007fffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:01: [io 0x0800-0x080f] has been reserved
    system 00:01: [io 0x1000-0x107f] has been reserved
    system 00:01: [io 0x1180-0x11bf] has been reserved
    system 00:01: [io 0x04d0-0x04d1] has been reserved
    system 00:01: [io 0xfe00] has been reserved
    system 00:01: [io 0x0700-0x070f] has been reserved
    system 00:01: [io 0x164e-0x174c] has been reserved
    system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    system 00:01: [mem 0xfef00000-0xfeffffff] has been reserved
    pci 0000:00:1c.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
    pci 0000:00:1c.1: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
    pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    pci 0000:00:1c.1: BAR 13: assigned [io 0x3000-0x3fff]
    pci 0000:00:1c.0: PCI bridge to [bus 05-05]
    pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    pci 0000:00:1c.0: bridge window [mem 0xf0100000-0xf01fffff]
    pci 0000:00:1c.0: bridge window [mem 0x80000000-0x801fffff 64bit pref]
    pci 0000:00:1c.1: PCI bridge to [bus 07-07]
    pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf02fffff]
    pci 0000:00:1c.1: bridge window [mem 0x80200000-0x803fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 11-11]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem disabled]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: enabling device (0000 -> 0003)
    pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:00: resource 8 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:00: resource 9 [mem 0x80000000-0xf7ffffff]
    pci_bus 0000:00: resource 10 [io 0x0d00-0xfdff]
    pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
    pci_bus 0000:05: resource 1 [mem 0xf0100000-0xf01fffff]
    pci_bus 0000:05: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
    pci_bus 0000:07: resource 0 [io 0x3000-0x3fff]
    pci_bus 0000:07: resource 1 [mem 0xf0200000-0xf02fffff]
    pci_bus 0000:07: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
    pci_bus 0000:11: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:11: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:11: resource 6 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:11: resource 7 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:11: resource 8 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:11: resource 9 [mem 0x80000000-0xf7ffffff]
    pci_bus 0000:11: resource 10 [io 0x0d00-0xfdff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    UDP hash table entries: 512 (order: 2, 16384 bytes)
    UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    NET: Registered protocol family 1
    pci 0000:00:02.0: Boot video device
    PCI: CLS 32 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1816k freed
    Simple Boot Flag at 0x36 set to 0x1
    apm: BIOS not found.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1287944823.419:1): initialized
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1710
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pcieport 0000:00:1c.0: setting latency timer to 64
    pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    pcieport 0000:00:1c.1: setting latency timer to 64
    pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    ERST: Table is not found!
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    PM: Resume from disk failed.
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 412k freed
    udev[38]: starting version 162
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    SCSI subsystem initialized
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    libata version 3.00 loaded.
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    ahci: SSS flag set, parallel bus scan disabled
    ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    ata1: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604500 irq 42
    ata2: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604580 irq 42
    ata3: DUMMY
    ata4: DUMMY
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata1.00: ATA-8: ST9250315AS, 0010LVM1, max UDMA/100
    ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    ata1.00: configured for UDMA/100
    scsi 0:0:0:0: Direct-Access ATA ST9250315AS 0010 PQ: 0 ANSI: 5
    ata2: SATA link down (SStatus 0 SControl 300)
    sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4 sda5
    sd 0:0:0:0: [sda] Attached SCSI disk
    PM: Marking nosave pages: 0000000000002000 - 0000000000010000
    PM: Marking nosave pages: 000000000009d000 - 0000000000100000
    PM: Basic memory bitmaps created
    PM: Basic memory bitmaps freed
    EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    rtc_cmos 00:05: RTC can wake from S4
    rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    udev[734]: starting version 162
    ACPI: acpi_idle registered with cpuidle
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    Marking TSC unstable due to TSC halts in idle
    Switching to clocksource hpet
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0C:00/input/input1
    ACPI: Power Button [PWRB]
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    coretemp coretemp.0: Unable to read TjMax from CPU.
    coretemp coretemp.0: Using relative temperature scale!
    ACPI: Lid Switch [LID]
    ------------[ cut here ]------------
    WARNING: at fs/proc/generic.c:583 proc_register+0xf8/0x1e0()
    Hardware name: 20040M18
    proc_dir_entry 'power/PWRB' already registered
    Modules linked in: coretemp button(+) serio_raw acpi_cpufreq freq_table processor mperf rtc_cmos rtc_core rtc_lib ext4 mbcache jbd2 crc16 sd_mod ahci libahci libata scsi_mod
    Pid: 1097, comm: modprobe Not tainted 2.6.35-ARCH #1
    Call Trace:
    [<c10439bd>] warn_slowpath_common+0x6d/0xa0
    [<c113e648>] ? proc_register+0xf8/0x1e0
    [<c113e648>] ? proc_register+0xf8/0x1e0
    [<c1043a6e>] warn_slowpath_fmt+0x2e/0x30
    [<c113e648>] proc_register+0xf8/0x1e0
    [<c113eca3>] proc_mkdir_mode+0x33/0x50
    [<c113eccf>] proc_mkdir+0xf/0x20
    [<f82af453>] acpi_button_add+0x21b/0x387 [button]
    [<c11cc665>] acpi_device_probe+0x3a/0xf4
    [<c121eae7>] driver_probe_device+0x77/0x180
    [<c121ec69>] __driver_attach+0x79/0x80
    [<c121dcb3>] bus_for_each_dev+0x43/0x70
    [<c121e839>] driver_attach+0x19/0x20
    [<c121ebf0>] ? __driver_attach+0x0/0x80
    [<c121e3ed>] bus_add_driver+0xbd/0x2e0
    [<c11cc59b>] ? acpi_device_remove+0x0/0x90
    [<c121ee65>] driver_register+0x65/0x110
    [<c113eca3>] ? proc_mkdir_mode+0x33/0x50
    [<c11ccd53>] acpi_bus_register_driver+0x3a/0x3c
    [<f82b202b>] acpi_button_init+0x2b/0x4a [button]
    [<c100120d>] do_one_initcall+0x2d/0x190
    [<f82b2000>] ? acpi_button_init+0x0/0x4a [button]
    [<c107892b>] sys_init_module+0x9b/0x1e0
    [<c10f4f8f>] ? sys_close+0x6f/0xc0
    [<c100379f>] sysenter_do_call+0x12/0x28
    ---[ end trace 475801f928d07a3d ]---
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:01/input/input3
    ACPI: Power Button [PWRB]
    input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
    ACPI: Sleep Button [SLPB]
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    ACPI: Power Button [PWRF]
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [TZ01] (60 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    lib80211: common routines for IEEE802.11 drivers
    lib80211_crypt: registered algorithm 'NULL'
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Linux agpgart interface v0.103
    i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ACPI: AC Adapter [ACAD] (on-line)
    wl: module license 'Mixed/Proprietary' taints kernel.
    Disabling lock debugging due to kernel taint
    ACPI: WMI: Mapper loaded
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
    agpgart-intel 0000:00:00.0: detected 8188K stolen memory
    agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    tg3.c:v3.110 (April 9, 2010)
    tg3 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    tg3 0000:05:00.0: setting latency timer to 64
    wl 0000:07:00.0: enabling device (0104 -> 0106)
    wl 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    wl 0000:07:00.0: setting latency timer to 64
    ACPI: Battery Slot [BAT1] (battery present)
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1d.7: using broken periodic workaround
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0604000
    tg3 mdio bus: probed
    tg3 0000:05:00.0: eth1: Tigon3 [partno(BCM57780) rev 57780001] (PCI Express) MAC address c8:0a:a9:3b:be:4d
    tg3 0000:05:00.0: eth1: attached PHY driver [Broadcom BCM57780] (mii_bus:phy_addr=500:01)
    tg3 0000:05:00.0: eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    tg3 0000:05:00.0: eth1: dma_rwctrl[76180000] dma_mask[64-bit]
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 8 ports detected
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1d.3: setting latency timer to 64
    uhci_hcd 0000:00:1d.3: UHCI Host Controller
    uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
    lib80211_crypt: registered algorithm 'TKIP'
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    eth0: Broadcom BCM4727 802.11 Hybrid Wireless Controller 5.60.48.36
    udev[757]: renamed network interface eth1 to eth1-eth0
    udev[756]: renamed network interface eth0 to wlan0
    udev[757]: renamed network interface eth1-eth0 to eth0
    [drm] Initialized drm 1.1.0 20060810
    HDA Intel 0000:00:1b.0: enabling device (0104 -> 0106)
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    usb 1-8: new high speed USB device using ehci_hcd and address 4
    i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    i915 0000:00:02.0: setting latency timer to 64
    i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [drm] set up 7M of stolen space
    Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04771/0xa40000/0x4a0500
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6
    usb 3-1: new full speed USB device using uhci_hcd and address 2
    [drm] initialized overlay support
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b1a1)
    input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.7/usb1/1-8/1-8:1.0/input/input7
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    usb 3-2: new full speed USB device using uhci_hcd and address 3
    usbcore: registered new interface driver hiddev
    usbcore: registered new interface driver usbhid
    usbhid: USB HID core driver
    Console: switching to colour frame buffer device 128x37
    fb0: inteldrmfb frame buffer device
    drm: registered panic notifier
    Slow work thread pool: Starting up
    Slow work thread pool: Ready
    ACPI Warning: _BQC returned an invalid level (20100428/video-640)
    acpi device:03: registered as cooling_device2
    input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
    ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Bluetooth: Core ver 2.15
    NET: Registered protocol family 31
    Bluetooth: HCI device and connection manager initialized
    Bluetooth: HCI socket layer initialized
    Bluetooth: Generic Bluetooth USB driver ver 0.6
    usbcore: registered new interface driver btusb
    input: Cando Corporation Cando 10.1 Multi Touch Panel with Controller as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input9
    cando-touch 0003:2087:0A01.0001: input,hidraw0: USB HID v1.11 Device [Cando Corporation Cando 10.1 Multi Touch Panel with Controller] on usb-0000:00:1d.1-1/input0
    EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    Adding 1952764k swap on /dev/sda2. Priority:-1 extents:1 across:1952764k
    tg3 0000:05:00.0: irq 45 for MSI/MSI-X
    tg3 0000:05:00.0: eth0: Link is down
    CPUFREQ: Per core ondemand sysfs interface is deprecated - ignore_nice_load
    tg3 0000:05:00.0: eth0: Link is down
    WARNING! power/level is deprecated; use power/control instead
    CE: hpet increased min_delta_ns to 7500 nsec
    ata1.00: configured for UDMA/100
    ata1: EH complete
    EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
    PM: Syncing filesystems ... done.
    PM: Preparing system for mem sleep
    Freezing user space processes ... (elapsed 0.01 seconds) done.
    Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    PM: Entering mem sleep
    Suspending console(s) (use no_console_suspend to debug)
    sd 0:0:0:0: [sda] Synchronizing SCSI cache
    sd 0:0:0:0: [sda] Stopping disk
    wl 0000:07:00.0: PCI INT A disabled
    ehci_hcd 0000:00:1d.7: PCI INT A disabled
    uhci_hcd 0000:00:1d.3: PCI INT D disabled
    uhci_hcd 0000:00:1d.2: PCI INT C disabled
    uhci_hcd 0000:00:1d.1: PCI INT B disabled
    uhci_hcd 0000:00:1d.0: PCI INT A disabled
    tg3 0000:05:00.0: PME# enabled
    pcieport 0000:00:1c.0: wake-up capability enabled by ACPI
    HDA Intel 0000:00:1b.0: PCI INT A disabled
    ACPI handle has no context!
    PM: suspend of devices complete after 429.517 msecs
    PM: late suspend of devices complete after 13.649 msecs
    ACPI: Preparing to enter system sleep state S3
    PM: Saving platform NVS memory
    Disabling non-boot CPUs ...
    CPU 1 is now offline
    SMP alternatives: switching to UP code
    Extended CMOS year: 2000
    Back to C!
    PM: Restoring platform NVS memory
    CPU0: Thermal monitoring handled by SMI
    Extended CMOS year: 2000
    Enabling non-boot CPUs ...
    SMP alternatives: switching to SMP code
    Booting Node 0 Processor 1 APIC 0x1
    Initializing CPU#1
    CPU1 is up
    ACPI: Waking up from system sleep state S3
    ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100428/evregion-474)
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_.DSLD] (Node f7025600), AE_TIME
    ACPI Error (psparse-0537): Method parse/execution failed [\_WAK] (Node f7024768), AE_TIME
    ACPI Exception: AE_TIME, During Method _WAK (20100428/hwsleep-601)
    i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
    HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100102)
    pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x40100, writing 0x4010b)
    pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x80118001)
    pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xf010f010)
    pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x2020)
    pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x40200, writing 0x40207)
    pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x80318021)
    pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xf020f020)
    pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x3030)
    pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    uhci_hcd 0000:00:1d.1: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    uhci_hcd 0000:00:1d.2: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    uhci_hcd 0000:00:1d.3: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900106, writing 0x2900102)
    pci 0000:00:1e.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
    pci 0000:00:1e.0: restoring config space at offset 0x8 (was 0x0, writing 0xfff0)
    ahci 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20a)
    ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
    tg3 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    tg3 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x40100506)
    wl 0000:07:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
    wl 0000:07:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xf0200004)
    wl 0000:07:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    wl 0000:07:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100106)
    PM: early resume of devices complete after 2.675 msecs
    i915 0000:00:02.0: setting latency timer to 64
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    usb usb2: root hub lost power or was reset
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    usb usb3: root hub lost power or was reset
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    usb usb4: root hub lost power or was reset
    uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1d.3: setting latency timer to 64
    usb usb5: root hub lost power or was reset
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    ahci 0000:00:1f.2: setting latency timer to 64
    pcieport 0000:00:1c.0: wake-up capability disabled by ACPI
    tg3 0000:05:00.0: PME# disabled
    wl 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    wl 0000:07:00.0: setting latency timer to 64
    sd 0:0:0:0: [sda] Starting disk
    ata2: SATA link down (SStatus 0 SControl 300)
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    usb 3-2: reset full speed USB device using uhci_hcd and address 3
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    btusb 3-2:1.0: no reset_resume for driver btusb?
    btusb 3-2:1.1: no reset_resume for driver btusb?
    usb 1-8: reset high speed USB device using ehci_hcd and address 4
    ata1.00: configured for UDMA/100
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    usb 3-1: reset full speed USB device using uhci_hcd and address 2
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    PM: resume of devices complete after 996.313 msecs
    PM: Finishing wakeup.
    Restarting tasks ...
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    done

    korpenkraxar wrote:
    Try this with a kernel 3.X version:
    hpet=disable highres=off nohz=off
    I have been trying to resolve the issue of suspend failing to resume on me Lenovo s10-3 (not the touch screen) for what seems an aeon.
    A profound thank you to you all.
    hpet=disable highres=off nohz=off
    Works!
    I now have no indication lights showing when the machine is suspended? But finally I can close the lid and reopen to resume - fantastic, this machine may finally see some more use.
    I am running Linux Mint Debian Edition (LMDE) running Gnome 3 with 3 series kernels (presently liquorix 3.4.0-4.dmz.1-liquorix-686)

  • Unix version of Reports 6i does not generate html

    Hi: It generates xml but not html. Keeps asking for a file which is there. Any pointers?
    Thanks
    Prasad

    Hello,
    We need more information in order to help. How are you requesting the report (command line, URL, ?). What file is it asking for?
    Regards,
    The Oracle Reports Team --skw
    null

  • Schedule lines are not generating properly in MD04

    Hello All,
    I have a issue in MD04, in which schedule line for Schedule agreement is not getting generated on the same day as sales order is created (09.05.2014). But Schedule line is getting created in different date. Because of which i am creating schedule lines manually at required dates. 
    Note: I have attached screen shot of MD04
    Kindly help me to overcome this issue.
    Regards,
    Manoj  

    Hello Manoj
    Please observe that there are rescheduling exception messages and rescheduling dates for your scheduling agreements. It generally happens when you have sales orders in the past and you don't allow "start in the past" for replenishment proposals generated by MRP.
    Go to the customizing transaction OPPQ and change the customizing "start in the past". After that, run MRP again for your material and the schedule line dates should match the sales order. Please observe that firmed schedule lines wont't be changed.
    BR
    Caetano

  • MRP Run error " Schedule Lines not generating properly"

    Hi Folks,
    I am facing a typical issue with MRP Run.
    Every time when I am running the MRP for a particular material I have made settings such that Schedule lines to be generated by maintaining the Source list and MRP relevancy as 2 in source list. Also I have fixed the vendor. Now my problem is I am getting Schedule lines for first run and Combination of Purchase requests and Schedule lines or only PRs for the next MRP run.. This is keep on repeating in such as way that the planning is shifting as said above for subsequent MRP Run.
    Note that the initial settings during MD02 remain same for all run.
    I want only schedule lines to be generated but not PR.
    Pls advise and provide input where the wrong might be.
    Quick responce would be appreciated.
    Regards
    Shash

    Dear shash,
    Check with What are the MRP control Parameters values which you are using for the MRP run.
    In MD02, For Deleivery schedules run with value 3 - That's -  Schedule lines.
    The other options are     1  No schedule lines
                                       2  Schedule lines in the opening period.
    check with this & revert back.
    Regards
    Mangalraj.S

  • PDF does not generate properly at times

    Hi all,
    I am using EP6 SP 9. I have ADS installed on the Portal server.
    My requirement is to generate a pdf through Webdynpro code.
    Steps i follow(ADS calls):
    1) pdfObject.setPdf()
    2) pdfObject.setTemplate()
    3) pdfObject.createPDF()
    Now my pdf is generated perfectly well around 10 consecutive times i test. After this sometimes it generates a pdf file of size 1 byte. When this occurs, this problem keeps occurring on every subsequent tests hence.
    When i checked, the problem situation arises due to the "createPDF()" returning a null inputStream.
    I do not understand this behaviour. Does anybody have any idea whatsoever about this? Any input is appreciated.
    Thanks and Regards,
    Jitendra

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Security
    and check the box marked Allow other plug-ins.

  • Pdf's from word not working properly

    Hi, I'm trying to print to acrobat printer and generate pdf's from word 2010. Unfortunately whenever I do it anything that is in the header or footer and any images on the page are completely missing when the pdf appears. Does anyone know how to stop this happening?!? It's driving me crazy.
    Thanks a lot!

    Hi there,
    Just wanted to correct a possible misconception.
    There is no PDFMaker ribbon available for the 64-bit version of Office 2010. However Acrobat is compatible with Office 2010 in that you can still create PDF files using Acrobat X by printing to the Adobe PDF printer.
    To the original poster, could you upload a sample Word file?
    Thanks,
    David
    <edited to ask the correct question>

Maybe you are looking for

  • MAC OS 10.6.8 Using Safari 5.1 Needing Help With Updating Adobe Flash

    Hello- Recently Adobe Flash installed an icon in my System Preferences and when I click the icon there are several tabs.  One allows updates to check automatically.  It says it will install the latest version of Flash without having to remove the pre

  • SuperDuper kills only Crucial M4 SSDs or all the brands?

    Today I have bought a Crucial M4 SSD 2,5 512GB to replace my MacBook Pro HD. I connect it with usb to sata cable to my Mac, format it and begin copying the data using SuperDuper. 5 minuts later I get an error, the drive is ejected and from that momen

  • 10gR2, Installation of Oracle Text: Data Mining license required?

    Hello all, 1. I wonder if I have to obtain a Data Mining license if I want to use Oracle Text. Using DBCA I have to check "Data Mining" to be able to check "Oracle Text". 2. Does Oracle Text work, when I previously removed data mining using "make -f

  • Special java effects not showing up

    Going to my band's website thru Foxfire.. I installed some java that gives the effect of stars moving in the background.. It show up in other browsers but not Foxfire..

  • IH01 Functional location structure list of orders

    Hello experts, Do you know how to change the variant when you want to select orders from IH01? Example you open IH01 and click somewher on the structure, then you click environment- orders. The system leads you to the selection screen "functional loc