Network Store Interface Service - Memory Leak on Boot

I wanted to compile and explain my solution to an issue in Windows 8.1 where NSI causes major RAM/Disk utilization in creating four files in C:\Windows\System32\networklist\icons
Related Threads
http://social.technet.microsoft.com/Forums/en-US/bebbd935-f6f8-47fb-b756-714c27f0da7d/win-81-rtm-slow-startup-thanks-to-network-list-service?forum=w81previtpro
http://social.technet.microsoft.com/Forums/windows/en-US/35aa5d51-89d4-4dfa-a4fa-1138ff8b43c8/system-slowfreezes-on-startup-svchostexe-uses-8gb-ram

Prior to noticing sluggish behavior during startup, I decided I wanted to give my Network a personalized name "Grimm Network." I achieved that by following this process: http://www.eightforums.com/tutorials/19670-network-name-change-windows-8-a.html
The error of my ways started when I poked around further...I changed Network Icon -> Icon to "Icon" from "Not Configured"
That is what trigger this startup behavior.
I went back and changed the setting to "Not Configured"
The registry entries referenced in the related posts I shared above were removed. Sure enough the files were no longer being deleted/created at boot.
This explanation is much more palatable than deleted registry entries with no further explanation was is advised in the other threads.
Prior to finding the other two threads, I did have to do some trial and error with root causing the services. With Task manager, I narrowed it down to 7 services. Then with Safe Mode w/ Networking, I narrowed it now to NSI and NETPROFM. After disabling NSI
during a normal boot, I noticed the issue was not happening. I then realized that there was a large amount of disk utilization, that allowed me to use Resource Monitor to see what files were being affected. Then searching for NSI related issue with Windows
8.1 led me to the above When reading through the related posts, it finally hit me when I saw that the registry entries were related to my custom named network...I remembered that I had changed some settings, specifically with the icon in SECPOL.MSC, and that
it must be related. This is how I deduced a non-registry entry changing solution to this problem.
In summary, go to SECPOL.MSC -> Network List Manager Policies ...
Look for your networks, open them up, and ensure that Network Icon -> Icon has "Not Configured" selected. 
I hope this helps other people.
-Gary

