Best performance in a cartesian product

i've got a select that needs a cartesian product.
ex:
SELECT NVL(a.year,cp.year) year, NVL(a.month,cp.month), NVL(a.value,0) value
FROM
(select year, month from year, month) cp, values a
WHERE cp.year = a.year(+) AND cp.month = a.month(+)
i have to show all records possible even if they don't have any values on the table.
In the beginning with fewer values, it ran OK.... but now with a lot more it begins to take a little longer (about 10 times longer).
What is the best way to improve this kind of selects???
Thank you.

Best Case :
No one shold be in red color in analysis is the best runtime.
All should be in Green.
or
OK Case :
Database level - Red is not acceptable
ABAP Level - Red can be accepted and can be a good runtime.
System Level - Red is not acceptable.
Worst Case:
All are in Red Color

Similar Messages

  • How Cartesian products affects Sybase IQ performance?

    In my IQ message log, I have the following message:
    I. 04/21 08:28:22. 0001847919 Exception Thrown from dfo_Root.cxx:822, Err# 0, tid 8 origtid 8
    I. 04/21 08:28:22. 0001847919 O/S Err#: 0, ErrID: 9216 (df_Exception); SQLCode: -1005015, SQLState: 'QTA15', Severity: 14
    I. 04/21 08:28:22. 0001847919 [20169]: The optimizer was unable to find a query plan that avoided cartesian product joins larger than the Max_Cartesian_Result setting
    -- (dfo_Root.cxx 822) 
    I don´t know if
    this situation may affect the overall performance
    Thank you

    Hi Jairo,
    As Cartesian product (no join conditions) selects large number of rows, it requires more exec time, temp space (if order by, group by, etc,..) , temp cache, main cache, threads.
    To get close estimations about query resources consumtion, you can generate plans without execution using option NoExec.
    Query plan option recommended are : quary_name, query_plan, query_detail, query_plan_as_html, query_plan_as_html_directory, dml_options10.
    See Generating Query Plans
    Note that other resource monitoring options can be enabled/used , but they require effectivel query exection. The info are collected once execution is finished with success. Eg. query_plan_after_run and query_timing.
    Regards,
    Tayeb.

  • Which iPad model performs best & where best to shop for Apple products?

    Hi, there:
            I'm considering an iPad and never had one before.
    Could someone be so kind and tell me which iPad model has the best performance?
    What authorized resellers so far (either physical or online stores) have the best prices to shop for Apple products?
    And........HAPPY NEW YEAR of 2014 to Everyone!!!!!!!! 
    Message was edited by: applerock9999

    iPad mini Vs iPad 4 Vs iPad 2 – A Detailed Comparison
    http://www.redmondpie.com/ipad-mini-vs-ipad-4-vs-ipad-2-a-detailed-comparison/
    Chosing Between the iPad 4 and the iPad Mini
    http://macmost.com/choosing-between-the-ipad-and-the-ipad-mini.html
    16GB vs 32GB vs 64GB: Which new iPad storage capacity should you get?
    http://www.imore.com/2012/03/08/16gb-32gb-64gb-ipad-capacity/
    How much content will fit on my iPod or iPhone?
    http://support.apple.com/kb/HT1867
    How Much iPad Memory Do You Need?
    http://ipad.about.com/od/iPad-Tutorials/a/How-Much-iPad-Memory-Do-You-Need.htm
     Cheers, Tom

  • Should I do this with Java Code or Stored Procs ? (for best performance)

    Hi All,
    I need to decide where should I implement my business logic, in Java code or Stored procs.
    Here is the requirement :
    - One Order has 70 products (Order_Table )
    - Can be duplicate products, so I have to do summarize / grouping by product
    - For every product, I have to check, if it is entitled for a Bonus product, then I have to Insert one to Bonus_Table.
    - This is done when/after the transaction is SAVED (COMMIT)
    The question is, which one has better PERFORMANCE :
    (1) Create a rowsetIterator on the Order details (70 products) and call a stored procedure to do the logic for every single product (so that the Insert to Bonus_Table done in stored proc). means the stored proc will be called 70 times.
    OR
    (2) After the transaction is COMMITted, call the stored procs ONCE to do the logic for all the products at once.
    OR
    (3) I do all the logic with Java Code within ADF
    Given the requirement above, which approach is most efficient / best performance ?
    Thank you very much,
    xtanto

    Problem with this is that you ask 100 people and you probably get 100 different answers. ;o)
    Many would say that you push as much business logic into the database with your data; others might say you only put data in your database and your business logic is kept on the application server.
    In reality your would probably have a mix of both and your decision would probably be influenced by your own background ...
    Can't be more precise than that.
    Grant

  • Joining DB VIEW and Command result in cartesian product

    hello,
    My SQL query is joining a DB view and a Command(=ad hoc query).
    Nonetheless from the results it appears that CR didn't join the views correctly, it returns a cartesian product.
    Any idea what the issue could be, I'm using very simple queries.
    Thanks in advance

    #1  make sure you are linking everything together properly in the "Links" tab of the Database Expert
    #2  In my experience, it's just a bad idea to join SQL commands and other tables.  I had poor performance issues in my case.  (It prevents server side filtering and grouping)  My suggestion is to write out the entire thing in the command.  If you are pulling from multiple database, write a separate command for each database and link them.

  • How to force Cartesian Product for unlineked (DBF) tables

    Hello
    We have been using CR8.5 for many years and we are just about to perform major upgrade to CR2011. I have, howverm found one strange behavior.
    Many of our reports are implemented in following way:
    MainTable.DBF (contains reported rows)
    ParamTable.DBF (contains one row with some general parameters)
    There is no data "link" between these tables but t makes sense to expect that every record from main table will see record from param table.
    in CR 8.5 Cartesian product of MainTable X ParamTable was ALWAYS available ad therefore we were able to (for example) hide the details & show only group totals, or display some header information (this can be also done by sub-report).
    in CR2011, however, this seems not to be the case anymore. Namely:
    any old report that I open in CR2011 has param line available only for the very first record and I was not able to find a way how to change it
    if I recreate the report from the scratch, sometimes Cartesian product is "provided" and sometimes not - I really do not know the reason for the decision.
    [I have one very ugly workaround: link these two tables with != (not equal operation) between two unrelated fields that can never be the same]
    Is there any "solution" to this cause as it blocks us from upgrading to the latest version?
    Kind Regards,
    Martin Fontan

    Hi Martin,
    Long story so here's the short one. As of CR 9 we completely redeveloped our database drivers and query engine. We removed all of the "hack" work arounds in our code for DB clients did not follow the rules, this forces the DB makers to fix the client engine and follow ANSII 92 standards. You also can no longer edit the SQL statement.
    We have also never supported unlinked tables, CR is a Relational database reporting tool. Us a subreport if you must use an unlinked table, or as you have discovered using a != type.
    Other work around is to use a Command, it' sin the Database wizard, write your own SQL, we simply pass it to the client. There is no option directly to set location from a Table to a SQL Command but search here, Brian Dong found a way around this limitation using a CR Wizard.
    Thanks
    Don

  • Help to rewirte query for best performance

    Hi All,
    can you kindly help me to rewirte the below mentioned query for best performance. this is taking more than 20 min in our production server.
    SELECT cp.name,mis.secondary_type U_NAME,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-161,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-154,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-154,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-147,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-147,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-140,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-140,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-133,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-133,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-126,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-126,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-119,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-119,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-112,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-112,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-105,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-105,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-98,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-98,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-91,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-91,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-84,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-84,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-77,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-77,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-70,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-70,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-63,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-63,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-56,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-56,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-49,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-49,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-42,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-42,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-35,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-35,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-28,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-28,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-21,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-21,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-14,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage,
    count(CASE WHEN (mis.start_time between To_DATE(to_char(next_day (sysdate-14,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-7,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))THEN mis.event_audit_id END) Usage
    FROM mis_event_audit mis,USER u,com_pros cp where
    mis.user_id=u.email_address and u.cp_id=cp.cp_id
    and (mis.start_time between To_DATE(to_char(next_day (sysdate-161,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy') and To_DATE(to_char(next_day (sysdate-7,'monday'),'MM/DD/YYYY'),'mm/dd/yyyy'))
    GROUP BY cp.name, mis.secondary_type;
    Thanks,
    krish

    Hi, Krish,
    Something like this will probably be faster, because it cuts out most of the function calls:
    WITH     got_cnt          AS
         SELECT    cp.name
         ,       mis.secondary_type          AS u_name
         ,       COUNT (mis.event_audit_id)     AS cnt
         ,       ( TRUNC (mis.start_time, 'IW')
                - TRUNC (SYSDATE,        'IW')
                ) / 7                    AS week_num
         FROM      mis_event_audit  mis
         JOIN       user_table        u     ON   mis.user_id  = u.email_address     -- USER is not a good table name
         JOIN       com_pros        cp     ON   u.cp_id       = cp.cp_id
         WHERE       mis.start_time   >= TRUNC (SYSDATE, 'IW') - 161
         AND       mis.start_time   <  TRUNC (SYSDATE, 'IW')
         GROUP BY  cp.name
         ,            mis.secondary_type
         ,       TRUNC (mis.start_time, 'IW')
    SELECT       name
    ,       secondary_type
    ,       SUM (CASE WHEN week_num = 22 THEN cnt END)     AS week_23
    ,       SUM (CASE WHEN week_num = 21 THEN cnt END)     AS week_22
    ,       SUM (CASE WHEN week_num = 20 THEN cnt END)     AS week_21
    ,       SUM (CASE WHEN week_num =  0  THEN cnt END)     AS week_1
    FROM       got_cnt
    GROUP BY  name
    ,            secondary_type
    ;TRUNC (d, 'IW')       is midnight on the last Monday before or equal to the DATE d. It does not depend on you NLS settings.
    Whenever you're tempted to write an exprssion as complicated as
    ,     COUNT ( CASE
                       WHEN ( mis.start_time BETWEEN TO_DATE ( TO_CHAR ( NEXT_DAY  ( SYSDATE - 161
                                                                       , 'monday'
                                                  , 'MM/DD/YYYY'
                                        , 'MM/DD/YYYY'
                              AND     TO_DATE ( TO_CHAR ( NEXT_DAY ( SYSDATE - 154
                                                                 ,'monday'
                                                , 'MM/DD/YYYY'
                                          , 'MM/DD/YYYY'
                  THEN mis.event_audit_id
               END
             )               AS usageseek alternate ways. Oracle provides several handy functions, especially for manipulating DATEs. In particular "TO_DATE (TO_CHAR ...)" is almost never needed; think very carefully before doing a round-trip conversion like that.
    Besides being more efficient, this will be easier to debug and maintain.
    If you're using Oracle 11.1 (or higher), then you can also use SELECT ... PIVOT in the main query, but I doubt that will be any faster, and it might not be any simpler.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Simplify the problem as much as possible. For example, instead of posting a problem that covers the last 23 weeks, pretend that you're only interested in the last 3 weeks. You'll get a solution that's easy to adapt to any number of weeks.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}
    For performance problems, there's another page of the forum FAQ {message:id=9360003}, but, before you start that process, let's get a cleaner query, without so many functions.
    Edited by: Frank Kulash on Oct 2, 2012 11:50 AM
    Changed week_num to be non-negative

  • Hint ordered and cartesian product

    I have a query which needs to be tuned.
    The initial Query does not show cartesian product in the plan , when I change the order of the tables in the from clause ( I have placed the least # of rows first and the most rows tables in the last) and I get MERGE JOIN CARTESIAN product the where clause remaining the same and the cost escalates from 7180 to 454M .
    This happens with ordered hint.

    ranjus wrote:
    I have a query which needs to be tuned.
    The initial Query does not show cartesian product in the plan , when I change the order of the tables in the from clause ( I have placed the least # of rows first and the most rows tables in the last) and I get MERGE JOIN CARTESIAN product the where clause remaining the same and the cost escalates from 7180 to 454M .
    This happens with ordered hint.Let's take a look at this with a simple test case. Assume that:
    * Table T1 contains 10,000 rows
    * Table T2 contains 100 rows
    * Table T3 contains 100,000 rows
    * Table T4 contains 10 rows
    You have the following query:
    SELECT
      T1.C1,
      T2.C2,
      T3.C3,
      T4.C4
    FROM
      T1,
      T2,
      T3,
      T4
    WHERE
      T1.C1=T2.C2
      AND T2.C2=T3.C2
      AND T3.C3=T4.C3;In the above, you can see that in the WHERE clause:
    * Table T1 is joined to table T2
    * Table T2 is joined to tables T1 and T3
    * Table T3 is joined to tables T2 and T4
    * Table T4 is joined to table T3
    What it sounds like you are trying to do is something like this based on the number of rows in the tables:
    SELECT /*+ ORDERED */
      T1.C1,
      T2.C2,
      T3.C3,
      T4.C4
    FROM
      T4,
      T2,
      T1,
      T3
    WHERE
      T1.C1=T2.C2
      AND T2.C2=T3.C2
      AND T3.C3=T4.C3;In the above, we are forcing Oracle's optimizer to join tables T4 and T2 - but there is no direct relationship between the two tables described in the WHERE clause. In such a case, Oracle's optimizer will be forced to perform a Cartesian join between tables T4 and T2. Next, table T1 has a relationship defined in the WHERE clause with table T2, so that join would not result in a Cartesian product. Finally, table T3 has a relationship between tables T2 and T4, so that would not result in a Cartesian product.
    Going back to this example, assume that table T4 contained a single row. The execution plan will still show a Cartesian join, but that Cartesian join is no worse than a nested loops join because there is a single row in one of the row sources.
    In short, think about what you are attempting to force the optimizer to do. You cannot always join in the order of increasing row cardinality estimates - it simply does not make sense to try in some cases.
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • How to write a  SQL based on a  view can get the best performance ?

    Hi ,
        I am thinking about performance of  sql based on VIEW .<b>For the best performance ,How to do when I create  and use a view ?</b>  for example , Should i use key in my where clause as select data from table?  (of cause ,this key refers to the key of table which structure the view. ) , <b>Could you give me any advice on creating and using view in term of performance</b> ?

    Hi Guixin Chen,
    Performance depends on various factors. The major key factors are:
    1.  Result Set should be Small
    2.  Amount of Data Transferred should be minimum.
    3.  Number of Data Transfers should be minimum.
    4.  Search Overhead should be minimum.
    5.  Database Load should be minimum.
    For more details, check the following docs.
    <b>Performance Notes</b>
    http://help.sap.com/saphelp_nw04s/helpdata/en/fc/eb3b7e358411d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/5b/320c40ac368f5ce10000000a155106/frameset.htm
    You can also check Performance by,
    1.  Transaction code ST05
    2.   From ABAP Workbench using the menu path Test Performance Trace.
    Dont forget to reward pts, if it helps ;>)
    Regards,
    Rakesh.

  • How do I access "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...." web sites; when I try to download any alternate browser, then a warning that alternate is "imcompatable with your opera

    How do I access websites that warn: "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...."? When I try to download any alternate browser, all I get is another warning that the alternate is "not compatible with your operating system." Is Firefox preventing this? The site listed below is a job application site. I've had this same problem with other job application sites also.
    == URL of affected sites ==
    https://storefront.kenexa.com/lithia/cc/Home.ss

    There should be a User Agent Switcher menu item under Tools, which gives you the browser names you can impersonate.
    The menu item name changes to the browser UA you are presently using.
    There is also a User Agent Switcher button, you can add it using View -> Toolbars -> Customize, and dragging the button to your toolbar.
    See http://chrispederick.com/work/user-agent-switcher/features/ and http://chrispederick.com/work/user-agent-switcher/help/
    You can just start trying IE versions (or the versions it says on the site) until it lets you in.

  • Optimizing system for best performance/stability and a custom kernel

    I have ArchLinux running on a MacBook 4.1 (early 2008), and it's running very well so far. But I would like to optimize it for best performance and stability (but not at the cost of losing 'graphical interface' quality). I want to compile a custom kernel, and I actually did once, but didn't do it well (and removed it), so I need some help from experts to tell me what should I disable or enable when compiling a custom kernel.
    I will post dmesg and lspci (and rc.conf) here, but if you need any other information, please tell me.
    Thanks.
    Dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.4-2-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 (GCC) ) #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=98afbd56-6ae5-415e-9710-73b8b4ba946c ro quiet add_efi_memmap loglevel=3 console=tty1 splash=silent,fadein,fadeout,theme:arch-banner-icons
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000007dd31000 (usable)
    [ 0.000000] BIOS-e820: 000000007dd31000 - 000000007df32000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007df32000 - 000000007dfe5000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007dfe5000 - 000000007dfe7000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007dfe7000 - 000000007eec3000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eec3000 - 000000007eec5000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007eec5000 - 000000007eec8000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eec8000 - 000000007eecb000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007eecb000 - 000000007eecc000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eecc000 - 000000007eedf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007eedf000 - 000000007eef9000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eef9000 - 000000007eeff000 (reserved)
    [ 0.000000] BIOS-e820: 000000007eeff000 - 000000007ef00000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007ef00000 - 0000000080000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Apple Inc. MacBook4,1/Mac-F22788A9, BIOS MB41.88Z.00C1.B00.0802091535 02/09/08
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x7dd31 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-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 07F000000 mask FFF000000 uncachable
    [ 0.000000] 3 base 07EF00000 mask FFFF00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-000000007dd31000
    [ 0.000000] 0000000000 - 007dc00000 page 2M
    [ 0.000000] 007dc00000 - 007dd31000 page 4k
    [ 0.000000] kernel direct mapping tables up to 7dd31000 @ 1fffc000-20000000
    [ 0.000000] RAMDISK: 37492000 - 37a41000
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
    [ 0.000000] ACPI: XSDT 000000007eeee1c0 00084 (v01 APPLE Apple00 000000C1 01000013)
    [ 0.000000] ACPI: FACP 000000007eeec000 000F4 (v03 APPLE Apple00 000000C1 Loki 0000005F)
    [ 0.000000] ACPI: DSDT 000000007eee1000 045C6 (v01 APPLE MacBook 00040001 INTL 20061109)
    [ 0.000000] ACPI: FACS 000000007eecc000 00040
    [ 0.000000] ACPI: HPET 000000007eeeb000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: APIC 000000007eeea000 00068 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: MCFG 000000007eee9000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: ASF! 000000007eee8000 000A5 (v32 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: SBST 000000007eee7000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: ECDT 000000007eee6000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: SSDT 000000007eec7000 004DC (v01 APPLE CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eec6000 0025F (v01 APPLE Cpu0Tst 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eec5000 000A6 (v01 APPLE Cpu1Tst 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eee0000 00544 (v01 SataRe SataPri 00001000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eedf000 00477 (v01 SataRe SataSec 00001000 INTL 20061109)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000007dd31000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000007dd31000
    [ 0.000000] NODE_DATA [000000007dd2d000 - 000000007dd30fff]
    [ 0.000000] [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007b400000-ffff88007d3fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0007dd31
    [ 0.000000] On node 0 totalpages: 515264
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3914 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 7989 pages used for memmap
    [ 0.000000] DMA32 zone: 503292 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, 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: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:70000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88007da00000 s82880 r8192 d23616 u1048576
    [ 0.000000] pcpu-alloc: s82880 r8192 d23616 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 507206
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=98afbd56-6ae5-415e-9710-73b8b4ba946c ro quiet add_efi_memmap loglevel=3 console=tty1 splash=silent,fadein,fadeout,theme:arch-banner-icons
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 2011044k/2061508k available (4538k kernel code, 452k absent, 50012k reserved, 4308k data, 740k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty1] enabled
    [ 0.000000] allocated 8388608 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration failed
    [ 0.000000] TSC: PIT calibration matches HPET. 2 loops
    [ 0.000000] Detected 2393.995 MHz processor.
    [ 0.010005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.48 BogoMIPS (lpj=7979983)
    [ 0.010013] pid_max: default: 32768 minimum: 301
    [ 0.010061] Security Framework initialized
    [ 0.010069] AppArmor: AppArmor disabled by boot time parameter
    [ 0.010381] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.011643] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.012201] Mount-cache hash table entries: 256
    [ 0.012567] Initializing cgroup subsys cpuacct
    [ 0.012573] Initializing cgroup subsys memory
    [ 0.012588] Initializing cgroup subsys devices
    [ 0.012592] Initializing cgroup subsys freezer
    [ 0.012595] Initializing cgroup subsys net_cls
    [ 0.012599] Initializing cgroup subsys blkio
    [ 0.012653] CPU: Physical Processor ID: 0
    [ 0.012656] CPU: Processor Core ID: 0
    [ 0.012660] mce: CPU supports 6 MCE banks
    [ 0.012673] CPU0: Thermal monitoring enabled (TM2)
    [ 0.012679] using mwait in idle threads.
    [ 0.015816] ACPI: Core revision 20120320
    [ 0.021231] ftrace: allocating 17820 entries in 70 pages
    [ 0.030546] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064790] CPU0: Intel(R) Core(TM)2 Duo CPU T8300 @ 2.40GHz stepping 06
    [ 0.066663] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.066663] ... version: 2
    [ 0.066663] ... bit width: 40
    [ 0.066663] ... generic registers: 2
    [ 0.066663] ... value mask: 000000ffffffffff
    [ 0.066663] ... max period: 000000007fffffff
    [ 0.066663] ... fixed-purpose events: 3
    [ 0.066663] ... event mask: 0000000700000003
    [ 0.083458] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.103350] Booting Node 0, Processors #1 Ok.
    [ 0.116508] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.116575] Brought up 2 CPUs
    [ 0.116579] Total of 2 processors activated (9579.97 BogoMIPS).
    [ 0.120053] devtmpfs: initialized
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7dd31000-0x7df31fff] (2101248 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7dfe5000-0x7dfe6fff] (8192 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7eec3000-0x7eec4fff] (8192 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7eec8000-0x7eecafff] (12288 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7eecc000-0x7eedefff] (77824 bytes)
    [ 0.123629] NET: Registered protocol family 16
    [ 0.123872] ACPI: bus type pci registered
    [ 0.123988] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xf0000000-0xffffffff] (base 0xf0000000)
    [ 0.123995] PCI: MMCONFIG at [mem 0xf0000000-0xffffffff] reserved in E820
    [ 0.124001] PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) (size reduced!)
    [ 0.153700] PCI: Using configuration type 1 for base access
    [ 0.153895] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.153899] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.153901] mtrr: corrected configuration.
    [ 0.154568] bio: create slab <bio-0> at 0
    [ 0.154568] ACPI: Added _OSI(Module Device)
    [ 0.154568] ACPI: Added _OSI(Processor Device)
    [ 0.154568] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.154568] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.154919] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.159179] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.160245] ACPI: SSDT 000000007eecaa98 00340 (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
    [ 0.160625] ACPI: Dynamic OEM Table Load:
    [ 0.160630] ACPI: SSDT (null) 00340 (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
    [ 0.160795] ACPI: SSDT 000000007eec8c18 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
    [ 0.161153] ACPI: Dynamic OEM Table Load:
    [ 0.161158] ACPI: SSDT (null) 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
    [ 0.161186] ACPI: SSDT 000000007eec9f18 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
    [ 0.161186] ACPI: Dynamic OEM Table Load:
    [ 0.161186] ACPI: SSDT (null) 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
    [ 0.161186] ACPI: SSDT 000000007eec8f18 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
    [ 0.161187] ACPI: Dynamic OEM Table Load:
    [ 0.161192] ACPI: SSDT (null) 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
    [ 0.161220] ACPI: Interpreter enabled
    [ 0.161220] ACPI: (supports S0 S3 S4 S5)
    [ 0.161220] ACPI: Using IOAPIC for interrupt routing
    [ 0.173742] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.173981] ACPI: No dock devices found.
    [ 0.173988] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.174581] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.175426] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.175431] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.175436] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.175443] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xfebfffff]
    [ 0.175505] PCI host bridge to bus 0000:00
    [ 0.175510] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.175514] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.175518] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.175523] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    [ 0.175539] pci 0000:00:00.0: [8086:2a00] type 00 class 0x060000
    [ 0.175610] pci 0000:00:02.0: [8086:2a02] type 00 class 0x030000
    [ 0.175631] pci 0000:00:02.0: reg 10: [mem 0x90100000-0x901fffff 64bit]
    [ 0.175645] pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff 64bit pref]
    [ 0.175655] pci 0000:00:02.0: reg 20: [io 0x6110-0x6117]
    [ 0.175712] pci 0000:00:02.1: [8086:2a03] type 00 class 0x038000
    [ 0.175730] pci 0000:00:02.1: reg 10: [mem 0x90200000-0x902fffff 64bit]
    [ 0.175849] pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    [ 0.175917] pci 0000:00:1a.0: reg 20: [io 0x60c0-0x60df]
    [ 0.175971] pci 0000:00:1a.1: [8086:2835] type 00 class 0x0c0300
    [ 0.176038] pci 0000:00:1a.1: reg 20: [io 0x60a0-0x60bf]
    [ 0.176110] pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    [ 0.176140] pci 0000:00:1a.7: reg 10: [mem 0x90704c00-0x90704fff]
    [ 0.176140] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    [ 0.176140] pci 0000:00:1b.0: reg 10: [mem 0x90700000-0x90703fff 64bit]
    [ 0.176140] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    [ 0.176140] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1c.4: [8086:2847] type 01 class 0x060400
    [ 0.176140] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1c.5: [8086:2849] type 01 class 0x060400
    [ 0.176140] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    [ 0.176140] pci 0000:00:1d.0: reg 20: [io 0x6080-0x609f]
    [ 0.176140] pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    [ 0.176140] pci 0000:00:1d.1: reg 20: [io 0x6060-0x607f]
    [ 0.176140] pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    [ 0.176140] pci 0000:00:1d.2: reg 20: [io 0x6040-0x605f]
    [ 0.176140] pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    [ 0.176140] pci 0000:00:1d.7: reg 10: [mem 0x90704800-0x90704bff]
    [ 0.176140] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.176140] pci 0000:00:1f.0: [8086:2815] type 00 class 0x060100
    [ 0.176140] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
    [ 0.176140] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
    [ 0.176140] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
    [ 0.176140] pci 0000:00:1f.1: [8086:2850] type 00 class 0x01018f
    [ 0.176140] pci 0000:00:1f.1: reg 10: [io 0x6108-0x610f]
    [ 0.176140] pci 0000:00:1f.1: reg 14: [io 0x6124-0x6127]
    [ 0.176140] pci 0000:00:1f.1: reg 18: [io 0x6100-0x6107]
    [ 0.176140] pci 0000:00:1f.1: reg 1c: [io 0x6120-0x6123]
    [ 0.176140] pci 0000:00:1f.1: reg 20: [io 0x60e0-0x60ef]
    [ 0.176140] pci 0000:00:1f.2: [8086:2828] type 00 class 0x01018f
    [ 0.176140] pci 0000:00:1f.2: reg 10: [io 0x60f8-0x60ff]
    [ 0.176140] pci 0000:00:1f.2: reg 14: [io 0x611c-0x611f]
    [ 0.176140] pci 0000:00:1f.2: reg 18: [io 0x60f0-0x60f7]
    [ 0.176140] pci 0000:00:1f.2: reg 1c: [io 0x6118-0x611b]
    [ 0.176140] pci 0000:00:1f.2: reg 20: [io 0x6020-0x602f]
    [ 0.176140] pci 0000:00:1f.2: reg 24: [io 0x4000-0x400f]
    [ 0.176140] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.176140] pci 0000:00:1f.3: [8086:283e] type 00 class 0x0c0500
    [ 0.176140] pci 0000:00:1f.3: reg 10: [mem 0x90705000-0x907050ff]
    [ 0.176140] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
    [ 0.176140] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.176140] pci 0000:00:1c.0: bridge window [mem 0x90600000-0x906fffff]
    [ 0.176140] pci 0000:02:00.0: [14e4:4328] type 00 class 0x028000
    [ 0.176140] pci 0000:02:00.0: reg 10: [mem 0x90500000-0x90503fff 64bit]
    [ 0.176140] pci 0000:02:00.0: reg 18: [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.176140] pci 0000:02:00.0: supports D1 D2
    [ 0.176140] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.183347] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [ 0.183358] pci 0000:00:1c.4: bridge window [mem 0x90500000-0x905fffff]
    [ 0.183369] pci 0000:00:1c.4: bridge window [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.183595] pci 0000:03:00.0: [11ab:436a] type 00 class 0x020000
    [ 0.183741] pci 0000:03:00.0: reg 10: [mem 0x90400000-0x90403fff 64bit]
    [ 0.183826] pci 0000:03:00.0: reg 18: [io 0x5000-0x50ff]
    [ 0.184121] pci 0000:03:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.184581] pci 0000:03:00.0: supports D1 D2
    [ 0.184585] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.184821] pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    [ 0.184828] pci 0000:00:1c.5: bridge window [io 0x5000-0x5fff]
    [ 0.184836] pci 0000:00:1c.5: bridge window [mem 0x90400000-0x904fffff]
    [ 0.184905] pci 0000:04:03.0: [11c1:5811] type 00 class 0x0c0010
    [ 0.184934] pci 0000:04:03.0: reg 10: [mem 0x90300000-0x90300fff]
    [ 0.185056] pci 0000:04:03.0: supports D1 D2
    [ 0.185060] pci 0000:04:03.0: PME# supported from D0 D1 D2 D3hot
    [ 0.185137] pci 0000:00:1e.0: PCI bridge to [bus 04-04] (subtractive decode)
    [ 0.185148] pci 0000:00:1e.0: bridge window [mem 0x90300000-0x903fffff]
    [ 0.185160] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.185165] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.185169] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.185174] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    [ 0.185211] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.185419] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 0.185489] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.185588] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    [ 0.185829] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.186233] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.193405] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.193487] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    [ 0.193565] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 0.193642] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.193720] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 0.193797] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *9
    [ 0.193874] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.193957] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.196686] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.196707] vgaarb: loaded
    [ 0.196709] vgaarb: bridge control possible 0000:00:02.0
    [ 0.196788] PCI: Using ACPI for IRQ routing
    [ 0.197237] PCI: pci_cache_line_size set to 64 bytes
    [ 0.197407] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    [ 0.197411] reserve RAM buffer: 000000007dd31000 - 000000007fffffff
    [ 0.197573] NetLabel: Initializing
    [ 0.197576] NetLabel: domain hash size = 128
    [ 0.197579] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.197601] NetLabel: unlabeled traffic allowed by default
    [ 0.197632] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.197640] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.197648] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.210013] Switching to clocksource hpet
    [ 0.222129] pnp: PnP ACPI init
    [ 0.222158] ACPI: bus type pnp registered
    [ 0.222675] pnp 00:00: [bus 00-ff]
    [ 0.222680] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.222684] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.222688] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.222692] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.222696] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.222700] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.222703] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.222707] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.222711] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.222715] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.222718] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.222723] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.222726] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.222735] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.222739] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.222743] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.222746] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.222750] pnp 00:00: [mem 0x80000000-0xfebfffff window]
    [ 0.222859] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.222989] pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
    [ 0.222993] pnp 00:01: [mem 0xfed14000-0xfed17fff]
    [ 0.222996] pnp 00:01: [mem 0xfed18000-0xfed18fff]
    [ 0.223000] pnp 00:01: [mem 0xfed19000-0xfed19fff]
    [ 0.223003] pnp 00:01: [mem 0xf0000000-0xf3ffffff]
    [ 0.223006] pnp 00:01: [mem 0xfed20000-0xfed3ffff]
    [ 0.223010] pnp 00:01: [mem 0xfed45000-0xfed8ffff]
    [ 0.223109] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.223115] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.223119] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.223124] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.223129] system 00:01: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.223134] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.223138] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.223145] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.223455] pnp 00:02: [io 0x0300-0x031f]
    [ 0.223473] pnp 00:02: [irq 6]
    [ 0.223541] pnp 00:02: Plug and Play ACPI device, IDs APP0001 (active)
    [ 0.223606] pnp 00:03: [io 0x0000-0x001f]
    [ 0.223610] pnp 00:03: [io 0x0081-0x0091]
    [ 0.223614] pnp 00:03: [io 0x0093-0x009f]
    [ 0.223617] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.223621] pnp 00:03: [dma 4]
    [ 0.223695] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.223710] pnp 00:04: [mem 0xff000000-0xffffffff]
    [ 0.223778] pnp 00:04: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.223883] pnp 00:05: [irq 0 disabled]
    [ 0.223893] pnp 00:05: [irq 8]
    [ 0.223897] pnp 00:05: [mem 0xfed00000-0xfed003ff]
    [ 0.224002] system 00:05: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.224009] system 00:05: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.224028] pnp 00:06: [io 0x00f0]
    [ 0.224038] pnp 00:06: [irq 13]
    [ 0.224112] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.224132] pnp 00:07: [io 0x002e-0x002f]
    [ 0.224136] pnp 00:07: [io 0x004e-0x004f]
    [ 0.224139] pnp 00:07: [io 0x0061]
    [ 0.224142] pnp 00:07: [io 0x0063]
    [ 0.224145] pnp 00:07: [io 0x0065]
    [ 0.224149] pnp 00:07: [io 0x0067]
    [ 0.224151] pnp 00:07: [io 0x0070]
    [ 0.224154] pnp 00:07: [io 0x0080]
    [ 0.224157] pnp 00:07: [io 0x0092]
    [ 0.224161] pnp 00:07: [io 0x00b2-0x00b3]
    [ 0.224164] pnp 00:07: [io 0x0680-0x069f]
    [ 0.224167] pnp 00:07: [io 0x0800-0x080f]
    [ 0.224170] pnp 00:07: [io 0x0810-0x0817]
    [ 0.224173] pnp 00:07: [io 0x0400-0x047f]
    [ 0.224177] pnp 00:07: [io 0x0500-0x053f]
    [ 0.224180] pnp 00:07: [io 0x1640-0x164f]
    [ 0.224302] system 00:07: [io 0x0680-0x069f] has been reserved
    [ 0.224307] system 00:07: [io 0x0800-0x080f] has been reserved
    [ 0.224312] system 00:07: [io 0x0810-0x0817] has been reserved
    [ 0.224316] system 00:07: [io 0x0400-0x047f] has been reserved
    [ 0.224320] system 00:07: [io 0x0500-0x053f] has been reserved
    [ 0.224325] system 00:07: [io 0x1640-0x164f] has been reserved
    [ 0.224331] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.224346] pnp 00:08: [io 0x0070-0x0077]
    [ 0.224417] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.228737] pnp: PnP ACPI: found 9 devices
    [ 0.228741] ACPI: ACPI bus type pnp unregistered
    [ 0.237540] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.237582] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01-01] add_size 1000
    [ 0.237590] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-01] add_size 200000
    [ 0.237607] pci 0000:00:1c.4: bridge window [io 0x1000-0x0fff] to [bus 02-02] add_size 1000
    [ 0.237623] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x001fffff pref] to [bus 03-03] add_size 200000
    [ 0.237646] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.237652] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x001fffff pref] get_res_add_size add_size 200000
    [ 0.237657] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.237662] pci 0000:00:1c.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.237672] pci 0000:00:1c.0: BAR 15: assigned [mem 0x90800000-0x909fffff 64bit pref]
    [ 0.237678] pci 0000:00:1c.5: BAR 15: assigned [mem 0x90a00000-0x90cfffff pref]
    [ 0.237684] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.237689] pci 0000:00:1c.4: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.237694] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.237701] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.237710] pci 0000:00:1c.0: bridge window [mem 0x90600000-0x906fffff]
    [ 0.237718] pci 0000:00:1c.0: bridge window [mem 0x90800000-0x909fffff 64bit pref]
    [ 0.237730] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [ 0.237736] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.237746] pci 0000:00:1c.4: bridge window [mem 0x90500000-0x905fffff]
    [ 0.237754] pci 0000:00:1c.4: bridge window [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.237767] pci 0000:03:00.0: BAR 6: assigned [mem 0x90a00000-0x90a1ffff pref]
    [ 0.237772] pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    [ 0.237777] pci 0000:00:1c.5: bridge window [io 0x5000-0x5fff]
    [ 0.237787] pci 0000:00:1c.5: bridge window [mem 0x90400000-0x904fffff]
    [ 0.237795] pci 0000:00:1c.5: bridge window [mem 0x90a00000-0x90cfffff pref]
    [ 0.237807] pci 0000:00:1e.0: PCI bridge to [bus 04-04]
    [ 0.237816] pci 0000:00:1e.0: bridge window [mem 0x90300000-0x903fffff]
    [ 0.237837] pci 0000:00:1c.0: enabling device (0000 -> 0003)
    [ 0.237918] pci 0000:00:1e.0: power state changed by ACPI to D0
    [ 0.237925] pci 0000:00:1e.0: power state changed by ACPI to D0
    [ 0.237934] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.237942] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.237946] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.237950] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.237954] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
    [ 0.237959] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 0.237963] pci_bus 0000:01: resource 1 [mem 0x90600000-0x906fffff]
    [ 0.237967] pci_bus 0000:01: resource 2 [mem 0x90800000-0x909fffff 64bit pref]
    [ 0.237972] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 0.237976] pci_bus 0000:02: resource 1 [mem 0x90500000-0x905fffff]
    [ 0.237980] pci_bus 0000:02: resource 2 [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.237984] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
    [ 0.237988] pci_bus 0000:03: resource 1 [mem 0x90400000-0x904fffff]
    [ 0.237992] pci_bus 0000:03: resource 2 [mem 0x90a00000-0x90cfffff pref]
    [ 0.237997] pci_bus 0000:04: resource 1 [mem 0x90300000-0x903fffff]
    [ 0.238001] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    [ 0.238005] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    [ 0.238009] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.238013] pci_bus 0000:04: resource 7 [mem 0x80000000-0xfebfffff]
    [ 0.238088] NET: Registered protocol family 2
    [ 0.238250] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.239170] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [ 0.241419] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.241995] TCP: Hash tables configured (established 262144 bind 65536)
    [ 0.241999] TCP: reno registered
    [ 0.242015] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.242042] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.242207] NET: Registered protocol family 1
    [ 0.242239] pci 0000:00:02.0: Boot video device
    [ 0.242578] PCI: CLS mismatch (256 != 64), using 64 bytes
    [ 0.242662] Unpacking initramfs...
    [ 0.452648] Freeing initrd memory: 5820k freed
    [ 0.456693] audit: initializing netlink socket (disabled)
    [ 0.456719] type=2000 audit(1340724146.456:1): initialized
    [ 0.457302] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.460514] VFS: Disk quotas dquot_6.5.2
    [ 0.460597] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.460751] msgmni has been set to 3939
    [ 0.461070] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.461121] io scheduler noop registered
    [ 0.461125] io scheduler deadline registered
    [ 0.461224] io scheduler cfq registered (default)
    [ 0.461477] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.461710] pcieport 0000:00:1c.4: irq 41 for MSI/MSI-X
    [ 0.461950] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    [ 0.462157] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.462166] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.462198] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 0.462203] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.462210] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 0.462242] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
    [ 0.462246] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.462253] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
    [ 0.462369] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.462374] vesafb: scrolling: redraw
    [ 0.462379] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.464035] vesafb: framebuffer at 0x80000000, mapped to 0xffffc90004980000, using 3072k, total 3072k
    [ 0.508030] Console: switching to colour frame buffer device 128x48
    [ 0.551844] fb0: VESA VGA frame buffer device
    [ 0.551863] efifb: dmi detected MacBook4,1 - framebuffer at 0x80000000 (1024x768, stride 4096)
    [ 0.551868] intel_idle: does not run on family 6 model 23
    [ 0.551930] GHES: HEST is not enabled!
    [ 0.552035] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.552762] Linux agpgart interface v0.103
    [ 0.552879] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.553759] i8042: No controller found
    [ 0.553878] mousedev: PS/2 mouse device common for all mice
    [ 0.553966] rtc_cmos 00:08: RTC can wake from S4
    [ 0.554165] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [ 0.554204] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.554221] cpuidle: using governor ladder
    [ 0.554225] cpuidle: using governor menu
    [ 0.554454] TCP: cubic registered
    [ 0.554641] NET: Registered protocol family 10
    [ 0.554976] NET: Registered protocol family 17
    [ 0.554983] Registering the dns_resolver key type
    [ 0.555206] PM: Hibernation image not present or could not be loaded.
    [ 0.555216] registered taskstats version 1
    [ 0.556175] rtc_cmos 00:08: setting system clock to 2012-06-26 15:22:26 UTC (1340724146)
    [ 0.556299] Initializing network drop monitor service
    [ 0.558944] Freeing unused kernel memory: 740k freed
    [ 0.559290] Write protecting the kernel read-only data: 8192k
    [ 0.568413] Freeing unused kernel memory: 1588k freed
    [ 0.572710] Freeing unused kernel memory: 640k freed
    [ 0.586045] udevd[40]: starting version 185
    [ 0.590818] [drm] Initialized drm 1.1.0 20060810
    [ 0.592306] agpgart-intel 0000:00:00.0: Intel 965GM Chipset
    [ 0.592621] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    [ 0.594306] agpgart-intel 0000:00:00.0: detected 16384K stolen memory
    [ 0.594543] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
    [ 0.595388] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    [ 0.595444] ACPI: Lid Switch [LID0]
    [ 0.595539] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 0.595547] ACPI: Power Button [PWRB]
    [ 0.595632] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
    [ 0.595639] ACPI: Sleep Button [SLPB]
    [ 0.595763] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 0.595769] ACPI: Power Button [PWRF]
    [ 0.596508] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 0.596517] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 0.602545] i915 0000:00:02.0: setting latency timer to 64
    [ 0.749351] i915 0000:00:02.0: irq 43 for MSI/MSI-X
    [ 0.749367] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.749370] [drm] Driver supports precise vblank timestamp query.
    [ 0.749462] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.117606] [drm] initialized overlay support
    [ 1.299854] checking generic (80000000 300000) vs hw (80000000 10000000)
    [ 1.299860] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 1.299886] Console: switching to colour dummy device 80x25
    [ 1.301293] fbcon: inteldrmfb (fb0) is primary device
    [ 1.430434] Console: switching to colour frame buffer device 160x50
    [ 1.435865] fb0: inteldrmfb frame buffer device
    [ 1.435868] drm: registered panic notifier
    [ 1.435878] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.456696] Refined TSC clocksource calibration: 2393.999 MHz.
    [ 1.456705] Switching to clocksource tsc
    [ 1.821716] usbcore: registered new interface driver usbfs
    [ 1.821753] usbcore: registered new interface driver hub
    [ 1.826806] usbcore: registered new device driver usb
    [ 1.827520] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.827588] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 1.827594] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 1.827633] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.827675] ehci_hcd 0000:00:1a.7: debug port 1
    [ 1.831556] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.831587] ehci_hcd 0000:00:1a.7: irq 21, io mem 0x90704c00
    [ 1.842320] SCSI subsystem initialized
    [ 1.845102] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.845354] hub 1-0:1.0: USB hub found
    [ 1.845362] hub 1-0:1.0: 4 ports detected
    [ 1.845549] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.845555] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.845572] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.845613] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.847254] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.850589] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.850624] ehci_hcd 0000:00:1d.7: irq 20, io mem 0x90704800
    [ 1.851193] libata version 3.00 loaded.
    [ 1.860054] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.860280] hub 2-0:1.0: USB hub found
    [ 1.860289] hub 2-0:1.0: 6 ports detected
    [ 1.860472] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.860478] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.860494] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.860539] uhci_hcd 0000:00:1a.0: irq 20, io base 0x000060c0
    [ 1.860750] hub 3-0:1.0: USB hub found
    [ 1.860757] hub 3-0:1.0: 2 ports detected
    [ 1.860892] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.860898] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.860912] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.860965] uhci_hcd 0000:00:1a.1: irq 16, io base 0x000060a0
    [ 1.861172] hub 4-0:1.0: USB hub found
    [ 1.861178] hub 4-0:1.0: 2 ports detected
    [ 1.861312] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.861318] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.861332] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    [ 1.861366] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00006080
    [ 1.861578] hub 5-0:1.0: USB hub found
    [ 1.861585] hub 5-0:1.0: 2 ports detected
    [ 1.861717] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.861723] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.861744] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    [ 1.861795] uhci_hcd 0000:00:1d.1: irq 18, io base 0x00006060
    [ 1.862003] hub 6-0:1.0: USB hub found
    [ 1.862010] hub 6-0:1.0: 2 ports detected
    [ 1.862142] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.862148] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.862165] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    [ 1.862200] uhci_hcd 0000:00:1d.2: irq 21, io base 0x00006040
    [ 1.862411] hub 7-0:1.0: USB hub found
    [ 1.862417] hub 7-0:1.0: 2 ports detected
    [ 1.862917] ata_piix 0000:00:1f.1: version 2.13
    [ 1.862932] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
    [ 1.862937] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
    [ 1.862993] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 1.869158] scsi0 : ata_piix
    [ 1.874884] scsi1 : ata_piix
    [ 1.875449] ata1: PATA max UDMA/100 cmd 0x6108 ctl 0x6124 bmdma 0x60e0 irq 21
    [ 1.875454] ata2: PATA max UDMA/100 cmd 0x6100 ctl 0x6120 bmdma 0x60e8 irq 21
    [ 1.875665] ata_piix 0000:00:1f.2: MAP [ P0 -- -- -- ]
    [ 1.875722] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 1.881780] scsi2 : ata_piix
    [ 1.887944] scsi3 : ata_piix
    [ 1.888739] ata3: SATA max UDMA/133 cmd 0x60f8 ctl 0x611c bmdma 0x6020 irq 18
    [ 1.888745] ata4: SATA max UDMA/133 cmd 0x60f0 ctl 0x6118 bmdma 0x6028 irq 18
    [ 2.033862] ata1.00: ATAPI: MATSHITADVD-R UJ-867, HB01, max UDMA/66
    [ 2.065117] ata1.00: configured for UDMA/66
    [ 2.065887] ata3.00: ATA-8: Hitachi HTS542516K9SA00, BBCAC3GP, max UDMA/133
    [ 2.065893] ata3.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.067318] scsi 0:0:0:0: CD-ROM MATSHITA DVD-R UJ-867 HB01 PQ: 0 ANSI: 5
    [ 2.077869] ata3.00: configured for UDMA/133
    [ 2.078045] scsi 2:0:0:0: Direct-Access ATA Hitachi HTS54251 BBCA PQ: 0 ANSI: 5
    [ 2.087306] sr0: scsi3-mmc drive: 62x/62x writer cd/rw xa/form2 cdda tray
    [ 2.087313] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.088645] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 2.093226] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.093312] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.093318] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.093371] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.184704] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
    [ 2.184707] sda3: <bsd:bad subpartition - ignored
    [ 2.184709] bad subpartition - ignored
    [ 2.184710] bad subpartition - ignored
    [ 2.184712] bad subpartition - ignored
    [ 2.184713] >
    [ 2.185557] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.260045] usb 2-4: new high-speed USB device number 2 using ehci_hcd
    [ 2.770036] usb 3-1: new full-speed USB device number 2 using uhci_hcd
    [ 2.948125] usbhid 3-1:1.0: couldn't find an input interrupt endpoint
    [ 2.948381] usbcore: registered new interface driver usbhid
    [ 2.948385] usbhid: USB HID core driver
    [ 3.170028] usb 7-1: new low-speed USB device number 2 using uhci_hcd
    [ 3.179293] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.576705] usb 7-2: new full-speed USB device number 3 using uhci_hcd
    [ 5.022890] udevd[198]: starting version 185
    [ 5.426262] applesmc: SIS!ui16\xffffffc0\xffffffa6: read arg fail
    [ 5.562551] applesmc: key=220 fan=1 temp=10 acc=1 lux=0 kbd=0
    [ 5.562558] applesmc: init_smcreg() took 50 ms
    [ 5.584285] input: applesmc as /devices/platform/applesmc.768/input/input5
    [ 5.658889] lib80211: common routines for IEEE802.11 drivers
    [ 5.658894] lib80211_crypt: registered algorithm 'NULL'
    [ 5.711977] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.924357] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 5.924364] Disabling lock debugging due to kernel taint
    [ 5.946193] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 6.001836] lib80211_crypt: registered algorithm 'TKIP'
    [ 6.002152] eth0: Broadcom BCM4328 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 6.084085] Linux media interface: v0.10
    [ 6.133183] iTCO_vendor_support: vendor-support=0
    [ 6.134458] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 6.134601] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x0460)
    [ 6.134703] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.156626] ACPI: Battery Slot [BAT0] (battery absent)
    [ 6.163544] ACPI: AC Adapter [ADP1] (on-line)
    [ 6.164216] ACPI: Requesting acpi_cpufreq
    [ 6.173706] Monitor-Mwait will be used to enter C-1 state
    [ 6.178506] Monitor-Mwait will be used to enter C-2 state
    [ 6.183424] Monitor-Mwait will be used to enter C-3 state
    [ 6.183457] Marking TSC unstable due to TSC halts in idle
    [ 6.183507] ACPI: acpi_idle registered with cpuidle
    [ 6.183963] Switching to clocksource hpet
    [ 6.210896] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
    [ 6.210909] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.242033] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 6.275396] microcode: CPU0 sig=0x10676, pf=0x80, revision=0x60c
    [ 6.338786] Linux video capture interface: v2.00
    [ 6.426865] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8501)
    [ 6.429319] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
    [ 6.429831] usbcore: registered new interface driver uvcvideo
    [ 6.429835] USB Video Class driver (1.1.1)
    [ 6.496844] firewire_ohci 0000:04:03.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
    [ 6.587003] sky2: driver version 1.30
    [ 6.587217] sky2 0000:03:00.0: Yukon-2 EC Ultra chip revision 3
    [ 6.587761] sky2 0000:03:00.0: irq 44 for MSI/MSI-X
    [ 6.588473] sky2 0000:03:00.0: eth1: addr 00:22:41:21:43:0c
    [ 6.654740] microcode: CPU1 sig=0x10676, pf=0x80, revision=0x60c
    [ 6.655770] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 6.661489] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 6.700987] udevd[214]: renamed network interface eth0 to wlan0
    [ 6.824841] hda_codec: ALC889A: SKU not ready 0x400000f0
    [ 6.827442] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 6.848101] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 6.850714] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 6.942266] appletouch: Geyser mode initialized.
    [ 6.942380] input: appletouch as /devices/pci0000:00/0000:00:1d.2/usb7/7-2/7-2:1.1/input/input10
    [ 6.942768] usbcore: registered new interface driver appletouch
    [ 6.996893] firewire_core 0000:04:03.0: created device fw0: GUID 002241fffe41d624, S400
    [ 7.131526] apple 0003:05AC:8242.0001: hiddev0,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.2-1/input0
    [ 7.135766] input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.2/usb7/7-2/7-2:1.0/input/input11
    [ 7.136230] apple 0003:05AC:0229.0002: input,hidraw1: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.2-2/input0
    [ 7.139354] input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.2/usb7/7-2/7-2:1.2/input/input12
    [ 7.139526] apple 0003:05AC:0229.0003: input,hidraw2: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.2-2/input2
    [ 7.423516] usb 3-1: USB disconnect, device number 2
    [ 7.650081] usb 3-1: new full-speed USB device number 3 using uhci_hcd
    [ 8.322211] Bluetooth: Core ver 2.16
    [ 8.322655] NET: Registered protocol family 31
    [ 8.322660] Bluetooth: HCI device and connection manager initialized
    [ 8.322665] Bluetooth: HCI socket layer initialized
    [ 8.322669] Bluetooth: L2CAP socket layer initialized
    [ 8.322680] Bluetooth: SCO socket layer initialized
    [ 8.359817] usbcore: registered new interface driver btusb
    [ 9.183365] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 9.336886] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 9.377553] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 9.380170] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 9.497613] Adding 4184928k swap on /dev/sda5. Priority:-1 extents:1 across:4184928k
    [ 11.804445] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 11.845740] Bluetooth: RFCOMM TTY layer initialized
    [ 11.845751] Bluetooth: RFCOMM socket layer initialized
    [ 11.845755] Bluetooth: RFCOMM ver 1.11
    [ 12.221084] fbsplashd.stati[78]: segfault at 2c ip 000000000040579b sp 00007f2267333d00 error 4 in fbsplashd.static (deleted)[400000+233000]
    [ 24.154605] sky2 0000:03:00.0: eth1: enabling interface
    [ 24.155329] ADDRCONF(NETDEV_UP): eth1: link is not ready
    [ 28.831988] EXT4-fs (sda2): re-mounted. Opts: commit=0
    [ 28.933444] EXT4-fs (sda6): re-mounted. Opts: commit=0
    [ 29.363373] wlan0: no IPv6 routers present
    [ 30.487575] sky2 0000:03:00.0: eth1: disabling interface
    [ 30.500233] sky2 0000:03:00.0: eth1: enabling interface
    [ 30.501015] ADDRCONF(NETDEV_UP): eth1: link is not ready
    [ 40.563473] wlan0: no IPv6 routers present
    [ 45.535875] fuse init (API version 7.18)
    [ 70.827136] ISO 9660 Extensions: Microsoft Joliet Level 3
    [ 70.867639] ISO 9660 Extensions: RRIP_1991A
    [ 398.754336] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 398.776167] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 422.037689] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16396 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 422.311888] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16397 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 422.859975] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16398 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 423.955325] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16399 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 426.147338] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16400 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 430.531638] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16401 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary) (rev 03)
    00:1a.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
    00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
    00:1f.0 ISA bridge: Intel Corporation 82801HM (ICH8M) LPC Interface Controller (rev 03)
    00:1f.1 IDE interface: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
    00:1f.2 IDE interface: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [IDE mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
    02:00.0 Network controller: Broadcom Corporation BCM4321 802.11a/b/g/n (rev 03)
    03:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8058 PCI-E Gigabit Ethernet Controller (rev 13)
    04:03.0 FireWire (IEEE 1394): LSI Corporation FW322/323 [TrueFire] 1394a Controller (rev 61)
    /etc/rc.conf:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # See 'man 5 rc.conf' for more details
    # LOCALIZATION
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Skopje"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    LOCALE="en_GB.UTF-8"
    DAEMON_LOCALE="yes"
    USECOLOR="yes"
    # HARDWARE
    MODULES=(applesmc wl uvcvideo)
    USEDMRAID="no"
    USEBTRFS="no"
    USELVM="no"
    # NETWORKING
    HOSTNAME=stefan.local
    interface=
    address=
    netmask=
    broadcast=
    gateway=
    NETWORK_PERSIST="no"
    # DAEMONS
    DAEMONS=(syslog-ng sensors dbus network @firestarter @bluetooth crond cmp-daemon gdm @wicd alsa)
    Thanks

    Army wrote:
    This might not help you a lot, but if you want a stable system, try using packages from the repo wherever possible, look at the news before you update your system and don't mess things up (like bad configuration etc.).
    When it comes to performance, you won't gain much by compiling linux by yourself! Just use the linux package from [core] or if you want a bit more performance, install the ck-kernel from
    [repo-ck]
    Server = http://repo-ck.com/$arch
    (this has to go to the bottom of /etc/pacman.conf)
    (use that one which is best for your cpu (in your case this might be the package linux-ck-corex).
    Hmmm, Linux-ck-corex doesn't even load.. I am now trying to install the generic one. Hope it works.
    Edit: I will first try linux-lqx...
    Last edited by exapplegeek (2012-06-26 18:33:31)

  • What's the best specifications for 27" iMac in order to run Windows for best performance?

    Hey there. I'm based in the UK and in the process of saving up for my first ever iMac (the new 27" model starting from £1699) after years of owning PC's and laptops, but now I'm finally fed up with Windows-based machines, they just don't cut it when it comes to performance and workload...etc.
    I wanted to pick iMac users on the community to get clear advice on what the ideal specifications I should consider configuring my iMac when I finally get round to placing my order in March/April. I aim to run Windows 7/ or 8 via Parallels as I hear it's very good and from what video tutorials of it I've seen on YouTube it appears impressive to think the iMac can handle this at the same time as running Mountain Lion.
    The ram I plan on upgrading myself manually, yes - I've sussed that one that very quickly due to Apple's extensive £400 fee to simply upgrade the iMac to 32GB, Crucial here I come!
    ...I digress a little. I'm torn between the Quad-core i5 and i7 as I don't want to get something that won't deliver best performance when it comes to running Windows in parallel (or coherence mode as I hear it's called). Below are some specs I've configured on 2 saved iMacs in my saved baskets.
    CONFIGURATION #1
    3.2GHz Quad-core Intel Core i5, Turbo Boost up to 3.6GHz
    8GB 1600MHz DDR3 SDRAM - 2x4GB
    1TB Fusion Drive
    NVIDIA GeForce GTX 680MX 2GB GDDR5
    Order total: £2,019
    CONFIGURATION #2
    3.4GHz Quad-core Intel Core i7, Turbo Boost up to 3.9GHz
    8GB 1600MHz DDR3 SDRAM - 2x4GB
    3TB Fusion Drive
    NVIDIA GeForce GTX 680MX 2GB GDDR5
    Order total: £2,299
    I'd appreciate anybody's time and patience on this little matter. Thank you.

    You don't need to go overboard on your hardware to run windows effectively.  I bootcamp win7 on a late 2008 MacBook Pro with no issues. However, for an intense windows game I boot straight into windows.  If you do not plan on gaming other than an occasional instance by your brother than this should be an acceptable solution. 
    One caveat is ram which you have already stated your are upgrading. 
    A general rule of thumb I live by is get the best you can afford now and it will prolong the need to upgrade in the future.  That being said...  The choices you have provided are all good choices.  Preference on screen size will dictate your overall decision, of course.   The need for i5 vs i7 CPU is normally not a factor for the majority of users.  If you need to save some money then by all means choose the lesser configuration as it will handle windows fine.
    One place you should consider the upgrade is the video card.  Since you cannot upgrade this after purchase it is advisable to do this now.  Also, the differences between the 675mx and the 680mx are far greater than what the naming implies. 
    Also, as mentioned in a previous post, the 3TB fusion drive can't bootcamp windows.  There is a hack for the non-fusion version, but I have not heard of anyone getting that hack to work on the fusion drive.   There are other creative options you can implement to make this work, however, it will require an additional investment in some 3rd party hardware.  For a novice Mac user I would recommend the smaller fusion drive and external thunderbolt/USB storage as dictated by your needs in the future.
    HTH

  • Query resulting in cartesian product-plz help

    select count(distinct e.hiredate),count(distinct b.hiredate) from scott.emp e, scott.emp b where e.hiredate<to_date('01-DEC-80','DD-MON-YY') and b.hiredate<to_date('23-JUN-81','DD-MON-YY')

    Hi,
    When I query it individually its giving me as below and its correct.
    SQL> select count(hiredate) from scott.emp where hiredate<'01-DEC-81';
    COUNT(HIREDATE)
    9
    SQL> select count(hiredate) from scott.emp where hiredate<'23-JUN-81';
    COUNT(HIREDATE)
    6
    Now I want these two merged in same query and it should give me the same result
    SQL> select count(distinct e.hiredate),count(distinct b.hiredate) from scott.emp
    e, scott.emp b where e.hiredate<'01-DEC-80' and b.hiredate<'23-JUN-81';
    COUNT(DISTINCTE.HIREDATE) COUNT(DISTINCTB.HIREDATE)
    0 0
    But its giving me either cartesian product or the result above.
    I have already used logical operator AND .

  • Help I have a Macbook 2006 model and I like to play videogames on it, well when I leave it plugged in it gets the best performance, when its not plugged in its decent, so will it hurt my battery if I leave it plugged in at all times?

    Help I have a Macbook 2006 model and I like to play videogames on it, well when I leave it plugged in it gets the best performance, when its not plugged in its decent, so will it hurt my battery if I leave it plugged in at all times?

    No, it will hurt your battery, but it is not recommended by Apple. Additionally, since you have a model with a removable battery, you should calibrate the battery once a month if you leave it plugged in at all times.
    Apple Portables: Calibrating your computer's battery for best ...
    www.apple.com/batteries

  • Urgent plz help me out about cartesian product

    plz...its urgent,can anyone help in the following query where iam getting cartesian product,so how to get result without cartesian product
    this is the query
    SELECT DISTINCT MIS.segment1 "ITEM CODE",
    MIS.DESCRIPTION "DESCRIP"
    ,MIS.Primary_uom_code "UOM",
    MTL.LOT_NUMBER "LOT NUMBER"
    ,A.PARTY_NUMBER "CUSTOMER NUMBER",
    A.PARTY_NAME "CUSTOMER NAME",
    (A.ADDRESS1||A.ADDRESS2||A.ADDRESS3||A.ADDRESS4) "SHIP TO",
    B.DELIVERY_DETAIL_ID "DO NO",B.SHIPPED_QUANTITY "SHIPPED QUANTITY"
    ,C.ULTIMATE_DROPOFF_DATE "ISSUED DATE"
    ,D.ORDER_NUMBER "SALES ORDER NUMBER"
    ,E.LINE_NUMBER "SALES ORDER LINE"
    FROM MTL_SYSTEM_ITEMS MIS
    ,MTL_TRANSACTION_LOT_NUMBERS MTL
    ,HZ_PARTIES A,
    WSH_DELIVERY_DETAILS B,
    WSH_NEW_DELIVERIES C,
    OE_ORDER_HEADERS_ALL D,
    OE_ORDER_LINES_ALL E
    WHERE MIS.INVENTORY_ITEM_ID=MTL.INVENTORY_ITEM_ID
    AND B.INVENTORY_ITEM_ID=MIS.INVENTORY_ITEM_ID
    AND A.PARTY_ID=B.CUSTOMER_ID
    AND B.DELIVERY_DETAIL_ID=C.DELIVERY_ID
    AND MIS.INVENTORY_ITEM_ID=E.INVENTORY_ITEM_ID
    AND D.HEADER_ID=E.HEADER_ID

    A lot of times when I get duplicate results, I'll do a select * and see why. Often one of those tables will have a sequenced value that could repeat several times for a combination of values.
    If thats the case, you may need to add something like:
    ...and a.id = (select min(id)
                     from b
                    where a.col = b.col)

Maybe you are looking for

  • How to include .css file into jsp file in portal application

    Hi, I have included a .css file in a .jsp file using following tag : <link rel="<%=componentRequest.getWebResourcePath()%>/css/ts.css">. I have kept .css file under /dist/css folder. Preview of jsp file is fine but when I upload the jsp file and .css

  • AR Aging vs. GL

    Hello all, At March 31, 2009 our Year End, we ran an aging report, the report did not match our GL. The report was out by (29.60)usd and no trace of that amount in the report. After running the report today it balances and we have found the USD curre

  • Find active user exit for a transaction code

    Hi All, Please help to find the active user exit for a transaction code. for Ex. below is the list of user exits for package VA ( for creation of sales order and changing sales order). Let me know which user exit is active and which is not active.  

  • Old globals with new classes

    Please forgive my ignorance: I'm porting some old illustrator sdk code into the illustrator cs5 sdk.  I plan on making this a hybrid plugin where the UI is built in flash builder.  I am using the FreeGrid sample as a model. My old code is based in th

  • Using display tag library

    Hi, I am new to JSP. I am using display-tags for pagination purpose. I have checkboxes for each row. When I select some rows and go to next page and come back to the old page, the status of selected rows is lost. Is there any way to store the status