Ant Colony Algorithm(ACO)  for best path searching on a graph

hello,
i am trying to use aco alg to print shortest path from a specified source node to a destination node. i have created a graph where i have all the vertices (array of strings) and edges(neighbours) stored. I am trying to get the ants to trail randomly on the connected edges from start to dest and then return the route.please can someone give me some advice??.
my code is as follows,...
public class ACOLevel7 {
     private static myGraph g = new myGraph();
     public static void main(String[] args) {
          String start = "";
          String finish = "";
     ACOLevel7 p = new ACOLevel7(g,start,finish);
/* instance variables */
     protected String[] names = g.getNames();
     protected boolean[] Edges;
     private static String istart;
     private static String idestination;
     private static int iAntSteps = idestination.length();
private static int iColonySize = 10000;
private static double iPheromoneStrength = 1.8d;
private static int iEvaporationSpan = 100;
private static double iEvaporationRate = 0.98d;
private boolean[][] graphEdges;
private Random iRandom = new Random();
/* constructor */
public ACOLevel7(myGraph g, String start, String finish) {
     Map map = new Map();
     istart = start;
     idestination = finish;
     graphEdges = g.getEdges();
     if(g.validStartAndFinish(istart,idestination)){
     double bestScore = -1;
     System.out.println("Level 7");
     System.out.println(">>> Here is your route planner! <<<");
     for (int i = 0; i < iColonySize; i++) {
     Ant ant = new Ant();
     ant.wander(map, iAntSteps);
     double score = calcScore(ant.getTrail());
     ant.dropPheromones(score);
     if (score > bestScore) {
     System.out.println(String.format(" %5d %s %4.2f", (new Object[]
     { new Integer(i), ant.print(), new Double(score) })));
     bestScore = score;
     (map).tick();
     System.out.println("\n>>> finished <<<");
     else {
          System.out.println("\n>>> start or finish not in names array<<<");
double calcScore(AntTrail trail) {
double score = 0;
for (int i = 1; i <= iAntSteps; i++);
//      Gets the next Node to travel to
I NEED HELP HERE!!
     String String = idestination.substring(i - 1);
return (score / 55d) * iPheromoneStrength;
private class Map {
/* instance variables */
HashMap Map = new HashMap();
Location iStart = new Location();
/* constructor */
public Map() {
Map.put(iStart.getKey(), iStart);
public Location start() {
return iStart;
public ArrayList to(Location fromHere) {
// generate every vertex location that is valid from here
ArrayList newLocations = new ArrayList();
for (int i = 0; i < istart.length(); i++) {
Location n = new Location(fromHere,
String.valueOf(istart.String(i)));
if (!Map.containsKey(n.getKey()))
Map.put(n.getKey(), n); // add to the map
else
n = (Location)Map.get(n.getKey()); // existing location
newLocations.add(n);
return newLocations;
public void tick() {
Iterator i = Map.entrySet().iterator();
while (i.hasNext())
if (((Location)((java.util.Map.Entry)i.next()).getValue())
.evaporate())
i.remove();
private class Location {
private String iKey;
private String iname;
private double iPheromones = 1;
private int iEvaporation = iEvaporationSpan;
/* constructor: start location */
public Location() { istartt = ""; }
/* constructor: from another location */
public Location(Location from, String names) {
iKey = from.getKey() + "|" + names;
istartt = names;
public String getKey() {
return iKey;
public String getName() {
return istartt;
//public String getidestt(){
public void dropPheromones(double d) {
iPheromones += d;
iEvaporation = iEvaporationSpan; // reset the evaporation counter
public double getPheromones() {
return iPheromones;
public boolean evaporate() {
iPheromones = iPheromones * iEvaporationRate;
return --iEvaporation == 0;
private class Ant {
private AntTrail iTrail = new AntTrail();
public void wander(Map map, int steps) {
iTrail.addStep(map.iname());
for (int i = 0; i < steps; i++)
step(map);
private void step(Map map) {
ArrayList choices =map.to(iTrail.current());
Location next = null;
double span;
// sum the available span
span = 0;
Iterator i1 = choices.iterator();
while (i1.hasNext())
span = span + ((Location)i1.next()).getPheromones();
// choose an index value
double index = iRandom.nextDouble() * span;
// find the location within the span with this index
span = 0;
Iterator i2 = choices.iterator();
while (i2.hasNext()) {
next = (Location)i2.next();
span = span + next.getPheromones();
if (index < span) break;
// add the chosen location to the trail
iTrail.addStep(next);
public AntTrail getTrail() {
return iTrail;
public void dropPheromones(double score) {
iTrail.dropPheromones(score);
public String print() {
return iTrail.print();
private class AntTrail {
private ArrayList iTrail = new ArrayList();
public void addStep(Location n) {
iTrail.add(n);
public Location getStep(int index) {
return (Location)iTrail.get(index);
public Location current() {
return getStep(iTrail.size() - 1);
public void dropPheromones(double score) {
Iterator i = iTrail.iterator();
while (i.hasNext())
((Location)i.next()).dropPheromones(score);
public String print() {
String s1 = "";
Iterator i = iTrail.iterator();
while (i.hasNext()) {
String s2 = ((Location)i.next()).getName();
if (!s1.equals("") && !s2.equals("")) s1 += "-";
s1 += s2;
return s1;
Message was edited by:
law1211

hello,
i am trying to use aco alg to print shortest path from a specified source node to a destination node. i have created a graph where i have all the vertices (array of strings) and edges(neighbours) stored. I am trying to get the ants to trail randomly on the connected edges from start to dest and then return the route.please can someone give me some advice??.
my code is as follows,...
public class ACOLevel7 {
     private static myGraph g = new myGraph();
     public static void main(String[] args) {
          String start = "";
          String finish = "";
     ACOLevel7 p = new ACOLevel7(g,start,finish);
/* instance variables */
     protected String[] names = g.getNames();
     protected boolean[] Edges;
     private static String istart;
     private static String idestination;
     private static int iAntSteps = idestination.length();
private static int iColonySize = 10000;
private static double iPheromoneStrength = 1.8d;
private static int iEvaporationSpan = 100;
private static double iEvaporationRate = 0.98d;
private boolean[][] graphEdges;
private Random iRandom = new Random();
/* constructor */
public ACOLevel7(myGraph g, String start, String finish) {
     Map map = new Map();
     istart = start;
     idestination = finish;
     graphEdges = g.getEdges();
     if(g.validStartAndFinish(istart,idestination)){
     double bestScore = -1;
     System.out.println("Level 7");
     System.out.println(">>> Here is your route planner! <<<");
     for (int i = 0; i < iColonySize; i++) {
     Ant ant = new Ant();
     ant.wander(map, iAntSteps);
     double score = calcScore(ant.getTrail());
     ant.dropPheromones(score);
     if (score > bestScore) {
     System.out.println(String.format(" %5d %s %4.2f", (new Object[]
     { new Integer(i), ant.print(), new Double(score) })));
     bestScore = score;
     (map).tick();
     System.out.println("\n>>> finished <<<");
     else {
          System.out.println("\n>>> start or finish not in names array<<<");
double calcScore(AntTrail trail) {
double score = 0;
for (int i = 1; i <= iAntSteps; i++);
//      Gets the next Node to travel to
I NEED HELP HERE!!
     String String = idestination.substring(i - 1);
return (score / 55d) * iPheromoneStrength;
private class Map {
/* instance variables */
HashMap Map = new HashMap();
Location iStart = new Location();
/* constructor */
public Map() {
Map.put(iStart.getKey(), iStart);
public Location start() {
return iStart;
public ArrayList to(Location fromHere) {
// generate every vertex location that is valid from here
ArrayList newLocations = new ArrayList();
for (int i = 0; i < istart.length(); i++) {
Location n = new Location(fromHere,
String.valueOf(istart.String(i)));
if (!Map.containsKey(n.getKey()))
Map.put(n.getKey(), n); // add to the map
else
n = (Location)Map.get(n.getKey()); // existing location
newLocations.add(n);
return newLocations;
public void tick() {
Iterator i = Map.entrySet().iterator();
while (i.hasNext())
if (((Location)((java.util.Map.Entry)i.next()).getValue())
.evaporate())
i.remove();
private class Location {
private String iKey;
private String iname;
private double iPheromones = 1;
private int iEvaporation = iEvaporationSpan;
/* constructor: start location */
public Location() { istartt = ""; }
/* constructor: from another location */
public Location(Location from, String names) {
iKey = from.getKey() + "|" + names;
istartt = names;
public String getKey() {
return iKey;
public String getName() {
return istartt;
//public String getidestt(){
public void dropPheromones(double d) {
iPheromones += d;
iEvaporation = iEvaporationSpan; // reset the evaporation counter
public double getPheromones() {
return iPheromones;
public boolean evaporate() {
iPheromones = iPheromones * iEvaporationRate;
return --iEvaporation == 0;
private class Ant {
private AntTrail iTrail = new AntTrail();
public void wander(Map map, int steps) {
iTrail.addStep(map.iname());
for (int i = 0; i < steps; i++)
step(map);
private void step(Map map) {
ArrayList choices =map.to(iTrail.current());
Location next = null;
double span;
// sum the available span
span = 0;
Iterator i1 = choices.iterator();
while (i1.hasNext())
span = span + ((Location)i1.next()).getPheromones();
// choose an index value
double index = iRandom.nextDouble() * span;
// find the location within the span with this index
span = 0;
Iterator i2 = choices.iterator();
while (i2.hasNext()) {
next = (Location)i2.next();
span = span + next.getPheromones();
if (index < span) break;
// add the chosen location to the trail
iTrail.addStep(next);
public AntTrail getTrail() {
return iTrail;
public void dropPheromones(double score) {
iTrail.dropPheromones(score);
public String print() {
return iTrail.print();
private class AntTrail {
private ArrayList iTrail = new ArrayList();
public void addStep(Location n) {
iTrail.add(n);
public Location getStep(int index) {
return (Location)iTrail.get(index);
public Location current() {
return getStep(iTrail.size() - 1);
public void dropPheromones(double score) {
Iterator i = iTrail.iterator();
while (i.hasNext())
((Location)i.next()).dropPheromones(score);
public String print() {
String s1 = "";
Iterator i = iTrail.iterator();
while (i.hasNext()) {
String s2 = ((Location)i.next()).getName();
if (!s1.equals("") && !s2.equals("")) s1 += "-";
s1 += s2;
return s1;
Message was edited by:
law1211

Similar Messages

  • Aco  implemenataion for shortest paths.

    has anyone used ant colony optimization algorithm for finding shortest paths other than for the tsp? please i need some help and advice. thanks

    sorry for not being specific and the insubsequent reply. am just doing some research on aco, i want to try and implement it for best bath planning on a map/graph. I've been looking around for some example on such and noticed that this algorithm is mainly used for tsp problem which got me questioning the possibility of my task. I just want to know if it is definitely possible with aco as i will give it a go in this case. Implementing this algorthm successfully is the main challenge of my project so i cannot contemplate another algorithm option. Thanks for your time.

  • What is the best Path for a J2EE developer with oracle?

    Hi,
    I am a J2EE developer, for the time being I work at a Commercial Bank as an enterprise application developer. I have learnt java when I was following a local IT diploma and with the help of books, works at my working place and the internet , today I am developing J2EE applications with JSP,Servlets,JSF2.0,EJB3.0 and third party JSF libraries etc. (I am also developing softwares using other programing languages such as Asp.net, C#.net, WPF etc, but I prefer to be in the java path). Other than that, I'm also working as the UI designer of most of our applications.
    I have those skills and practice after working for 4 years as a web/enterprise application developer & a UI designer, but now I have to focus on some paper qualifications and hence I am doing BCS.
    Now I want to be a java professional in Oracle's path, and I need to know what is the best path I can select to move with Oracle. I finished my classes of SCJP , but didn't do the exams as there were some rumors that Oracle will dump those exams in the future. I am interested in Oracle university, but I am unable to even think about it as I live in Sri Lanka and don't have that much of financial wealth to go USA and join.
    So I really appreciate if any Oracle professional could suggest me the best educational path according to what I mentioned about my technical and career background. Because I have a dream to join Oracle one day as an employee and being a good contributer to the same forum, which I am getting helps today!
    Thanks!!!

    As you can see on our website, Oracle did not retire the Java certifications. You can browse through the available certifications and hopefully help to determine your path.
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=140
    SCJP has now become Oracle Certified Professional Java Programmer. You can find more info on those exams on our website here: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=320.
    Regarding training, perhaps live virtual training would be an option for you. You can find more information at http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=233.
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • I have been searching for best app for converting handwriting to text. Write pad seems great does the app allow direct entry into a template?

    I have been searching for best app for converting handwriting to text on my ipad. Writepad  by Phat seems great does the app allow direct entry into a template?

    Writepad only works within the app itself - it does not allow you to write in another program. While it does allow you to save a document as a text or pdf file, it won't (I believe) let you open a file created outside of Writepad and work on it (except maybe text files - would have to investigate and see).

  • Biztalk WCF-SQL polling sample using a FOR XML Path

    I've been searching in the web for a sample that uses FOR XML "PATH" to poll the SQL database . The result returned from my query is a parent child data and FOR XML PATH is the best choice to structure it in that way . I guess I'm missing something while
    generating the schemas from this stored procedure.
    I guess Dan Rosanova has touched on this concept (http://social.technet.microsoft.com/wiki/contents/articles/3480.aspx)
    , but its using XML Auto. Again there is no sample available so makes things a bit difficult.
    Can someone point to a sample walkthrough , generating the schemas and then later using it in the application.
    Thanks
    Anthstone

    I used XMLPolling and it worked for me. you can go for XMLPolling. Steps to be followed:
    1) Create the SP which will have the SELECT query similar to below:
    ;WITH XMLNAMESPACES (default 'http://yourcustomnamespace')
     Select * from Employee FOR XML PATH('YourCustomRootNode') 
    2) Create a schema out of the table using the following query
    Select * from Employee for
    xml
    auto,
    xmlschema 
    3) Re-name the root name and namespace as per you mentioned in point#1 (YourCustomRootNode)
    4) Create an Envelope Schema and refer the schema from point#3. Also make a note of the root node name and namespace that we need to specify
    in the admin console.
    5) Assign the Body XPath to debatch. Refer
    this.  Deploy the solution.
    6) In the Admin console, add the Root Node Name and namespace mentioned in point#4 under "XmlStoredProcedureRoodNodeName" and "XmlStoredProcedureRoodNodeNamespace"
    There you go. I did this for debatching. You can do for nomarl batch message instead of Envelope create a normal document schema.
    Thanks
    SKGuru

  • PB12.5 Classic - What is the best path to interface with MS Outlook

    I am sure this topic has been covered but darn if I can find anything on it.
    My client is moving over to MS Outlook.  Not sure at this point if its going to be just an exchange server or outlook 365.  I am trying to figure out what the best path would be to interface to it.
    Using: PowerBuilder 12.5 Classic (no access to vb development)
    What functionality is needed...
    Need to be able to access emails including attachments. Need to have option to send in HTML format so MAPI connection may not be feasible.
    Need to have access to the calendar to view/edit meetings/appointments including viewing users availability (Busy search).
         Must also be able to know if users accept/reject meeting requests.
    Looking for the best direction... use exchange web service api.... smtp...ole...etc..
    Was directed to look into using Exchange Web Services managed API but unfortunately not able to figure out how to connect to it using PB12.5 classic, all examples I can find use C# or VB.
    Note: The application that would run this runs on PC's and thin clients.
    If there is a best direction could someone point me to some sample code/tutorial/whitepaper etc.. on how best to proceed it would be greatly appreciated.
    Thanks to all that reply
    Dave V.

    I have an example of using OLE Automation with Outlook:
    http://www.topwizprogramming.com/freecode_outlook.html
    I also have an EMailSMTP example that can be used to send email. Now that we have switched to Outlook365 we started having sporadic issues. Now we used the paid version of the SMTP control at AspEmail.com - Free Secure ASP Mail Component for an ASP and ASP.NET Environment.
    The paid version is required for TLS secure connections. Since PB is 32bit, make sure you use the 32bit version.
    OLEObject oleMail
    String ls_html, ls_file
    Integer li_rc
    // create Mail object
    oleMail = Create OLEObject
    li_rc = oleMail.ConnectToNewObject("Persits.MailSender")
    If li_rc < 0 Then
      MessageBox("Process", "Persits.MailSender failed: " + String(li_rc))
      Return
    End If
    // build the body
    ls_html  = "<html><body>"
    ls_html += "<p>This is a test!</p>"
    ls_html += "</body></html>"
    // email the file
    oleMail.RegKey   = "xxxxx"
    oleMail.Host     = "smtp.office365.com"
    oleMail.Username = "xxxxx"
    oleMail.Password = "xxxxx"
    oleMail.Port     = 587
    oleMail.TLS      = True
    oleMail.From     = "[email protected]"
    oleMail.Subject  = "A test of Persits.MailSender from PowerBuilder"
    oleMail.IsHTML   = True
    oleMail.Body     = ls_html
    oleMail.AddAddress("[email protected]")
    oleMail.Send()
    oleMail.DisconnectObject()
    MessageBox("Process", "Complete!")

  • My app went from working fine to: Id field not defined for cfc Path.to.my.ORMCfCPag when I restarted

    Hi everyone,
    I have a CF9 ORM problem that I haven't been able to figure out and thought I'd see if you had any idea. I have seen a few postings talking about a "similar" problem but none of them correctly resolved this particular issue. I appreciate any help you can offer.
    I recently created a CF9 app where I generated scripted ORM CFCs for my app using ColdFusion Builder. It worked great and my app was completely working. However, when I was adding some enhancements, I ran into an error when I restarted the CF app server. Here's the message I keep getting:
    "Id field not defined for cfc Path.to.my.ORMCfCPage. Either the table should have a PK column mapped to a cfc field OR at least one field should be specified as id."
    My App.cfc file only had orm enabled (no other mappings) when it was working. I've since tried specifying things like the cfc location etc. and it still hasn't helped.
    // MORE DETAILS:
    - When my app was working, I had moved it to 2 other servers. I had this error on both of those but not on my local copy. They all use the exact same database.
    - The last change I made before the error was adding a generator="identity" field to my generated ORM beans. Once I got the message, I tried changing it back and restarting again but still got the error.
    - I've also made sure all of the Adobe tags are in my web root (as suggested in a prior posting about this problem). I've search all over for a solution and nobody has a solution posted online that works so far.
    Do you have any idea why this is happening?
    Thanks!
    Jeff

    Quick thought and probably not relevant, but do you have this.ormsettings.savemapping set to true in your Application.cfc? I've fallen foul of this before - once CF has generated the hbmxml files and saved them to disk you can make all kinds of changes to your code which won't make a difference as it'll continue to read from the file versions, but only for certain properties and methods at times it seems.
    Long shot I know, but I found CF ORM to be a nightmare for seemingly random caching.

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

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

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

  • Error while generating Static web pages hierarchy for Web Crawler searching

    Hi All,
    When we are trying to generate Static web pages for Web Crawler searching for our B2C application it is resulting in an error :
    u201CUnable to initiate generation of static pages; check logsu201C
    After tracing the log files we found out the below detailed information:
    application [catalogtool] Error in method getResourceAsStream(WEB-INF/cfg/catalog-site-config.xml). The error is: com.sap.engine.services.servlets_jsp.server.exceptions.WebMalformedURLException: A resource path must begin with [/]. The error occurred in [].
    at com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl.getResource(ServletContextImpl.java:452)
    at com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl.getResourceAsStream(ServletContextImpl.java:481)
    at com.sap.isa.core.ActionServlet.getResourceAsStream(ActionServlet.java:297)
    at com.sap.isa.catalog.impl.CatalogSite.loadConfigFile(CatalogSite.java:666)
    at com.sap.isa.catalog.impl.CatalogSite.initBackendObject(CatalogSite.java:209)
    at com.sap.isa.core.eai.BackendObjectManagerImpl.createBackendBusinessObject(BackendObjectManagerImpl.java:190)
    at com.sap.isa.catalog.CatalogFactory.getCatalogSite(CatalogFactory.java:261)
    at com.sap.isa.catalog.webcatalog.WebCatInfo.init(WebCatInfo.java:237)
    at com.sap.isa.businessobject.webcatalog.CatalogBusinessObjectManager.createCatalog(CatalogBusinessObjectManager.java:103)
    at com.sap.isa.catadmin.actions.WebCrawlerAction.doPerform(WebCrawlerAction.java:93)
    at com.sap.isa.core.BaseAction.execute(BaseAction.java:212)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at com.sap.isa.core.RequestProcessor.processActionPerform(RequestProcessor.java:683)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:400)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
    at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
    at com.sap.isa.core.RequestProcessor.processForwardConfig(RequestProcessor.java:276)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
    at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:400)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Can anyone assist as to what is getting wrong?
    I have a doubt in specifying the parameters "dumpFolder" & "templateFolder" in catalogtool XCM settings, We need to pass full path of the server directory here. please suggest what exactly has to be passed here.
    Currently i am passing values like this "/catalog/dump"& "/catalog/templates".
    We are running on CRM-7.0
    Thanks in advance.
    Pnakaj.

    Any Updates friends??

  • Pre-Size Your PPI for Best Print - Once Good Advice Still Good?

    In another thread someone mentinoed pre-sizing image data to prepare it for best printing.
    For a long time it's been "standard advice" to resize images so that the ppi is an even division of the printer's dpi, because some years ago occasionally one would run across printers that would produce poor results if you didn't - you might see jaggies in straight edges for example.
    Thing is, computers have (not so) quietly been getting more powerful over time, and printer makers have been competing with one another to try to make their printers produce better results than the other guys.  One way they've done this is by improving the quality of the algorithms in the printer drivers.  Use of mega storage and high accuracy math, which was once taxing on older computer systems, is now standard practice.
    So it's time to question the old rule of thumb.
    Making a few assumptions about the many variables (what printer, what OS, what version of drivers, what application being used to print) , there seem to be several questions here:
    1.  Can the image resolution be too high, causing the printer driver to make bad decisions about what ink dots to lay down where on the paper?
    2.  Does it help or matter if the image PPI is an even division of the printer's DPI?
    As I have done in the past, I set out to do some actual testing, to see if I can actually SEE anything to help answer these questions.
    I created a sharp image to be printed at 3 x 2 inches:  http://Noel.ProDigitalSoftware.com/ForumPosts/Ghirardelli.jpg
    Then I printed it at 6 different resolutions (1000, 720, 567, 300, 200, and 100 ppi) by resampling the image, labeling it, printing from Photoshop CS5, and feeding the same sheet of HP Premium Plus photo paper through my older HP 932c inkjet printer 6 times.  The printer was set to its highest quality settings, including 2400 x 1200 dpi mode.  This was the result:
    I then looked critically and as objectively as I could at the different images.  Here are my observations:
    Naked eye:
    The four highest resolution images (1000, 720, 567, and 300 ppi) all seemed to have an equivalent high level of crisp detail.
    I could not detect the inkjet dots.  Smooth objects look smooth.
    Jeweler's Loupe:
    I could see significant reduction in the finest details in the 300 ppi print vs. the three higher resolution prints, and a slight reduction in the 567 ppi vs. 720.
    At no resolution were any jaggies or evidence of aliasing visible.
    The inkjet dot pattern was plainly visible, and it does differ between the different prints.  But it was not possible to say whether one was "better".
    Things seem to have a little more texture in the 1000 ppi print vs. the 720 and 567 ppi prints.
    Macro Photo:
    Lacking a high resolution scanner, I took photographs of the 6 different prints.  Unfortunately, I didn't have the time to set up with my best lighting and lens combination, so I got some reflections off the glossy paper, and and at this resolution I can't really see the inkject dots in the photos.  I want to repeat this when I can find more time to do it better.  As I did these photos hand-held, I believe the variances between them could be slightly influencing the results.  But I'm going to post them anyway, for you to see.
    I could see ever so slightly more detail in the 720 ppi print vs. the 1000 ppi print, though from the size of the tiny dust/light reflections I think it may have just been the better focused.  Note that this observation is not supported by direct observation through the jeweler's loupe, above.
    The 1000 ppi and 567 ppi prints seems to have slightly more noise or texture than the 720 ppi print.  Again, this might be issues introduced by the photography process, though I did note a possible increase in texture in the 1000 ppi print with the jeweler's loupe as well.
    Beyond just the blurring, I could see some evidence that straight lines are not quite as straight in the lower resolutions (300 ppi and lower).  This seemed more apparent than with the jeweler's loupe examination, and I wonder whether the Photoshop downsampling process could have introduced it.
    Left to right, top to bottom:  1000, 720, 567, 300, 200, 100:
    Conclusions:
    Printing to my HP 932c inkject printer on Windows 7 x64
    300 ppi is not sufficient to coax the best possible detail out of an inkjet printer.  It appears a number in the vicinity of 720 or more is better, and this number could be much higher with modern very high resolution printers (mine's old). 
    Speed was no different in printing any of these - a modern computer can process a huge amount of data in the blink of an eye.
    When a sufficiently high resolution image is printed (in this case 567 ppi or higher) I saw virtually no evidence that a particular ppi value is superior, for example an even division of the printer's dpi, though in hindsight I realize I should have prepared a 600 ppi image (duh).  I will add a 600 ppi image before I re-photograph the results.
    It's possible ever so slightly more texture becomes visible at 1000 ppi than 720 ppi, but it might be just noise.
    Practically speaking, from looking critically at the results I could not see a reason to pre-size the image for a specific ppi value.
    I encourage you to experiment and report your results with your particular combination of gear.
    Your comments are welcome!
    -Noel

    Noel Carboni wrote:
    Jeff Schewe wrote:
    I would never suggest people actually downsample though...why waste the pixels?
    Exactly.  There was a statement in another recent thread that downsampling to be an even fraction of the print dpi was important to do.
    It might have been a misapplied extension of the advice to upsample.  It's not been all that long that we've had big enough high resolution data that even makes downsampling a possibility.
    -Noel
    I believe I was the one to make that statement, which was based on recommendations by an Epson Print expert at a seminar demoing printers. He showed to prints from the same file, one set at an even multiple of 720 and the other some random number. It was subtle but visible the difference. That was probably 5 years ago.
    In the meantime, I have made extensive tests of prints on my Epson 3800 trying many combinations of single pass, hi speed, Super fine print (2880x1440) and down to the basic level.
    Everything evened out at 720 dpi. At 360, which is where I output from ACR, I can make an 8x12 print with no resampling whatsoever. Upping that to 720 and pushing the printer hard (2880x1440, single pass on Canson Platine), I see a discernable difference in the smooth tonalities.
    As I understood you from past conversations, you employ the maximum output size from ACR which in my case, would double the file size by upsampling, and if necessary, downsample from that. I am not comfortable doing that as a default operation, but perhaps Jeff S might step in here and clarify.  After all, ACR does offer that option! But my file size now goes from ~70MP to 143 MP, cutting my storage capability by 1/2. It's not a trivial matter when two of us here can run 600 to 800 images in 1/2 day!

  • Looking for best practice white paper on Internet Based Client Management

    Looking for best practice white paper on Internet Based Client Management for SCCM 2012 R2.
    Has anyone implemented this in a medium sized corporate environment? 10k+ workstations.  We have a single primary site, SQL server and 85 DP's. 

    How about the TechNet docs: http://technet.microsoft.com/en-us/library/gg712701.aspx#Support_Internet_Clients ?
    Or one of the many blog posts on the subject shown from a web search: http://www.bing.com/search?q=configuration+manager+2012+internet+based+client+management&go=Submit+Query&qs=bs&form=QBRE ?
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • DMVPN + MPLS best-path selection

    Dear Community
    We're in the process of deploying DMVPN as a backup solution to MPLS. All that is working great!
    The DMVPN wan is dual-cloud, with 2 hub routers in each cloud. Phase 3 (nhrp shortcut) is enabled on all the spokes.
    For routing, all the customer subnets are advertised in MPLS, whereas for DMVPN hub advertises only a summary to 10.0.0.0/8. The protocol for both is BGP. For DMVPN, the hub routers resides in one AS (65002) and all the spokes another common AS 65102. DMVPN is therefore peered eBGP hub > spoke.
    For customers connected to MPLS, the DMVPN serves as backup only solution. Best-path selection by longest prefix match.
    We have other customers coming on board who wish to join the same WAN but don't have the $$$ for MPLS so are opting for DMVPN only.
    Now, I have a requirement to enable spoke-to-spoke for a DMVPN only site (spokeA) to an MPLS site (spokeB). The problem is it doesn't seem to work properly as the hub router sees the best path to spokeB site via MPLS, not via DMVPN. The spoke-to-spoke is never formed, and remains spokeA > hub > mpls > spokeB. The return path is better = spokeB > DMVPN > hub > spokeA (this is because spokeB sees no route from MPLS for spokeA, so follows 10.0.0.0/8) route.
    I look for any feedback that can help to meet this requirement?
    And if any advice on the general design would be really appreciated.
    Thanks a lot!
    Phil

    Phil, 
    I did a short lab around this ... wanted to make sure I'm not saying something stupid. 
    While I can't claim it's the _optimal_ solution for your setup it seems to work in my lab.
    Spoke1 LAN 192.168.101.0/24 (AS 65001)
    Spoke2 LAN 192.168.102.0/24 (AS 65002)
    HUB LAN 192.168.111.0/24 (AS 65000)
    192.168.1.0/24 DMVPN subnet. 
    A single (i)VRF - DMVPN exists on hub, only and is assigned only to DMVPN tunnel interface. 
    Excuse a few hacks a had to use... default routed via default-originate for example :-)
    Hub
    R10-P#sh run int tu0
    Building configuration...
    Current configuration : 281 bytes
    interface Tunnel0
    vrf forwarding DMVPN
    ip address 192.168.1.1 255.255.255.0
    no ip redirects
    ip nhrp map multicast dynamic
    ip nhrp network-id 1
    ip nhrp shortcut
    ip nhrp redirect
    tunnel source Loopback0
    tunnel mode gre multipoint
    tunnel protection ipsec profile PRO
    end
    R10-P#sh run | s r b
    router bgp 65000
    bgp log-neighbor-changes
    network 192.168.111.0
    redistribute static
    neighbor 10.112.112.1 remote-as 65001
    neighbor 10.112.112.1 route-map SPOKES_MPLS in
    default-information originate
    address-family ipv4 vrf DMVPN
    neighbor 192.168.1.101 remote-as 65001
    neighbor 192.168.1.101 activate
    neighbor 192.168.1.102 remote-as 65002
    neighbor 192.168.1.102 activate
    exit-address-family
    R10-P#sh run | s vrf defini
    vrf definition DMVPN
    rd 1:1
    route-target export 100:1
    route-target import 100:1
    address-family ipv4
      import ipv4 unicast map DEFAULT
      export ipv4 unicast map SPOKE_SUBNETS
    route-target export 100:1
    route-target import 100:1
    exit-address-family
    address-family ipv6
    route-target export 100:1
    route-target import 100:1
    exit-address-family
    Result on spoke
    R1-PE#traceroute 192.168.102.1 source e2/0
    Type escape sequence to abort.
    Tracing the route to 192.168.102.1
    VRF info: (vrf in name/id, vrf out name/id)
    1 192.168.1.1 [AS 65000] 5 msec 10 msec 2 msec
    2 192.168.1.102 [AS 65000] 4 msec * 5 msec
    R1-PE#traceroute 192.168.102.1 source e2/0
    Type escape sequence to abort.
    Tracing the route to 192.168.102.1
    VRF info: (vrf in name/id, vrf out name/id)
    1 192.168.1.102 [AS 65000] 6 msec * 6 msec
    routing on hub 
    (sanitized)
    R10-P# sho ip route
    Gateway of last resort is 10.100.100.2 to network 0.0.0.0
    S* 0.0.0.0/0 [1/0] via 10.100.100.2
    10.0.0.0/8 is variably subnetted, 13 subnets, 2 masks
    B 192.168.101.0/24 [20/0] via 10.112.112.1, 00:06:40
    B 192.168.102.0/24 [20/0] via 192.168.1.102 (DMVPN), 00:00:03
    192.168.111.0/24 is variably subnetted, 2 subnets, 2 masks
    R10-P# sho ip route vrf DMVPN
    Routing Table: DMVPN
    Gateway of last resort is 10.100.100.2 to network 0.0.0.0
    B* 0.0.0.0/0 [20/0] via 10.100.100.2, 00:06:40
    192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
    C 192.168.1.0/24 is directly connected, Tunnel0
    L 192.168.1.1/32 is directly connected, Tunnel0
    B 192.168.101.0/24 [20/0] via 192.168.1.101, 00:06:40
    B 192.168.102.0/24 [20/0] via 192.168.1.102, 00:06:25

  • BGB Best path selection

    Hi,
    Could someone tell me why second path remains as best?
    MPLS_CORE#show ip bgp 192.168.1.0
    BGP routing table entry for 192.168.1.0/24, version 27
    Paths: (2 available, best #2, table default)
      Advertised to update-groups:
         1         
      Refresh Epoch 1
      64513
        2.2.2.1 from 2.2.2.1 (10.201.240.2)
          Origin incomplete, metric 156160, localpref 100, valid, external
          rx pathid: 0, tx pathid: 0
      Refresh Epoch 1
      64512
        1.1.1.1 from 1.1.1.1 (192.168.4.253)
          Origin incomplete, metric 1415680, localpref 100, valid, external, best
          rx pathid: 0, tx pathid: 0x0
    Regards
    Michal 

    Hi Michal,
    Please refer below CCO document for BGP best path selection criteria on cisco routers
    http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/13753-25.html
    If everything attribute is same then it comes to router-id and lowest router-id is preferred.
    11. Prefer the route that comes from the BGP router with the lowest router ID.
    The router ID is the highest IP address on the router, with preference given to loopback addresses. Also, you can use the bgp router-id command to manually set the router ID.
    In your case, second route is having lowest router-id (1.1.1.1)
    --Pls dont forget to rate helpful posts--
    Regards,
    Akash

  • Inject BGP Default Routes into Multiple VRF before Best Path Selection

    Hello, 
    I have the following setup:
    Multiple Border Routers with eBGP sessions to external AS. We receive a default route from this multiple AS to keep the Table manageable. We noticed an important part of our traffic was been SW routed instead of CEF when we had the Full Internet table. Router Resources came to the ground when we changed to a default. 
    Now I want to separate this default routes into different VRF. Attached is the Diagram. 
    My question is,  the multiple default route all go into the BGP Table. The BGP table then select the best route and place it on the RIB and then to the FIB. 
    I want to redistribute the different Route on the BGP table prior to the Best path selection algorithm and placed on the RIB. 
    How can I achieve this?

    Hi,
    Redistribution of multiple routes to same prefix is not possible. Even if you have configured BGP multipath and all different bgp routes got installed into routing table, during redistribution only route will be redistributed. 
    Also would like to understand the requirement of redistributing multiple BGP routes in to IGP. As per your diagram, 3 different eBGP sessions are on three different routers, so you can prefer eBGP route over iBGP received from other routers and can distribute eBGP route to IGP from each router. Thus you will have three different default routes in to IGP in core.
    Please don't forget to rate this post if it has been helpful
    - Akash

  • J2EE pattern for complex database searches

    I am havin trouble finding a method for doing complex searches that I am happy with.
    I have a table of "log entrys" - each "log entry" is composed of an "admin user", "action" and one or two "target" value objects, as well as a Timestamp.
    The problem here is a user, through a JSP form, will want to run searches such as "Get me all logs for user X between time Y and time Z involoing action A".
    What is the best way of encapsulating this between the Web Tier and the EJB tier (obviously, once it's in the EJB Tier, it's time to translate it into SQL in the DAO and send the query off to the database).
    Is it as simple as having a "Search Criteria" class containing many constants (e.g. SEARCH_BY_USER_ID, SEARCH_BY_MIN_TIME) and each instance of search criteria holding a map (e.g. "SEARCH_BY_USER_ID" => "BDTURNE", "SEARCH_BY_MIN_TIME" => "21st August") - or is there a better / neater way of encapsulating this call ?
    All ideas / suggesitons welcomed !
    Cheers,
    Ben Turner

    I think it is good Idea to have some constants like USERID, MINTIME, etc and can dynamically formulate the Query depending on the Data you are getting.

Maybe you are looking for

  • How can I better influence Customer Care to cover the known defective NVidia 8600 processor in my MBP which is just over 4 yr old?!

    I have an 11/2007 MBP... 4 yrs, 2 months and 3 weeks old tomorrow.  Yesterday I got the "black screen of death". I won't bore you with what I tried, but today a local expert assessed the situation: reset SMC and PRAM, noted that it booted into target

  • How do i remove lolipop and go back to kit kat?

    The white screens are battery hogs. nothing about this "upgrade" feels like an upgrade, no I am not mired in the past, just like a functional OS that worked very well for me. the "feature" that really bugs me is the "enhanced" alarm handling... if i

  • Video input, HP Pavilion 23

    I have a video camera with a Firewire output, but my Pavilion 23 has no Firewire input jack.  Do I need anything other than a Firewire to USB adapter to transfer video from the camera to the computer?   Many thanks............

  • Sharing files between macs

    Okay so here is my problem. I have a MacBook Pro 13" running snow leopard and I am trying to connect it to an iMac running 10.5 leopard. When I click on my iMac's name in finder and try to connect to it it keeps giving me a "Connection Failed" dialog

  • Using web-service with forms9i

    Hi I have a setup of oracle9ias release 2 on solaris machine. I have made a web-service which is deployed on nt machine on weblogic server. I have made a call from my form (forms9i) to this web-service. When i try to use that web-service after deploy