Similar Messages

  • How to fix huge iTunes memory leak in 64-bit Windows 7?

    iTunes likes to allocate as much as 1.6GB of memory on my dual-quad XEON 8GB 64-Bit Windows computer and then becomes unresponsive.
    This can happen several times a day and has been going on for as long as I can remember.  No other software that I use does this - only Apple's iTunes.  Each version I have installed of iTunes appears to have this same memory leak.  Currently I am running version 10.7.0.21.
    I love iTunes when it works.  But having to constantly kill and relaunch the app throughout the day is bringing me down.
    Searching for a fix for this on the internet just surfaces more and more complaints about this problem - but without a solution.
    Having written shrinkwrapped software for end users as well as for large corporations and governments for more than 25 years I know a thing or two about software.  A leak like this should take no more than a day or two to locate using modern software tools and double that to fix it.  So why with each new version of iTunes does this problem persist?  iTunes for Windows is the flagship software product Apple makes for non-Mac users - yet they continue to pass up each opportunity they have had over the years with each new release to fix this issue.  Why is this?
    Either the software engineers are not that good or they have been told NOT to spend time on this issue.  I personally believe that the engineers at Apple are very good, and therefore am left thinking that the latter is more likely the case.  Maybe this is to coax people to purchase a Mac so that they can finally run iTunes without these egregious memory leaks.  I would like to offer another issue to consider.
    Just as Amazon sold Kindles and Google sold Nexus tablets at low cost - not counting on margin for profit - but instead they wanted to saturate the marketplace with tools for making future purchases of content almost trivial to do with their devices.  Apple also counts on this model with their pricer hardware - but they also have iTunes.  Instead of trying to get people to switch to a MAC by continuing to avoid fixing this glaring issue in iTunes for Windows I would like to suggest that by allowing their engineers to address this issue that Apple will help keep Windows users from jumping ship to another music app.  The profit to be made by keeping those Windows users happy and wedded to the iTunes store is obvious.
    By continuing to keep this leak in iTunes for Windows all it does is lower my esteem for the company and start to make me wonder if the software is just as buggy on Macs.

    I have same issue. Ongoing for more than 1 year and currently running iTunes 11.3.
    My PC is Dell OptiPlex 990 I7 processor, 8GB ram, W7 64 [always keep things patched up to latest OS updates etc]
    I use this iTunes install to stream music videos etc to multiple appleTVs, ipads, iphones etc .. via Home Sharing
    Store all my media including music, videos and apps on separate NAS  .. so the iTunes running on PC is only doing the traffic cop role and streaming / using files stored on NAS .. creates lots of IO across my network
    Previous troubleshooting suggest possible contributing causes include
    a) podcast updates  .. until recently I had this auto updates on multiple podcast subscriptions, presumably the iTunes would flow this from the PC to save on the NAS across the network .. if the memory leak is in the iTunes network communication layer (?bonjour?)  this may be sensitive to IO that would not normally occur if the iTunes file saving was local on the same PC
    b) app updates .. have 200+ apps in my library and there is always a batch of updates .. some updates 100s of MB is size .. routinely see 500MB to 1GB of updates in single update run .. all my apps are
    c) streaming music / movies .. seems when we ramp up streamlining of music or movies . memory leak grows faster .. ie within hours of clean start
    c) large syncs of music or videos to ipads or iphones .. noticed that get big problems when I rebuild an ipad .. I typically have 60+ GB of data in terms of apps /  music / videos to load .. have to do rebuild in phases due to periodic lockups

  • Marshelling Web Service Response Memory Leak

    I believe I have found a memory leak when using the configuration below.
    The memory leak occurs when calling a web service. When the web service function is marshelling the response of the function call, an "500 Internal Server Error ... java.lang.OutOfMemoryError" is returned from OC4J. This error may be seen via the TCP Packet Monitor in JDeveloper.
    Unfortunately no exception dump is outputted to the OC4J log.
    Configuration:
    Windows 2000 with 1 gig ram
    JDeveloper 9.0.5.2 with JAX/RPC extension installed
    OC4J 10.0.3
    Sun JVM version 1.4.2_03-b02
    To demonstrate the error I created a simple web service and client. See below the client and web service function that demonstrates it.
    The web service is made up of a single function called "queryTestOutput".
    It returns an object of class "TestOutputQueryResult" which contains an int and an array.
    The function call accepts a one int input parameter which is used to vary the size of array in the returned object.
    For small int (less than 100). Web service function returns successfully.
    For larger int and depending on the size of memory configuration when OC4J is launched,
    the OutOfMemoryError is returned.
    The package "ws_issue.service" contains the web service.
    I used the Generate JAX-RPC proxy to build the client (found in package "ws_issue.client"). Package "types" was
    also created by Generate JAX-RPC proxy.
    To test the web service call execute the class runClient. Vary the int "atestValue" until error is returned.
    I have tried this with all three encodings: RPC/Encoded, RPC/Literal, Document/Literal. They have the
    same issue.
    The OutOfMemory Error is raised fairly consistently using the java settings -Xms386m -Xmx386m for OC4J when 750 is specified for the input parameter.
    I also noticed that when 600 is specified, the client seems to hang. According to the TCP Packet Monitor,
    the response is returned. But, the client seems unable to unmarshal the message.
    ** file runClient.java
    // -- this client is using Document/Literal
    package ws_issue.client;
    public class runClient
    public runClient()
    * @param args
    * Test out the web service
    * Play with the atestValue variable to until exception
    public static void main(String[] args)
    //runClient runClient = new runClient();
    long startTime;
    int atestValue = 1;
    atestValue = 2;
    //atestValue = 105; // last one to work with default memory settings in oc4j
    //atestValue = 106; // out of memory error as seen in TCP Packet Monitor
    // fails with default memory settings in oc4j
    //atestValue = 600; // hangs client (TCP Packet Monitor shows response)
    // when oc4j memory sessions are -Xms386m -Xmx386m
    atestValue = 750; // out of memory error as seen in TCP Packet Monitor
    // when oc4j memory sessions are -Xms386m -Xmx386m
    try
    startTime = System.currentTimeMillis();
    Ws_issueInterface ws = (Ws_issueInterface) (new Ws_issue_Impl().getWs_issueInterfacePort());
    System.out.println("Time to obtain port: " + (System.currentTimeMillis() - startTime) );
    // call the web service function
    startTime = System.currentTimeMillis();
    types.QueryTestOutputResponse qr = ws.queryTestOutput(new types.QueryTestOutput(atestValue));
    System.out.println("Time to call queryTestOutput: " + (System.currentTimeMillis() - startTime) );
    startTime = System.currentTimeMillis();
    types.TestOutputQueryResult r = qr.getResult();
    System.out.println("Time to call getresult: " + (System.currentTimeMillis() - startTime) );
    System.out.println("records returned: " + r.getRecordsReturned());
    for (int i = 0; i<atestValue; i++)
    types.TestOutput t = r.getTestOutputResults();
    System.out.println(t.getTestGroup() + ", " + t.getUnitNumber());
    catch (Exception e)
    e.printStackTrace();
    ** file wsmain.java
    package ws_issue.service;
    import java.rmi.RemoteException;
    import javax.xml.rpc.ServiceException;
    import javax.xml.rpc.server.ServiceLifecycle;
    public class wsmain implements ServiceLifecycle, ws_issueInterface
    public wsmain()
    public void init (Object p0) throws ServiceException
    public void destroy ()
    System.out.println("inside ws destroy");
    * create an element of the array with some hardcoded values
    private TestOutput createTestOutput(int cnt)
    TestOutput t = new TestOutput();
    t.setComments("here are some comments");
    t.setConfigRevisionNo("1");
    t.setItemNumber("123123123");
    t.setItemRevision("arev" + cnt);
    t.setTestGroup(cnt);
    t.setTestedItemNumber("123123123");
    t.setTestedItemRevision("arev" + cnt);
    t.setTestResult("testResult");
    t.setSoftwareVersion("version");
    t.setTestConditions("conditions");
    t.setStageName("world's a stage");
    t.setTestMode("Test");
    t.setTestName("test name");
    t.setUnitNumber("UnitNumber"+cnt);
    return t;
    * Web service function that is called
    * Create recCnt number of "records" to be returned
    public TestOutputQueryResult queryTestOutput (int recCnt) throws java.rmi.RemoteException
    System.out.println("Inside web service function queryTestOutput");
    TestOutputQueryResult r = new TestOutputQueryResult();
    TestOutput TOArray[] = new TestOutput[recCnt];
    for (int i = 0; i< recCnt; i++)
    TOArray = createTestOutput(i);
    r.setRecordsReturned(recCnt);
    r.setTestOutputResults(TOArray);
    System.out.println("End of web service function call");
    return r;
    * @param args
    public static void main(String[] args)
    wsmain wsmain = new wsmain();
    int aval = 5;
    try
    TestOutputQueryResult r = wsmain.queryTestOutput(aval);
    for (int i = 0; i<aval; i++)
    TestOutput t = r.getTestOutputResults();
    System.out.println(t.getTestGroup() + ", " + t.getUnitNumber());
    catch (Exception e)
    e.printStackTrace();
    ** file ws_issueInterface.java
    package ws_issue.service;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface ws_issueInterface extends java.rmi.Remote
    public TestOutputQueryResult queryTestOutput (int recCnt) throws java.rmi.RemoteException;
    ** file TestOutputQueryResult.java
    package ws_issue.service;
    public class TestOutputQueryResult
    private long recordsReturned;
    private TestOutput[] testOutputResults;
    public TestOutputQueryResult()
    public long getRecordsReturned()
    return recordsReturned;
    public void setRecordsReturned(long recordsReturned)
    this.recordsReturned = recordsReturned;
    public TestOutput[] getTestOutputResults()
    return testOutputResults;
    public void setTestOutputResults(TestOutput[] testOutputResults)
    this.testOutputResults = testOutputResults;
    ** file TestOutput.java
    package ws_issue.service;
    public class TestOutput
    private String itemNumber;
    private String itemRevision;
    private String configRevisionNo;
    private String testName;
    private String testConditions;
    private String stageName;
    private String testedItemNumber;
    private String testedItemRevision;
    private String unitNumber;
    private String testStation;
    private String testResult;
    private String softwareVersion;
    private String operatorID;
    private String testDate; // to be datetime
    private String comments;
    private int testGroup;
    private String testMode;
    public TestOutput()
    public String getComments()
    return comments;
    public void setComments(String comments)
    this.comments = comments;
    public String getConfigRevisionNo()
    return configRevisionNo;
    public void setConfigRevisionNo(String configRevisionNo)
    this.configRevisionNo = configRevisionNo;
    public String getItemNumber()
    return itemNumber;
    public void setItemNumber(String itemNumber)
    this.itemNumber = itemNumber;
    public String getItemRevision()
    return itemRevision;
    public void setItemRevision(String itemRevision)
    this.itemRevision = itemRevision;
    public String getOperatorID()
    return operatorID;
    public void setOperatorID(String operatorID)
    this.operatorID = operatorID;
    public String getSoftwareVersion()
    return softwareVersion;
    public void setSoftwareVersion(String softwareVersion)
    this.softwareVersion = softwareVersion;
    public String getStageName()
    return stageName;
    public void setStageName(String stageName)
    this.stageName = stageName;
    public String getTestConditions()
    return testConditions;
    public void setTestConditions(String testConditions)
    this.testConditions = testConditions;
    public String getTestDate()
    return testDate;
    public void setTestDate(String testDate)
    this.testDate = testDate;
    public String getTestName()
    return testName;
    public void setTestName(String testName)
    this.testName = testName;
    public String getTestResult()
    return testResult;
    public void setTestResult(String testResult)
    this.testResult = testResult;
    public String getTestStation()
    return testStation;
    public void setTestStation(String testStation)
    this.testStation = testStation;
    public String getTestedItemNumber()
    return testedItemNumber;
    public void setTestedItemNumber(String testedItemNumber)
    this.testedItemNumber = testedItemNumber;
    public String getTestedItemRevision()
    return testedItemRevision;
    public void setTestedItemRevision(String testedItemRevision)
    this.testedItemRevision = testedItemRevision;
    public String getUnitNumber()
    return unitNumber;
    public void setUnitNumber(String unitNumber)
    this.unitNumber = unitNumber;
    public int getTestGroup()
    return testGroup;
    public void setTestGroup(int testGroup)
    this.testGroup = testGroup;
    public String getTestMode()
    return testMode;
    public void setTestMode(String testMode)
    this.testMode = testMode;

    Many thanks for your help.  This solved the issue for our .NET code, however the leak is still present in the report designer.  I was also wondering if you could help further: because of the limits on the java memory process is there a way to ensure that a separate java process is started for each report that is loaded in my report viewers collection?  Essentially the desktop application that i have created uses a tab control to display each type report, so each tab goes through the following code when displaying a report and closing a tab:
    Is there a way to ensure that a different Java process is kicked off each time that I display a different report?  My current code in c# always uses the same Java process so the memory ramps up.  The code to load the report and then dispose of the report through closing the tab (and now the Java process) looks like this:
        private void LoadCrystalReport(string FullReportName)
          ReportDocument reportDoc = new ReportDocument();
          reportDoc.Load(FullReportName, OpenReportMethod.OpenReportByTempCopy);
          this.crystalReportViewer1.ReportSource = reportDoc;
        private void DisposeCrystalReportObject()
          if (crystalReportViewer1.ReportSource != null)
            ReportDocument report = (ReportDocument)crystalReportViewer1.ReportSource;
            foreach (Table table in report.Database.Tables)
              table.Dispose();
            report.Database.Dispose();
            report.Close();
            report.Dispose();
            GC.Collect();
    Thanks

  • Potential Memory Leak during Marshelling of a Web Service Response

    I believe I have found a memory leak when using the configuration below.
    The memory leak occurs when calling a web service. When the web service function is marshelling the response of the function call, an "500 Internal Server Error ... java.lang.OutOfMemoryError" is returned from OC4J. This error may be seen via the TCP Packet Monitor in JDeveloper.
    Unfortunately no exception dump is outputted to the OC4J log.
    Configuration:
    Windows 2000 with 1 gig ram
    JDeveloper 9.0.5.2 with JAX/RPC extension installed
    OC4J 10.0.3
    Sun JVM version 1.4.2_03-b02
    To demonstrate the error I created a simple web service and client. See below the client and web service function that demonstrates it.
    The web service is made up of a single function called "queryTestOutput".
    It returns an object of class "TestOutputQueryResult" which contains an int and an array.
    The function call accepts a one int input parameter which is used to vary the size of array in the returned object.
    For small int (less than 100). Web service function returns successfully.
    For larger int and depending on the size of memory configuration when OC4J is launched,
    the OutOfMemoryError is returned.
    The package "ws_issue.service" contains the web service.
    I used the Generate JAX-RPC proxy to build the client (found in package "ws_issue.client"). Package "types" was
    also created by Generate JAX-RPC proxy.
    To test the web service call execute the class runClient. Vary the int "atestValue" until error is returned.
    I have tried this with all three encodings: RPC/Encoded, RPC/Literal, Document/Literal. They have the
    same issue.
    The OutOfMemory Error is raised fairly consistently using the java settings -Xms386m -Xmx386m for OC4J when 750 is specified for the input parameter.
    I also noticed that when 600 is specified, the client seems to hang. According to the TCP Packet Monitor,
    the response is returned. But, the client seems unable to unmarshal the message.
    ** file runClient.java
    // -- this client is using Document/Literal
    package ws_issue.client;
    public class runClient
    public runClient()
    * @param args
    * Test out the web service
    * Play with the atestValue variable to until exception
    public static void main(String[] args)
    //runClient runClient = new runClient();
    long startTime;
    int atestValue = 1;
    atestValue = 2;
    //atestValue = 105; // last one to work with default memory settings in oc4j
    //atestValue = 106; // out of memory error as seen in TCP Packet Monitor
    // fails with default memory settings in oc4j
    //atestValue = 600; // hangs client (TCP Packet Monitor shows response)
    // when oc4j memory sessions are -Xms386m -Xmx386m
    atestValue = 750; // out of memory error as seen in TCP Packet Monitor
    // when oc4j memory sessions are -Xms386m -Xmx386m
    try
    startTime = System.currentTimeMillis();
    Ws_issueInterface ws = (Ws_issueInterface) (new Ws_issue_Impl().getWs_issueInterfacePort());
    System.out.println("Time to obtain port: " + (System.currentTimeMillis() - startTime) );
    // call the web service function
    startTime = System.currentTimeMillis();
    types.QueryTestOutputResponse qr = ws.queryTestOutput(new types.QueryTestOutput(atestValue));
    System.out.println("Time to call queryTestOutput: " + (System.currentTimeMillis() - startTime) );
    startTime = System.currentTimeMillis();
    types.TestOutputQueryResult r = qr.getResult();
    System.out.println("Time to call getresult: " + (System.currentTimeMillis() - startTime) );
    System.out.println("records returned: " + r.getRecordsReturned());
    for (int i = 0; i<atestValue; i++)
    types.TestOutput t = r.getTestOutputResults();
    System.out.println(t.getTestGroup() + ", " + t.getUnitNumber());
    catch (Exception e)
    e.printStackTrace();
    ** file wsmain.java
    package ws_issue.service;
    import java.rmi.RemoteException;
    import javax.xml.rpc.ServiceException;
    import javax.xml.rpc.server.ServiceLifecycle;
    public class wsmain implements ServiceLifecycle, ws_issueInterface
    public wsmain()
    public void init (Object p0) throws ServiceException
    public void destroy ()
    System.out.println("inside ws destroy");
    * create an element of the array with some hardcoded values
    private TestOutput createTestOutput(int cnt)
    TestOutput t = new TestOutput();
    t.setComments("here are some comments");
    t.setConfigRevisionNo("1");
    t.setItemNumber("123123123");
    t.setItemRevision("arev" + cnt);
    t.setTestGroup(cnt);
    t.setTestedItemNumber("123123123");
    t.setTestedItemRevision("arev" + cnt);
    t.setTestResult("testResult");
    t.setSoftwareVersion("version");
    t.setTestConditions("conditions");
    t.setStageName("world's a stage");
    t.setTestMode("Test");
    t.setTestName("test name");
    t.setUnitNumber("UnitNumber"+cnt);
    return t;
    * Web service function that is called
    * Create recCnt number of "records" to be returned
    public TestOutputQueryResult queryTestOutput (int recCnt) throws java.rmi.RemoteException
    System.out.println("Inside web service function queryTestOutput");
    TestOutputQueryResult r = new TestOutputQueryResult();
    TestOutput TOArray[] = new TestOutput[recCnt];
    for (int i = 0; i< recCnt; i++)
    TOArray[i] = createTestOutput(i);
    r.setRecordsReturned(recCnt);
    r.setTestOutputResults(TOArray);
    System.out.println("End of web service function call");
    return r;
    * @param args
    public static void main(String[] args)
    wsmain wsmain = new wsmain();
    int aval = 5;
    try
    TestOutputQueryResult r = wsmain.queryTestOutput(aval);
    for (int i = 0; i<aval; i++)
    TestOutput t = r.getTestOutputResults()[i];
    System.out.println(t.getTestGroup() + ", " + t.getUnitNumber());
    catch (Exception e)
    e.printStackTrace();
    ** file ws_issueInterface.java
    package ws_issue.service;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface ws_issueInterface extends java.rmi.Remote
    public TestOutputQueryResult queryTestOutput (int recCnt) throws java.rmi.RemoteException;
    ** file TestOutputQueryResult.java
    package ws_issue.service;
    public class TestOutputQueryResult
    private long recordsReturned;
    private TestOutput[] testOutputResults;
    public TestOutputQueryResult()
    public long getRecordsReturned()
    return recordsReturned;
    public void setRecordsReturned(long recordsReturned)
    this.recordsReturned = recordsReturned;
    public TestOutput[] getTestOutputResults()
    return testOutputResults;
    public void setTestOutputResults(TestOutput[] testOutputResults)
    this.testOutputResults = testOutputResults;
    ** file TestOutput.java
    package ws_issue.service;
    public class TestOutput
    private String itemNumber;
    private String itemRevision;
    private String configRevisionNo;
    private String testName;
    private String testConditions;
    private String stageName;
    private String testedItemNumber;
    private String testedItemRevision;
    private String unitNumber;
    private String testStation;
    private String testResult;
    private String softwareVersion;
    private String operatorID;
    private String testDate; // to be datetime
    private String comments;
    private int testGroup;
    private String testMode;
    public TestOutput()
    public String getComments()
    return comments;
    public void setComments(String comments)
    this.comments = comments;
    public String getConfigRevisionNo()
    return configRevisionNo;
    public void setConfigRevisionNo(String configRevisionNo)
    this.configRevisionNo = configRevisionNo;
    public String getItemNumber()
    return itemNumber;
    public void setItemNumber(String itemNumber)
    this.itemNumber = itemNumber;
    public String getItemRevision()
    return itemRevision;
    public void setItemRevision(String itemRevision)
    this.itemRevision = itemRevision;
    public String getOperatorID()
    return operatorID;
    public void setOperatorID(String operatorID)
    this.operatorID = operatorID;
    public String getSoftwareVersion()
    return softwareVersion;
    public void setSoftwareVersion(String softwareVersion)
    this.softwareVersion = softwareVersion;
    public String getStageName()
    return stageName;
    public void setStageName(String stageName)
    this.stageName = stageName;
    public String getTestConditions()
    return testConditions;
    public void setTestConditions(String testConditions)
    this.testConditions = testConditions;
    public String getTestDate()
    return testDate;
    public void setTestDate(String testDate)
    this.testDate = testDate;
    public String getTestName()
    return testName;
    public void setTestName(String testName)
    this.testName = testName;
    public String getTestResult()
    return testResult;
    public void setTestResult(String testResult)
    this.testResult = testResult;
    public String getTestStation()
    return testStation;
    public void setTestStation(String testStation)
    this.testStation = testStation;
    public String getTestedItemNumber()
    return testedItemNumber;
    public void setTestedItemNumber(String testedItemNumber)
    this.testedItemNumber = testedItemNumber;
    public String getTestedItemRevision()
    return testedItemRevision;
    public void setTestedItemRevision(String testedItemRevision)
    this.testedItemRevision = testedItemRevision;
    public String getUnitNumber()
    return unitNumber;
    public void setUnitNumber(String unitNumber)
    this.unitNumber = unitNumber;
    public int getTestGroup()
    return testGroup;
    public void setTestGroup(int testGroup)
    this.testGroup = testGroup;
    public String getTestMode()
    return testMode;
    public void setTestMode(String testMode)
    this.testMode = testMode;

    I use web services a lot and I sympathize with your issue. I
    struggle with similar issues and I found this great utility that
    will help you confirm if your webservice is returning the data
    correctly to Flex. I know you said it works in other applications
    but who knows if flex is calling it correctly etc. This utility is
    been the most amazing tool in helping me resolve web service
    issues.
    http://www.charlesproxy.com/
    Once you can confirm the data being returned is good you can
    try several things in flex. Try changing your result format to
    object or e4x etc. See how that plays out. Not sure where your
    tapping in to look at your debugger, you might want to catch it
    right at the result handler before converting to any collections. .
    If nothing here helps maybe post some code to look at. .
    .

  • Osx Lion memory leak: my MacBook pro is usable only 10 minutes after boot

    Hi all,
    10 minutes after boot it works just fine, but then it slows down and take centuries to open any application. Checked with Activity monitor:
    on a boot, no user applications running: Free memory: 2,35 Gb, Wired: 459,7 Mb, Active 3 Mb, Inactive: 1,18 Gb
    In 10 minutes, idle: Free memory: 8,4 Mb, Wired: 468,1 Mb, Active 2,36 Gb, Inactive: 1,17 Gb
    Somehow all the free memory leaks to the active one, without me doing anything. I tried launching several programs to see if the memory will get adjusted accordingly, but it does not. Time machine is stopped. Tried disk repair is CMD+R mode, fixed permissions, killed most of the user processes - no success.
    I've installed Lion on top of Snow Leopard a month ago and didnt feel any problems so far... Now my MacBook pro 2,4 GHz is completely useless, finally, after 6 years of seamless work :( Thanks, Lion
    Any ideas how to deal with it?
    Thanks,

    I do not see anything like this on my system which would lead me to believe you may have a defective installation. So, my suggestion:
    Install or Reinstall Lion from Scratch
    If possible backup your files to an external drive or second internal drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your startup volume (usually Macintosh HD) from the left side list. Click on the Erase tab in the DU main window.
    Set the format type to Mac OS Extended (Journaled.) Click on the Erase button and wait until the process has completed.
    Quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Install button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • Memory leak in external interface SetReturnValue?

    I'm having trouble with a memory leak in my application. I'm
    hoping someone out there can help me find a fix or workaround, or
    tell me what I'm doing wrong.
    The leak seems to be coming from the flash external
    interface; specifically, IShockwaveFlash.SetReturnValue(String). My
    application is written in Visual Basic 2008, connecting to Flash
    9.0.124.0 (activex version).
    I've written a fairly simple flash/VB program pair to
    illustrate the problem.
    The SWF contains a button, 2 dynamic text fields, and the
    ActionScript 2 code below.
    The VB project contains a Form with a AxShockwaveFlash object
    and the VB code below.
    When this program is run, and the button is clicked a lot
    (10's of thousands of times), the application's memory creeps up
    and never seems to fall back down. If the string passed to
    SetReturnValue is longer, memory is consumed faster. But if the
    call to SetReturnValue is commented-out, the application's memory
    usage remains stable.
    If anyone has any suggestions on how to proceed, I'd be
    grateful.
    (By the way: I'm using a freeware program called DoItAgain to
    automate the button pressing.)

    I have developed two simple Java and corresponding
    C++ classes. Use code tags when you post your code.
    You are missing a lot of error checking. JNI calls, every single one, will usually be followed by some sort of error checking. Any that access classes, methods, fields or allocate object must be followed by checks for java exceptions.
    You will need to reduce your code to a smaller sample. Otherwise it is unlikely anyone will look at it.
    You also need to specify how you know that a memory leak is occurring.

  • Memory leak for services.exe

    Hi,
    I have been observing memory leak for "Services.exe" process and which causes server hung issue. I am having server 2008 R2, hosting SQL server 2008 R2.
    the handle count for services.exe rises to its limit quickly and the casues the server hung issue.

    Hi,
    I agree with Milos that you can install Process Monitor to find the root reason for this issue:
    http://technet.microsoft.com/en-au/sysinternals/bb896645.aspx
    In addition, it may caused by some corrupt event logs, please make sure you have applied the Maximum log size setting for event logs appropriately.
    Best regards,
    Susie

  • External interface memory leak?

    Hello,
    I am embedding the flash player inside a Visual C++
    application. My program uses the external interface extensively.
    The external interface is called several times a second ( ~20 fps )
    each time a ~1k XML string is passed to the flash player.
    During execution the program increases its memory by ~10 Mega
    each hour. I have used the Umdh tool to try to locate the problem.
    It points to the line where the container program uses the external
    interface to call a function inside the swf movie.
    Below is a typical output of the Umdh tool:
    + 3396588 ( 3405883 - 9295) 261991 allocs BackTrace12EF
    + 261276 ( 261991 - 715) BackTrace12EF allocations
    ntdll!RtlpNtMakeTemporaryKey+000074D0
    ntdll!RtlInitializeSListHead+00010D08
    ntdll!wcsncat+00000224
    FlDbg9c!DllUnregisterServer+0010261A
    FlDbg9c!DllUnregisterServer+0010263C
    FlDbg9c!DllUnregisterServer+0000F1B7
    myProgram!CZFlash::CallFunction+0000004D (c:\documents and
    settings\amit\my documents\visual studio projects\ myProgram
    \zflash\zflash.cpp, 255)
    myProgram!MainDialogProc+000012A2 (c:\documents and
    settings\amit\my documents\visual studio projects\ myProgram
    \w32\maindlg.cpp, 2324)
    USER32!GetDC+0000006D
    USER32!PrivateExtractIconExW+000002B2
    USER32!PrivateExtractIconExW+000000FE
    USER32!DefDlgProcW+00000022
    USER32!GetDC+0000006D
    USER32!GetDC+0000014F
    USER32!IsWindowUnicode+000000A1
    USER32!CallWindowProcW+0000001B
    COMCTL32!Ordinal11+00000328
    COMCTL32!RemoveWindowSubclass+0000017E
    COMCTL32!DefSubclassProc+00000046
    COMCTL32!Ordinal389+000028DF
    COMCTL32!RemoveWindowSubclass+0000017E
    COMCTL32!DefSubclassProc+00000046
    COMCTL32!Ordinal389+000028DF
    COMCTL32!RemoveWindowSubclass+0000017E
    COMCTL32!DefSubclassProc+00000046
    COMCTL32!Ordinal389+000028DF
    COMCTL32!RemoveWindowSubclass+0000017E
    COMCTL32!DefSubclassProc+00000046
    COMCTL32!Ordinal389+000028DF
    COMCTL32!RemoveWindowSubclass+0000017E
    COMCTL32!DefSubclassProc+00000046
    COMCTL32!Ordinal389+000028DF
    The System.totalMemory value of the flash player ranges from
    2.2 Mbyte to 3.2. I tried using memory leak detection software like
    IBM's Purify but couldn't find the problem.
    I also tried to disable the BSTR caching by setting the
    environment variable OANOCACHE, but the memory of my program
    continues to increase.
    Below is my C++ code. The m_iflash object is a pointer to the
    ActiveX of the flash player.
    wstring CZFlash::CallFunction(wstring call_string)
    BSTR pcall_string = SysAllocString(call_string.c_str());
    BSTR presponse = NULL;
    HRESULT status = m_iflash->CallFunction(pcall_string,
    &presponse);
    SysFreeString(pcall_string);
    if (status != S_OK)
    if (presponse != NULL)
    SysFreeString(presponse);
    return L"";
    wstring sresponse(presponse);
    SysFreeString(presponse);
    return sresponse;
    Currently the swf movie contains only action script that
    displays the System.totalMemory value and an empty function that
    the external interface calls.
    Any help will be appreciated.
    Thanks in advance,
    Amit

    Hello,
    Thanks for coming to National Instruments Discussion Forum.
    Can you give us more details about your application? Basically, I can’t find your main VI for your User Interface. Can you also give us the different steps to do to run your application and reproduce your problem?
    Generally speaking, your code on your block diagram have to be displayable in one screen.
    Benjamin R.
    R&D Software Development Manager
    http://www.fluigent.com/

  • Memory Leaks in JMS C Interface

    Hello,
              I am experiencing a memory leak while invoking the JmsConsumerReceive()
              as a synchronous call (blocking) in a loop. I am running against
              Weblogic 8.1 with wljmsclient.jar and wlclient.jar in the CLASSPATH. We
              are using a Topic. Every Producer and Consumer has their own Session.
              I have a test case reduced to the pseudocode below:
              for 1 to 100 do {
              JmsConsumerReceive(jmsConsumerPtr, 0, &jmsMessage, 0);
              JmsMessageDestroy(jmsMessage, 0);
              An entirely different process is doing the sends to the topic. We seem
              to be losing 240K every 100 messages. What am I doing wrong? Do we
              need to crawl around inside the message doing things like using
              JmsTextMessageGetText() to grab the JmsString struct so we can free its
              members? The example in the JAR file is very spotty when it comes to
              memory mangement. It appears that JmsMessageDestroy() does not suffice.
              But also doing a free on jmsMessage crashes the process.
              Unfortunately, we are calling out from a different VM, so our ability to
              debug the API code is limited.
              It seems that some sort of Java objects are being created and sticking
              around. I thought that there may be some exceptions, but using
              JmsGetLastException() in this situation doesn't turn anything up.
              What am I missing?
              --PKS                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    While I don't know where the memory leak is, you might try narrow down the problem by using the full "weblogic.jar" instead of "wljmsclient.jar+wlcient.jar" and a URL that starts with "t3". This enables a faster, lighter-weight protocol than the thin client jars use, and it would be interesting to see if it fixes the memory leak.
              Tom, BEA

  • Network manager takes lot of time during boot

    HOw to reduce my networkmanager boot time
    Below is my systemd-analyze time
    [root@gauranga simha]# systemd-analyze time
    Startup finished in 5449ms (kernel) + 82854ms (userspace) = 88303ms
    Below is my systemd-analyze blame
    [root@gauranga simha]# systemd-analyze blame
    39261ms NetworkManager.service
    13083ms mysqld.service
    3764ms sys-kernel-debug.mount
    3733ms dev-mqueue.mount
    3720ms dev-hugepages.mount
    3566ms systemd-remount-fs.service
    3423ms systemd-binfmt.service
    3342ms systemd-vconsole-setup.service
    3038ms proc-sys-fs-binfmt_misc.mount
    2349ms media-GAUR.mount
    1954ms polkit.service
    1938ms colord.service
    1226ms systemd-udevd.service
    970ms bluetooth.service
    934ms systemd-logind.service
    881ms systemd-udev-trigger.service
    460ms systemd-sysctl.service
    439ms systemd-modules-load.service
    426ms dev-sda6.swap
    410ms systemd-tmpfiles-setup.service
    256ms httpd.service
    229ms systemd-readahead-replay.service
    80ms systemd-readahead-collect.service
    54ms udisks2.service
    53ms console-kit-log-system-start.service
    52ms wpa_supplicant.service
    49ms console-kit-daemon.service
    19ms systemd-user-sessions.service
    19ms tmp.mount
    14ms rtkit-daemon.service
    8ms modem-manager.service
    5ms upower.service
    1ms sys-fs-fuse-connections.mount
    Output for journalctl -b
    [root@gauranga simha]# journalctl -b
    -- Logs begin at Mon 2013-03-11 15:14:32 IST, end at Fri 2013-03-22 18:34:03 IST. --
    Mar 22 18:32:32 gauranga systemd-journal[114]: Allowing runtime journal files to grow to 145.1M.
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys cpuset
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys cpu
    Mar 22 18:32:32 gauranga kernel: Linux version 3.5.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Sep 15 13:
    Mar 22 18:32:32 gauranga kernel: Disabled fast string operations
    Mar 22 18:32:32 gauranga kernel: e820: BIOS-provided physical RAM map:
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000b64e0fff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b64e1000-0x00000000b64e3fff] ACPI NVS
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b64e4000-0x00000000b7a6afff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7a6b000-0x00000000b7abefff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7abf000-0x00000000b7b84fff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7b85000-0x00000000b7bbefff] ACPI NVS
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7bbf000-0x00000000b7be3fff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7be4000-0x00000000b7bf6fff] ACPI data
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7bf7000-0x00000000b7bfffff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7c00000-0x00000000bfffffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
    Mar 22 18:32:32 gauranga kernel: Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    Mar 22 18:32:32 gauranga kernel: DMI 2.4 present.
    Mar 22 18:32:32 gauranga kernel: DMI: Sony Corporation VGN-CS230J/VAIO, BIOS R1100Q2 09/01/2009
    Mar 22 18:32:32 gauranga kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Mar 22 18:32:32 gauranga kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Mar 22 18:32:32 gauranga kernel: e820: last_pfn = 0xb7c00 max_arch_pfn = 0x100000
    Mar 22 18:32:32 gauranga kernel: MTRR default type: uncachable
    Mar 22 18:32:32 gauranga kernel: MTRR fixed ranges enabled:
    Mar 22 18:32:32 gauranga kernel: 00000-9FFFF write-back
    Mar 22 18:32:32 gauranga kernel: A0000-BFFFF uncachable
    Mar 22 18:32:32 gauranga kernel: C0000-C7FFF write-through
    Mar 22 18:32:32 gauranga kernel: C8000-FFFFF uncachable
    Mar 22 18:32:32 gauranga kernel: MTRR variable ranges enabled:
    Mar 22 18:32:32 gauranga kernel: 0 base 0FFF00000 mask FFFF00000 write-protect
    Mar 22 18:32:32 gauranga kernel: 1 base 000000000 mask F80000000 write-back
    Mar 22 18:32:32 gauranga kernel: 2 base 080000000 mask FC0000000 write-back
    Mar 22 18:32:32 gauranga kernel: 3 base 0B8000000 mask FF8000000 uncachable
    Mar 22 18:32:32 gauranga kernel: 4 disabled
    Mar 22 18:32:32 gauranga kernel: 5 base 100000000 mask FC0000000 write-back
    Mar 22 18:32:32 gauranga kernel: 6 disabled
    Mar 22 18:32:32 gauranga kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 22 18:32:32 gauranga kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Mar 22 18:32:32 gauranga kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Mar 22 18:32:32 gauranga kernel: init_memory_mapping: [mem 0x00000000-0x377fdfff]
    Mar 22 18:32:32 gauranga kernel: [mem 0x00000000-0x003fffff] page 4k
    Mar 22 18:32:32 gauranga kernel: [mem 0x00400000-0x373fffff] page 2M
    Mar 22 18:32:32 gauranga kernel: [mem 0x37400000-0x377fdfff] page 4k
    Mar 22 18:32:32 gauranga kernel: kernel direct mapping tables up to 0x377fdfff @ [mem 0x01bfa000-0x01bfffff]
    Mar 22 18:32:32 gauranga kernel: RAMDISK: [mem 0x37966000-0x37caafff]
    Mar 22 18:32:32 gauranga kernel: Allocated new RAMDISK: [mem 0x374b9000-0x377fd447]
    Mar 22 18:32:32 gauranga kernel: Move RAMDISK from [mem 0x37966000-0x37caa447] to [mem 0x374b9000-0x377fd447]
    Mar 22 18:32:32 gauranga kernel: ACPI: RSDP 000fe020 00024 (v02 Sony)
    Mar 22 18:32:32 gauranga kernel: ACPI: XSDT b7bf6120 0006C (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: FACP b7bf5000 000F4 (v04 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: DSDT b7bea000 0674D (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: FACS b7b92000 00040
    Mar 22 18:32:32 gauranga kernel: ACPI: HPET b7bf4000 00038 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: APIC b7bf3000 0006C (v02 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: MCFG b7bf2000 0003C (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: ASF! b7bf1000 000A5 (v32 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SLIC b7be9000 00176 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: BOOT b7be8000 00028 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7be7000 000D9 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7be4000 00655 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Local APIC address 0xfee00000
    Mar 22 18:32:32 gauranga kernel: 2052MB HIGHMEM available.
    Mar 22 18:32:32 gauranga kernel: 887MB LOWMEM available.
    Mar 22 18:32:32 gauranga kernel: mapped low ram: 0 - 377fe000
    Mar 22 18:32:32 gauranga kernel: low ram: 0 - 377fe000
    Mar 22 18:32:32 gauranga kernel: Zone ranges:
    Mar 22 18:32:32 gauranga kernel: DMA [mem 0x00010000-0x00ffffff]
    Mar 22 18:32:32 gauranga kernel: Normal [mem 0x01000000-0x377fdfff]
    Mar 22 18:32:32 gauranga kernel: HighMem [mem 0x377fe000-0xb7bfffff]
    Mar 22 18:32:32 gauranga kernel: Movable zone start for each node
    Mar 22 18:32:32 gauranga kernel: Early memory node ranges
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0x00010000-0x0009efff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0x00100000-0xb64e0fff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb64e4000-0xb7a6afff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb7abf000-0xb7b84fff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb7bbf000-0xb7be3fff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb7bf7000-0xb7bfffff]
    Mar 22 18:32:32 gauranga kernel: On node 0 totalpages: 752363
    Mar 22 18:32:32 gauranga kernel: free_area_init_node: node 0, pgdat c1539c40, node_mem_map f5dc0200
    Mar 22 18:32:32 gauranga kernel: DMA zone: 32 pages used for memmap
    Mar 22 18:32:32 gauranga kernel: DMA zone: 0 pages reserved
    Mar 22 18:32:32 gauranga kernel: DMA zone: 3951 pages, LIFO batch:0
    Mar 22 18:32:32 gauranga kernel: Normal zone: 1744 pages used for memmap
    Mar 22 18:32:32 gauranga kernel: Normal zone: 221486 pages, LIFO batch:31
    Mar 22 18:32:32 gauranga kernel: HighMem zone: 4105 pages used for memmap
    Mar 22 18:32:32 gauranga kernel: HighMem zone: 521045 pages, LIFO batch:31
    Mar 22 18:32:32 gauranga kernel: Using APIC driver default
    Mar 22 18:32:32 gauranga kernel: ACPI: PM-Timer IO Port: 0x408
    Mar 22 18:32:32 gauranga kernel: ACPI: Local APIC address 0xfee00000
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Mar 22 18:32:32 gauranga kernel: IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Mar 22 18:32:32 gauranga kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 22 18:32:32 gauranga kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Mar 22 18:32:32 gauranga kernel: ACPI: IRQ0 used by override.
    Mar 22 18:32:32 gauranga kernel: ACPI: IRQ2 used by override.
    Mar 22 18:32:32 gauranga kernel: ACPI: IRQ9 used by override.
    Mar 22 18:32:32 gauranga kernel: Using ACPI (MADT) for SMP configuration information
    Mar 22 18:32:32 gauranga kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Mar 22 18:32:32 gauranga kernel: SMP: Allowing 4 CPUs, 2 hotplug CPUs
    Mar 22 18:32:32 gauranga kernel: nr_irqs_gsi: 40
    Mar 22 18:32:32 gauranga kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Mar 22 18:32:32 gauranga kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Mar 22 18:32:32 gauranga kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Mar 22 18:32:32 gauranga kernel: e820: [mem 0xc0000000-0xf7ffffff] available for PCI devices
    Mar 22 18:32:32 gauranga kernel: Booting paravirtualized kernel on bare hardware
    Mar 22 18:32:32 gauranga kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    Mar 22 18:32:32 gauranga kernel: PERCPU: Embedded 13 pages/cpu @f5d7a000 s31616 r0 d21632 u53248
    Mar 22 18:32:32 gauranga kernel: pcpu-alloc: s31616 r0 d21632 u53248 alloc=13*4096
    Mar 22 18:32:32 gauranga kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    Mar 22 18:32:32 gauranga kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 746482
    Mar 22 18:32:32 gauranga kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=de9c1526-30ec-4261-a7fe-c21f74aefba0 ro resume=/dev/sda6 quiet
    Mar 22 18:32:32 gauranga kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Mar 22 18:32:32 gauranga kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Mar 22 18:32:32 gauranga kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Mar 22 18:32:32 gauranga kernel: __ex_table already sorted, skipping sort
    Mar 22 18:32:32 gauranga kernel: Initializing CPU#0
    Mar 22 18:32:32 gauranga kernel: xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Mar 22 18:32:32 gauranga kernel: allocated 6020992 bytes of page_cgroup
    Mar 22 18:32:32 gauranga kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mar 22 18:32:32 gauranga kernel: Initializing HighMem for node 0 (000377fe:000b7c00)
    Mar 22 18:32:32 gauranga kernel: Memory: 2968736k/3010560k available (3896k kernel code, 40716k reserved, 1491k data, 532k init, 2100600k highmem)
    Mar 22 18:32:32 gauranga kernel: [379B blob data]
    Mar 22 18:32:32 gauranga kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Mar 22 18:32:32 gauranga kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Mar 22 18:32:32 gauranga kernel: Preemptible hierarchical RCU implementation.
    Mar 22 18:32:32 gauranga kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Mar 22 18:32:32 gauranga kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Mar 22 18:32:32 gauranga kernel: NR_IRQS:2304 nr_irqs:712 16
    Mar 22 18:32:32 gauranga kernel: CPU 0 irqstacks, hard=f500a000 soft=f500c000
    Mar 22 18:32:32 gauranga kernel: Extended CMOS year: 2000
    Mar 22 18:32:32 gauranga kernel: Console: colour dummy device 80x25
    Mar 22 18:32:32 gauranga kernel: console [tty0] enabled
    Mar 22 18:32:32 gauranga kernel: hpet clockevent registered
    Mar 22 18:32:32 gauranga kernel: Fast TSC calibration using PIT
    Mar 22 18:32:32 gauranga kernel: Detected 2394.003 MHz processor.
    Mar 22 18:32:32 gauranga kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.50 BogoMIPS (lpj=7980010)
    Mar 22 18:32:32 gauranga kernel: pid_max: default: 32768 minimum: 301
    Mar 22 18:32:32 gauranga kernel: Security Framework initialized
    Mar 22 18:32:32 gauranga kernel: AppArmor: AppArmor disabled by boot time parameter
    Mar 22 18:32:32 gauranga kernel: Mount-cache hash table entries: 512
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys cpuacct
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys memory
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys devices
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys freezer
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys net_cls
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys blkio
    Mar 22 18:32:32 gauranga kernel: Disabled fast string operations
    Mar 22 18:32:32 gauranga kernel: CPU: Physical Processor ID: 0
    Mar 22 18:32:32 gauranga kernel: CPU: Processor Core ID: 0
    Mar 22 18:32:32 gauranga kernel: mce: CPU supports 6 MCE banks
    Mar 22 18:32:32 gauranga kernel: CPU0: Thermal monitoring handled by SMI
    Mar 22 18:32:32 gauranga kernel: using mwait in idle threads.
    Mar 22 18:32:32 gauranga kernel: ACPI: Core revision 20120320
    Mar 22 18:32:32 gauranga kernel: ftrace: allocating 17053 entries in 34 pages
    Mar 22 18:32:32 gauranga kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Mar 22 18:32:32 gauranga kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mar 22 18:32:32 gauranga kernel: CPU0: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz stepping 0a
    Mar 22 18:32:32 gauranga kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    Mar 22 18:32:32 gauranga kernel: ... version: 2
    Mar 22 18:32:32 gauranga kernel: ... bit width: 40
    Mar 22 18:32:32 gauranga kernel: ... generic registers: 2
    Mar 22 18:32:32 gauranga kernel: ... value mask: 000000ffffffffff
    Mar 22 18:32:32 gauranga kernel: ... max period: 000000007fffffff
    Mar 22 18:32:32 gauranga kernel: ... fixed-purpose events: 3
    Mar 22 18:32:32 gauranga kernel: ... event mask: 0000000700000003
    Mar 22 18:32:32 gauranga kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Mar 22 18:32:32 gauranga kernel: CPU 1 irqstacks, hard=f50f8000 soft=f50fa000
    Mar 22 18:32:32 gauranga kernel: Initializing CPU#1
    Mar 22 18:32:32 gauranga kernel: Disabled fast string operations
    Mar 22 18:32:32 gauranga kernel: CPU1: Thermal monitoring handled by SMI
    Mar 22 18:32:32 gauranga kernel: Booting Node 0, Processors #1
    Mar 22 18:32:32 gauranga kernel: Brought up 2 CPUs
    Mar 22 18:32:32 gauranga kernel: Total of 2 processors activated (9579.01 BogoMIPS).
    Mar 22 18:32:32 gauranga kernel: devtmpfs: initialized
    Mar 22 18:32:32 gauranga kernel: PM: Registering ACPI NVS region [mem 0xb64e1000-0xb64e3fff] (12288 bytes)
    Mar 22 18:32:32 gauranga kernel: PM: Registering ACPI NVS region [mem 0xb7b85000-0xb7bbefff] (237568 bytes)
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 16
    Mar 22 18:32:32 gauranga kernel: ACPI: bus type pci registered
    Mar 22 18:32:32 gauranga kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    Mar 22 18:32:32 gauranga kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Mar 22 18:32:32 gauranga kernel: PCI: Using MMCONFIG for extended config space
    Mar 22 18:32:32 gauranga kernel: PCI: Using configuration type 1 for base access
    Mar 22 18:32:32 gauranga kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Mar 22 18:32:32 gauranga kernel: mtrr: probably your BIOS does not setup all CPUs.
    Mar 22 18:32:32 gauranga kernel: mtrr: corrected configuration.
    Mar 22 18:32:32 gauranga kernel: bio: create slab <bio-0> at 0
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(Module Device)
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(Processor Device)
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Mar 22 18:32:32 gauranga kernel: ACPI: EC: Look up EC in DSDT
    Mar 22 18:32:32 gauranga kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Mar 22 18:32:32 gauranga kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a76c18 00265 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 00265 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a74618 005B3 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 005B3 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a75e18 001CF (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 001CF (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a76f18 0008D (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 0008D (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Interpreter enabled
    Mar 22 18:32:32 gauranga kernel: ACPI: (supports S0 S3 S4 S5)
    Mar 22 18:32:32 gauranga kernel: ACPI: Using IOAPIC for interrupt routing
    Mar 22 18:32:32 gauranga kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Mar 22 18:32:32 gauranga kernel: ACPI: No dock devices found.
    Mar 22 18:32:32 gauranga kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: PCI host bridge to bus 0000:00
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    Mar 22 18:32:32 gauranga kernel: DMAR: Forcing write-buffer flush capability
    Mar 22 18:32:32 gauranga kernel: DMAR: Disabling IOMMU for graphics on this chipset
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: reg 20: [io 0x60f0-0x60f7]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.1: reg 10: [mem 0xd3400000-0xd34fffff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.0: reg 20: [io 0x60c0-0x60df]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.1: reg 20: [io 0x60a0-0x60bf]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.7: reg 10: [mem 0xd6804c00-0xd6804fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1b.0: reg 10: [mem 0xd6800000-0xd6803fff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.0: reg 20: [io 0x6080-0x609f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.1: reg 20: [io 0x6060-0x607f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.2: reg 20: [io 0x6040-0x605f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.7: reg 10: [mem 0xd6804800-0xd6804bff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 10: [io 0x60e8-0x60ef]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 14: [io 0x60fc-0x60ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 18: [io 0x60e0-0x60e7]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 1c: [io 0x60f8-0x60fb]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 20: [io 0x6020-0x603f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 24: [mem 0xd6804000-0xd68047ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.3: reg 10: [mem 0xd6805000-0xd68050ff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.3: reg 20: [io 0x6000-0x601f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: [11ab:4354] type 00 class 0x020000
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: reg 10: [mem 0xd5700000-0xd5703fff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: reg 18: [io 0x4000-0x40ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: supports D1 D2
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [io 0x4000-0x5fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd5700000-0xd67fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:03:00.0: [8086:4232] type 00 class 0x028000
    Mar 22 18:32:32 gauranga kernel: pci 0000:03:00.0: reg 10: [mem 0xd4600000-0xd4601fff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd4600000-0xd56fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: PCI bridge to [bus 04-05]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [io 0x2000-0x2fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd3600000-0xd45fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.0: [1180:0832] type 00 class 0x0c0010
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.0: reg 10: [mem 0xd3500000-0xd35007ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: [1180:0822] type 00 class 0x080500
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: reg 10: [mem 0xd3500900-0xd35009ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: supports D1 D2
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: [1180:0592] type 00 class 0x088000
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: reg 10: [mem 0xd3500800-0xd35008ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: supports D1 D2
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: PCI bridge to [bus 06-06] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0xd3500000-0xd35fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: on NUMA node 0
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT]
    Mar 22 18:32:32 gauranga kernel: pci0000:00: Requesting ACPI _OSC control (0x1d)
    Mar 22 18:32:32 gauranga kernel: pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    Mar 22 18:32:32 gauranga kernel: ACPI _OSC control for PCIe not granted, disabling ASPM
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Mar 22 18:32:32 gauranga kernel: vgaarb: loaded
    Mar 22 18:32:32 gauranga kernel: vgaarb: bridge control possible 0000:00:02.0
    Mar 22 18:32:32 gauranga kernel: PCI: Using ACPI for IRQ routing
    Mar 22 18:32:32 gauranga kernel: PCI: pci_cache_line_size set to 64 bytes
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb64e1000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7a6b000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7b85000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7be4000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7c00000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: NetLabel: Initializing
    Mar 22 18:32:32 gauranga kernel: NetLabel: domain hash size = 128
    Mar 22 18:32:32 gauranga kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Mar 22 18:32:32 gauranga kernel: NetLabel: unlabeled traffic allowed by default
    Mar 22 18:32:32 gauranga kernel: HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Mar 22 18:32:32 gauranga kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Mar 22 18:32:32 gauranga kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Mar 22 18:32:32 gauranga kernel: Switching to clocksource hpet
    Mar 22 18:32:32 gauranga kernel: pnp: PnP ACPI init
    Mar 22 18:32:32 gauranga kernel: ACPI: bus type pnp registered
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [bus 00-ff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0xc0000000-0xfebfffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x002e-0x002f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x004e-0x004f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x164e-0x164f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0061]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0070]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0080]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0092]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x00b2-0x00b3]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0063]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0065]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0067]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0200-0x020f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0600-0x060f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0610]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0800-0x080f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0810-0x0817]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0820-0x0823]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0400-0x047f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0500-0x053f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xf8000000-0xfbffffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed10000-0xfed13fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfec00000-0xfec00fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed20000-0xfed3ffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed40000-0xfed44fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed45000-0xfed8ffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfee00000-0xfee00fff]
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x164e-0x164f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0200-0x020f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0600-0x060f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0610] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0800-0x080f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0810-0x0817] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0820-0x0823] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0400-0x047f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0500-0x053f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x0000-0x001f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x0081-0x0091]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x0093-0x009f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x00c0-0x00df]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [dma 4]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:03: [io 0x0070-0x0077]
    Mar 22 18:32:32 gauranga kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: [irq 0 disabled]
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: [irq 8]
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: [mem 0xfed00000-0xfed003ff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:05: [io 0x00f0]
    Mar 22 18:32:32 gauranga kernel: pnp 00:05: [irq 13]
    Mar 22 18:32:32 gauranga kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: [io 0x0060]
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: [io 0x0064]
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: [irq 1]
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:07: [irq 12]
    Mar 22 18:32:32 gauranga kernel: pnp 00:07: Plug and Play ACPI device, IDs SNY900f PNP0f13 (active)
    Mar 22 18:32:32 gauranga kernel: pnp: PnP ACPI: found 8 devices
    Mar 22 18:32:32 gauranga kernel: ACPI: ACPI bus type pnp unregistered
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [io 0x4000-0x5fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd5700000-0xd67fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd4600000-0xd56fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: PCI bridge to [bus 04-05]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [io 0x2000-0x2fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd3600000-0xd45fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: PCI bridge to [bus 06-06]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0xd3500000-0xd35fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: enabling device (0000 -> 0003)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:02: resource 0 [io 0x4000-0x5fff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:02: resource 1 [mem 0xd5700000-0xd67fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:03: resource 1 [mem 0xd4600000-0xd56fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:04: resource 0 [io 0x2000-0x2fff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:04: resource 1 [mem 0xd3600000-0xd45fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:04: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 1 [mem 0xd3500000-0xd35fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 5 [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 7 [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 2
    Mar 22 18:32:32 gauranga kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Mar 22 18:32:32 gauranga kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Mar 22 18:32:32 gauranga kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Mar 22 18:32:32 gauranga kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Mar 22 18:32:32 gauranga kernel: TCP: reno registered
    Mar 22 18:32:32 gauranga kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Mar 22 18:32:32 gauranga kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 1
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: Boot video device
    Mar 22 18:32:32 gauranga kernel: PCI: CLS 64 bytes, default 64
    Mar 22 18:32:32 gauranga kernel: Unpacking initramfs...
    Mar 22 18:32:32 gauranga kernel: Freeing initrd memory: 3348k freed
    Mar 22 18:32:32 gauranga kernel: Simple Boot Flag value 0x5 read from CMOS RAM was invalid
    Mar 22 18:32:32 gauranga kernel: Simple Boot Flag at 0x44 set to 0x1
    Mar 22 18:32:32 gauranga kernel: apm: BIOS not found.
    Mar 22 18:32:32 gauranga kernel: audit: initializing netlink socket (disabled)
    Mar 22 18:32:32 gauranga kernel: type=2000 audit(1363957344.346:1): initialized
    Mar 22 18:32:32 gauranga kernel: highmem bounce pool size: 64 pages
    Mar 22 18:32:32 gauranga kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Mar 22 18:32:32 gauranga kernel: VFS: Disk quotas dquot_6.5.2
    Mar 22 18:32:32 gauranga kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Mar 22 18:32:32 gauranga kernel: msgmni has been set to 1702
    Mar 22 18:32:32 gauranga kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Mar 22 18:32:32 gauranga kernel: io scheduler noop registered
    Mar 22 18:32:32 gauranga kernel: io scheduler deadline registered
    Mar 22 18:32:32 gauranga kernel: io scheduler cfq registered (default)
    Mar 22 18:32:32 gauranga kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: pcieport 0000:00:1c.2: irq 41 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: vesafb: mode is 1280x800x32, linelength=5120, pages=0
    Mar 22 18:32:32 gauranga kernel: vesafb: scrolling: redraw
    Mar 22 18:32:32 gauranga kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Mar 22 18:32:32 gauranga kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 4032k, total 4032k
    Mar 22 18:32:32 gauranga kernel: Console: switching to colour frame buffer device 160x50
    Mar 22 18:32:32 gauranga kernel: fb0: VESA VGA frame buffer device
    Mar 22 18:32:32 gauranga kernel: intel_idle: does not run on family 6 model 23
    Mar 22 18:32:32 gauranga kernel: GHES: HEST is not enabled!
    Mar 22 18:32:32 gauranga kernel: isapnp: Scanning for PnP cards...
    Mar 22 18:32:32 gauranga kernel: isapnp: No Plug & Play device found
    Mar 22 18:32:32 gauranga kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Mar 22 18:32:32 gauranga kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
    Mar 22 18:32:32 gauranga kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Mar 22 18:32:32 gauranga kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Mar 22 18:32:32 gauranga kernel: mousedev: PS/2 mouse device common for all mice
    Mar 22 18:32:32 gauranga kernel: rtc_cmos 00:03: RTC can wake from S4
    Mar 22 18:32:32 gauranga kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Mar 22 18:32:32 gauranga kernel: rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Mar 22 18:32:32 gauranga kernel: cpuidle: using governor ladder
    Mar 22 18:32:32 gauranga kernel: cpuidle: using governor menu
    Mar 22 18:32:32 gauranga kernel: drop_monitor: Initializing network drop monitor service
    Mar 22 18:32:32 gauranga kernel: TCP: cubic registered
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 10
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 17
    Mar 22 18:32:32 gauranga kernel: Key type dns_resolver registered
    Mar 22 18:32:32 gauranga kernel: Using IPI No-Shortcut mode
    Mar 22 18:32:32 gauranga kernel: PM: Checking hibernation image partition /dev/sda6
    Mar 22 18:32:32 gauranga kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Mar 22 18:32:32 gauranga kernel: PM: Hibernation image not present or could not be loaded.
    Mar 22 18:32:32 gauranga kernel: registered taskstats version 1
    Mar 22 18:32:32 gauranga kernel: rtc_cmos 00:03: setting system clock to 2013-03-22 13:02:25 UTC (1363957345)
    Mar 22 18:32:32 gauranga kernel: Freeing unused kernel memory: 532k freed
    Mar 22 18:32:32 gauranga kernel: Write protecting the kernel text: 3900k
    Mar 22 18:32:32 gauranga kernel: Write protecting the kernel read-only data: 1136k
    Mar 22 18:32:32 gauranga systemd-udevd[39]: starting version 197
    Mar 22 18:32:32 gauranga kernel: Linux agpgart interface v0.103
    Mar 22 18:32:32 gauranga kernel: [drm] Initialized drm 1.1.0 20060810
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: detected 131072K stolen memory
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    Mar 22 18:32:32 gauranga kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    Mar 22 18:32:32 gauranga kernel: ACPI: Power Button [PWRB]
    Mar 22 18:32:32 gauranga kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    Mar 22 18:32:32 gauranga kernel: ACPI: Lid Switch [LID0]
    Mar 22 18:32:32 gauranga kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Mar 22 18:32:32 gauranga kernel: ACPI: Power Button [PWRF]
    Mar 22 18:32:32 gauranga kernel: checking generic (c0000000 3f0000) vs hw (c0000000 10000000)
    Mar 22 18:32:32 gauranga kernel: fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    Mar 22 18:32:32 gauranga kernel: Console: switching to colour dummy device 80x25
    Mar 22 18:32:32 gauranga kernel: i915 0000:00:02.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: i915 0000:00:02.0: irq 43 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Mar 22 18:32:32 gauranga kernel: [drm] Driver supports precise vblank timestamp query.
    Mar 22 18:32:32 gauranga kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Mar 22 18:32:32 gauranga kernel: fbcon: inteldrmfb (fb0) is primary device
    Mar 22 18:32:32 gauranga kernel: Refined TSC clocksource calibration: 2393.999 MHz.
    Mar 22 18:32:32 gauranga kernel: Switching to clocksource tsc
    Mar 22 18:32:32 gauranga kernel: Console: switching to colour frame buffer device 160x50
    Mar 22 18:32:32 gauranga kernel: fb0: inteldrmfb frame buffer device
    Mar 22 18:32:32 gauranga kernel: drm: registered panic notifier
    Mar 22 18:32:32 gauranga kernel: acpi device:02: registered as cooling_device0
    Mar 22 18:32:32 gauranga kernel: ACPI: Video Device [OVGA] (multi-head: yes rom: no post: no)
    Mar 22 18:32:32 gauranga kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    Mar 22 18:32:32 gauranga kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Mar 22 18:32:32 gauranga kernel: ACPI: bus type usb registered
    Mar 22 18:32:32 gauranga kernel: usbcore: registered new interface driver usbfs
    Mar 22 18:32:32 gauranga kernel: usbcore: registered new interface driver hub
    Mar 22 18:32:32 gauranga kernel: usbcore: registered new device driver usb
    Mar 22 18:32:32 gauranga kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: debug port 1
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: irq 19, io mem 0xd6804c00
    Mar 22 18:32:32 gauranga kernel: SCSI subsystem initialized
    Mar 22 18:32:32 gauranga kernel: libata version 3.00 loaded.
    Mar 22 18:32:32 gauranga kernel: firewire_ohci 0000:06:02.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Mar 22 18:32:32 gauranga kernel: sdhci: Secure Digital Host Controller Interface driver
    Mar 22 18:32:32 gauranga kernel: sdhci: Copyright(c) Pierre Ossman
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Mar 22 18:32:32 gauranga kernel: hub 1-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 1-0:1.0: 4 ports detected
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xd6804800
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Mar 22 18:32:32 gauranga kernel: hub 2-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 2-0:1.0: 6 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x000060c0
    Mar 22 18:32:32 gauranga kernel: hub 3-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 3-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x000060a0
    Mar 22 18:32:32 gauranga kernel: hub 4-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 4-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00006080
    Mar 22 18:32:32 gauranga kernel: hub 5-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 5-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00006060
    Mar 22 18:32:32 gauranga kernel: hub 6-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 6-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: irq 16, io base 0x00006040
    Mar 22 18:32:32 gauranga kernel: hub 7-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 7-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: version 3.0
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: ahci: SSS flag set, parallel bus scan disabled
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: scsi0 : ahci
    Mar 22 18:32:32 gauranga kernel: scsi1 : ahci
    Mar 22 18:32:32 gauranga kernel: scsi2 : ahci
    Mar 22 18:32:32 gauranga kernel: scsi3 : ahci
    Mar 22 18:32:32 gauranga kernel: ata1: SATA max UDMA/133 abar m2048@0xd6804000 port 0xd6804100 irq 44
    Mar 22 18:32:32 gauranga kernel: ata2: SATA max UDMA/133 abar m2048@0xd6804000 port 0xd6804180 irq 44
    Mar 22 18:32:32 gauranga kernel: ata3: DUMMY
    Mar 22 18:32:32 gauranga kernel: ata4: DUMMY
    Mar 22 18:32:32 gauranga kernel: firewire_ohci 0000:06:02.0: added OHCI v1.0 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: SDHCI controller found [1180:0822] (rev 22)
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: Registered led device: mmc0::
    Mar 22 18:32:32 gauranga kernel: mmc0: SDHCI controller on PCI [0000:06:02.1] using DMA
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: usb 1-2: new high-speed USB device number 2 using ehci_hcd
    Mar 22 18:32:32 gauranga kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 22 18:32:32 gauranga kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Mar 22 18:32:32 gauranga kernel: ata1.00: ATA-8: TOSHIBA MK3252GSX, LV010A, max UDMA/100
    Mar 22 18:32:32 gauranga kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Mar 22 18:32:32 gauranga kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Mar 22 18:32:32 gauranga kernel: ata1.00: configured for UDMA/100
    Mar 22 18:32:32 gauranga kernel: scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK3252GS LV01 PQ: 0 ANSI: 5
    Mar 22 18:32:32 gauranga kernel: firewire_core 0000:06:02.0: created device fw0: GUID 0800460304dbc9e2, S400
    Mar 22 18:32:32 gauranga kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 22 18:32:32 gauranga kernel: ata2.00: ATAPI: MATSHITADVD-RAM UJ880AS, 1.20, max UDMA/33
    Mar 22 18:32:32 gauranga kernel: ata2.00: configured for UDMA/33
    Mar 22 18:32:32 gauranga kernel: scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ880AS 1.20 PQ: 0 ANSI: 5
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Write Protect is off
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Mar 22 18:32:32 gauranga kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Mar 22 18:32:32 gauranga kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Mar 22 18:32:32 gauranga kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Mar 22 18:32:32 gauranga kernel: sda: sda1 sda2 sda3 < sda5 sda6 >
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Mar 22 18:32:32 gauranga kernel: usb 7-1: new full-speed USB device number 2 using uhci_hcd
    Mar 22 18:32:32 gauranga kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Mar 22 18:32:32 gauranga systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Mar 22 18:32:32 gauranga systemd[1]: Inserted module 'autofs4'
    Mar 22 18:32:32 gauranga systemd[1]: Set hostname to <gauranga>.
    Mar 22 18:32:32 gauranga systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No su
    Mar 22 18:32:32 gauranga systemd[1]: Starting Collect Read-Ahead Data...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Replay Read-Ahead Data...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Remote File Systems.
    Mar 22 18:32:32 gauranga systemd[1]: Reached target Remote File Systems.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Device-mapper event daemon FIFOs.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Delayed Shutdown Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on Delayed Shutdown Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Mar 22 18:32:32 gauranga systemd[1]: Starting LVM2 metadata daemon socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on LVM2 metadata daemon socket.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Mar 22 18:32:32 gauranga systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Encrypted Volumes.
    Mar 22 18:32:32 gauranga systemd[1]: Reached target Encrypted Volumes.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Kernel Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on udev Kernel Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Control Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on udev Control Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Expecting device dev-sda6.device...
    Mar 22 18:32:32 gauranga systemd[1]: Expecting device dev-sda2.device...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Journal Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on Journal Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Mounting Debug File System...
    Mar 22 18:32:32 gauranga systemd-readahead[108]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Kernel Device Manager...
    Mar 22 18:32:32 gauranga systemd[1]: Mounting POSIX Message Queue File System...
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Coldplug all Devices...
    Mar 22 18:32:32 gauranga systemd[1]: Mounting Huge Pages File System...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Journal Service...
    Mar 22 18:32:32 gauranga systemd[1]: Started Journal Service.
    Mar 22 18:32:32 gauranga kernel: vboxdrv: Found 2 processor cores.
    Mar 22 18:32:32 gauranga kernel: vboxdrv: fAsync=0 offMin=0x225 offMax=0x13f8
    Mar 22 18:32:32 gauranga kernel: vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    Mar 22 18:32:32 gauranga kernel: vboxdrv: Successfully loaded version 4.2.0 (interface 0x001a0004).
    Mar 22 18:32:32 gauranga systemd-udevd[110]: starting version 197
    Mar 22 18:32:32 gauranga systemd-journal[114]: Journal started
    Mar 22 18:32:32 gauranga systemd[1]: Started Collect Read-Ahead Data.
    Mar 22 18:32:32 gauranga systemd[1]: Started Replay Read-Ahead Data.
    Mar 22 18:32:32 gauranga systemd[1]: Started File System Check on Root Device.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Remount Root and Kernel File Systems...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Setup Virtual Console...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Set Up Additional Binary Formats...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Load Kernel Modules...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Apply Kernel Variables...
    Mar 22 18:32:32 gauranga systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Mar 22 18:32:32 gauranga systemd-modules-load[118]: Inserted module 'vboxdrv'
    Mar 22 18:32:32 gauranga systemd[1]: Started Load Kernel Modules.
    Mar 22 18:32:33 gauranga kernel: ACPI: AC Adapter [AC] (on-line)
    Mar 22 18:32:33 gauranga kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Mar 22 18:32:33 gauranga kernel: ACPI: Thermal Zone [THRM] (51 C)
    Mar 22 18:32:34 gauranga kernel: ACPI: Battery Slot [BAT1] (battery present)
    Mar 22 18:32:34 gauranga kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
    Mar 22 18:32:34 gauranga kernel: ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \PMBA 1 (20120320/utaddress-251)
    Mar 22 18:32:34 gauranga kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mar 22 18:32:34 gauranga kernel: ACPI Warning: 0x00000500-0x0000053f SystemIO conflicts with Region \GPIO 1 (20120320/utaddress-251)
    Mar 22 18:32:34 gauranga kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mar 22 18:32:34 gauranga kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Mar 22 18:32:34 gauranga kernel: ACPI: Requesting acpi_cpufreq
    Mar 22 18:32:34 gauranga kernel: Monitor-Mwait will be used to enter C-1 state
    Mar 22 18:32:34 gauranga kernel: cfg80211: Calling CRDA to update world regulatory domain
    Mar 22 18:32:34 gauranga kernel: Monitor-Mwait will be used to enter C-2 state
    Mar 22 18:32:34 gauranga kernel: Monitor-Mwait will be used to enter C-3 state
    Mar 22 18:32:34 gauranga kernel: Marking TSC unstable due to TSC halts in idle
    Mar 22 18:32:34 gauranga kernel: ACPI: acpi_idle registered with cpuidle
    Mar 22 18:32:34 gauranga kernel: Switching to clocksource hpet
    Mar 22 18:32:34 gauranga kernel: sky2: driver version 1.30
    Mar 22 18:32:34 gauranga kernel: sky2 0000:02:00.0: Yukon-2 FE+ chip revision 0
    Mar 22 18:32:34 gauranga kernel: sky2 0000:02:00.0: irq 45 for MSI/MSI-X
    Mar 22 18:32:34 gauranga kernel: sky2 0000:02:00.0: eth0: addr 00:1d:ba:07:87:98
    Mar 22 18:32:34 gauranga kernel: iTCO_vendor_support: vendor-support=0
    Mar 22 18:32:34 gauranga kernel: sony_laptop: Sony Notebook Control Driver v0.6
    Mar 22 18:32:34 gauranga kernel: input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/SNY5001:00/input/input6
    Mar 22 18:32:34 gauranga kernel: input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/SNY5001:00/input/input7
    Mar 22 18:32:34 gauranga kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    Mar 22 18:32:34 gauranga kernel: iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    Mar 22 18:32:34 gauranga kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Mar 22 18:32:34 gauranga kernel: microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    Mar 22 18:32:34 gauranga kernel: sony_laptop: brightness ignored, must be controlled by ACPI video driver
    Mar 22 18:32:34 gauranga kernel: microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    Mar 22 18:32:34 gauranga kernel: microcode: Microcode Update Driver: v2.00 <tigran@aiva

    hi
    enable Readahead from systemd
    https://wiki.archlinux.org/index.php/Systemd#Readahead
    # systemctl enable systemd-readahead-collect systemd-readahead-replay

  • Wifi interface is not activated on boot

    Hi guys,
    Everything worked well until I accidentally pressed the ACPI key for enabling/disabling the wifi interface. Now, when I restart my computer, the wlan0 interface is always down (so netctl-auto fails) and I can not figure out why. I have to enable manually the interface (by pressing the ACPI key) and also start netctl manually on the right profile.
    Here is the output of journalctl -b
    ~ » sudo journalctl -b
    -- Logs begin at sam. 2013-06-01 01:02:53 BST, end at mer. 2014-03-26 09:31:08 GMT. --
    mars 26 09:28:26 cotier systemd-journal[166]: Runtime journal is using 8.0M (max allowed 193.3M, trying to leave 290.0M free of 1.8G available → current limit 193.3M).
    mars 26 09:28:26 cotier systemd-journal[166]: Runtime journal is using 8.0M (max allowed 193.3M, trying to leave 290.0M free of 1.8G available → current limit 193.3M).
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys cpuset
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys cpu
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys cpuacct
    mars 26 09:28:26 cotier kernel: Linux version 3.13.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.2 20140206 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Mar 7 22:47:48 CET 2014
    mars 26 09:28:26 cotier kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d99e1176-6a46-4e82-bda3-42a87bf6d420 rw
    mars 26 09:28:26 cotier kernel: e820: BIOS-provided physical RAM map:
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000040200000-0x00000000aace3fff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aace4000-0x00000000aacf7fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aacf8000-0x00000000aacf9fff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aacfa000-0x00000000aad8dfff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aad8e000-0x00000000aad8efff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aad8f000-0x00000000aadb7fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aadb8000-0x00000000aadc7fff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aadc8000-0x00000000aade7fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aade8000-0x00000000aaf18fff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aaf19000-0x00000000aafe7fff] ACPI NVS
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aafe8000-0x00000000aaffcfff] usable
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000aaffd000-0x00000000aaffffff] ACPI data
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000ab000000-0x00000000af9fffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000ff980000-0x00000000ffbfffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    mars 26 09:28:26 cotier kernel: BIOS-e820: [mem 0x0000000100000000-0x000000014fdfffff] usable
    mars 26 09:28:26 cotier kernel: NX (Execute Disable) protection: active
    mars 26 09:28:26 cotier kernel: SMBIOS 2.6 present.
    mars 26 09:28:26 cotier kernel: DMI: ASUSTeK Computer Inc. K53SV/K53SV, BIOS K53SV.215 04/14/2011
    mars 26 09:28:26 cotier kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    mars 26 09:28:26 cotier kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    mars 26 09:28:26 cotier kernel: No AGP bridge found
    mars 26 09:28:26 cotier kernel: e820: last_pfn = 0x14fe00 max_arch_pfn = 0x400000000
    mars 26 09:28:26 cotier kernel: MTRR default type: uncachable
    mars 26 09:28:26 cotier kernel: MTRR fixed ranges enabled:
    mars 26 09:28:26 cotier kernel: 00000-9FFFF write-back
    mars 26 09:28:26 cotier kernel: A0000-BFFFF uncachable
    mars 26 09:28:26 cotier kernel: C0000-CFFFF write-protect
    mars 26 09:28:26 cotier kernel: D0000-E7FFF uncachable
    mars 26 09:28:26 cotier kernel: E8000-FFFFF write-protect
    mars 26 09:28:26 cotier kernel: MTRR variable ranges enabled:
    mars 26 09:28:26 cotier kernel: 0 base 000000000 mask F80000000 write-back
    mars 26 09:28:26 cotier kernel: 1 base 080000000 mask FE0000000 write-back
    mars 26 09:28:26 cotier kernel: 2 base 0A0000000 mask FF8000000 write-back
    mars 26 09:28:26 cotier kernel: 3 base 0A8000000 mask FFC000000 write-back
    mars 26 09:28:26 cotier kernel: 4 base 0AB000000 mask FFF000000 uncachable
    mars 26 09:28:26 cotier kernel: 5 base 100000000 mask FC0000000 write-back
    mars 26 09:28:26 cotier kernel: 6 base 140000000 mask FF0000000 write-back
    mars 26 09:28:26 cotier kernel: 7 base 14FE00000 mask FFFE00000 uncachable
    mars 26 09:28:26 cotier kernel: 8 disabled
    mars 26 09:28:26 cotier kernel: 9 disabled
    mars 26 09:28:26 cotier kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    mars 26 09:28:26 cotier kernel: e820: update [mem 0xab000000-0xffffffff] usable ==> reserved
    mars 26 09:28:26 cotier kernel: e820: last_pfn = 0xaaffd max_arch_pfn = 0x400000000
    mars 26 09:28:26 cotier kernel: found SMP MP-table at [mem 0x000fcc30-0x000fcc3f] mapped at [ffff8800000fcc30]
    mars 26 09:28:26 cotier kernel: Scanning 1 areas for low memory corruption
    mars 26 09:28:26 cotier kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
    mars 26 09:28:26 cotier kernel: reserving inaccessible SNB gfx pages
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    mars 26 09:28:26 cotier kernel: [mem 0x00000000-0x000fffff] page 4k
    mars 26 09:28:26 cotier kernel: BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    mars 26 09:28:26 cotier kernel: BRK [0x01b40000, 0x01b40fff] PGTABLE
    mars 26 09:28:26 cotier kernel: BRK [0x01b41000, 0x01b41fff] PGTABLE
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x14fc00000-0x14fdfffff]
    mars 26 09:28:26 cotier kernel: [mem 0x14fc00000-0x14fdfffff] page 2M
    mars 26 09:28:26 cotier kernel: BRK [0x01b42000, 0x01b42fff] PGTABLE
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x14c000000-0x14fbfffff]
    mars 26 09:28:26 cotier kernel: [mem 0x14c000000-0x14fbfffff] page 2M
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x100000000-0x14bffffff]
    mars 26 09:28:26 cotier kernel: [mem 0x100000000-0x14bffffff] page 2M
    mars 26 09:28:26 cotier kernel: BRK [0x01b43000, 0x01b43fff] PGTABLE
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x00100000-0x1fffffff]
    mars 26 09:28:26 cotier kernel: [mem 0x00100000-0x001fffff] page 4k
    mars 26 09:28:26 cotier kernel: [mem 0x00200000-0x1fffffff] page 2M
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x20200000-0x3fffffff]
    mars 26 09:28:26 cotier kernel: [mem 0x20200000-0x3fffffff] page 2M
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0x40200000-0xaace3fff]
    mars 26 09:28:26 cotier kernel: [mem 0x40200000-0xaabfffff] page 2M
    mars 26 09:28:26 cotier kernel: [mem 0xaac00000-0xaace3fff] page 4k
    mars 26 09:28:26 cotier kernel: BRK [0x01b44000, 0x01b44fff] PGTABLE
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0xaacf8000-0xaacf9fff]
    mars 26 09:28:26 cotier kernel: [mem 0xaacf8000-0xaacf9fff] page 4k
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0xaad8e000-0xaad8efff]
    mars 26 09:28:26 cotier kernel: [mem 0xaad8e000-0xaad8efff] page 4k
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0xaadb8000-0xaadc7fff]
    mars 26 09:28:26 cotier kernel: [mem 0xaadb8000-0xaadc7fff] page 4k
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0xaade8000-0xaaf18fff]
    mars 26 09:28:26 cotier kernel: [mem 0xaade8000-0xaaf18fff] page 4k
    mars 26 09:28:26 cotier kernel: init_memory_mapping: [mem 0xaafe8000-0xaaffcfff]
    mars 26 09:28:26 cotier kernel: [mem 0xaafe8000-0xaaffcfff] page 4k
    mars 26 09:28:26 cotier kernel: RAMDISK: [mem 0x37a14000-0x37d01fff]
    mars 26 09:28:26 cotier kernel: ACPI: RSDP 00000000000f0430 000024 (v02 _ASUS_)
    mars 26 09:28:26 cotier kernel: ACPI: XSDT 00000000aaffee18 00006C (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
    mars 26 09:28:26 cotier kernel: ACPI: FACP 00000000aaf9bd98 0000F4 (v04 _ASUS_ NoteBook 06222004 MSFT 00010013)
    mars 26 09:28:26 cotier kernel: ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20131115/tbfadt-395)
    mars 26 09:28:26 cotier kernel: ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT - 0xAAFE5E40/0x00000000AAFE5D40, using 32 (20131115/tbfadt-522)
    mars 26 09:28:26 cotier kernel: ACPI: DSDT 00000000aaf7c018 00D5D3 (v01 _ASUS_ NoteBook 00000000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: FACS 00000000aafe5e40 000040
    mars 26 09:28:26 cotier kernel: ACPI: APIC 00000000aaffdf18 0000CC (v02 _ASUS_ NoteBook 06222004 MSFT 00010013)
    mars 26 09:28:26 cotier kernel: ACPI: HPET 00000000aafe6d18 000038 (v01 _ASUS_ NoteBook 06222004 AMI. 00000003)
    mars 26 09:28:26 cotier kernel: ACPI: ECDT 00000000aafe5b18 0000C1 (v01 _ASUS_ NoteBook 06222004 AMI 00000000)
    mars 26 09:28:26 cotier kernel: ACPI: MCFG 00000000aafe6c98 00003C (v01 _ASUS_ NoteBook 06222004 MSFT 00000097)
    mars 26 09:28:26 cotier kernel: ACPI: SSDT 00000000aaf7b018 000925 (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: SSDT 00000000aaf7a018 000996 (v01 PmRef CpuPm 00003000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: SLIC 00000000aaf9cc18 000176 (v01 _ASUS_ Notebook 06222004 ASUS 00000001)
    mars 26 09:28:26 cotier kernel: ACPI: SSDT 00000000aaf5ea98 0002EF (v01 SataRe SataTabl 00001000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: Local APIC address 0xfee00000
    mars 26 09:28:26 cotier kernel: No NUMA configuration found
    mars 26 09:28:26 cotier kernel: Faking a node at [mem 0x0000000000000000-0x000000014fdfffff]
    mars 26 09:28:26 cotier kernel: Initmem setup node 0 [mem 0x00000000-0x14fdfffff]
    mars 26 09:28:26 cotier kernel: NODE_DATA [mem 0x14fdf8000-0x14fdfcfff]
    mars 26 09:28:26 cotier kernel: [ffffea0000000000-ffffea00053fffff] PMD -> [ffff88014b400000-ffff88014f3fffff] on node 0
    mars 26 09:28:26 cotier kernel: Zone ranges:
    mars 26 09:28:26 cotier kernel: DMA [mem 0x00001000-0x00ffffff]
    mars 26 09:28:26 cotier kernel: DMA32 [mem 0x01000000-0xffffffff]
    mars 26 09:28:26 cotier kernel: Normal [mem 0x100000000-0x14fdfffff]
    mars 26 09:28:26 cotier kernel: Movable zone start for each node
    mars 26 09:28:26 cotier kernel: Early memory node ranges
    mars 26 09:28:26 cotier kernel: node 0: [mem 0x00001000-0x0009dfff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0x00100000-0x1fffffff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0x20200000-0x3fffffff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0x40200000-0xaace3fff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0xaacf8000-0xaacf9fff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0xaad8e000-0xaad8efff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0xaadb8000-0xaadc7fff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0xaade8000-0xaaf18fff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0xaafe8000-0xaaffcfff]
    mars 26 09:28:26 cotier kernel: node 0: [mem 0x100000000-0x14fdfffff]
    mars 26 09:28:26 cotier kernel: On node 0 totalpages: 1026010
    mars 26 09:28:26 cotier kernel: DMA zone: 64 pages used for memmap
    mars 26 09:28:26 cotier kernel: DMA zone: 157 pages reserved
    mars 26 09:28:26 cotier kernel: DMA zone: 3997 pages, LIFO batch:0
    mars 26 09:28:26 cotier kernel: DMA32 zone: 10857 pages used for memmap
    mars 26 09:28:26 cotier kernel: DMA32 zone: 694845 pages, LIFO batch:31
    mars 26 09:28:26 cotier kernel: Normal zone: 5112 pages used for memmap
    mars 26 09:28:26 cotier kernel: Normal zone: 327168 pages, LIFO batch:31
    mars 26 09:28:26 cotier kernel: ACPI: PM-Timer IO Port: 0x408
    mars 26 09:28:26 cotier kernel: ACPI: Local APIC address 0xfee00000
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x08] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0a] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0c] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0d] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0e] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x0f] disabled)
    mars 26 09:28:26 cotier kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    mars 26 09:28:26 cotier kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    mars 26 09:28:26 cotier kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    mars 26 09:28:26 cotier kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    mars 26 09:28:26 cotier kernel: ACPI: IRQ0 used by override.
    mars 26 09:28:26 cotier kernel: ACPI: IRQ2 used by override.
    mars 26 09:28:26 cotier kernel: ACPI: IRQ9 used by override.
    mars 26 09:28:26 cotier kernel: Using ACPI (MADT) for SMP configuration information
    mars 26 09:28:26 cotier kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    mars 26 09:28:26 cotier kernel: smpboot: Allowing 16 CPUs, 8 hotplug CPUs
    mars 26 09:28:26 cotier kernel: nr_irqs_gsi: 40
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xaace4000-0xaacf7fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xaacfa000-0xaad8dfff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xaad8f000-0xaadb7fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xaadc8000-0xaade7fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xaaf19000-0xaafe7fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xaaffd000-0xaaffffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xab000000-0xaf9fffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xafa00000-0xdfffffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xe0000000-0xe3ffffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xe4000000-0xfebfffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xfee01000-0xff97ffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xff980000-0xffbfffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xffc00000-0xffd7ffff]
    mars 26 09:28:26 cotier kernel: PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
    mars 26 09:28:26 cotier kernel: e820: [mem 0xafa00000-0xdfffffff] available for PCI devices
    mars 26 09:28:26 cotier kernel: Booting paravirtualized kernel on bare hardware
    mars 26 09:28:26 cotier kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:16 nr_node_ids:1
    mars 26 09:28:26 cotier kernel: PERCPU: Embedded 29 pages/cpu @ffff88014fa00000 s86336 r8192 d24256 u131072
    mars 26 09:28:26 cotier kernel: pcpu-alloc: s86336 r8192 d24256 u131072 alloc=1*2097152
    mars 26 09:28:26 cotier kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    mars 26 09:28:26 cotier kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1009820
    mars 26 09:28:26 cotier kernel: Policy zone: Normal
    mars 26 09:28:26 cotier kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d99e1176-6a46-4e82-bda3-42a87bf6d420 rw
    mars 26 09:28:26 cotier kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    mars 26 09:28:26 cotier kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    mars 26 09:28:26 cotier kernel: Checking aperture...
    mars 26 09:28:26 cotier kernel: No AGP bridge found
    mars 26 09:28:26 cotier kernel: Calgary: detecting Calgary via BIOS EBDA area
    mars 26 09:28:26 cotier kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    mars 26 09:28:26 cotier kernel: Memory: 3955140K/4104040K available (5270K kernel code, 836K rwdata, 1672K rodata, 1128K init, 1324K bss, 148900K reserved)
    mars 26 09:28:26 cotier kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
    mars 26 09:28:26 cotier kernel: Preemptible hierarchical RCU implementation.
    mars 26 09:28:26 cotier kernel: RCU dyntick-idle grace-period acceleration is enabled.
    mars 26 09:28:26 cotier kernel: Dump stacks of tasks blocking RCU-preempt GP.
    mars 26 09:28:26 cotier kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=16.
    mars 26 09:28:26 cotier kernel: NR_IRQS:8448 nr_irqs:808 16
    mars 26 09:28:26 cotier kernel: Console: colour dummy device 80x25
    mars 26 09:28:26 cotier kernel: console [tty0] enabled
    mars 26 09:28:26 cotier kernel: allocated 16777216 bytes of page_cgroup
    mars 26 09:28:26 cotier kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    mars 26 09:28:26 cotier kernel: hpet clockevent registered
    mars 26 09:28:26 cotier kernel: tsc: Fast TSC calibration failed
    mars 26 09:28:26 cotier kernel: tsc: PIT calibration matches HPET. 2 loops
    mars 26 09:28:26 cotier kernel: tsc: Detected 1995.228 MHz processor
    mars 26 09:28:26 cotier kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.72 BogoMIPS (lpj=6650760)
    mars 26 09:28:26 cotier kernel: pid_max: default: 32768 minimum: 301
    mars 26 09:28:26 cotier kernel: Security Framework initialized
    mars 26 09:28:26 cotier kernel: AppArmor: AppArmor disabled by boot time parameter
    mars 26 09:28:26 cotier kernel: Yama: becoming mindful.
    mars 26 09:28:26 cotier kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    mars 26 09:28:26 cotier kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    mars 26 09:28:26 cotier kernel: Mount-cache hash table entries: 256
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys memory
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys devices
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys freezer
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys net_cls
    mars 26 09:28:26 cotier kernel: Initializing cgroup subsys blkio
    mars 26 09:28:26 cotier kernel: CPU: Physical Processor ID: 0
    mars 26 09:28:26 cotier kernel: CPU: Processor Core ID: 0
    mars 26 09:28:26 cotier kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    mars 26 09:28:26 cotier kernel: mce: CPU supports 9 MCE banks
    mars 26 09:28:26 cotier kernel: CPU0: Thermal monitoring enabled (TM1)
    mars 26 09:28:26 cotier kernel: Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    mars 26 09:28:26 cotier kernel: Freeing SMP alternatives memory: 20K (ffffffff819ed000 - ffffffff819f2000)
    mars 26 09:28:26 cotier kernel: ACPI: Core revision 20131115
    mars 26 09:28:26 cotier kernel: ACPI: All ACPI Tables successfully acquired
    mars 26 09:28:26 cotier kernel: ftrace: allocating 21060 entries in 83 pages
    mars 26 09:28:26 cotier kernel: Switched APIC routing to physical flat.
    mars 26 09:28:26 cotier kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    mars 26 09:28:26 cotier kernel: smpboot: CPU0: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (fam: 06, model: 2a, stepping: 07)
    mars 26 09:28:26 cotier kernel: TSC deadline timer enabled
    mars 26 09:28:26 cotier kernel: Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    mars 26 09:28:26 cotier kernel: perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    mars 26 09:28:26 cotier kernel: ... version: 3
    mars 26 09:28:26 cotier kernel: ... bit width: 48
    mars 26 09:28:26 cotier kernel: ... generic registers: 4
    mars 26 09:28:26 cotier kernel: ... value mask: 0000ffffffffffff
    mars 26 09:28:26 cotier kernel: ... max period: 0000ffffffffffff
    mars 26 09:28:26 cotier kernel: ... fixed-purpose events: 3
    mars 26 09:28:26 cotier kernel: ... event mask: 000000070000000f
    mars 26 09:28:26 cotier kernel: x86: Booting SMP configuration:
    mars 26 09:28:26 cotier kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    mars 26 09:28:26 cotier kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
    mars 26 09:28:26 cotier kernel: x86: Booted up 1 node, 8 CPUs
    mars 26 09:28:26 cotier kernel: smpboot: Total of 8 processors activated (31936.80 BogoMIPS)
    mars 26 09:28:26 cotier kernel: devtmpfs: initialized
    mars 26 09:28:26 cotier kernel: PM: Registering ACPI NVS region [mem 0xaaf19000-0xaafe7fff] (847872 bytes)
    mars 26 09:28:26 cotier kernel: RTC time: 9:28:21, date: 03/26/14
    mars 26 09:28:26 cotier kernel: NET: Registered protocol family 16
    mars 26 09:28:26 cotier kernel: cpuidle: using governor ladder
    mars 26 09:28:26 cotier kernel: cpuidle: using governor menu
    mars 26 09:28:26 cotier kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    mars 26 09:28:26 cotier kernel: ACPI: bus type PCI registered
    mars 26 09:28:26 cotier kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    mars 26 09:28:26 cotier kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    mars 26 09:28:26 cotier kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    mars 26 09:28:26 cotier kernel: PCI: Using configuration type 1 for base access
    mars 26 09:28:26 cotier kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    mars 26 09:28:26 cotier kernel: mtrr: probably your BIOS does not setup all CPUs.
    mars 26 09:28:26 cotier kernel: mtrr: corrected configuration.
    mars 26 09:28:26 cotier kernel: bio: create slab <bio-0> at 0
    mars 26 09:28:26 cotier kernel: ACPI: Added _OSI(Module Device)
    mars 26 09:28:26 cotier kernel: ACPI: Added _OSI(Processor Device)
    mars 26 09:28:26 cotier kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    mars 26 09:28:26 cotier kernel: ACPI: Added _OSI(Processor Aggregator Device)
    mars 26 09:28:26 cotier kernel: ACPI : EC: EC description table is found, configuring boot EC
    mars 26 09:28:26 cotier kernel: ACPI: Executed 1 blocks of module-level executable AML code
    mars 26 09:28:26 cotier kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    mars 26 09:28:26 cotier kernel: ACPI: SSDT 00000000aadcc698 000627 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: Dynamic OEM Table Load:
    mars 26 09:28:26 cotier kernel: ACPI: SSDT (null) 000627 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: SSDT 00000000aadcda98 000303 (v01 PmRef ApIst 00003000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: Dynamic OEM Table Load:
    mars 26 09:28:26 cotier kernel: ACPI: SSDT (null) 000303 (v01 PmRef ApIst 00003000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: SSDT 00000000aadcbd98 000119 (v01 PmRef ApCst 00003000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: Dynamic OEM Table Load:
    mars 26 09:28:26 cotier kernel: ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20091112)
    mars 26 09:28:26 cotier kernel: ACPI: Interpreter enabled
    mars 26 09:28:26 cotier kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    mars 26 09:28:26 cotier kernel: ACPI: (supports S0 S1 S3 S4 S5)
    mars 26 09:28:26 cotier kernel: ACPI: Using IOAPIC for interrupt routing
    mars 26 09:28:26 cotier kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    mars 26 09:28:26 cotier kernel: ACPI: No dock devices found.
    mars 26 09:28:26 cotier kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    mars 26 09:28:26 cotier kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    mars 26 09:28:26 cotier kernel: \_SB_.PCI0:_OSC invalid UUID
    mars 26 09:28:26 cotier kernel: _OSC request data:1 1f 0
    mars 26 09:28:26 cotier kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    mars 26 09:28:26 cotier kernel: PCI host bridge to bus 0000:00
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0xafa00000-0xfeafffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    mars 26 09:28:26 cotier kernel: pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    mars 26 09:28:26 cotier kernel: pci 0000:00:02.0: reg 0x10: [mem 0xdd400000-0xdd7fffff 64bit]
    mars 26 09:28:26 cotier kernel: pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:00:02.0: reg 0x20: [io 0xe000-0xe03f]
    mars 26 09:28:26 cotier kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    mars 26 09:28:26 cotier kernel: pci 0000:00:16.0: reg 0x10: [mem 0xdf60a000-0xdf60a00f 64bit]
    mars 26 09:28:26 cotier kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    mars 26 09:28:26 cotier kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xdf608000-0xdf6083ff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    mars 26 09:28:26 cotier kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    mars 26 09:28:26 cotier kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xdf600000-0xdf603fff 64bit]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    mars 26 09:28:26 cotier kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xdf607000-0xdf6073ff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: reg 0x10: [io 0xe0b0-0xe0b7]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: reg 0x14: [io 0xe0a0-0xe0a3]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: reg 0x18: [io 0xe090-0xe097]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xe080-0xe083]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: reg 0x20: [io 0xe060-0xe07f]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xdf606000-0xdf6067ff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.2: PME# supported from D3hot
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xdf605000-0xdf6050ff 64bit]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1f.3: reg 0x20: [io 0xe040-0xe05f]
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: [10de:0df4] type 00 class 0x030000
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: reg 0x10: [mem 0xdc000000-0xdcffffff]
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: reg 0x24: [io 0xd000-0xd07f]
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: reg 0x30: [mem 0xdd000000-0xdd07ffff pref]
    mars 26 09:28:26 cotier kernel: pci 0000:01:00.0: System wakeup disabled by ACPI
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: bridge window [mem 0xdc000000-0xdd0fffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: bridge window [mem 0xdec00000-0xdf5fffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: bridge window [mem 0xd3700000-0xd40fffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
    mars 26 09:28:26 cotier kernel: pci 0000:03:00.0: reg 0x10: [mem 0xde200000-0xde20ffff 64bit]
    mars 26 09:28:26 cotier kernel: pci 0000:03:00.0: supports D1
    mars 26 09:28:26 cotier kernel: pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: bridge window [mem 0xde200000-0xdebfffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: bridge window [mem 0xd2c00000-0xd35fffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: reg 0x10: [io 0xa000-0xa0ff]
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: reg 0x18: [mem 0xd2104000-0xd2104fff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: reg 0x20: [mem 0xd2100000-0xd2103fff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: supports D1 D2
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    mars 26 09:28:26 cotier kernel: pci 0000:04:00.0: System wakeup disabled by ACPI
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: bridge window [io 0xa000-0xafff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: bridge window [mem 0xdd800000-0xde1fffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: bridge window [mem 0xd2100000-0xd2afffff 64bit pref]
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 *3 4 5 6 10 11 12 14 15)
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 10 11 12 14 15)
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 *5 6 10 11 12 14 15)
    mars 26 09:28:26 cotier kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 10 11 12 14 15)
    mars 26 09:28:26 cotier kernel: ACPI: Enabled 1 GPEs in block 00 to 3F
    mars 26 09:28:26 cotier kernel: ACPI: \_SB_.PCI0: notify handler is installed
    mars 26 09:28:26 cotier kernel: Found 1 acpi root devices
    mars 26 09:28:26 cotier kernel: ACPI : EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
    mars 26 09:28:26 cotier kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    mars 26 09:28:26 cotier kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    mars 26 09:28:26 cotier kernel: vgaarb: loaded
    mars 26 09:28:26 cotier kernel: vgaarb: bridge control possible 0000:01:00.0
    mars 26 09:28:26 cotier kernel: vgaarb: no bridge control possible 0000:00:02.0
    mars 26 09:28:26 cotier kernel: PCI: Using ACPI for IRQ routing
    mars 26 09:28:26 cotier kernel: PCI: pci_cache_line_size set to 64 bytes
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0xaace4000-0xabffffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0xaacfa000-0xabffffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0xaad8f000-0xabffffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0xaadc8000-0xabffffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0xaaf19000-0xabffffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0xaaffd000-0xabffffff]
    mars 26 09:28:26 cotier kernel: e820: reserve RAM buffer [mem 0x14fe00000-0x14fffffff]
    mars 26 09:28:26 cotier kernel: NetLabel: Initializing
    mars 26 09:28:26 cotier kernel: NetLabel: domain hash size = 128
    mars 26 09:28:26 cotier kernel: NetLabel: protocols = UNLABELED CIPSOv4
    mars 26 09:28:26 cotier kernel: NetLabel: unlabeled traffic allowed by default
    mars 26 09:28:26 cotier kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    mars 26 09:28:26 cotier kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    mars 26 09:28:26 cotier kernel: Switched to clocksource hpet
    mars 26 09:28:26 cotier kernel: pnp: PnP ACPI init
    mars 26 09:28:26 cotier kernel: ACPI: bus type PNP registered
    mars 26 09:28:26 cotier kernel: pnp 00:00: [dma 4]
    mars 26 09:28:26 cotier kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    mars 26 09:28:26 cotier kernel: pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    mars 26 09:28:26 cotier kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    mars 26 09:28:26 cotier kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0x0680-0x069f] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0x1000-0x100f] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0xffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0xffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0x0400-0x0453] could not be reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0x0458-0x047f] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0x0500-0x057f] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: [io 0x164e-0x164f] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    mars 26 09:28:26 cotier kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    mars 26 09:28:26 cotier kernel: system 00:06: [io 0x0454-0x0457] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    mars 26 09:28:26 cotier kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    mars 26 09:28:26 cotier kernel: pnp 00:08: Plug and Play ACPI device, IDs ETD0101 PNP0f0e PNP0f03 PNP0f12 PNP0f0b (active)
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed10000-0xfed17fff] could not be reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xe0000000-0xe3ffffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    mars 26 09:28:26 cotier kernel: system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    mars 26 09:28:26 cotier kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    mars 26 09:28:26 cotier kernel: system 00:0a: [mem 0xafa00000-0xafa00fff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    mars 26 09:28:26 cotier kernel: system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:0b: [mem 0x40000000-0x401fffff] has been reserved
    mars 26 09:28:26 cotier kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    mars 26 09:28:26 cotier kernel: pnp: PnP ACPI: found 12 devices
    mars 26 09:28:26 cotier kernel: ACPI: bus type PNP unregistered
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: bridge window [mem 0xdc000000-0xdd0fffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: bridge window [mem 0xdec00000-0xdf5fffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.0: bridge window [mem 0xd3700000-0xd40fffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: bridge window [mem 0xde200000-0xdebfffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.1: bridge window [mem 0xd2c00000-0xd35fffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: bridge window [io 0xa000-0xafff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: bridge window [mem 0xdd800000-0xde1fffff]
    mars 26 09:28:26 cotier kernel: pci 0000:00:1c.5: bridge window [mem 0xd2100000-0xd2afffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 13 [mem 0xafa00000-0xfeafffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:01: resource 1 [mem 0xdc000000-0xdd0fffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:02: resource 1 [mem 0xdec00000-0xdf5fffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:02: resource 2 [mem 0xd3700000-0xd40fffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:03: resource 1 [mem 0xde200000-0xdebfffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:03: resource 2 [mem 0xd2c00000-0xd35fffff 64bit pref]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:04: resource 1 [mem 0xdd800000-0xde1fffff]
    mars 26 09:28:26 cotier kernel: pci_bus 0000:04: resource 2 [mem 0xd2100000-0xd2afffff 64bit pref]
    mars 26 09:28:26 cotier kernel: NET: Registered protocol family 2
    mars 26 09:28:26 cotier kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    mars 26 09:28:26 cotier kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    mars 26 09:28:26 cotier kernel: TCP: Hash tables configured (established 32768 bind 32768)
    mars 26 09:28:26 cotier kernel: TCP: reno registered
    mars 26 09:28:26 cotier kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    mars 26 09:28:26 cotier kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    mars 26 09:28:26 cotier kernel: NET: Registered protocol family 1
    mars 26 09:28:26 cotier kernel: pci 0000:00:02.0: Boot video device
    mars 26 09:28:26 cotier kernel: PCI: CLS 64 bytes, default 64
    mars 26 09:28:26 cotier kernel: Unpacking initramfs...
    mars 26 09:28:26 cotier kernel: Freeing initrd memory: 3000K (ffff880037a14000 - ffff880037d02000)
    mars 26 09:28:26 cotier kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    mars 26 09:28:26 cotier kernel: software IO TLB [mem 0xa6ce4000-0xaace4000] (64MB) mapped at [ffff8800a6ce4000-ffff8800aace3fff]
    mars 26 09:28:26 cotier kernel: Scanning for low memory corruption every 60 seconds
    mars 26 09:28:26 cotier kernel: audit: initializing netlink socket (disabled)
    mars 26 09:28:26 cotier kernel: type=2000 audit(1395826101.039:1): initialized
    mars 26 09:28:26 cotier kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    mars 26 09:28:26 cotier kernel: zbud: loaded
    mars 26 09:28:26 cotier kernel: VFS: Disk quotas dquot_6.5.2
    mars 26 09:28:26 cotier kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    mars 26 09:28:26 cotier kernel: msgmni has been set to 7730
    mars 26 09:28:26 cotier kernel: Key type big_key registered
    mars 26 09:28:26 cotier kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    mars 26 09:28:26 cotier kernel: io scheduler noop registered
    mars 26 09:28:26 cotier kernel: io scheduler deadline registered
    mars 26 09:28:26 cotier kernel: io scheduler cfq registered (default)
    mars 26 09:28:26 cotier kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    mars 26 09:28:26 cotier kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    mars 26 09:28:26 cotier kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    mars 26 09:28:26 cotier kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    mars 26 09:28:26 cotier kernel: vesafb: scrolling: redraw
    mars 26 09:28:26 cotier kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    mars 26 09:28:26 cotier kernel: vesafb: framebuffer at 0xb0000000, mapped to 0xffffc90004780000, using 3072k, total 3072k
    mars 26 09:28:26 cotier kernel: Console: switching to colour frame buffer device 128x48
    mars 26 09:28:26 cotier kernel: fb0: VESA VGA frame buffer device
    mars 26 09:28:26 cotier kernel: intel_idle: MWAIT substates: 0x21120
    mars 26 09:28:26 cotier kernel: intel_idle: v0.4 model 0x2A
    mars 26 09:28:26 cotier kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    mars 26 09:28:26 cotier kernel: GHES: HEST is not enabled!
    mars 26 09:28:26 cotier kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    mars 26 09:28:26 cotier kernel: Linux agpgart interface v0.103
    mars 26 09:28:26 cotier kernel: rtc_cmos 00:05: RTC can wake from S4
    mars 26 09:28:26 cotier kernel: rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    mars 26 09:28:26 cotier kernel: rtc_cmos 00:05: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    mars 26 09:28:26 cotier kernel: Intel P-state driver initializing.
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 0
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 1
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 2
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 3
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 4
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 5
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 6
    mars 26 09:28:26 cotier kernel: Intel pstate controlling: cpu 7
    mars 26 09:28:26 cotier kernel: drop_monitor: Initializing network drop monitor service
    mars 26 09:28:26 cotier kernel: TCP: cubic registered
    mars 26 09:28:26 cotier kernel: NET: Registered protocol family 10
    mars 26 09:28:26 cotier kernel: NET: Registered protocol family 17
    mars 26 09:28:26 cotier kernel: Key type dns_resolver registered
    mars 26 09:28:26 cotier kernel: registered taskstats version 1
    mars 26 09:28:26 cotier kernel: Magic number: 6:813:475
    mars 26 09:28:26 cotier kernel: rtc_cmos 00:05: setting system clock to 2014-03-26 09:28:21 UTC (1395826101)
    mars 26 09:28:26 cotier kernel: PM: Hibernation image not present or could not be loaded.
    mars 26 09:28:26 cotier kernel: Freeing unused kernel memory: 1128K (ffffffff818d3000 - ffffffff819ed000)
    mars 26 09:28:26 cotier kernel: Write protecting the kernel read-only data: 8192k
    mars 26 09:28:26 cotier kernel: Freeing unused kernel memory: 864K (ffff880001528000 - ffff880001600000)
    mars 26 09:28:26 cotier kernel: Freeing unused kernel memory: 376K (ffff8800017a2000 - ffff880001800000)
    mars 26 09:28:26 cotier kernel: random: systemd-tmpfile urandom read with 1 bits of entropy available
    mars 26 09:28:26 cotier systemd-udevd[76]: starting version 211
    mars 26 09:28:26 cotier kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    mars 26 09:28:26 cotier kernel: i8042: Detected active multiplexing controller, rev 1.1
    mars 26 09:28:26 cotier kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    mars 26 09:28:26 cotier kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    mars 26 09:28:26 cotier kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    mars 26 09:28:26 cotier kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    mars 26 09:28:26 cotier kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mars 26 09:28:26 cotier kernel: ACPI: bus type USB registered
    mars 26 09:28:26 cotier kernel: usbcore: registered new interface driver usbfs
    mars 26 09:28:26 cotier kernel: usbcore: registered new interface driver hub
    mars 26 09:28:26 cotier kernel: usbcore: registered new device driver usb
    mars 26 09:28:26 cotier kernel: SCSI subsystem initialized
    mars 26 09:28:26 cotier kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    mars 26 09:28:26 cotier kernel: ehci-pci: EHCI PCI platform driver
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1a.0: debug port 2
    mars 26 09:28:26 cotier kernel: libata version 3.00 loaded.
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xdf608000
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    mars 26 09:28:26 cotier kernel: hub 1-0:1.0: USB hub found
    mars 26 09:28:26 cotier kernel: hub 1-0:1.0: 2 ports detected
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1d.0: debug port 2
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xdf607000
    mars 26 09:28:26 cotier kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    mars 26 09:28:26 cotier kernel: hub 2-0:1.0: USB hub found
    mars 26 09:28:26 cotier kernel: hub 2-0:1.0: 2 ports detected
    mars 26 09:28:26 cotier kernel: ahci 0000:00:1f.2: version 3.0
    mars 26 09:28:26 cotier kernel: ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    mars 26 09:28:26 cotier kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
    mars 26 09:28:26 cotier kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
    mars 26 09:28:26 cotier kernel: scsi0 : ahci
    mars 26 09:28:26 cotier kernel: scsi1 : ahci
    mars 26 09:28:26 cotier kernel: scsi2 : ahci
    mars 26 09:28:26 cotier kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    mars 26 09:28:26 cotier kernel: scsi3 : ahci
    mars 26 09:28:26 cotier kernel: scsi4 : ahci
    mars 26 09:28:26 cotier kernel: scsi5 : ahci
    mars 26 09:28:26 cotier kernel: ata1: SATA max UDMA/133 abar m2048@0xdf606000 port 0xdf606100 irq 41
    mars 26 09:28:26 cotier kernel: ata2: DUMMY
    mars 26 09:28:26 cotier kernel: ata3: SATA max UDMA/133 abar m2048@0xdf606000 port 0xdf606200 irq 41
    mars 26 09:28:26 cotier kernel: ata4: DUMMY
    mars 26 09:28:26 cotier kernel: ata5: DUMMY
    mars 26 09:28:26 cotier kernel: ata6: DUMMY
    mars 26 09:28:26 cotier kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    mars 26 09:28:26 cotier kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    mars 26 09:28:26 cotier kernel: ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    mars 26 09:28:26 cotier kernel: ata3.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
    mars 26 09:28:26 cotier kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    mars 26 09:28:26 cotier kernel: ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    mars 26 09:28:26 cotier kernel: ata3.00: ATAPI: MATSHITADVD-RAM UJ8A0ASW, 1.01, max UDMA/100
    mars 26 09:28:26 cotier kernel: ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
    mars 26 09:28:26 cotier kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    mars 26 09:28:26 cotier kernel: ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    mars 26 09:28:26 cotier kernel: ata3.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
    mars 26 09:28:26 cotier kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    mars 26 09:28:26 cotier kernel: ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    mars 26 09:28:26 cotier kernel: ata3.00: configured for UDMA/100
    mars 26 09:28:26 cotier kernel: ata1.00: ATA-8: WDC WD6400BPVT-80HXZT1, 01.01A01, max UDMA/133
    mars 26 09:28:26 cotier kernel: ata1.00: 1250263728 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    mars 26 09:28:26 cotier kernel: ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
    mars 26 09:28:26 cotier kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    mars 26 09:28:26 cotier kernel: ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    mars 26 09:28:26 cotier kernel: ata1.00: configured for UDMA/133
    mars 26 09:28:26 cotier kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD6400BPVT-8 01.0 PQ: 0 ANSI: 5
    mars 26 09:28:26 cotier kernel: scsi 2:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8A0ASW 1.01 PQ: 0 ANSI: 5
    mars 26 09:28:26 cotier kernel: sd 0:0:0:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
    mars 26 09:28:26 cotier kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
    mars 26 09:28:26 cotier kernel: sd 0:0:0:0: [sda] Write Protect is off
    mars 26 09:28:26 cotier kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    mars 26 09:28:26 cotier kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    mars 26 09:28:26 cotier kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    mars 26 09:28:26 cotier kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    mars 26 09:28:26 cotier kernel: sr 2:0:0:0: Attached scsi CD-ROM sr0
    mars 26 09:28:26 cotier kernel: hub 1-1:1.0: USB hub found
    mars 26 09:28:26 cotier kernel: hub 1-1:1.0: 6 ports detected
    mars 26 09:28:26 cotier kernel: sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 >
    mars 26 09:28:26 cotier kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    mars 26 09:28:26 cotier kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
    mars 26 09:28:26 cotier kernel: hub 2-1:1.0: USB hub found
    mars 26 09:28:26 cotier kernel: hub 2-1:1.0: 6 ports detected
    mars 26 09:28:26 cotier kernel: usb 1-1.1: new full-speed USB device number 3 using ehci-pci
    mars 26 09:28:26 cotier kernel: tsc: Refined TSC clocksource calibration: 1995.466 MHz
    mars 26 09:28:26 cotier kernel: usb 1-1.2: new high-speed USB device number 4 using ehci-pci
    mars 26 09:28:26 cotier kernel: usb 1-1.4: new high-speed USB device number 5 using ehci-pci
    mars 26 09:28:26 cotier kernel: Switched to clocksource tsc
    mars 26 09:28:26 cotier kernel: random: nonblocking pool is initialized
    mars 26 09:28:26 cotier kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    mars 26 09:28:26 cotier systemd[1]: systemd 211 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    mars 26 09:28:26 cotier systemd[1]: Detected architecture 'x86-64'.
    mars 26 09:28:26 cotier systemd[1]: Set hostname to <cotier>.
    mars 26 09:28:26 cotier systemd[1]: Configuration file /etc/systemd/system/[email protected] is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
    mars 26 09:28:26 cotier systemd[1]: Configuration file /etc/systemd/system/[email protected] is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
    mars 26 09:28:26 cotier systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    mars 26 09:28:26 cotier systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    mars 26 09:28:26 cotier systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    mars 26 09:28:26 cotier systemd[1]: Starting Remote File Systems.
    mars 26 09:28:26 cotier systemd[1]: Reached target Remote File Systems.
    mars 26 09:28:26 cotier systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    mars 26 09:28:26 cotier systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    mars 26 09:28:26 cotier systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    mars 26 09:28:26 cotier systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    mars 26 09:28:26 cotier systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    mars 26 09:28:26 cotier systemd[1]: Starting Paths.
    mars 26 09:28:26 cotier systemd[1]: Reached target Paths.
    mars 26 09:28:26 cotier systemd[1]: Starting Encrypted Volumes.
    mars 26 09:28:26 cotier systemd[1]: Reached target Encrypted Volumes.
    mars 26 09:28:26 cotier systemd[1]: Expecting device dev-sda6.device...
    mars 26 09:28:26 cotier systemd[1]: Expecting device dev-sda7.device...
    mars 26 09:28:26 cotier systemd[1]: Starting Root Slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice Root Slice.
    mars 26 09:28:26 cotier systemd[1]: Starting Delayed Shutdown Socket.
    mars 26 09:28:26 cotier systemd[1]: Listening on Delayed Shutdown Socket.
    mars 26 09:28:26 cotier systemd[1]: Starting Device-mapper event daemon FIFOs.
    mars 26 09:28:26 cotier systemd[1]: Listening on Device-mapper event daemon FIFOs.
    mars 26 09:28:26 cotier systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    mars 26 09:28:26 cotier systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    mars 26 09:28:26 cotier systemd[1]: Starting LVM2 metadata daemon socket.
    mars 26 09:28:26 cotier systemd[1]: Listening on LVM2 metadata daemon socket.
    mars 26 09:28:26 cotier systemd[1]: Starting udev Kernel Socket.
    mars 26 09:28:26 cotier systemd[1]: Listening on udev Kernel Socket.
    mars 26 09:28:26 cotier systemd[1]: Starting udev Control Socket.
    mars 26 09:28:26 cotier systemd[1]: Listening on udev Control Socket.
    mars 26 09:28:26 cotier systemd[1]: Starting User and Session Slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice User and Session Slice.
    mars 26 09:28:26 cotier systemd[1]: Starting Journal Socket.
    mars 26 09:28:26 cotier systemd[1]: Listening on Journal Socket.
    mars 26 09:28:26 cotier systemd[1]: Starting System Slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice System Slice.
    mars 26 09:28:26 cotier systemd[1]: Started File System Check on Root Device.
    mars 26 09:28:26 cotier systemd[1]: Starting system-systemd\x2dfsck.slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice system-systemd\x2dfsck.slice.
    mars 26 09:28:26 cotier systemd[1]: Starting Remount Root and Kernel File Systems...
    mars 26 09:28:26 cotier systemd[1]: Mounting Huge Pages File System...
    mars 26 09:28:26 cotier systemd[1]: Mounting Debug File System...
    mars 26 09:28:26 cotier systemd[1]: Started Set Up Additional Binary Formats.
    mars 26 09:28:26 cotier systemd[1]: Starting Setup Virtual Console...
    mars 26 09:28:26 cotier systemd[1]: Started Load Kernel Modules.
    mars 26 09:28:26 cotier systemd[1]: Starting Create list of required static device nodes for the current kernel...
    mars 26 09:28:26 cotier systemd[1]: Starting udev Coldplug all Devices...
    mars 26 09:28:26 cotier systemd[1]: Starting system-netctl.slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice system-netctl.slice.
    mars 26 09:28:26 cotier systemd[1]: Starting system-netctl\x2dauto.slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice system-netctl\x2dauto.slice.
    mars 26 09:28:26 cotier systemd[1]: Starting system-getty.slice.
    mars 26 09:28:26 cotier systemd[1]: Created slice system-getty.slice.
    mars 26 09:28:26 cotier systemd[1]: Starting Apply Kernel Variables...
    mars 26 09:28:26 cotier systemd[1]: Mounted FUSE Control File System.
    mars 26 09:28:26 cotier systemd[1]: Mounting Configuration File System...
    mars 26 09:28:26 cotier systemd[1]: Mounting POSIX Message Queue File System...
    mars 26 09:28:26 cotier systemd[1]: Starting Journal Service...
    mars 26 09:28:26 cotier systemd[1]: Started Journal Service.
    mars 26 09:28:26 cotier kernel: EXT4-fs (sda5): re-mounted. Opts: data=ordered
    mars 26 09:28:26 cotier systemd-journal[166]: Journal started
    mars 26 09:28:26 cotier systemd[1]: Starting Slices.
    mars 26 09:28:26 cotier systemd[1]: Reached target Slices.
    mars 26 09:28:26 cotier systemd[1]: Mounting Temporary Directory...
    mars 26 09:28:26 cotier systemd[1]: Mounted Debug File System.
    mars 26 09:28:26 cotier systemd[1]: Mounted Huge Pages File System.
    mars 26 09:28:26 cotier systemd[1]: Started Apply Kernel Variables.
    mars 26 09:28:26 cotier systemd[1]: Mounted POSIX Message Queue File System.
    mars 26 09:28:26 cotier systemd[1]: Mounted Configuration File System.
    mars 26 09:28:26 cotier systemd[1]: Mounted Temporary Directory.
    mars 26 09:28:26 cotier systemd[1]: Started Create list of required static device nodes for the current kernel.
    mars 26 09:28:26 cotier systemd[1]: Started Remount Root and Kernel File Systems.
    mars 26 09:28:26 cotier systemd[1]: Started Setup Virtual Console.
    mars 26 09:28:26 cotier systemd[1]: Started Create Static Device Nodes in /dev.
    mars 26 09:28:26 cotier systemd[1]: Starting udev Kernel Device Manager...
    mars 26 09:28:26 cotier systemd[1]: Starting Local File Systems (Pre).
    mars 26 09:28:26 cotier systemd[1]: Reached target Local File Systems (Pre).
    mars 26 09:28:26 cotier systemd-udevd[189]: starting version 211
    mars 26 09:28:26 cotier systemd[1]: Started udev Kernel Device Manager.
    mars 26 09:28:27 cotier systemd-udevd[189]: specified user 'usbmux' unknown
    mars 26 09:28:27 cotier kernel: ACPI: AC Adapter [AC0] (off-line)
    mars 26 09:28:27 cotier kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input5
    mars 26 09:28:27 cotier kernel: ACPI: Lid Switch [LID]
    mars 26 09:28:27 cotier kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input6
    mars 26 09:28:27 cotier kernel: ACPI: Sleep Button [SLPB]
    mars 26 09:28:27 cotier kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
    mars 26 09:28:27 cotier kernel: ACPI: Power Button [PWRF]
    mars 26 09:28:27 cotier kernel: microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
    mars 26 09:28:27 cotier kernel: platform microcode: Direct firmware load failed with error -2
    mars 26 09:28:27 cotier kernel: platform microcode: Falling back to user helper
    mars 26 09:28:27 cotier kernel: ACPI: Battery Slot [BAT0] (battery present)
    mars 26 09:28:27 cotier kernel: wmi: Mapper loaded
    mars 26 09:28:27 cotier kernel: ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
    mars 26 09:28:27 cotier kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the na

    Seems to be working again, I haven't done anything though. And the "wifi" led on my laptop is off, which should mean that the interface is down.
    This is driving me crazy I don't understand how the all thing works, if anyone has any tips that would be very nice.
    Thanks!

  • My iMac keeps crashing due to a memory leak....  Any thoughts on what this means?

    I'll be using my iMac (27" late 2009) and it will suddenly cut to black.  Then after a second or two, a grey screen will appear and tell me an issue occured and to push any key to restart.  Once the computer restarts, the issue report pops up and it says I have a memory leak.  I don't know what that means, or how to fix it.  Any thoughts on the cause of why it's doing this, or the impending doom it may be heralding?  I've posted the issue report below incase anyone can glean anything from it.  Thanks for your help.
    Fri Feb 14 14:19:08 2014
    panic(cpu 4 caller 0xffffff801185211d): "zalloc: zone map exhausted while allocating from zone kalloc.64, likely due to memory leak in zone kalloc.64 (2370900672 total bytes, 37045323 elements allocated)"@/SourceCache/xnu/xnu-2422.1.72/osfmk/kern/zalloc.c:2494
    Backtrace (CPU 4), Frame : Return Address
    0xffffff8104ed3a30 : 0xffffff8011822f69
    0xffffff8104ed3ab0 : 0xffffff801185211d
    0xffffff8104ed3bb0 : 0xffffff801182aa2f
    0xffffff8104ed3be0 : 0xffffff8011c4bb5d
    0xffffff8104ed3c10 : 0xffffff8011c4c0b7
    0xffffff8104ed3c40 : 0xffffff8011c61b3a
    0xffffff8104ed3c60 : 0xffffff8011c61b91
    0xffffff8104ed3ca0 : 0xffffff8011c61d12
    0xffffff8104ed3ce0 : 0xffffff8011c93663
    0xffffff8104ed3d20 : 0xffffff8011c4abde
    0xffffff8104ed3eb0 : 0xffffff8011c4ada7
    0xffffff8104ed3ee0 : 0xffffff8011c8e4c3
    0xffffff8104ed3f50 : 0xffffff8011c93cc4
    0xffffff8104ed3f70 : 0xffffff7f923edbfb
    0xffffff8104ed3fa0 : 0xffffff7f923edc6e
    0xffffff8104ed3fb0 : 0xffffff80118d6aa7
          Kernel Extensions in backtrace:
             com.razer.common.razerhid(4.43)[1B7FEBF6-6668-A183-C80E-505105E80B16]@0xffffff7 f923e8000->0xffffff7f923fdfff
                dependency: com.apple.iokit.IOUSBFamily(650.4.4)[972D3024-AF9C-3E09-A9EC-D9AB2A559B38]@0xff ffff7f921cb000
                dependency: com.apple.iokit.IOHIDFamily(2.0.0)[1185D338-98A5-345E-84F8-E59DF819A61B]@0xffff ff7f92288000
                dependency: com.apple.iokit.IOUSBHIDDriver(650.4.4)[B79A7E01-DD3F-3C1A-840A-879D262C69DE]@0 xffffff7f9230d000
                dependency: com.apple.driver.IOBluetoothHIDDriver(4.2.0f6)[BDBCA485-A5D3-3EE0-A782-60D83447 BAEB]@0xffffff7f923d4000
    BSD process name corresponding to current thread: kernel_task
    Boot args: mbasd=1
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000011600000
    Kernel text base: 0xffffff8011800000
    System model name: iMac11,1 (Mac-F2268DAE)
    System uptime in nanoseconds: 6500042405956
    vm objects:14896672
    vm object hash entri:1422080
    VM map entries:3665920
    pv_list:14364672
    vm pages:148044672
    kalloc.16:296143584
    kalloc.32:296364096
    kalloc.64:2370900672
    kalloc.128:8413184
    kalloc.256:2584576
    kalloc.512:2330624
    kalloc.1024:5713920
    kalloc.2048:1327104
    kalloc.4096:1859584
    kalloc.8192:6995968
    ipc ports:3312960
    threads:3060288
    uthreads:1891008
    vnodes:27132000
    namecache:10648800
    HFS node:36340432
    HFS fork:4812800
    buf.4096:2613248
    buf.8192:34643968
    ubc_info zone:2554704
    vnode pager structur:1418040
    Kernel Stacks:25870336
    PageTables:75939840
    Kalloc.Large:37970463
    Backtrace suspected of leaking: (outstanding bytes: 60608)
    0xffffff8011851c23
    0xffffff801182aa2f
    0xffffff8011c4bb5d
    0xffffff8011c4d667
    0xffffff8011c8e5e7
    0xffffff8011c93cc4
    0xffffff7f923edbfb
    0xffffff7f923edc6e
          Kernel Extensions in backtrace:
             com.razer.common.razerhid(4.43)[1B7FEBF6-6668-A183-C80E-505105E80B16]@0xffffff7 f923e8000->0xffffff7f923fdfff
                dependency: com.apple.iokit.IOUSBFamily(650.4.4)[972D3024-AF9C-3E09-A9EC-D9AB2A559B38]@0xff ffff7f921cb000
                dependency: com.apple.iokit.IOHIDFamily(2.0.0)[1185D338-98A5-345E-84F8-E59DF819A61B]@0xffff ff7f92288000
                dependency: com.apple.iokit.IOUSBHIDDriver(650.4.4)[B79A7E01-DD3F-3C1A-840A-879D262C69DE]@0 xffffff7f9230d000
                dependency: com.apple.driver.IOBluetoothHIDDriver(4.2.0f6)[BDBCA485-A5D3-3EE0-A782-60D83447 BAEB]@0xffffff7f923d4000
    last loaded kext at 280540738124: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f92483000, size 65536)
    loaded kexts:
    com.taoeffect.ispy.kext          2.0.2
    com.quark.driver.Tether64          1.1.0d3
    com.logmein.driver.LogMeInSoundDriver          1.0.0
    com.squirrels.airparrot.framebuffer          3
    com.squirrels.driver.AirParrotSpeakers          1.7
    com.razer.common.razerhid          4.43
    at.obdev.nke.LittleSnitch          4052
    com.apple.filesystems.msdosfs          1.9
    com.apple.filesystems.ntfs          3.11
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.14.11
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleHDAHardwareConfigDriver          2.5.3fc1
    com.apple.kext.AMDFramebuffer          1.1.4
    com.apple.driver.AppleHDA          2.5.3fc1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.ATIRadeonX2000          8.1.8
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMuxControl          3.4.12
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMikeyDriver          2.5.3fc1
    com.apple.iokit.IOBluetoothUSBDFU          4.2.0f6
    com.apple.kext.AMD4800Controller          1.1.4
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleLPC          1.7.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.driver.AppleIRController          325.7
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.iokit.SCSITaskUserClient          3.6.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.4.0
    com.apple.driver.AppleUSBHub          650.4.4
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.iokit.AppleBCM5701Ethernet          3.6.9b9
    com.apple.driver.AirPort.Atheros40          700.74.5
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleUSBUHCI          650.4.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.0
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOSurface          91
    com.apple.driver.DspFuncLib          2.5.3fc1
    com.apple.vecLib.kext          1.0.0
    com.apple.driver.AppleGraphicsControl          3.4.12
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.kext.AMDSupport          1.1.4
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.iokit.IOAudioFamily          1.9.4fc11
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.AppleHDAController          2.5.3fc1
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.iokit.IOHDAFamily          2.5.3fc1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.driver.IOBluetoothHIDDriver          4.2.0f6
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.driver.AppleUSBHIDKeyboard          170.15
    com.apple.driver.AppleHIDKeyboard          170.15
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.0
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.3b3
    com.apple.driver.mDNSOffloadUserClient          1.0.1b4
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.iokit.IOUSBFamily          650.4.4
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          21
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto          1.0
    Model: iMac11,1, BootROM IM111.0034.B02, 4 processors, Intel Core i7, 2.8 GHz, 8 GB, SMC 1.54f36
    Graphics: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.74.0-P2P
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST31000528ASQ, 1 TB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Hub
    USB Device: Internal Memory Card Reader
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Hub
    USB Device: Keyboard Hub
    USB Device: Razer DeathAdder
    USB Device: Apple Keyboard
    USB Device: IR Receiver
    USB Device: Built-in iSight
    Thunderbolt Bus:

    Boot into safe mode (restart holding down SHIFT key). If no KP, then uninstall and reinstall those 3rd-party items that Roger pointed out, one at a time, and restart. Continue until you determine which ones are causing the problem. If KP while in safe mode, then most likely hardware related. Run the Apple Hardware Test suite, extended tests at least twice, followed by Rember.  See
    OS X About kernel panics,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics,
    How to troubleshoot a kernel panic, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • Panic 4, memory leak ?

    Hello
    The past days ever since i installed memory clean ultie from the appstore and did a clean my macbook
    seems to crash right after i did the memory clean i removed the program from my applications
    so i dont know wether this is actually the problem of it or something else,
    could someone please help me
    Thanks
    Anonymous UUID:       994A3363-0967-182E-8576-4F17EFE52307
    Thu Mar  5 10:34:30 2015
    *** Panic Report ***
    panic(cpu 4 caller 0xffffff802df6f8f5): "zalloc: zone map exhausted while allocating from zone kalloc.8192, likely due to memory leak in zone vm objects (1555451040 total bytes, 6481032 elements allocated)"@/SourceCache/xnu/xnu-2782.10.72/osfmk/kern/zalloc.c:2521
    Backtrace (CPU 4), Frame : Return Address
    0xffffff813c20bc00 : 0xffffff802df2fe41
    0xffffff813c20bc80 : 0xffffff802df6f8f5
    0xffffff813c20bdb0 : 0xffffff802df38581
    0xffffff813c20bde0 : 0xffffff802df17f70
    0xffffff813c20be10 : 0xffffff802df33f27
    0xffffff813c20be40 : 0xffffff802df18a93
    0xffffff813c20be90 : 0xffffff802df293bd
    0xffffff813c20bf10 : 0xffffff802e0059fa
    0xffffff813c20bfb0 : 0xffffff802e036ea6
    BSD process name corresponding to current thread: fontworker
    Mac OS version:
    14C109
    Kernel version:
    Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    Kernel UUID: DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5
    Kernel slide:     0x000000002dc00000
    Kernel text base: 0xffffff802de00000
    __HIB  text base: 0xffffff802dd00000
    System model name: MacBookPro10,1 (Mac-C3EC7CD22292981F)
    System uptime in nanoseconds: 14888473755958
    vm objects:1555451040
    vm object hash entri:253897840
    VM map entries:522873920
    pv_list:34381824
    vm pages:130325312
    kalloc.16:101163568
    kalloc.32:1205568
    kalloc.64:5640768
    kalloc.128:7450624
    kalloc.256:5550080
    kalloc.512:121769984
    kalloc.1024:3108864
    kalloc.2048:2310144
    kalloc.4096:3276800
    kalloc.8192:9052160
    mem_obj_control:101560272
    ipc ports:2876000
    threads:1572000
    x86 fpsave state:1101568
    uthreads:1075200
    vnodes:11085360
    namecache:2863968
    HFS node:14616336
    HFS fork:4448256
    decmpfs_cnode:1233792
    ubc_info zone:2794704
    vnode pager structur:1272600
    compressor_pager:404197376
    compressor_segment:5669424
    Kernel Stacks:2654208
    PageTables:174948352
    Kalloc.Large:33339717
    Backtrace suspected of leaking: (outstanding bytes: 385680)
    0xffffff802df6fcf6
    0xffffff802dfb654d
    0xffffff802dfaa435
    0xffffff802df9ca95
    0xffffff802e01a974
    last loaded kext at 7107757443: com.apple.driver.AppleGraphicsDevicePolicy 3.7.7 (addr 0xffffff7fb0b33000, size 45056)
    last unloaded kext at 152019224354: com.apple.iokit.IOEthernetAVBController 1.0.3b3 (addr 0xffffff7faf5ae000, size 28672)
    loaded kexts:
    com.avatron.AVExFramebuffer 1.7
    com.avatron.AVExVideo 1.7
    com.globaldelight.driver.BoomDevice 1.1
    com.driver.LogJoystick 2.0
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.ApplePlatformEnabler 2.1.7d1
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AudioAUUC 1.70
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleHDA 269.25
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.GeForce 10.0.2
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.driver.AppleMuxControl 3.8.6
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleIntelHD4000Graphics 10.0.2
    com.apple.driver.AppleIntelFramebufferCapri 10.0.2
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.nvidia.driver.NVDAGK100Hal 10.0.2
    com.apple.nvidia.driver.NVDAResman 10.0.2
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.driver.AppleGraphicsControl 3.8.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOAcceleratorFamily2 156.6
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.driver.AppleSMC 3.1.9
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    Model: MacBookPro10,1, BootROM MBP101.00EE.B07, 4 processors, Intel Core i7, 2.7 GHz, 8 GB, SMC 2.3f36
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (7.15.159.13.12)
    Bluetooth: Version 4.3.2f6 15235, 3 services, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM256E, 251 GB
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Pro, Apple Inc., 23.4

    those programs i removed alll but boom but i deaxtivated i found out my memory seems to be high my, frontworker is at 5.47 gb in memory
    here is some details of a etrecheck
    Problem description:
    frontworker
    kernel_task
    EtreCheck version: 2.1.8 (121)
    Report generated 5 Mar 2015 11:26:00 GMT+10
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (Retina, 15-inch, Early 2013) (Technical Specifications)
        MacBook Pro - model: MacBookPro10,1
        1 2.7 GHz Intel Core i7 CPU: 4-core
        8 GB RAM Not upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 25
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD spdisplays_2880x1800Retina
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:51:19
    Disk Information: ℹ️
        APPLE SSD SM256E disk0 : (251 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 249.77 GB (147.49 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 250.14 GB Online
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Library/Extensions
        [loaded]    com.avatron.AVExFramebuffer (1.7 - SDK 10.9) [Click for support]
        [loaded]    com.avatron.AVExVideo (1.7 - SDK 10.9) [Click for support]
        [loaded]    com.driver.LogJoystick (2.0 - SDK 10.8) [Click for support]
        [not loaded]    com.logitech.driver.LogiGamingMouseFilter (1 - SDK 10.8) [Click for support]
        [not loaded]    com.razer.common.razerhid (10.85 - SDK 10.9) [Click for support]
        [not loaded]    foo.tap (1.0) [Click for support]
        [not loaded]    foo.tun (1.0) [Click for support]
        [not loaded]    org.virtualbox.kext.VBoxDrv (4.2.12) [Click for support]
        [not loaded]    org.virtualbox.kext.VBoxNetAdp (4.2.12) [Click for support]
        [not loaded]    org.virtualbox.kext.VBoxNetFlt (4.2.12) [Click for support]
        [not loaded]    org.virtualbox.kext.VBoxUSB (4.2.12) [Click for support]
            /System/Library/Extensions
        [loaded]    com.globaldelight.driver.BoomDevice (1.1 - SDK 10.9) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Startup Items: ℹ️
        tap: Path: /Library/StartupItems/tap
        tun: Path: /Library/StartupItems/tun
        VirtualBox: Path: /Library/StartupItems/VirtualBox
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.razer.rzupdater.plist [Click for support]
        [running]    com.razerzone.rzdeviceengine.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
        [failed]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.github.dnscrypt-osxclient.DNSCryptAfterboot.plist [Click for support]
        [failed]    com.github.dnscrypt-osxclient.DNSCryptConsoleChange.plist [Click for support]
        [loaded]    com.github.dnscrypt-osxclient.DNSCryptControlChange.plist [Click for support]
        [loaded]    com.github.dnscrypt-osxclient.DNSCryptNetworkChange.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [loaded]    com.teamviewer.Helper.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    net.sourceforge.MonolingualHelper.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Flux    Application  (/Applications/Flux.app)
        SpeechSynthesisServer    Application  (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
        MacLWSLauncher    UNKNOWN  (missing value)
        Spark Daemon    Application Hidden (/Users/[redacted]/Documents/Software/Spark.app/Contents/SharedSupport/Spark Daemon.app)
        Logitech Gaming Software    UNKNOWN Hidden (missing value)
        OpenDNS Updater    Application Hidden (/Applications/OpenDNS Updater.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        nplastpass: Version: 2.0.15 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        DirectorShockwave: Version: 12.1.3r153 - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        AdBlock
        RoboForm
        Adblock Plus
        WOT
        LastPass
    3rd Party Preference Panes: ℹ️
        DNSCrypt  [Click for support]
        Flash Player  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            69%    JavaApplicationStub
            65%    fontd
            26%    fontworker
            17%    Google Chrome
            10%    WindowServer
    Top Processes by Memory: ℹ️
        799 MB    fontworker
        137 MB    Google Chrome
        120 MB    Finder
        103 MB    mds_stores
        103 MB    JavaApplicationStub
    Virtual Memory Information: ℹ️
        39 MB    Free RAM
        1.87 GB    Active RAM
        1.79 GB    Inactive RAM
        1.96 GB    Wired RAM
        6.57 GB    Page-ins
        17 MB    Page-outs
    Diagnostics Information: ℹ️
        Mar 5, 2015, 10:34:30 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-05-103430_[redacted].panic [Click for details]
        Mar 5, 2015, 10:34:28 AM    Self test - passed
        Mar 4, 2015, 11:31:34 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-04-233134_[redacted].panic [Click for details]
        Mar 4, 2015, 10:06:37 PM    /Library/Logs/DiagnosticReports/steam_osx_2015-03-04-220637_[redacted].hang
        Mar 4, 2015, 08:12:45 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-03-04-201245_[ redacted].cpu_resource.diag [Click for details]
        Mar 4, 2015, 02:22:38 PM    /Library/Logs/DiagnosticReports/fontd_2015-03-04-142238_[redacted].cpu_resource .diag [Click for details]
        Mar 4, 2015, 10:30:34 AM    /Library/Logs/DiagnosticReports/fontd_2015-03-04-103034_[redacted].cpu_resource .diag [Click for details]
        Mar 4, 2015, 10:27:47 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-04-102747_[redacted].panic [Click for details]
        Mar 3, 2015, 02:22:40 PM    /Library/Logs/DiagnosticReports/fontd_2015-03-03-142240_[redacted].cpu_resource .diag [Click for details]
        Feb 27, 2015, 08:19:00 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-27-201900_[redacted].panic [Click for details]
        Feb 14, 2015, 07:59:51 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-14-195951_[redacted].panic [Click for details]

  • Pro*c multithreaded application has memory leak

    Hi there,
    I posted this message a week ago in OCI section, nobody answer me.
    I am really curious if my application has a bug or the pro*c has a bug.
    Anyone can compile the sample code and test it easily.
    I made multithreaded application which queries dynamic SQL, it works.
    But the memory leaks when i query the SQL statement.
    The more memory leaks, the more i query the SQL statement, even same SQL
    statement.
    I check it with top, shell command.
    My machine is SUN E450, Solaris 8. Oracle 9.2.0.1
    Compiler : gcc (GCC) 3.2.2
    I changed source code which is from
    $(ORACLE_HOME)/precomp/demo/proc/sample10.pc
    the sample10 doesn't need to be multithreaded. But i think it has to work
    correctly if i changed it to multithreaded application.
    the make file and source code will be placed below.
    I have to figure out the problem.
    Please help
    Thanks in advance,
    the make file is below
    HOME = /user/jkku
    ORA = $(ORACLE_HOME)
    CC = gcc
    PROC = proc
    LC_INCL = -I$(HOME)/work/dbmss/libs/include
    lc_incl = include=$(HOME)/work/dbmss/libs/include
    SYS_INCL =
    sys_incl =
    ORA_INCL = -I. \
    -I$(ORA)/precomp/public \
    -I$(ORA)/rdbms/public \
    -I$(ORA)/rdbms/demo \
    -I$(ORA)/rdbms/pbsql/public \
    -I$(ORA)/network/public \
    -DSLMXMX_ENABLE -DSLTS_ENABLE -D_SVID_GETTOD
    INCLUDES = $(LC_INCL) $(SYS_INCL) $(ORA_INCL)
    includes = $(lc_incl) $(sys_incl)
    LC_LIBS =
    SYS_LIBS = -lpthread -lsocket -lnsl -lrt
    ORA_LIBS = -L$(ORA)/lib/ -lclntsh
    LIBS = $(LC_LIBS) $(SYS_LIBS) $(ORA_LIBS)
    # Define C Compiler flags
    CFLAGS += -D_Solaris64_ -m64
    CFLAGS += -g -D_REENTRANT
    # Define pro*c Compiler flags
    PROCFLAGS += THREADS=YES
    PROCFLAGS += CPOOL=YES
    # Our object files
    PRECOMPS = sample10.c
    OBJS = sample10.o
    .SUFFIXES: .o .c .pc
    .c.o:
    $(CC) -c $(CFLAGS) $(INCLUDES) $*.c
    .pc.c:
    $(PROC) $(PROCFLAGS) $(includes) $*.pc $*.c
    all: sample10
    sample10: $(PRECOMPS) $(OBJS)
    $(CC) $(CFLAGS) -o sample10 $(OBJS) $(LIBS)
    clean:
    rm -rf *.o sample10 sample10.c
    the source code is below which i changed the oracle sample10.pc to
    multithreaded application.
    Sample Program 10: Dynamic SQL Method 4
    This program connects you to ORACLE using your username and
    password, then prompts you for a SQL statement. You can enter
    any legal SQL statement. Use regular SQL syntax, not embedded SQL.
    Your statement will be processed. If it is a query, the rows
    fetched are displayed.
    You can enter multi-line statements. The limit is 1023 characters.
    This sample program only processes up to MAX_ITEMS bind variables and
    MAX_ITEMS select-list items. MAX_ITEMS is #defined to be 40.
    #include <stdio.h>
    #include <string.h>
    #include <setjmp.h>
    #include <sqlda.h>
    #include <stdlib.h>
    #include <sqlcpr.h>
    /* Maximum number of select-list items or bind variables. */
    #define MAX_ITEMS 40
    /* Maximum lengths of the names of the
    select-list items or indicator variables. */
    #define MAX_VNAME_LEN 30
    #define MAX_INAME_LEN 30
    #ifndef NULL
    #define NULL 0
    #endif
    /* Prototypes */
    #if defined(__STDC__)
    void sql_error(void);
    int oracle_connect(void);
    int alloc_descriptors(int, int, int);
    int get_dyn_statement(void);
    void set_bind_variables(void);
    void process_select_list(void);
    void help(void);
    #else
    void sql_error(/*_ void _*/);
    int oracle_connect(/*_ void _*/);
    int alloc_descriptors(/*_ int, int, int _*/);
    int get_dyn_statement(/* void _*/);
    void set_bind_variables(/*_ void -*/);
    void process_select_list(/*_ void _*/);
    void help(/*_ void _*/);
    #endif
    char *dml_commands[] = {"SELECT", "select", "INSERT", "insert",
    "UPDATE", "update", "DELETE", "delete"};
    EXEC SQL INCLUDE sqlda;
    EXEC SQL INCLUDE sqlca;
    EXEC SQL BEGIN DECLARE SECTION;
    char dyn_statement[1024];
    EXEC SQL VAR dyn_statement IS STRING(1024);
    EXEC SQL END DECLARE SECTION;
    EXEC ORACLE OPTION (ORACA=YES);
    EXEC ORACLE OPTION (RELEASE_CURSOR=YES);
    SQLDA *bind_dp;
    SQLDA *select_dp;
    /* Define a buffer to hold longjmp state info. */
    jmp_buf jmp_continue;
    char *db_uid="dbmuser/dbmuser@dbmdb";
    sql_context ctx;
    int err_sql;
    enum{
    SQL_SUCC=0,
    SQL_ERR,
    SQL_NOTFOUND,
    SQL_UNIQUE,
    SQL_DISCONNECT,
    SQL_NOTNULL
    int main()
    int i;
    EXEC SQL ENABLE THREADS;
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    EXEC SQL WHENEVER NOT FOUND DO sql_not_found();
    /* Connect to the database. */
    if (connect_database() < 0)
    exit(1);
    EXEC SQL CONTEXT USE :ctx;
    /* Process SQL statements. */
    for (;;)
    /* Allocate memory for the select and bind descriptors. */
    if (alloc_descriptors(MAX_ITEMS, MAX_VNAME_LEN, NAME_LEN) != 0)
    exit(1);
    (void) setjmp(jmp_continue);
    /* Get the statement. Break on "exit". */
    if (get_dyn_statement() != 0)
    break;
    EXEC SQL PREPARE S FROM :dyn_statement;
    EXEC SQL DECLARE C CURSOR FOR S;
    /* Set the bind variables for any placeholders in the
    SQL statement. */
    set_bind_variables();
    /* Open the cursor and execute the statement.
    * If the statement is not a query (SELECT), the
    * statement processing is completed after the
    * OPEN.
    EXEC SQL OPEN C USING DESCRIPTOR bind_dp;
    /* Call the function that processes the select-list.
    * If the statement is not a query, this function
    * just returns, doing nothing.
    process_select_list();
    /* Tell user how many rows processed. */
    for (i = 0; i < 8; i++)
    if (strncmp(dyn_statement, dml_commands, 6) == 0)
    printf("\n\n%d row%c processed.\n", sqlca.sqlerrd[2], sqlca.sqlerrd[2] == 1 ? '\0' : 's');
    break;
    /* Close the cursor. */
    EXEC SQL CLOSE C;
    /* When done, free the memory allocated for pointers in the bind and
    select descriptors. */
    for (i = 0; i < MAX_ITEMS; i++)
    if (bind_dp->V != (char *) 0)
    free(bind_dp->V);
    free(bind_dp->I); /* MAX_ITEMS were allocated. */
    if (select_dp->V != (char *) 0)
    free(select_dp->V);
    free(select_dp->I); /* MAX_ITEMS were allocated. */
    /* Free space used by the descriptors themselves. */
    SQLSQLDAFree(ctx, bind_dp);
    SQLSQLDAFree(ctx, select_dp);
    } /* end of for(;;) statement-processing loop */
    disconnect_database();
    EXEC SQL WHENEVER SQLERROR CONTINUE;
    EXEC SQL COMMIT WORK RELEASE;
    puts("\nHave a good day!\n");
    return;
    * Allocate the BIND and SELECT descriptors using sqlald().
    * Also allocate the pointers to indicator variables
    * in each descriptor. The pointers to the actual bind
    * variables and the select-list items are realloc'ed in
    * the set_bind_variables() or process_select_list()
    * routines. This routine allocates 1 byte for select_dp->V
    * and bind_dp->V, so the realloc will work correctly.
    alloc_descriptors(size, max_vname_len, max_iname_len)
    int size;
    int max_vname_len;
    int max_iname_len;
    int i;
    * The first sqlald parameter determines the maximum number of
    * array elements in each variable in the descriptor. In
    * other words, it determines the maximum number of bind
    * variables or select-list items in the SQL statement.
    * The second parameter determines the maximum length of
    * strings used to hold the names of select-list items
    * or placeholders. The maximum length of column
    * names in ORACLE is 30, but you can allocate more or less
    * as needed.
    * The third parameter determines the maximum length of
    * strings used to hold the names of any indicator
    * variables. To follow ORACLE standards, the maximum
    * length of these should be 30. But, you can allocate
    * more or less as needed.
    if ((bind_dp =
    SQLSQLDAAlloc(ctx, size, max_vname_len, max_iname_len)) ==
    (SQLDA *) 0)
    fprintf(stderr,
    "Cannot allocate memory for bind descriptor.");
    return -1; /* Have to exit in this case. */
    if ((select_dp =
    SQLSQLDAAlloc(ctx, size, max_vname_len, max_iname_len)) == (SQLDA *)
    0)
    fprintf(stderr,
    "Cannot allocate memory for select descriptor.");
    return -1;
    select_dp->N = MAX_ITEMS;
    /* Allocate the pointers to the indicator variables, and the
    actual data. */
    for (i = 0; i < MAX_ITEMS; i++) {
    bind_dp->I = (short *) malloc(sizeof (short));
    select_dp->I = (short *) malloc(sizeof(short));
    bind_dp->V = (char *) malloc(1);
    select_dp->V = (char *) malloc(1);
    return 0;
    int get_dyn_statement()
    char *cp, linebuf[256];
    int iter, plsql;
    for (plsql = 0, iter = 1; ;)
    if (iter == 1)
    printf("\nSQL> ");
    dyn_statement[0] = '\0';
    fgets(linebuf, sizeof linebuf, stdin);
    cp = strrchr(linebuf, '\n');
    if (cp && cp != linebuf)
    *cp = ' ';
    else if (cp == linebuf)
    continue;
    if ((strncmp(linebuf, "EXIT", 4) == 0) ||
    (strncmp(linebuf, "exit", 4) == 0))
    return -1;
    else if (linebuf[0] == '?' ||
    (strncmp(linebuf, "HELP", 4) == 0) ||
    (strncmp(linebuf, "help", 4) == 0))
    help();
    iter = 1;
    continue;
    if (strstr(linebuf, "BEGIN") ||
    (strstr(linebuf, "begin")))
    plsql = 1;
    strcat(dyn_statement, linebuf);
    if ((plsql && (cp = strrchr(dyn_statement, '/'))) ||
    (!plsql && (cp = strrchr(dyn_statement, ';'))))
    *cp = '\0';
    break;
    else
    iter++;
    printf("%3d ", iter);
    return 0;
    void set_bind_variables()
    int i, n;
    char bind_var[64];
    /* Describe any bind variables (input host variables) */
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    bind_dp->N = MAX_ITEMS; /* Initialize count of array elements. */
    EXEC SQL DESCRIBE BIND VARIABLES FOR S INTO bind_dp;
    /* If F is negative, there were more bind variables
    than originally allocated by sqlald(). */
    if (bind_dp->F < 0)
    printf ("\nToo many bind variables (%d), maximum is %d\n.",
    -bind_dp->F, MAX_ITEMS);
    return;
    /* Set the maximum number of array elements in the
    descriptor to the number found. */
    bind_dp->N = bind_dp->F;
    /* Get the value of each bind variable as a
    * character string.
    * C contains the length of the bind variable
    * name used in the SQL statement.
    * S contains the actual name of the bind variable
    * used in the SQL statement.
    * L will contain the length of the data value
    * entered.
    * V will contain the address of the data value
    * entered.
    * T is always set to 1 because in this sample program
    * data values for all bind variables are entered
    * as character strings.
    * ORACLE converts to the table value from CHAR.
    * I will point to the indicator value, which is
    * set to -1 when the bind variable value is "null".
    for (i = 0; i < bind_dp->F; i++)
    printf ("\nEnter value for bind variable %.*s: ",
    (int)bind_dp->C, bind_dp->S);
    fgets(bind_var, sizeof bind_var, stdin);
    /* Get length and remove the new line character. */
    n = strlen(bind_var) - 1;
    /* Set it in the descriptor. */
    bind_dp->L = n;
    /* (re-)allocate the buffer for the value.
    sqlald() reserves a pointer location for
    V but does not allocate the full space for
    the pointer. */
    bind_dp->V = (char *) realloc(bind_dp->V, (bind_dp->L + 1));
    /* And copy it in. */
    strncpy(bind_dp->V, bind_var, n);
    /* Set the indicator variable's value. */
    if ((strncmp(bind_dp->V, "NULL", 4) == 0) ||
    (strncmp(bind_dp->V, "null", 4) == 0))
    *bind_dp->I = -1;
    else
    *bind_dp->I = 0;
    /* Set the bind datatype to 1 for CHAR. */
    bind_dp->T = 1;
    return;
    void process_select_list()
    int i, null_ok, precision, scale;
    if ((strncmp(dyn_statement, "SELECT", 6) != 0) &&
    (strncmp(dyn_statement, "select", 6) != 0))
    select_dp->F = 0;
    return;
    /* If the SQL statement is a SELECT, describe the
    select-list items. The DESCRIBE function returns
    their names, datatypes, lengths (including precision
    and scale), and NULL/NOT NULL statuses. */
    select_dp->N = MAX_ITEMS;
    EXEC SQL DESCRIBE SELECT LIST FOR S INTO select_dp;
    /* If F is negative, there were more select-list
    items than originally allocated by sqlald(). */
    if (select_dp->F < 0)
    printf ("\nToo many select-list items (%d), maximum is %d\n",
    -(select_dp->F), MAX_ITEMS);
    return;
    /* Set the maximum number of array elements in the
    descriptor to the number found. */
    select_dp->N = select_dp->F;
    /* Allocate storage for each select-list item.
    sqlprc() is used to extract precision and scale
    from the length (select_dp->L).
    sqlnul() is used to reset the high-order bit of
    the datatype and to check whether the column
    is NOT NULL.
    CHAR datatypes have length, but zero precision and
    scale. The length is defined at CREATE time.
    NUMBER datatypes have precision and scale only if
    defined at CREATE time. If the column
    definition was just NUMBER, the precision
    and scale are zero, and you must allocate
    the required maximum length.
    DATE datatypes return a length of 7 if the default
    format is used. This should be increased to
    9 to store the actual date character string.
    If you use the TO_CHAR function, the maximum
    length could be 75, but will probably be less
    (you can see the effects of this in SQL*Plus).
    ROWID datatype always returns a fixed length of 18 if
    coerced to CHAR.
    LONG and
    LONG RAW datatypes return a length of 0 (zero),
    so you need to set a maximum. In this example,
    it is 240 characters.
    printf ("\n");
    for (i = 0; i < select_dp->F; i++)
    char title[MAX_VNAME_LEN];
    /* Turn off high-order bit of datatype (in this example,
    it does not matter if the column is NOT NULL). */
    sqlnul ((unsigned short *)&(select_dp->T), (unsigned short
    *)&(select_dp->T), &null_ok);
    switch (select_dp->T)
    case 1 : /* CHAR datatype: no change in length
    needed, except possibly for TO_CHAR
    conversions (not handled here). */
    break;
    case 2 : /* NUMBER datatype: use sqlprc() to
    extract precision and scale. */
    sqlprc ((unsigned int *)&(select_dp->L), &precision,
    &scale);
    /* Allow for maximum size of NUMBER. */
    if (precision == 0) precision = 40;
    /* Also allow for decimal point and
    possible sign. */
    /* convert NUMBER datatype to FLOAT if scale > 0,
    INT otherwise. */
    if (scale > 0)
    select_dp->L = sizeof(float);
    else
    select_dp->L = sizeof(int);
    break;
    case 8 : /* LONG datatype */
    select_dp->L = 240;
    break;
    case 11 : /* ROWID datatype */
    case 104 : /* Universal ROWID datatype */
    select_dp->L = 18;
    break;
    case 12 : /* DATE datatype */
    select_dp->L = 9;
    break;
    case 23 : /* RAW datatype */
    break;
    case 24 : /* LONG RAW datatype */
    select_dp->L = 240;
    break;
    /* Allocate space for the select-list data values.
    sqlald() reserves a pointer location for
    V but does not allocate the full space for
    the pointer. */
    if (select_dp->T != 2)
    select_dp->V = (char *) realloc(select_dp->V,
    select_dp->L + 1);
    else
    select_dp->V = (char *) realloc(select_dp->V,
    select_dp->L);
    /* Print column headings, right-justifying number
    column headings. */
    /* Copy to temporary buffer in case name is null-terminated */
    memset(title, ' ', MAX_VNAME_LEN);
    strncpy(title, select_dp->S, select_dp->C);
    if (select_dp->T == 2)
    if (scale > 0)
    printf ("%.*s ", select_dp->L+3, title);
    else
    printf ("%.*s ", select_dp->L, title);
    else
    printf("%-.*s ", select_dp->L, title);
    /* Coerce ALL datatypes except for LONG RAW and NUMBER to
    character. */
    if (select_dp->T != 24 && select_dp->T != 2)
    select_dp->T = 1;
    /* Coerce the datatypes of NUMBERs to float or int depending on
    the scale. */
    if (select_dp->T == 2)
    if (scale > 0)
    select_dp->T = 4; /* float */
    else
    select_dp->T = 3; /* int */
    printf ("\n\n");
    /* FETCH each row selected and print the column values. */
    EXEC SQL WHENEVER NOT FOUND GOTO end_select_loop;
    for (;;)
    EXEC SQL FETCH C USING DESCRIPTOR select_dp;
    /* Since each variable returned has been coerced to a
    character string, int, or float very little processing
    is required here. This routine just prints out the
    values on the terminal. */
    for (i = 0; i < select_dp->F; i++)
    if (*select_dp->I < 0)
    if (select_dp->T == 4)
    printf ("%-*c ",(int)select_dp->L+3, ' ');
    else
    printf ("%-*c ",(int)select_dp->L, ' ');
    else
    if (select_dp->T == 3) /* int datatype */
    printf ("%*d ", (int)select_dp->L,
    *(int *)select_dp->V);
    else if (select_dp->T == 4) /* float datatype */
    printf ("%*.2f ", (int)select_dp->L,
    *(float *)select_dp->V);
    else /* character string */
    printf ("%-*.*s ", (int)select_dp->L,
    (int)select_dp->L, select_dp->V);
    printf ("\n");
    end_select_loop:
    return;
    void help()
    puts("\n\nEnter a SQL statement or a PL/SQL block at the SQL> prompt.");
    puts("Statements can be continued over several lines, except");
    puts("within string literals.");
    puts("Terminate a SQL statement with a semicolon.");
    puts("Terminate a PL/SQL block (which can contain embedded
    semicolons)");
    puts("with a slash (/).");
    puts("Typing \"exit\" (no semicolon needed) exits the program.");
    puts("You typed \"?\" or \"help\" to get this message.\n\n");
    int connect_database()
    err_sql = SQL_SUCC;
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    EXEC SQL WHENEVER NOT FOUND DO sql_not_found();
    EXEC SQL CONTEXT ALLOCATE :ctx;
    EXEC SQL CONTEXT USE :ctx;
    EXEC SQL CONNECT :db_uid;
    if(err_sql != SQL_SUCC){
    printf("err => connect database(ctx:%ld, uid:%s) failed!\n", ctx, db_uid);
    return -1;
    return 1;
    int disconnect_database()
    err_sql = SQL_SUCC;
    EXEC SQL WHENEVER SQLERROR DO sql_error();
    EXEC SQL WHENEVER NOT FOUND DO sql_not_found();
    EXEC SQL CONTEXT USE :ctx;
    EXEC SQL COMMIT WORK RELEASE;
    EXEC SQL CONTEXT FREE:ctx;
    return 1;
    void sql_error()
    printf("err => %.*s", sqlca.sqlerrm.sqlerrml, sqlca.sqlerrm.sqlerrmc);
    printf("in \"%.*s...\'\n", oraca.orastxt.orastxtl, oraca.orastxt.orastxtc);
    printf("on line %d of %.*s.\n\n", oraca.oraslnr, oraca.orasfnm.orasfnml,
    oraca.orasfnm.orasfnmc);
    switch(sqlca.sqlcode) {
    case -1: /* unique constraint violated */
    err_sql = SQL_UNIQUE;
    break;
    case -1012: /* not logged on */
    case -1089:
    case -3133:
    case -1041:
    case -3114:
    case -3113:
    /* �6�Ŭ�� shutdown�ǰų� �α��� ���°� �ƴҶ� ��b�� �õ� */
    /* immediate shutdown in progress - no operations are permitted */
    /* end-of-file on communication channel */
    /* internal error. hostdef extension doesn't exist */
    err_sql = SQL_DISCONNECT;
    break;
    case -1400:
    err_sql = SQL_NOTNULL;
    break;
    default:
    err_sql = SQL_ERR;
    break;
    EXEC SQL CONTEXT USE :ctx;
    EXEC SQL WHENEVER SQLERROR CONTINUE;
    EXEC SQL ROLLBACK WORK;
    void sql_not_found()
    err_sql = SQL_NOTFOUND;

    Hi Jane,
    What version of Berkeley DB XML are you using?
    What is your operating system and your hardware platform?
    For how long have been the application running?
    What is your current container size?
    What's set for EnvironmentConfig.setThreaded?
    Do you know if containers have previously not been closed correctly?
    Can you please post the entire error output?
    What's the JDK version, 1.4 or 1.5?
    Thanks,
    Bogdan

  • Memory leak using xslprocessor.valueof in 11.1.0.6.0 - 64bit ??

    My company has made the decision to do all of our internal inter-system communication using XML. Often we may need to transfer thousands of records from one system to another and due to this (and the 32K limit in prior versions) we're implementing it in 11g. Currently we have Oracle 11g Enterprise Edition Release 11.1.0.6.0 on 64 bit Linux.
    This is a completely network/memory setup - the XML data comes in using UTL_HTTP and is stored in a CLOB in memory and then converted to a DOMDocument variable and finally the relevant data is extracted using xslprocessor.valueof calls.
    While this is working fine for smaller datasets, I've discovered that repeated calls with very large documents cause the xslprocessor to run out of memory with the following message:
    ERROR at line 1:
    ORA-04030: out of process memory when trying to allocate 21256 bytes
    (qmxdContextEnc,)
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 1010
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 1036
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 1044
    ORA-06512: at "SCOTT.UTL_INTERFACE_PKG", line 206
    ORA-06512: at line 28
    Elapsed: 00:03:32.45
    SQL>
    From further testing, it appears that the failure occurs after approximately 161,500 calls to xslprocessor.valueof however I'm sure this is dependent on the amount of server memory available (6 GB in my case).
    I expect that we will try and log a TAR on this, but my DBA is on vacation right now. Has anyone else tried calling the xslprocessor 200,000 times in a single session?
    I've tried to make my test code as simple as possible in order to track down the problem. This first block simply iterates through all of our offices asking for all of the employees at that office (there are 140 offices in the table).
    DECLARE
    CURSOR c_offices IS
    SELECT office_id
    FROM offices
    ORDER BY office_id;
    r_offices C_OFFICES%ROWTYPE;
    BEGIN
    OPEN c_offices;
    LOOP
    FETCH c_offices INTO r_offices;
    EXIT WHEN c_offices%NOTFOUND;
    utl_interface_pkg.get_employees(r_offices.office_id);
    END LOOP;
    CLOSE c_offices;
    END;
    Normally I'd be returning a collection of result data from this procedure, however I'm trying to make things as simple as possible and make sure I'm not causing the memory leak myself.
    Below is what makes the SOAP calls (using the widely circulated UTL_SOAP_API) to get our data and then extracts the relevant parts. Each office (call) should return between 200 and 1200 employee records.
    PROCEDURE get_employees (p_office_id IN VARCHAR2)
    l_request utl_soap_api.t_request;
    l_response utl_soap_api.t_response;
    l_data_clob CLOB;
    l_xml_namespace VARCHAR2(100) := 'xmlns="' || G_XMLNS_PREFIX || 'EMP.wsGetEmployees"';
    l_xml_doc xmldom.DOMDocument;
    l_node_list xmldom.DOMNodeList;
    l_node xmldom.DOMNode;
    parser xmlparser.Parser;
    l_emp_id NUMBER;
    l_emp_first_name VARCHAR2(100);
    l_emp_last_name VARCHAR2(100);
    BEGIN
    --Set our authentication information.
    utl_soap_api.set_proxy_authentication(p_username => G_AUTH_USER, p_password => G_AUTH_PASS);
    l_request := utl_soap_api.new_request(p_method => 'wsGetEmployees',
    p_namespace => l_xml_namespace);
    utl_soap_api.add_parameter(p_request => l_request,
    p_name => 'officeId',
    p_type => 'xsd:string',
    p_value => p_office_id);
    l_response := utl_soap_api.invoke(p_request => l_request,
    p_url => G_SOAP_URL,
    p_action => 'wsGetEmployees');
    dbms_lob.createtemporary(l_data_clob, cache=>FALSE);
    l_data_clob := utl_soap_api.get_return_clob_value(p_response => l_response,
    p_name => '*',
    p_namespace => l_xml_namespace);
    l_data_clob := DBMS_XMLGEN.CONVERT(l_data_clob, 1); --Storing in CLOB converted symbols (<">) into escaped values (&lt;, &qt;, &gt;).  We need to CONVERT them back.
    parser := xmlparser.newParser;
    xmlparser.parseClob(parser, l_data_clob);
    dbms_lob.freetemporary(l_data_clob);
    l_xml_doc := xmlparser.getDocument(parser);
    xmlparser.freeparser(parser);
    l_node_list := xslprocessor.selectNodes(xmldom.makeNode(l_xml_doc),'/employees/employee');
    FOR i_emp IN 0 .. (xmldom.getLength(l_node_list) - 1)
    LOOP
    l_node := xmldom.item(l_node_list, i_emp);
    l_emp_id := dbms_xslprocessor.valueOf(l_node, 'EMPLOYEEID');
    l_emp_first_name := dbms_xslprocessor.valueOf(l_node, 'FIRSTNAME');
    l_emp_last_name := dbms_xslprocessor.valueOf(l_node, 'LASTNAME');
    END LOOP;
    xmldom.freeDocument(l_xml_doc);
    END get_employees;
    All of this works just fine for smaller result sets, or fewer iterations (only the first two or three offices). Even up to the point of failure the data is being extracted correctly - it just eventually runs out of memory. Is there any way to free up the xslprocessor? I've even tried issuing DBMS_SESSION.FREE_UNUSED_USER_MEMORY but it makes no difference.

    Replying to both of you -
    Line 206 is the first call to xslprocessor.valueof:
    LINE TEXT
    206 l_emp_id := dbms_xslprocessor.valueOf(l_node, 'EMPLOYEEID');
    This is one function inside of a larger package (the UTL_INTERFACE_PKG). The package is just a grouping of these functions - one for each type of SOAP interface we're using. None of the others exhibited this problem, but then none of them return anywhere near this much data either.
    Here is the contents of V$TEMPORARY_LOBS immediately after the crash:
    SID CACHE_LOBS NOCACHE_LOBS ABSTRACT_LOBS
    132 0 0 0
    148 19 1 0
    SID 132 is a SYS session and SID 148 is mine.
    I've discovered with further testing that if I comment out all of the xslprocessor.valueof calls except for the first one the code will complete successfully. It executes the valueof call 99,463 times. If I then uncomment one of those additional calls, we double the number of executions to a theoretical 198,926 (which is greater than the 161,500 point where it usually crashes) and it runs out of memory again.

Maybe you are looking for

  • Images in Spry menu blank in IE

    I have a website with a spry drop down menu. It appears perfect in Safari and Firefox, but the image areas are blank in IE. Any help?

  • Finding Permutations of an Array

    I was hoping I could get a little help on finding a way to cycle through an array and print all of the permutations of its elements. I have a short example of what I am trying to do. If someone could fill in the blank, I could understand how to use i

  • Collective PO - Generating Delivery Orders for STO using VL10B?

    Dear Folks, I have created a collective PO from various STO. After goods receipt for the PO, I need to generate delivery orders for the STO. Is it possible to create the delivery orders using transaction VL10B/VL10Batch instead of WF30/WF50? The issu

  • Acrobat will not play embedded videos...

    After embedding a video, I click on it and it will not play. However, our IT guy opened the .pdf file in Acrobat Reader and it played just fine. So his solution is to do my work in Acrobat 11 Pro, then check that it works in Reader. So, according to

  • Soft links and inodes

    It's my understanding that a unix file consists of three components: a filename, an inode, and the data. So if you create a text file called "original", you get something like this: original -------> inode ------> data Then if you create a soft link