Af:chooseDate i18n bug?

JDeveloper 10.1.3.3, ADF Faces
Hi,
It seems as if af:chooseDate always uses Sunday as first day of week. I'm developing an ADF Faces application for lt_LT locale. In the case first day of week should be Monday. I've looked at oracle.adfinternal.view.faces.renderkit.core.xhtml.ChooseDateRenderer source code and found that it uses Calendar.getMinimum(Calendar.DAY_OF_WEEK) to determine first day of week. The method returns Sunday while Calendar.getFirstDayOfWeek() gives the correct result - Monday.
Regards,
Marius

Hi,
I tried this Java program with sour locale and the two methods return the same value
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.Locale;
public class TestCalendar {
    public TestCalendar() {
    Calendar c = GregorianCalendar.getInstance();
        Locale locale = Locale.getDefault();
            // Set the default locale to custom locale
            locale = new Locale("lt", "LT");
        System.out.println("min "+c.getMinimum(Calendar.DAY_OF_WEEK));
        System.out.println("max "+c.getMaximum(Calendar.DAY_OF_WEEK));       
        System.out.println("first day" +c.getFirstDayOfWeek());
    public static void main(String[] args) {
        TestCalendar testCalendar = new TestCalendar();
}Based on this I don't see the use of DAY_OF_WEEK to be a bug
Frank

Similar Messages

  • Small jquery-ui i18n bug

    Sorry about posting this here, don't know where else to put it.
    this file: /i/libraries/jquery-ui/1.8/ui/i18n/oracle/jquery.ui.datepicker-nb-no.js is missing translation of some labels.
    this file: /i/libraries/jquery-ui/1.8/ui/i18n/oracle/jquery.ui.datepicker-no.js is correct, both files should be identical.
    easily fixed " cp jquery.ui.datepicker-no.js jquery.ui.datepicker-nb-no.js "

    <head>
    <title>JQuery Tab</title>
    <link rel="stylesheet" href="/i/themes/theme_20/theme_3_1.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/i/themes/theme_20/ie.css" type="text/css" /><![endif]-->
    <link rel="stylesheet" href="/i/css/apex_4_0.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/i/css/apex_ie_4_0.css" type="text/css" /><![endif]--><link rel="stylesheet" href="/i/libraries/jquery-ui/1.8/themes/base/jquery-ui-1.8.custom.min.css" type="text/css" />
    <script type="text/javascript">var apex_img_dir = "/i/", htmldb_Img_Dir = apex_img_dir;</script>
    //jquey loaded here
    <script src="/i/libraries/jquery/1.4.2/jquery-1.4.2.min.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_4_0.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_legacy_4_0.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_widget_4_0.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_dynamic_actions_4_0.js" type="text/javascript"></script>
    <script src="/i/libraries/jquery-ui/1.8/ui/minified/jquery-ui-1.8.custom.min.js" type="text/javascript"></script>
    //jquery ui and css loaded here
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>VIEW Source of IE 7 show the above.. which clearly show that jquery is already loaded ... any clue...
    Regards,
    Shijesh

  • An I18N bug from java sound should be fixed.

    When you try to list some audio related names (such as mix name, port name, control name) by using java sound api, and if the names are writtened by non-ascii character such as Chinese, you will get the strange characters, that means java sound api does not support internationalization character. Here is the sample:
    *     SystemMixerFrame.java
    * Copyright (c) 2001 - 2002 by Matthias Pfisterer
    * All rights reserved.
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
    * - Redistributions of source code must retain the above copyright notice,
    * this list of conditions and the following disclaimer.
    * - Redistributions in binary form must reproduce the above copyright
    * notice, this list of conditions and the following disclaimer in the
    * documentation and/or other materials provided with the distribution.
    * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
    * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
    * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    * OF THE POSSIBILITY OF SUCH DAMAGE.
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.BooleanControl;
    import javax.sound.sampled.CompoundControl;
    import javax.sound.sampled.Control;
    import javax.sound.sampled.EnumControl;
    import javax.sound.sampled.FloatControl;
    import javax.sound.sampled.Line;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.Mixer;
    import javax.sound.sampled.Port;
    IDEAS:
    - user setting tab style vs. show complete windows for multiple mixers (horicontal/vertical)
    - user setting unix style (L/R volume) vs. windows style (volume/balance)
    /**     TODO:
    public class TestSystemMixer {
         /**     TODO:
         private static final Port.Info[]     EMPTY_PORT_INFO_ARRAY = new Port.Info[0];
         public static void main(String[] args) {
              new TestSystemMixer();
              System.exit(0);
         /**     TODO:
         public TestSystemMixer()
              List portMixers = getPortMixers();
              if (portMixers.size() == 0) {
                   out("There are no mixers that support Port lines.SystemMixer: Error");
                   System.exit(1);
              Iterator iterator = portMixers.iterator();
              while (iterator.hasNext())
                   Mixer     mixer = (Mixer) iterator.next();
                   String     strMixerName = mixer.getMixerInfo().getName();
                   out("mixername:" + strMixerName);
                   createMixerPanel(mixer);
         /**     Returns the Mixers that support Port lines.
         private List getPortMixers()
              List supportingMixers = new ArrayList();
              Mixer.Info[]     aMixerInfos = AudioSystem.getMixerInfo();
              for (int i = 0; i < aMixerInfos.length; i++)
                   Mixer     mixer = AudioSystem.getMixer(aMixerInfos);
                   boolean     bSupportsPorts = arePortsSupported(mixer);
                   if (bSupportsPorts)
                        supportingMixers.add(mixer);
              return supportingMixers;
         /**     TODO:
         // should be implemented by:
         // Mixer.isLineSupported(new Line.Info(Port.class))
         private boolean arePortsSupported(Mixer mixer)
              Line.Info[]     infos;
              infos = mixer.getSourceLineInfo();
              for (int i = 0; i < infos.length; i++)
                   if (infos[i] instanceof Port.Info)
                        return true;
              infos = mixer.getTargetLineInfo();
              for (int i = 0; i < infos.length; i++)
                   if (infos[i] instanceof Port.Info)
                        return true;
              return false;
         /**     TODO:
         private void createMixerPanel(Mixer mixer)
              Port.Info[]     infosToCheck = getPortInfo(mixer);
              for (int i = 0; i < infosToCheck.length; i++)
                   Port     port = null;
                   try
                        port = (Port) mixer.getLine(infosToCheck[i]);
                        port.open();
                   catch (LineUnavailableException e)
                        e.printStackTrace();
                   if (port != null)
                        createPortPanel(port);
         /**     TODO:
         private Port.Info[] getPortInfo(Mixer mixer)
              Line.Info[]     infos;
              List portInfoList = new ArrayList();
              infos = mixer.getSourceLineInfo();
              for (int i = 0; i < infos.length; i++)
                   if (infos[i] instanceof Port.Info)
                        portInfoList.add((Port.Info) infos[i]);
              infos = mixer.getTargetLineInfo();
              for (int i = 0; i < infos.length; i++)
                   if (infos[i] instanceof Port.Info)
                        portInfoList.add((Port.Info) infos[i]);
              Port.Info[]     portInfos = (Port.Info[]) portInfoList.toArray(EMPTY_PORT_INFO_ARRAY);
              return portInfos;
         /**     TODO:
         private void createPortPanel(Port port)
              String     strPortName = ((Port.Info) port.getLineInfo()).getName();
              out("Portname:" + strPortName);
              Control[]     aControls = port.getControls();
    //          for (int i = 0; i < aControls.length; i++)
              if (aControls.length > 1) {
                   // In fact in the windows system, it named SPEAKER port, and it contains play controls.
                   out("ignore the port " + strPortName + " that contains more than one control.");
              } else {
                   // this is record control.
                   out("control:" + aControls[0].toString());
                   createControlComponent(aControls[0]);
                   if (aControls[0] instanceof FloatControl)
                   else
         /**     TODO:
         private void createControlComponent(Control control)
              if (control instanceof BooleanControl)
              String          strControlName = control.getType().toString();
              out("sub control type BooleanControl:" + strControlName);
              else if (control instanceof EnumControl)
              String     strControlName = control.getType().toString();
              out("sub control type EnumControl:" + strControlName);
              System.out.println("WARNING: EnumControl is not yet supported");
              else if (control instanceof FloatControl)
              String     strControlName = control.getType().toString();
              out("sub control type FloatControl:" + strControlName);
              else if (control instanceof CompoundControl)
              String     strControlName = control.getType().toString();
              out("sub control type CompoundControl:" + strControlName);
              Control[]     aControls = ((CompoundControl)control).getMemberControls();
              for (int i = 0; i < aControls.length; i++)
                   Control con = aControls[i];
                   if (con instanceof BooleanControl) {
                        out("sub sub control type BooleanControl:" + con.getType().toString());
                        if (strControlName.equalsIgnoreCase("Stereo Mix")) {
                             ((BooleanControl) con).setValue(true);
                   else if (con instanceof EnumControl) {
                        out("sub sub control type EnumControl:" + con.getType().toString());
                   else if (con instanceof FloatControl)
                        if (isBalanceOrPan((FloatControl) con))
                        out("sub sub control type FloatControl balance:" + con.getType().toString());
                        else
                        out("sub sub control type FloatControl pan:" + con.getType().toString());
                   else
         /** Returns whether the type of a FloatControl is BALANCE or PAN.
         private static boolean isBalanceOrPan(FloatControl control)
              Control.Type type = control.getType();
              return type.equals(FloatControl.Type.PAN) || type.equals(FloatControl.Type.BALANCE);
         private static void out(String message)
              System.out.println(message);
    /*** SystemMixerFrame.java ***/
    Compile and run the code below on non-ascii Windows OS, you will catch the problem.
    The solution I provide:
    Download the jdk 1.4.2 source, search the files named PortMixer.c && PortMixerProvider.c and replace the method "NewStringUTF" with the method below:
    jstring WindowsTojstring2( JNIEnv* env, char* str )
    jstring rtn = 0;
    int slen = strlen(str);
    unsigned short* buffer = 0;
    if( slen == 0 )
    rtn = (*env)->NewStringUTF(env,str );
    else
    int length = MultiByteToWideChar( CP_ACP, 0, (LPCSTR)str, slen, NULL, 0 );
    buffer = malloc( length*2 + 1 );
    if( MultiByteToWideChar( CP_ACP, 0, (LPCSTR)str, slen, (LPWSTR)buffer, length ) >0 )
    rtn = (*env)->NewString( env, (jchar*)buffer, length );
    if( buffer )
    free( buffer );
    return rtn;
    Rebuild jdk source code as per sun build document. Got the result files and pick up jsound.dll, replace the original jsound.dll in your JRE with the fixed file.
    Then the problem solved. I also hope sun will fix the problem in the future version of JDK.
    Or any one can help me to submit this article to the sun JDK team.
    Jiawei Zhang
    From Chinese, The city of Shanghai.
    MSN: [email protected]

    If you only wanted to get a beep you could have used Toolkit.beep
    Very simple and fast.
    Rommie.

  • I18n capitalization of month and weekdays

    Hi all,
    I ran into the following with JDK1.4.0 on Windows (have not tested on other platforms): basically when I try to format dates in a language other than Windows, weekdays and month names are given all in small case letters, as opposed to having the first letter capitalized and all the others in small letters.
    As an example, if I set my locale to Spanish, and do this:
    SimpleDateFormat globalMessagesFormatter
    = new SimpleDateFormat ("EEEE MMM dd yyyy", locale);
    I get this: lunes oct 07 2002
    As opposed to this: Lunes Oct 07 2002
    (notice "lunes" and "oct" instead of "Lunes" and "Oct").
    So, any ideas??? Is this a i18n bug???

    No, it's not an i18n bug. In Spanish, names used in dates are not capitalized like for example in the English language. I extracted the following from the "Real Academia Espanola" which is the organization that set the rules for the Spanish language:
    b) El sistema mas comun combina letras y numeros. En este caso, el dia y el ano se escriben con numeros arabigos, y el mes, con letras y siempre con inicial minuscula: 12 de octubre de 1492.
    So, using: SimpleDateFormat("EEEE MMM dd yyyy", locale);
    gave you the correct format for the date (the spanish way, obviously).
    Based on your name, I am assuming that you speak spanish, so here is the link: http://www.rae.es/
    Use the "Diccionario de Dudas" option and search for letter "F" and click on "FECHA".

  • Request.getServerPort() not returning correct port

    Hi,
    I am using Oracle AS 10.1.2.0.2.
    In my jsp request.getServerPort() returns me the webcache(HTTP Listen) port number, but it supposed to return me the port of my OC4J(defined in http-website.xml).
    Could guys advice what need to change.

    Hi Joni,
    Is there a severe i18n bug in the servlet / jsp framework?Not a bug, but a limitation in the 2.2 java servlet classes. Up to Ver. 2.2, there was no way to tell the servlet what decoding to apply to the stream of bytes coming from the web page. Therefore, request.getParameter("toAdd") would always use its default platform encoding, typically something like Cp1252. So, suppose your web page sends bytes corresponding to a string containing the single Chinese character for tea in UTF8 encoding:
    "\u8336" => 0xe8, 0x8c, 0xb6
    which getParameter would decode into the three character string: "\u00e8\u008c\u00b6"
    request.getParameter("toAdd").getBytes(); then returns an array of the original three bytes, and
    new String(request.getParameter("toAdd").getBytes(),"UTF8"); then returns the original string "\u8336"
    The good news is that in Ver. 2.3 of the java servlet classes all that nonsense above is unnecessary. The ServletRequest interface has a new method setCharacterEncoding(java.lang.String env), so all you have to do is insert
    request.setCharacterEncoding ("UTF8"); before you call request.getParameter("toAdd") and your input byte stream will be correctly decoded. Works great.
    Regards,
    Joe

  • I18n - Resource Bundle Bugs ??

    I have a string in a resource bundle containing HTML tags such as <BR> etc.
    The string is displayed in a static text component. The escape property of this component is set. Nevertheless all HTML tags are displayed as text!
    Is this a bug??
    Tom

    Got it! Escape must NOT be checked to let the browser
    correctly display it.
    TomCan you elaborate and give example of your resoruce bundle
    related to this posting, and so we can see if the resource
    bundle handling or features might be improved or providing addtional
    information on how to use them ?
    Thanks

  • Bug related to ACPI

    After update few weeks ago (cant say when exactly since i was testing where the problem is for few weeks) i noticed that sometimes computer would freeze during boot at sata recognition part right before daemons gets started. It would also hang during boot at loading daemons but i could make it resume if i press any keyboard key and sometimes it would hang several times before i would get Xfce to fully load. I found out that its related to ACPI, since when i turn it off i dont get error messages about it in log files. Turning ACPI off also fixed a strange bug where my keyboard is not repeating key strokes when i keep one key pressed, it starts to repeat but then stops after only few repeats and i need to keep pressing it to make it start repeating again, its also noticeable when i press tab to finish command and i see 1-2 sec delay. After i pass acpi=off at boot all of this goes away. I get same bug on both Arch linux x86 and x86_64.
    Hardware iam running: Athlon II x4,  AMD 790X + SB750 Chipset, ATI Radeon 4850 with catalyst 10.2
    here are log files:
    errors.log
    Mar 8 23:31:15 myhost kernel: pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
    Mar 8 23:31:15 myhost kernel: ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
    messages.log
    Mar 8 23:31:15 myhost kernel: Linux version 2.6.32-ARCH (tobias@T-POWA-LX) (gcc version 4.4.3 (GCC) ) #1 SMP PREEMPT Tue Feb 23 19:43:46 CET 2010
    Mar 8 23:31:15 myhost kernel: Command line: root=/dev/disk/by-uuid/46de3af5-cfd8-4fe1-a794-8fc0df9b6bf5 ro vga=775
    Mar 8 23:31:15 myhost kernel: KERNEL supported cpus:
    Mar 8 23:31:15 myhost kernel: Intel GenuineIntel
    Mar 8 23:31:15 myhost kernel: AMD AuthenticAMD
    Mar 8 23:31:15 myhost kernel: Centaur CentaurHauls
    Mar 8 23:31:15 myhost kernel: BIOS-provided physical RAM map:
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 0000000000100000 - 00000000cfde0000 (usable)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 00000000cfde0000 - 00000000cfde3000 (ACPI NVS)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 00000000cfde3000 - 00000000cfdf0000 (ACPI data)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 00000000cfdf0000 - 00000000cfe00000 (reserved)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    Mar 8 23:31:15 myhost kernel: BIOS-e820: 0000000100000000 - 0000000130000000 (usable)
    Mar 8 23:31:15 myhost kernel: DMI 2.4 present.
    Mar 8 23:31:15 myhost kernel: last_pfn = 0x130000 max_arch_pfn = 0x400000000
    Mar 8 23:31:15 myhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 8 23:31:15 myhost kernel: last_pfn = 0xcfde0 max_arch_pfn = 0x400000000
    Mar 8 23:31:15 myhost kernel: Scanning 1 areas for low memory corruption
    Mar 8 23:31:15 myhost kernel: modified physical RAM map:
    Mar 8 23:31:15 myhost kernel: modified: 0000000000000000 - 0000000000001000 (usable)
    Mar 8 23:31:15 myhost kernel: modified: 0000000000001000 - 0000000000006000 (reserved)
    Mar 8 23:31:15 myhost kernel: modified: 0000000000006000 - 000000000009f800 (usable)
    Mar 8 23:31:15 myhost kernel: modified: 000000000009f800 - 00000000000a0000 (reserved)
    Mar 8 23:31:15 myhost kernel: modified: 00000000000f0000 - 0000000000100000 (reserved)
    Mar 8 23:31:15 myhost kernel: modified: 0000000000100000 - 00000000cfde0000 (usable)
    Mar 8 23:31:15 myhost kernel: modified: 00000000cfde0000 - 00000000cfde3000 (ACPI NVS)
    Mar 8 23:31:15 myhost kernel: modified: 00000000cfde3000 - 00000000cfdf0000 (ACPI data)
    Mar 8 23:31:15 myhost kernel: modified: 00000000cfdf0000 - 00000000cfe00000 (reserved)
    Mar 8 23:31:15 myhost kernel: modified: 00000000e0000000 - 00000000f0000000 (reserved)
    Mar 8 23:31:15 myhost kernel: modified: 00000000fec00000 - 0000000100000000 (reserved)
    Mar 8 23:31:15 myhost kernel: modified: 0000000100000000 - 0000000130000000 (usable)
    Mar 8 23:31:15 myhost kernel: Using GB pages for direct mapping
    Mar 8 23:31:15 myhost kernel: init_memory_mapping: 0000000000000000-00000000cfde0000
    Mar 8 23:31:15 myhost kernel: init_memory_mapping: 0000000100000000-0000000130000000
    Mar 8 23:31:15 myhost kernel: RAMDISK: 37e4a000 - 37fef684
    Mar 8 23:31:15 myhost kernel: ACPI: RSDP 00000000000f6fe0 00014 (v00 GBT )
    Mar 8 23:31:15 myhost kernel: ACPI: RSDT 00000000cfde3000 00038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Mar 8 23:31:15 myhost kernel: ACPI: FACP 00000000cfde3040 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Mar 8 23:31:15 myhost kernel: ACPI: DSDT 00000000cfde30c0 06EE4 (v01 GBT GBTUACPI 00001000 MSFT 03000000)
    Mar 8 23:31:15 myhost kernel: ACPI: FACS 00000000cfde0000 00040
    Mar 8 23:31:15 myhost kernel: ACPI: HPET 00000000cfdea080 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    Mar 8 23:31:15 myhost kernel: ACPI: MCFG 00000000cfdea0c0 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Mar 8 23:31:15 myhost kernel: ACPI: TAMG 00000000cfdea100 0030A (v01 GBT GBT B0 5455312E BG?? 53450101)
    Mar 8 23:31:15 myhost kernel: ACPI: APIC 00000000cfde9fc0 00084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Mar 8 23:31:15 myhost kernel: (8 early reservations) ==> bootmem [0000000000 - 0130000000]
    Mar 8 23:31:15 myhost kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    Mar 8 23:31:15 myhost kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
    Mar 8 23:31:15 myhost kernel: #2 [0001000000 - 000169e898] TEXT DATA BSS ==> [0001000000 - 000169e898]
    Mar 8 23:31:15 myhost kernel: #3 [0037e4a000 - 0037fef684] RAMDISK ==> [0037e4a000 - 0037fef684]
    Mar 8 23:31:15 myhost kernel: #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000]
    Mar 8 23:31:15 myhost kernel: #5 [000169f000 - 000169f0fe] BRK ==> [000169f000 - 000169f0fe]
    Mar 8 23:31:15 myhost kernel: #6 [0000008000 - 000000a000] PGTABLE ==> [0000008000 - 000000a000]
    Mar 8 23:31:15 myhost kernel: #7 [000000a000 - 000000b000] PGTABLE ==> [000000a000 - 000000b000]
    Mar 8 23:31:15 myhost kernel: found SMP MP-table at [ffff8800000f55d0] f55d0
    Mar 8 23:31:15 myhost kernel: Zone PFN ranges:
    Mar 8 23:31:15 myhost kernel: DMA 0x00000000 -> 0x00001000
    Mar 8 23:31:15 myhost kernel: DMA32 0x00001000 -> 0x00100000
    Mar 8 23:31:15 myhost kernel: Normal 0x00100000 -> 0x00130000
    Mar 8 23:31:15 myhost kernel: Movable zone start PFN for each node
    Mar 8 23:31:15 myhost kernel: early_node_map[4] active PFN ranges
    Mar 8 23:31:15 myhost kernel: 0: 0x00000000 -> 0x00000001
    Mar 8 23:31:15 myhost kernel: 0: 0x00000006 -> 0x0000009f
    Mar 8 23:31:15 myhost kernel: 0: 0x00000100 -> 0x000cfde0
    Mar 8 23:31:15 myhost kernel: 0: 0x00100000 -> 0x00130000
    Mar 8 23:31:15 myhost kernel: ACPI: PM-Timer IO Port: 0x4008
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    Mar 8 23:31:15 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    Mar 8 23:31:15 myhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Mar 8 23:31:15 myhost kernel: IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    Mar 8 23:31:15 myhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 8 23:31:15 myhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Mar 8 23:31:15 myhost kernel: Using ACPI (MADT) for SMP configuration information
    Mar 8 23:31:15 myhost kernel: ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    Mar 8 23:31:15 myhost kernel: SMP: Allowing 4 CPUs, 0 hotplug CPUs
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 0000000000001000 - 0000000000006000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000cfde0000 - 00000000cfde3000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000cfde3000 - 00000000cfdf0000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000cfdf0000 - 00000000cfe00000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000cfe00000 - 00000000e0000000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    Mar 8 23:31:15 myhost kernel: Allocating PCI resources starting at cfe00000 (gap: cfe00000:10200000)
    Mar 8 23:31:15 myhost kernel: Booting paravirtualized kernel on bare hardware
    Mar 8 23:31:15 myhost kernel: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:4 nr_node_ids:1
    Mar 8 23:31:15 myhost kernel: PERCPU: Embedded 29 pages/cpu @ffff880005400000 s88984 r8192 d21608 u524288
    Mar 8 23:31:15 myhost kernel: pcpu-alloc: s88984 r8192 d21608 u524288 alloc=1*2097152
    Mar 8 23:31:15 myhost kernel: pcpu-alloc: [0] 0 1 2 3
    Mar 8 23:31:15 myhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1030804
    Mar 8 23:31:15 myhost kernel: Kernel command line: root=/dev/disk/by-uuid/46de3af5-cfd8-4fe1-a794-8fc0df9b6bf5 ro vga=775
    Mar 8 23:31:15 myhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Mar 8 23:31:15 myhost kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Mar 8 23:31:15 myhost kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Mar 8 23:31:15 myhost kernel: Initializing CPU#0
    Mar 8 23:31:15 myhost kernel: Checking aperture...
    Mar 8 23:31:15 myhost kernel: No AGP bridge found
    Mar 8 23:31:15 myhost kernel: Node 0: aperture @ 20000000 size 32 MB
    Mar 8 23:31:15 myhost kernel: Aperture pointing to e820 RAM. Ignoring.
    Mar 8 23:31:15 myhost kernel: Your BIOS doesn't leave a aperture memory hole
    Mar 8 23:31:15 myhost kernel: Please enable the IOMMU option in the BIOS setup
    Mar 8 23:31:15 myhost kernel: This costs you 64 MB of RAM
    Mar 8 23:31:15 myhost kernel: Mapping aperture over 65536 KB of RAM @ 20000000
    Mar 8 23:31:15 myhost kernel: PM: Registered nosave memory: 0000000020000000 - 0000000024000000
    Mar 8 23:31:15 myhost kernel: Memory: 4050336k/4980736k available (3315k kernel code, 789016k absent, 140408k reserved, 1758k data, 472k init)
    Mar 8 23:31:15 myhost kernel: SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Mar 8 23:31:15 myhost kernel: Hierarchical RCU implementation.
    Mar 8 23:31:15 myhost kernel: NR_IRQS:768
    Mar 8 23:31:15 myhost kernel: Console: colour dummy device 80x25
    Mar 8 23:31:15 myhost kernel: console [tty0] enabled
    Mar 8 23:31:15 myhost kernel: HPET: 4 timers in total, 1 timers will be used for per-cpu timer
    Mar 8 23:31:15 myhost kernel: Fast TSC calibration using PIT
    Mar 8 23:31:15 myhost kernel: Detected 3315.373 MHz processor.
    Mar 8 23:31:15 myhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6633.01 BogoMIPS (lpj=11051226)
    Mar 8 23:31:15 myhost kernel: Security Framework initialized
    Mar 8 23:31:15 myhost kernel: Mount-cache hash table entries: 256
    Mar 8 23:31:15 myhost kernel: CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: L2 Cache: 512K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: Physical Processor ID: 0
    Mar 8 23:31:15 myhost kernel: CPU: Processor Core ID: 0
    Mar 8 23:31:15 myhost kernel: mce: CPU supports 6 MCE banks
    Mar 8 23:31:15 myhost kernel: using C1E aware idle routine
    Mar 8 23:31:15 myhost kernel: Performance Events: AMD PMU driver.
    Mar 8 23:31:15 myhost kernel: ... version: 0
    Mar 8 23:31:15 myhost kernel: ... bit width: 48
    Mar 8 23:31:15 myhost kernel: ... generic registers: 4
    Mar 8 23:31:15 myhost kernel: ... value mask: 0000ffffffffffff
    Mar 8 23:31:15 myhost kernel: ... max period: 00007fffffffffff
    Mar 8 23:31:15 myhost kernel: ... fixed-purpose events: 0
    Mar 8 23:31:15 myhost kernel: ... event mask: 000000000000000f
    Mar 8 23:31:15 myhost kernel: ACPI: Core revision 20090903
    Mar 8 23:31:15 myhost kernel: Setting APIC routing to flat
    Mar 8 23:31:15 myhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mar 8 23:31:15 myhost kernel: CPU0: AMD Athlon(tm) II X4 620 Processor stepping 02
    Mar 8 23:31:15 myhost kernel: Booting processor 1 APIC 0x1 ip 0x6000
    Mar 8 23:31:15 myhost kernel: Initializing CPU#1
    Mar 8 23:31:15 myhost kernel: CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: L2 Cache: 512K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: Physical Processor ID: 0
    Mar 8 23:31:15 myhost kernel: CPU: Processor Core ID: 1
    Mar 8 23:31:15 myhost kernel: CPU1: AMD Athlon(tm) II X4 620 Processor stepping 02
    Mar 8 23:31:15 myhost kernel: checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Mar 8 23:31:15 myhost kernel: System has AMD C1E enabled
    Mar 8 23:31:15 myhost kernel: Switch to broadcast mode on CPU0
    Mar 8 23:31:15 myhost kernel: Switch to broadcast mode on CPU1
    Mar 8 23:31:15 myhost kernel: Booting processor 2 APIC 0x2 ip 0x6000
    Mar 8 23:31:15 myhost kernel: Initializing CPU#2
    Mar 8 23:31:15 myhost kernel: CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: L2 Cache: 512K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: Physical Processor ID: 0
    Mar 8 23:31:15 myhost kernel: CPU: Processor Core ID: 3
    Mar 8 23:31:15 myhost kernel: CPU2: AMD Athlon(tm) II X4 620 Processor stepping 02
    Mar 8 23:31:15 myhost kernel: checking TSC synchronization [CPU#0 -> CPU#2]: passed.
    Mar 8 23:31:15 myhost kernel: Switch to broadcast mode on CPU2
    Mar 8 23:31:15 myhost kernel: Booting processor 3 APIC 0x3 ip 0x6000
    Mar 8 23:31:15 myhost kernel: Initializing CPU#3
    Mar 8 23:31:15 myhost kernel: CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: L2 Cache: 512K (64 bytes/line)
    Mar 8 23:31:15 myhost kernel: CPU: Physical Processor ID: 0
    Mar 8 23:31:15 myhost kernel: CPU: Processor Core ID: 2
    Mar 8 23:31:15 myhost kernel: CPU3: AMD Athlon(tm) II X4 620 Processor stepping 02
    Mar 8 23:31:15 myhost kernel: checking TSC synchronization [CPU#0 -> CPU#3]: passed.
    Mar 8 23:31:15 myhost kernel: Brought up 4 CPUs
    Mar 8 23:31:15 myhost kernel: Total of 4 processors activated (26531.81 BogoMIPS).
    Mar 8 23:31:15 myhost kernel: Switch to broadcast mode on CPU3
    Mar 8 23:31:15 myhost kernel: NET: Registered protocol family 16
    Mar 8 23:31:15 myhost kernel: TOM: 00000000d0000000 aka 3328M
    Mar 8 23:31:15 myhost kernel: TOM2: 0000000130000000 aka 4864M
    Mar 8 23:31:15 myhost kernel: ACPI: bus type pci registered
    Mar 8 23:31:15 myhost kernel: PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
    Mar 8 23:31:15 myhost kernel: PCI: MCFG area at e0000000 reserved in E820
    Mar 8 23:31:15 myhost kernel: PCI: Using MMCONFIG at e0000000 - efffffff
    Mar 8 23:31:15 myhost kernel: PCI: Using configuration type 1 for base access
    Mar 8 23:31:15 myhost kernel: bio: create slab <bio-0> at 0
    Mar 8 23:31:15 myhost kernel: ACPI: Interpreter enabled
    Mar 8 23:31:15 myhost kernel: ACPI: (supports S0 S3 S4 S5)
    Mar 8 23:31:15 myhost kernel: ACPI: Using IOAPIC for interrupt routing
    Mar 8 23:31:15 myhost kernel: ACPI: No dock devices found.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: PME# disabled
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: PME# disabled
    Mar 8 23:31:15 myhost kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Mar 8 23:31:15 myhost kernel: pci 0000:00:12.2: PME# disabled
    Mar 8 23:31:15 myhost kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Mar 8 23:31:15 myhost kernel: pci 0000:00:13.2: PME# disabled
    Mar 8 23:31:15 myhost kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 8 23:31:15 myhost kernel: pci 0000:02:00.0: PME# disabled
    Mar 8 23:31:15 myhost kernel: pci 0000:00:14.4: transparent bridge
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Mar 8 23:31:15 myhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Mar 8 23:31:15 myhost kernel: vgaarb: loaded
    Mar 8 23:31:15 myhost kernel: PCI: Using ACPI for IRQ routing
    Mar 8 23:31:15 myhost kernel: pci 0000:00:00.0: BAR 3: can't allocate resource
    Mar 8 23:31:15 myhost kernel: NetLabel: Initializing
    Mar 8 23:31:15 myhost kernel: NetLabel: domain hash size = 128
    Mar 8 23:31:15 myhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Mar 8 23:31:15 myhost kernel: NetLabel: unlabeled traffic allowed by default
    Mar 8 23:31:15 myhost kernel: Switching to clocksource tsc
    Mar 8 23:31:15 myhost kernel: pnp: PnP ACPI init
    Mar 8 23:31:15 myhost kernel: ACPI: bus type pnp registered
    Mar 8 23:31:15 myhost kernel: pnp 00:09: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
    Mar 8 23:31:15 myhost kernel: pnp 00:09: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
    Mar 8 23:31:15 myhost kernel: pnp 00:09: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
    Mar 8 23:31:15 myhost kernel: pnp 00:09: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
    Mar 8 23:31:15 myhost kernel: pnp 00:09: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
    Mar 8 23:31:15 myhost kernel: pnp 00:09: mem resource (0x100000-0xcfddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
    Mar 8 23:31:15 myhost kernel: pnp: PnP ACPI: found 10 devices
    Mar 8 23:31:15 myhost kernel: ACPI: ACPI bus type pnp unregistered
    Mar 8 23:31:15 myhost kernel: system 00:01: ioport range 0x4d0-0x4d1 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:01: ioport range 0x220-0x225 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:01: ioport range 0x290-0x294 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0x4100-0x411f has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0x228-0x22f has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0x40b-0x40b has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0x4d6-0x4d6 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xc00-0xc01 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xc14-0xc14 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xc50-0xc52 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xc6c-0xc6d has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xc6f-0xc6f has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xcd0-0xcd1 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xcd2-0xcd3 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xcd4-0xcdf has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0x4000-0x40fe has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0x4210-0x4217 has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xb00-0xb0f has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xb10-0xb1f has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:02: ioport range 0xb20-0xb3f has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:08: iomem range 0xe0000000-0xefffffff has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:09: iomem range 0xcfde0000-0xcfdfffff could not be reserved
    Mar 8 23:31:15 myhost kernel: system 00:09: iomem range 0xffff0000-0xffffffff has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:09: iomem range 0xfec00000-0xfec00fff could not be reserved
    Mar 8 23:31:15 myhost kernel: system 00:09: iomem range 0xfee00000-0xfee00fff has been reserved
    Mar 8 23:31:15 myhost kernel: system 00:09: iomem range 0xfff80000-0xfffeffff has been reserved
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: PCI bridge, secondary bus 0000:01
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: IO window: 0xe000-0xefff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: MEM window: 0xfde00000-0xfdefffff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: IO window: 0xd000-0xdfff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: MEM window: 0xfdb00000-0xfdbfffff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: PREFETCH window: 0x000000fdf00000-0x000000fdffffff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
    Mar 8 23:31:15 myhost kernel: pci 0000:00:14.4: IO window: 0xc000-0xcfff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:14.4: MEM window: 0xfdd00000-0xfddfffff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:14.4: PREFETCH window: 0xfdc00000-0xfdcfffff
    Mar 8 23:31:15 myhost kernel: pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: NET: Registered protocol family 2
    Mar 8 23:31:15 myhost kernel: IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Mar 8 23:31:15 myhost kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    Mar 8 23:31:15 myhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Mar 8 23:31:15 myhost kernel: TCP: Hash tables configured (established 262144 bind 65536)
    Mar 8 23:31:15 myhost kernel: TCP reno registered
    Mar 8 23:31:15 myhost kernel: NET: Registered protocol family 1
    Mar 8 23:31:15 myhost kernel: Unpacking initramfs...
    Mar 8 23:31:15 myhost kernel: Freeing initrd memory: 1685k freed
    Mar 8 23:31:15 myhost kernel: PCI-DMA: Disabling AGP.
    Mar 8 23:31:15 myhost kernel: PCI-DMA: aperture base @ 20000000 size 65536 KB
    Mar 8 23:31:15 myhost kernel: PCI-DMA: using GART IOMMU.
    Mar 8 23:31:15 myhost kernel: PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    Mar 8 23:31:15 myhost kernel: Scanning for low memory corruption every 60 seconds
    Mar 8 23:31:15 myhost kernel: audit: initializing netlink socket (disabled)
    Mar 8 23:31:15 myhost kernel: type=2000 audit(1268091061.563:1): initialized
    Mar 8 23:31:15 myhost kernel: VFS: Disk quotas dquot_6.5.2
    Mar 8 23:31:15 myhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Mar 8 23:31:15 myhost kernel: msgmni has been set to 7916
    Mar 8 23:31:15 myhost kernel: alg: No test for stdrng (krng)
    Mar 8 23:31:15 myhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Mar 8 23:31:15 myhost kernel: io scheduler noop registered
    Mar 8 23:31:15 myhost kernel: io scheduler anticipatory registered
    Mar 8 23:31:15 myhost kernel: io scheduler deadline registered
    Mar 8 23:31:15 myhost kernel: io scheduler cfq registered (default)
    Mar 8 23:31:15 myhost kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010100000, using 2560k, total 16384k
    Mar 8 23:31:15 myhost kernel: vesafb: mode is 1280x1024x8, linelength=1280, pages=11
    Mar 8 23:31:15 myhost kernel: vesafb: scrolling: redraw
    Mar 8 23:31:15 myhost kernel: vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Mar 8 23:31:15 myhost kernel: Console: switching to colour frame buffer device 160x64
    Mar 8 23:31:15 myhost kernel: fb0: VESA VGA frame buffer device
    Mar 8 23:31:15 myhost kernel: Linux agpgart interface v0.103
    Mar 8 23:31:15 myhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Mar 8 23:31:15 myhost kernel: input: Macintosh mouse button emulation as /devices/virtual/input/input0
    Mar 8 23:31:15 myhost kernel: PNP: No PS/2 controller found. Probing ports directly.
    Mar 8 23:31:15 myhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Mar 8 23:31:15 myhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Mar 8 23:31:15 myhost kernel: mice: PS/2 mouse device common for all mice
    Mar 8 23:31:15 myhost kernel: cpuidle: using governor ladder
    Mar 8 23:31:15 myhost kernel: cpuidle: using governor menu
    Mar 8 23:31:15 myhost kernel: TCP cubic registered
    Mar 8 23:31:15 myhost kernel: NET: Registered protocol family 17
    Mar 8 23:31:15 myhost kernel: registered taskstats version 1
    Mar 8 23:31:15 myhost kernel: Initalizing network drop monitor service
    Mar 8 23:31:15 myhost kernel: Freeing unused kernel memory: 472k freed
    Mar 8 23:31:15 myhost kernel: SCSI subsystem initialized
    Mar 8 23:31:15 myhost kernel: ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Mar 8 23:31:15 myhost kernel: ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    Mar 8 23:31:15 myhost kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    Mar 8 23:31:15 myhost kernel: scsi0 : ahci
    Mar 8 23:31:15 myhost kernel: scsi1 : ahci
    Mar 8 23:31:15 myhost kernel: scsi2 : ahci
    Mar 8 23:31:15 myhost kernel: scsi3 : ahci
    Mar 8 23:31:15 myhost kernel: scsi4 : ahci
    Mar 8 23:31:15 myhost kernel: scsi5 : ahci
    Mar 8 23:31:15 myhost kernel: ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
    Mar 8 23:31:15 myhost kernel: ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
    Mar 8 23:31:15 myhost kernel: ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
    Mar 8 23:31:15 myhost kernel: ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
    Mar 8 23:31:15 myhost kernel: ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
    Mar 8 23:31:15 myhost kernel: ata6: SATA max UDMA/133 irq_stat 0x00000040, connection status changed irq 22
    Mar 8 23:31:15 myhost kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Mar 8 23:31:15 myhost kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Mar 8 23:31:15 myhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Mar 8 23:31:15 myhost kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 8 23:31:15 myhost kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 8 23:31:15 myhost kernel: ata1.00: ATA-8: SAMSUNG HD502HJ, 1AJ100E4, max UDMA/133
    Mar 8 23:31:15 myhost kernel: ata1.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    Mar 8 23:31:15 myhost kernel: ata1.00: configured for UDMA/133
    Mar 8 23:31:15 myhost kernel: scsi 0:0:0:0: Direct-Access ATA SAMSUNG HD502HJ 1AJ1 PQ: 0 ANSI: 5
    Mar 8 23:31:15 myhost kernel: ata2.00: ATA-7: ST3160815AS, 3.AAD, max UDMA/133
    Mar 8 23:31:15 myhost kernel: ata2.00: 312581808 sectors, multi 0: LBA48 NCQ (depth 31/32)
    Mar 8 23:31:15 myhost kernel: ata2.00: configured for UDMA/133
    Mar 8 23:31:15 myhost kernel: scsi 1:0:0:0: Direct-Access ATA ST3160815AS 3.AA PQ: 0 ANSI: 5
    Mar 8 23:31:15 myhost kernel: ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 8 23:31:15 myhost kernel: ata6.00: ATAPI: PIONEER DVD-RW DVR-212, 1.21, max UDMA/66
    Mar 8 23:31:15 myhost kernel: ata6.00: configured for UDMA/66
    Mar 8 23:31:15 myhost kernel: scsi 5:0:0:0: CD-ROM PIONEER DVD-RW DVR-212 1.21 PQ: 0 ANSI: 5
    Mar 8 23:31:15 myhost kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Mar 8 23:31:15 myhost kernel: sd 0:0:0:0: [sda] Write Protect is off
    Mar 8 23:31:15 myhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Mar 8 23:31:15 myhost kernel: sda:
    Mar 8 23:31:15 myhost kernel: sd 1:0:0:0: [sdb] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    Mar 8 23:31:15 myhost kernel: sd 1:0:0:0: [sdb] Write Protect is off
    Mar 8 23:31:15 myhost kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Mar 8 23:31:15 myhost kernel: sdb: sda1 sda2 sda3 < sda5 sdb1 sdb2
    Mar 8 23:31:15 myhost kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
    Mar 8 23:31:15 myhost kernel: sda6 sda7 >
    Mar 8 23:31:15 myhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Mar 8 23:31:15 myhost kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode
    Mar 8 23:31:15 myhost kernel: rtc_cmos 00:05: RTC can wake from S4
    Mar 8 23:31:15 myhost kernel: rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Mar 8 23:31:15 myhost kernel: rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    Mar 8 23:31:15 myhost kernel: udev: starting version 151
    Mar 8 23:31:15 myhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Mar 8 23:31:15 myhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
    Mar 8 23:31:15 myhost kernel: sd 1:0:0:0: Attached scsi generic sg1 type 0
    Mar 8 23:31:15 myhost kernel: scsi 5:0:0:0: Attached scsi generic sg2 type 5
    Mar 8 23:31:15 myhost kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Mar 8 23:31:15 myhost kernel: r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: eth0: RTL8168c/8111c at 0xffffc900100f4000, 00:24:1d:7f:f4:27, XID 1c4000c0 IRQ 27
    Mar 8 23:31:15 myhost kernel: sr0: scsi3-mmc drive: 62x/62x writer dvd-ram cd/rw xa/form2 cdda tray
    Mar 8 23:31:15 myhost kernel: Uniform CD-ROM driver Revision: 3.20
    Mar 8 23:31:15 myhost kernel: Uniform Multi-Platform E-IDE driver
    Mar 8 23:31:15 myhost kernel: atiixp 0000:00:14.1: IDE controller (0x1002:0x439c rev 0x00)
    Mar 8 23:31:15 myhost kernel: ATIIXP_IDE 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Mar 8 23:31:15 myhost kernel: atiixp 0000:00:14.1: not 100% native mode: will probe irqs later
    Mar 8 23:31:15 myhost kernel: ide0: BM-DMA at 0xfa00-0xfa07
    Mar 8 23:31:15 myhost kernel: atiixp 0000:00:14.1: simplex device: DMA disabled
    Mar 8 23:31:15 myhost kernel: ide1: DMA disabled
    Mar 8 23:31:15 myhost kernel: EDAC MC: Ver: 2.1.0 Feb 23 2010
    Mar 8 23:31:15 myhost kernel: EDAC amd64_edac: Ver: 3.2.0 Feb 23 2010
    Mar 8 23:31:15 myhost kernel: fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    Mar 8 23:31:15 myhost kernel: Disabling lock debugging due to kernel taint
    Mar 8 23:31:15 myhost kernel: [fglrx] Maximum main memory to use for locked dma buffers: 3796 MBytes.
    Mar 8 23:31:15 myhost kernel: [fglrx] vendor: 1002 device: 9442 count: 1
    Mar 8 23:31:15 myhost kernel: [fglrx] ioport: bar 4, base 0xee00, size: 0x100
    Mar 8 23:31:15 myhost kernel: pci 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: [fglrx] Kernel PAT support is enabled
    Mar 8 23:31:15 myhost kernel: [fglrx] module loaded - fglrx 8.69.4 [Dec 11 2009] with 1 minors
    Mar 8 23:31:15 myhost kernel: processor LNXCPU:00: registered as cooling_device0
    Mar 8 23:31:15 myhost kernel: processor LNXCPU:01: registered as cooling_device1
    Mar 8 23:31:15 myhost kernel: processor LNXCPU:02: registered as cooling_device2
    Mar 8 23:31:15 myhost kernel: processor LNXCPU:03: registered as cooling_device3
    Mar 8 23:31:15 myhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    Mar 8 23:31:15 myhost kernel: ACPI: Power Button [PWRB]
    Mar 8 23:31:15 myhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Mar 8 23:31:15 myhost kernel: ACPI: Power Button [PWRF]
    Mar 8 23:31:15 myhost kernel: usbcore: registered new interface driver usbfs
    Mar 8 23:31:15 myhost kernel: usbcore: registered new interface driver hub
    Mar 8 23:31:15 myhost kernel: usbcore: registered new device driver usb
    Mar 8 23:31:15 myhost kernel: Linux video capture interface: v2.00
    Mar 8 23:31:15 myhost kernel: saa7130/34: v4l2 driver version 0.2.15 loaded
    Mar 8 23:31:15 myhost kernel: saa7134 0000:03:07.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    Mar 8 23:31:15 myhost kernel: saa7134[0]: found at 0000:03:07.0, rev: 1, irq: 21, latency: 32, mmio: 0xfddff000
    Mar 8 23:31:15 myhost kernel: saa7134[0]: subsystem: 153b:1142, board: Terratec Cinergy 400 TV [card=8,autodetected]
    Mar 8 23:31:15 myhost kernel: saa7134[0]: board init: gpio is 50000
    Mar 8 23:31:15 myhost kernel: input: saa7134 IR (Terratec Cinergy 40 as /devices/pci0000:00/0000:00:14.4/0000:03:07.0/input/input4
    Mar 8 23:31:15 myhost kernel: IRQ 21/saa7134[0]: IRQF_DISABLED is not guaranteed on shared IRQs
    Mar 8 23:31:15 myhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Mar 8 23:31:15 myhost kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 00: 3b 15 42 11 ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 10: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 20: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 30: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 40: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 50: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 60: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 70: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom 90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: saa7134[0]: i2c eeprom f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    Mar 8 23:31:15 myhost kernel: i2c i2c-0: Invalid 7-bit address 0x7a
    Mar 8 23:31:15 myhost kernel: All bytes are equal. It is not a TEA5767
    Mar 8 23:31:15 myhost kernel: tuner 0-0060: chip found @ 0xc0 (saa7134[0])
    Mar 8 23:31:15 myhost kernel: tuner-simple 0-0060: creating new instance
    Mar 8 23:31:15 myhost kernel: tuner-simple 0-0060: type set to 5 (Philips PAL_BG (FI1216 and compatibles))
    Mar 8 23:31:15 myhost kernel: saa7134[0]: registered device video0 [v4l2]
    Mar 8 23:31:15 myhost kernel: saa7134[0]: registered device vbi0
    Mar 8 23:31:15 myhost kernel: EMU10K1_Audigy 0000:03:06.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    Mar 8 23:31:15 myhost kernel: Audigy2 value: Special config.
    Mar 8 23:31:15 myhost kernel: ide1: no devices on the port
    Mar 8 23:31:15 myhost kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    Mar 8 23:31:15 myhost kernel: ide1 at 0x170-0x177,0x376 on irq 15
    Mar 8 23:31:15 myhost kernel: EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3).
    Mar 8 23:31:15 myhost kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Mar 8 23:31:15 myhost kernel: Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    Mar 8 23:31:15 myhost kernel: (Note that use of the override may cause unknown side effects.)
    Mar 8 23:31:15 myhost kernel: amd64_edac: probe of 0000:00:18.2 failed with error -22
    Mar 8 23:31:15 myhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:12.2: EHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:12.2: debug port 1
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Mar 8 23:31:15 myhost kernel: usb usb1: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 1-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 1-0:1.0: 6 ports detected
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.0: OHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 2
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
    Mar 8 23:31:15 myhost kernel: saa7134 ALSA driver for DMA sound loaded
    Mar 8 23:31:15 myhost kernel: IRQ 21/saa7134[0]: IRQF_DISABLED is not guaranteed on shared IRQs
    Mar 8 23:31:15 myhost kernel: saa7134[0]/alsa: saa7134[0] at 0xfddff000 irq 21 registered as card -1
    Mar 8 23:31:15 myhost kernel: usb usb2: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 2-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 2-0:1.0: 3 ports detected
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:13.2: EHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 3
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:13.2: debug port 1
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
    Mar 8 23:31:15 myhost kernel: ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Mar 8 23:31:15 myhost kernel: usb usb3: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 3-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 3-0:1.0: 6 ports detected
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.1: OHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
    Mar 8 23:31:15 myhost kernel: usb usb4: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 4-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 4-0:1.0: 3 ports detected
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.0: OHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
    Mar 8 23:31:15 myhost kernel: usb usb5: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 5-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 5-0:1.0: 3 ports detected
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.1: OHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
    Mar 8 23:31:15 myhost kernel: usb usb6: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 6-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 6-0:1.0: 3 ports detected
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:14.5: OHCI Host Controller
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
    Mar 8 23:31:15 myhost kernel: ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
    Mar 8 23:31:15 myhost kernel: usb usb7: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 7-0:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 7-0:1.0: 2 ports detected
    Mar 8 23:31:15 myhost kernel: usb 1-1: new high speed USB device using ehci_hcd and address 2
    Mar 8 23:31:15 myhost kernel: usb 1-1: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: hub 1-1:1.0: USB hub found
    Mar 8 23:31:15 myhost kernel: hub 1-1:1.0: 4 ports detected
    Mar 8 23:31:15 myhost kernel: usb 5-3: new low speed USB device using ohci_hcd and address 2
    Mar 8 23:31:15 myhost kernel: CE: hpet increasing min_delta_ns to 15000 nsec
    Mar 8 23:31:15 myhost kernel: usb 5-3: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: usbcore: registered new interface driver hiddev
    Mar 8 23:31:15 myhost kernel: input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input5
    Mar 8 23:31:15 myhost kernel: generic-usb 0003:046D:C01E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:13.0-3/input0
    Mar 8 23:31:15 myhost kernel: usbcore: registered new interface driver usbhid
    Mar 8 23:31:15 myhost kernel: usbhid: v2.6:USB HID core driver
    Mar 8 23:31:15 myhost kernel: usb 6-1: new low speed USB device using ohci_hcd and address 2
    Mar 8 23:31:15 myhost kernel: usb 6-1: configuration #1 chosen from 1 choice
    Mar 8 23:31:15 myhost kernel: input: HID 046a:0021 as /devices/pci0000:00/0000:00:13.1/usb6/6-1/6-1:1.0/input/input6
    Mar 8 23:31:15 myhost kernel: generic-usb 0003:046A:0021.0002: input,hidraw1: USB HID v1.11 Keyboard [HID 046a:0021] on usb-0000:00:13.1-1/input0
    Mar 8 23:31:15 myhost kernel: input: HID 046a:0021 as /devices/pci0000:00/0000:00:13.1/usb6/6-1/6-1:1.1/input/input7
    Mar 8 23:31:15 myhost kernel: generic-usb 0003:046A:0021.0003: input,hidraw2: USB HID v1.11 Device [HID 046a:0021] on usb-0000:00:13.1-1/input1
    Mar 8 23:31:15 myhost kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode
    Mar 8 23:31:15 myhost kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode
    Mar 8 23:31:15 myhost kernel: Adding 2096440k swap on /dev/sda7. Priority:-1 extents:1 across:2096440k
    Mar 8 23:31:15 myhost kernel: r8169: eth0: link up
    Mar 8 23:31:15 myhost kernel: r8169: eth0: link up
    Mar 8 23:31:15 myhost dnsmasq[4392]: started, version 2.52 cachesize 150
    Mar 8 23:31:15 myhost dnsmasq[4392]: compile time options: IPv6 GNU-getopt no-DBus no-I18N DHCP TFTP
    Mar 8 23:31:15 myhost dnsmasq[4392]: reading /etc/resolv.conf
    Mar 8 23:31:15 myhost dnsmasq[4392]: using nameserver 192.168.1.1#53
    Mar 8 23:31:15 myhost dnsmasq[4392]: read /etc/hosts - 1 addresses
    Mar 8 23:31:15 myhost acpid: starting up
    Mar 8 23:31:15 myhost acpid: 3 rules loaded
    Mar 8 23:31:15 myhost acpid: waiting for events: event logging is off
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001022d00001201sv00000000sd00000000bc06sc00i00' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:LNXSYSTM:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001022d00001203sv00000000sd00000000bc06sc00i00' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001022d00001204sv00000000sd00000000bc06sc00i00' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001002d0000439Dsv00001002sd0000439Dbc06sc01i00' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001022d00001200sv00000000sd00000000bc06sc00i00' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'dmi:bvnAwardSoftwareInternational,Inc.:bvrF5:bd09/16/2009:svnGigabyteTechnologyCo.,Ltd.:pnGA-MA790X-UD3P:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-MA790X-UD3P:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001002d00004384sv00000000sd00000000bc06sc04i01' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'pci:v00001002d00005958sv00001002sd00005958bc06sc00i00' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:LNXSYBUS:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:LNXSYBUS:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0C02:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0C02:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0C01:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0C04:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0200:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0100:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0800:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0103:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0C02:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:PNP0000:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: 'acpi:device:' is not a valid module or alias name
    Mar 8 23:31:05 myhost load-modules.sh: Not loading module 'snd_hda_intel' for alias 'pci:v00001002d0000AA30sv00001002sd0000AA30bc04sc03i00' because it is blacklisted
    Mar 8 23:31:05 myhost load-modules.sh: Not loading module 'snd_hda_intel' for alias 'pci:v00001002d0000AA30sv00001002sd0000AA30bc04sc03i00' because it is blacklisted
    Mar 8 23:31:15 myhost init: Entering runlevel: 3
    Mar 8 23:31:27 myhost acpid: client connected from 4493[82:82]
    Mar 8 23:31:27 myhost acpid: 1 client rule loaded
    Mar 8 23:31:29 myhost kernel: it87: Found IT8720F chip at 0x228, revision 8
    Mar 8 23:31:29 myhost kernel: it87: in3 is VCC (+5V)
    Mar 8 23:31:29 myhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
    Mar 8 23:31:29 myhost kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    Mar 8 23:31:29 myhost kernel: CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
    Mar 8 23:31:29 myhost kernel: nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
    Mar 8 23:31:29 myhost kernel: sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    Mar 8 23:31:35 myhost acpid: client connected from 4717[0:0]
    Mar 8 23:31:35 myhost acpid: 1 client rule loaded
    Mar 8 23:31:35 myhost kernel: [fglrx] Firegl kernel thread PID: 4719
    Mar 8 23:31:36 myhost kernel: [fglrx] Gart USWC size:1235 M.
    Mar 8 23:31:36 myhost kernel: [fglrx] Gart cacheable size:490 M.
    Mar 8 23:31:36 myhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Mar 8 23:31:36 myhost kernel: [fglrx] Reserved FB block: Unshared offset:fc21000, size:3df000
    Mar 8 23:31:36 myhost kernel: [fglrx] Reserved FB block: Unshared offset:1fffb000, size:5000
    Mar 8 23:31:53 myhost kernel: fuse init (API version 7.13)
    Mar 8 23:32:54 myhost ntpd[4697]: adjusting local clock by -0.181989s
    So at the moment iam running Arch without acpi but that cant be long term solution...

    here is the dmesg with nolapic_timer
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.31.5-127.fc12.i686.PAE ([email protected]) (gcc version 4.4.2 20091027 (Red Hat 4.4.2-7) (GCC) ) #1 SMP Sat Nov 7 21:25:57 EST 2009
    KERNEL supported cpus:
    Intel GenuineIntel
    AMD AuthenticAMD
    NSC Geode by NSC
    Cyrix CyrixInstead
    Centaur CentaurHauls
    Transmeta GenuineTMx86
    Transmeta TransmetaCPU
    UMC UMC UMC UMC
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009d400 (usable)
    BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
    BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
    BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000bdaa1000 (usable)
    BIOS-e820: 00000000bdaa1000 - 00000000bdaa7000 (reserved)
    BIOS-e820: 00000000bdaa7000 - 00000000bdbd0000 (usable)
    BIOS-e820: 00000000bdbd0000 - 00000000bdc0f000 (reserved)
    BIOS-e820: 00000000bdc0f000 - 00000000bdd09000 (usable)
    BIOS-e820: 00000000bdd09000 - 00000000bdf0f000 (reserved)
    BIOS-e820: 00000000bdf0f000 - 00000000bdf18000 (usable)
    BIOS-e820: 00000000bdf18000 - 00000000bdf1f000 (reserved)
    BIOS-e820: 00000000bdf1f000 - 00000000bdf63000 (usable)
    BIOS-e820: 00000000bdf63000 - 00000000bdf9f000 (ACPI NVS)
    BIOS-e820: 00000000bdf9f000 - 00000000bdfe2000 (usable)
    BIOS-e820: 00000000bdfe2000 - 00000000bdfff000 (ACPI data)
    BIOS-e820: 00000000bdfff000 - 00000000be000000 (usable)
    BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    DMI 2.5 present.
    last_pfn = 0x140000 max_arch_pfn = 0x1000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask F80000000 write-back
    1 base 080000000 mask FC0000000 write-back
    2 base 100000000 mask FC0000000 write-back
    3 base 0FFE00000 mask FFFE00000 write-protect
    4 disabled
    5 disabled
    6 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    original variable MTRRs
    reg 0, base: 0GB, range: 2GB, type WB
    reg 1, base: 2GB, range: 1GB, type WB
    reg 2, base: 4GB, range: 1GB, type WB
    reg 3, base: 4094MB, range: 2MB, type WP
    total RAM coverred: 4096M
    Found optimal setting for mtrr clean up
    gran_size: 64K chunk_size: 64K num_reg: 3 lose cover RAM: 0G
    New variable MTRRs
    reg 0, base: 0GB, range: 2GB, type WB
    reg 1, base: 2GB, range: 1GB, type WB
    reg 2, base: 4GB, range: 1GB, type WB
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 00000000c0000000 - 0000000100000000 (usable) ==> (reserved)
    initial memory mapped : 0 - 01000000
    init_memory_mapping: 0000000000000000-00000000375fe000
    NX (Execute Disable) protection: active
    0000000000 - 0000200000 page 4k
    0000200000 - 0037400000 page 2M
    0037400000 - 00375fe000 page 4k
    kernel direct mapping tables up to 375fe000 @ 7000-f000
    RAMDISK: 37534000 - 37fef7b4
    Allocated new RAMDISK: 00afb000 - 015b67b4
    Move RAMDISK from 0000000037534000 - 0000000037fef7b3 to 00afb000 - 015b67b3
    ACPI: RSDP 000f74e0 00024 (v02 DELL )
    ACPI: XSDT bdff5d60 00074 (v01 DELL FX09 06040000 LTP 00000000)
    ACPI: FACP bdfe6000 000F4 (v03 DELL M09 06040000 ALAN 00000001)
    ACPI: DSDT bdfe7000 08DB2 (v02 DELL M09 06040000 INTL 20050624)
    ACPI: FACS bdf9efc0 00040
    ACPI: HPET bdffed16 00038 (v01 DELL M09 06040000 LOHR 0000005A)
    ACPI: MCFG bdffed4e 0003C (v01 DELL M09 06040000 LOHR 0000005A)
    ACPI: APIC bdffed8a 00068 (v01 DELL M09 06040000 LTP 00000000)
    ACPI: BOOT bdffedf2 00028 (v01 DELL M09 06040000 LTP 00000001)
    ACPI: OSFR bdffee1a 00070 (v01 DELL DELL 06040000 ASL 00000061)
    ACPI: SLIC bdffee8a 00176 (v01 DELL FX09 06040000 LTP 00000000)
    ACPI: SSDT bdfe5000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    ACPI: SSDT bdfe4000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    ACPI: SSDT bdfe3000 0020F (v01 PmRef ApTst 00003000 INTL 20050624)
    ACPI: Local APIC address 0xfee00000
    4234MB HIGHMEM available.
    885MB LOWMEM available.
    mapped low ram: 0 - 375fe000
    low ram: 0 - 375fe000
    node 0 low ram: 00000000 - 375fe000
    node 0 bootmap 0000b000 - 00011ec0
    (9 early reservations) ==> bootmem [0000000000 - 00375fe000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000400000 - 0000af1210] TEXT DATA BSS ==> [0000400000 - 0000af1210]
    #4 [000009d400 - 0000100000] BIOS reserved ==> [000009d400 - 0000100000]
    #5 [0000af2000 - 0000afa11c] BRK ==> [0000af2000 - 0000afa11c]
    #6 [0000007000 - 000000b000] PGTABLE ==> [0000007000 - 000000b000]
    #7 [0000afb000 - 00015b67b4] NEW RAMDISK ==> [0000afb000 - 00015b67b4]
    #8 [000000b000 - 0000012000] BOOTMAP ==> [000000b000 - 0000012000]
    found SMP MP-table at [c00f7590] f7590
    Zone PFN ranges:
    DMA 0x00000000 -> 0x00001000
    Normal 0x00001000 -> 0x000375fe
    HighMem 0x000375fe -> 0x00140000
    Movable zone start PFN for each node
    early_node_map[9] active PFN ranges
    0: 0x00000000 -> 0x0000009d
    0: 0x00000100 -> 0x000bdaa1
    0: 0x000bdaa7 -> 0x000bdbd0
    0: 0x000bdc0f -> 0x000bdd09
    0: 0x000bdf0f -> 0x000bdf18
    0: 0x000bdf1f -> 0x000bdf63
    0: 0x000bdf9f -> 0x000bdfe2
    0: 0x000bdfff -> 0x000be000
    0: 0x00100000 -> 0x00140000
    On node 0 totalpages: 1039602
    free_area_init_node: node 0, pgdat c0995ba0, node_mem_map c15b7000
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3965 pages, LIFO batch:0
    Normal zone: 1740 pages used for memmap
    Normal zone: 220978 pages, LIFO batch:31
    HighMem zone: 8469 pages used for memmap
    HighMem zone: 804418 pages, LIFO batch:31
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Enabling APIC mode: Flat. Using 1 I/O APICs
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a201 base: 0xfed00000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 24
    PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
    PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    Allocating PCI resources starting at be000000 (gap: be000000:42000000)
    NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:1
    PERCPU: Embedded 15 pages at c3dc7000, static data 37788 bytes
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1029361
    Kernel command line: ro root=UUID=bb4672b1-6bad-4b9b-bad1-7fce8610ec39 nolapic_timer LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    allocated 26214400 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Initializing HighMem for node 0 (000375fe:00140000)
    Memory: 4071840k/5242880k available (3569k kernel code, 85720k reserved, 2214k data, 448k init, 3251548k highmem)
    virtual kernel memory layout:
    fixmap : 0xffad5000 - 0xfffff000 (5288 kB)
    pkmap : 0xff600000 - 0xff800000 (2048 kB)
    vmalloc : 0xf7dfe000 - 0xff5fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf75fe000 ( 885 MB)
    .init : 0xc09a7000 - 0xc0a17000 ( 448 kB)
    .data : 0xc077c76f - 0xc09a6028 (2214 kB)
    .text : 0xc0400000 - 0xc077c76f (3569 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Hierarchical RCU implementation.
    NR_IRQS:1280
    Extended CMOS year: 2000
    Fast TSC calibration using PIT
    Detected 2260.970 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    hpet clockevent registered
    HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Calibrating delay loop (skipped), value calculated using timer frequency.. 4521.94 BogoMIPS (lpj=2260970)
    Security Framework initialized
    SELinux: Initializing.
    SELinux: Starting in permissive mode
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 3072K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 6 MCE banks
    CPU0: Thermal monitoring handled by SMI
    using mwait in idle threads.
    Performance Counters: Core2 events, Intel PMU driver.
    ... version: 2
    ... bit width: 40
    ... generic counters: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose counters: 3
    ... counter mask: 0000000700000003
    Checking 'hlt' instruction... OK.
    ACPI: Core revision 20090521
    ftrace: converting mcount calls to 0f 1f 44 00 00
    ftrace: allocating 20611 entries in 41 pages
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Core(TM)2 Duo CPU P7550 @ 2.26GHz stepping 0a
    Disabling APIC timer
    Booting processor 1 APIC 0x1 ip 0x6000
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 4521.95 BogoMIPS (lpj=2260979)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 3072K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    mce: CPU supports 6 MCE banks
    CPU1: Thermal monitoring enabled (TM2)
    x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
    CPU1: Intel(R) Core(TM)2 Duo CPU P7550 @ 2.26GHz stepping 0a
    checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Brought up 2 CPUs
    Total of 2 processors activated (9043.89 BogoMIPS).
    sizeof(vma)=88 bytes
    sizeof(page)=32 bytes
    sizeof(inode)=352 bytes
    sizeof(dentry)=132 bytes
    sizeof(ext3inode)=500 bytes
    sizeof(buffer_head)=56 bytes
    sizeof(skbuff)=192 bytes
    sizeof(task_struct)=3256 bytes
    CPU0 attaching sched-domain:
    domain 0: span 0-1 level MC
    groups: 0 1
    CPU1 attaching sched-domain:
    domain 0: span 0-1 level MC
    groups: 1 0
    Booting paravirtualized kernel on bare hardware
    regulator: core version 0.5
    Time: 15:36:47 Date: 05/17/10
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
    PCI: Not using MMCONFIG.
    PCI: PCI BIOS revision 3.00 entry at 0xfddf2, last bus=8
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: BIOS _OSI(Linux) query ignored
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: EC: GPE storm detected, transactions will use polling mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
    PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
    PCI: Using MMCONFIG for extended config space
    ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in poll mode
    ACPI: Power Resource [FN00] (off)
    ACPI: Power Resource [FN01] (off)
    ACPI: No dock devices found.
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    DMAR: Forcing write-buffer flush capability
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:01.0: PME# disabled
    pci 0000:00:1a.0: reg 20 io port: [0x1800-0x181f]
    pci 0000:00:1a.1: reg 20 io port: [0x1820-0x183f]
    pci 0000:00:1a.2: reg 20 io port: [0x1840-0x185f]
    pci 0000:00:1a.7: reg 10 32bit mmio: [0xfc304800-0xfc304bff]
    pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.7: PME# disabled
    pci 0000:00:1b.0: reg 10 64bit mmio: [0xfc300000-0xfc303fff]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.2: PME# disabled
    pci 0000:00:1d.0: reg 20 io port: [0x1860-0x187f]
    pci 0000:00:1d.1: reg 20 io port: [0x1880-0x189f]
    pci 0000:00:1d.2: reg 20 io port: [0x18a0-0x18bf]
    pci 0000:00:1d.7: reg 10 32bit mmio: [0xfc304c00-0xfc304fff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10 io port: [0x18f0-0x18f7]
    pci 0000:00:1f.2: reg 14 io port: [0x18e4-0x18e7]
    pci 0000:00:1f.2: reg 18 io port: [0x18e8-0x18ef]
    pci 0000:00:1f.2: reg 1c io port: [0x18e0-0x18e3]
    pci 0000:00:1f.2: reg 20 io port: [0x18c0-0x18df]
    pci 0000:00:1f.2: reg 24 32bit mmio: [0xfc304000-0xfc3047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 10 64bit mmio: [0x000000-0x0000ff]
    pci 0000:00:1f.3: reg 20 io port: [0x1c00-0x1c1f]
    pci 0000:01:00.0: reg 10 32bit mmio: [0xd0000000-0xdfffffff]
    pci 0000:01:00.0: reg 14 io port: [0x2000-0x20ff]
    pci 0000:01:00.0: reg 18 32bit mmio: [0xfc000000-0xfc00ffff]
    pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
    pci 0000:01:00.0: supports D1 D2
    pci 0000:01:00.1: reg 10 32bit mmio: [0xfc010000-0xfc013fff]
    pci 0000:01:00.1: supports D1 D2
    pci 0000:00:01.0: bridge io port: [0x2000-0x2fff]
    pci 0000:00:01.0: bridge 32bit mmio: [0xfc000000-0xfc0fffff]
    pci 0000:00:01.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff]
    pci 0000:02:00.0: reg 10 64bit mmio: [0xf6000000-0xf600ffff]
    pci 0000:02:00.0: PME# supported from D3hot D3cold
    pci 0000:02:00.0: PME# disabled
    pci 0000:00:1c.0: bridge io port: [0x3000-0x3fff]
    pci 0000:00:1c.0: bridge 32bit mmio: [0xf6000000-0xf7ffffff]
    pci 0000:00:1c.0: bridge 64bit mmio pref: [0xf0000000-0xf1ffffff]
    pci 0000:00:1c.1: bridge io port: [0x4000-0x4fff]
    pci 0000:00:1c.1: bridge 32bit mmio: [0xf8000000-0xf9ffffff]
    pci 0000:00:1c.1: bridge 64bit mmio pref: [0xf2000000-0xf3ffffff]
    pci 0000:06:00.0: reg 10 64bit mmio: [0xfa000000-0xfa001fff]
    pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
    pci 0000:06:00.0: PME# disabled
    pci 0000:00:1c.2: bridge io port: [0x5000-0x5fff]
    pci 0000:00:1c.2: bridge 32bit mmio: [0xfa000000-0xfbffffff]
    pci 0000:00:1c.2: bridge 64bit mmio pref: [0xf4000000-0xf5ffffff]
    pci 0000:00:1e.0: transparent bridge
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 *7 10 12 14 15)
    ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    SCSI subsystem initialized
    libata version 3.00 loaded.
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    PCI: Using ACPI for IRQ routing
    PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64
    PCI: pci_cache_line_size set to 64 bytes
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:03: iomem range 0xfed00000-0xfed003ff has been reserved
    system 00:05: ioport range 0x910-0x917 has been reserved
    system 00:05: ioport range 0x480-0x48f has been reserved
    system 00:05: ioport range 0x900-0x903 has been reserved
    system 00:05: ioport range 0xffff-0xffff has been reserved
    system 00:05: ioport range 0x1000-0x107f has been reserved
    system 00:05: ioport range 0x400-0x47f has been reserved
    system 00:05: ioport range 0x1180-0x11ff has been reserved
    system 00:05: ioport range 0x164e-0x164f has been reserved
    system 00:05: ioport range 0xfe00-0xfe00 has been reserved
    system 00:09: iomem range 0xfed1c000-0xfed1ffff has been reserved
    system 00:09: iomem range 0xfed10000-0xfed13fff has been reserved
    system 00:09: iomem range 0xfed18000-0xfed18fff has been reserved
    system 00:09: iomem range 0xfed19000-0xfed19fff has been reserved
    system 00:09: iomem range 0xe0000000-0xefffffff has been reserved
    system 00:09: iomem range 0xfed20000-0xfed3ffff has been reserved
    system 00:09: iomem range 0xfed45000-0xfed8ffff has been reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: 0x2000-0x2fff
    pci 0000:00:01.0: MEM window: 0xfc000000-0xfc0fffff
    pci 0000:00:01.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff
    pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
    pci 0000:00:1c.0: IO window: 0x3000-0x3fff
    pci 0000:00:1c.0: MEM window: 0xf6000000-0xf7ffffff
    pci 0000:00:1c.0: PREFETCH window: 0x000000f0000000-0x000000f1ffffff
    pci 0000:00:1c.1: PCI bridge, secondary bus 0000:04
    pci 0000:00:1c.1: IO window: 0x4000-0x4fff
    pci 0000:00:1c.1: MEM window: 0xf8000000-0xf9ffffff
    pci 0000:00:1c.1: PREFETCH window: 0x000000f2000000-0x000000f3ffffff
    pci 0000:00:1c.2: PCI bridge, secondary bus 0000:06
    pci 0000:00:1c.2: IO window: 0x5000-0x5fff
    pci 0000:00:1c.2: MEM window: 0xfa000000-0xfbffffff
    pci 0000:00:1c.2: PREFETCH window: 0x000000f4000000-0x000000f5ffffff
    pci 0000:00:1e.0: PCI bridge, secondary bus 0000:08
    pci 0000:00:1e.0: IO window: disabled
    pci 0000:00:1e.0: MEM window: disabled
    pci 0000:00:1e.0: PREFETCH window: disabled
    pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:01.0: setting latency timer to 64
    pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    pci 0000:00:1c.2: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 0 io: [0x00-0xffff]
    pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
    pci_bus 0000:01: resource 0 io: [0x2000-0x2fff]
    pci_bus 0000:01: resource 1 mem: [0xfc000000-0xfc0fffff]
    pci_bus 0000:01: resource 2 pref mem [0xd0000000-0xdfffffff]
    pci_bus 0000:02: resource 0 io: [0x3000-0x3fff]
    pci_bus 0000:02: resource 1 mem: [0xf6000000-0xf7ffffff]
    pci_bus 0000:02: resource 2 pref mem [0xf0000000-0xf1ffffff]
    pci_bus 0000:04: resource 0 io: [0x4000-0x4fff]
    pci_bus 0000:04: resource 1 mem: [0xf8000000-0xf9ffffff]
    pci_bus 0000:04: resource 2 pref mem [0xf2000000-0xf3ffffff]
    pci_bus 0000:06: resource 0 io: [0x5000-0x5fff]
    pci_bus 0000:06: resource 1 mem: [0xfa000000-0xfbffffff]
    pci_bus 0000:06: resource 2 pref mem [0xf4000000-0xf5ffffff]
    pci_bus 0000:08: resource 3 io: [0x00-0xffff]
    pci_bus 0000:08: resource 4 mem: [0x000000-0xffffffffffffffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Trying to unpack rootfs image as initramfs...
    Clockevents: could not switch to one-shot mode:
    Clockevents: could not switch to one-shot mode: lapic is not functional.
    Could not switch to high resolution mode on CPU 1
    lapic is not functional.
    Could not switch to high resolution mode on CPU 0
    Freeing initrd memory: 10989k freed
    Simple Boot Flag at 0x36 set to 0x1
    apm: BIOS not found.
    audit: initializing netlink socket (disabled)
    type=2000 audit(1274110607.528:1): initialized
    highmem bounce pool size: 64 pages
    HugeTLB registered 2 MB page size, pre-allocated 0 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1625
    SELinux: Registering netfilter hooks
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:01:00.0: Boot video device
    pcieport-driver 0000:00:01.0: irq 24 for MSI/MSI-X
    pcieport-driver 0000:00:01.0: setting latency timer to 64
    pcieport-driver 0000:00:1c.0: irq 25 for MSI/MSI-X
    pcieport-driver 0000:00:1c.0: setting latency timer to 64
    pcieport-driver 0000:00:1c.1: irq 26 for MSI/MSI-X
    pcieport-driver 0000:00:1c.1: setting latency timer to 64
    pcieport-driver 0000:00:1c.2: irq 27 for MSI/MSI-X
    pcieport-driver 0000:00:1c.2: setting latency timer to 64
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    decode_hpp: Could not get hotplug parameters. Use defaults
    acpiphp: Slot [1] registered
    ACPI: AC Adapter [ADP1] (on-line)
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
    ACPI: Power Button [PWRF]
    input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    ACPI: Lid Switch [LID0]
    input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    ACPI: Power Button [PWRB]
    fan PNP0C0B:00: registered as cooling_device0
    ACPI: Fan [FAN0] (off)
    fan PNP0C0B:01: registered as cooling_device1
    ACPI: Fan [FAN1] (off)
    ACPI: SSDT bdf1ac20 002A9 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    ACPI: SSDT bdf18620 005C5 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    Marking TSC unstable due to TSC halts in idle
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    processor LNXCPU:00: registered as cooling_device2
    ACPI: Processor [CPU0] (supports 8 throttling states)
    Clockevents: could not switch to one-shot mode: lapic is not functional.
    Could not switch to high resolution mode on CPU 0
    Clockevents: could not switch to one-shot mode: lapic is not functional.
    Could not switch to high resolution mode on CPU 1
    ACPI: SSDT bdf19ca0 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    ACPI: SSDT bdf19f20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
    processor LNXCPU:01: registered as cooling_device3
    ACPI: Processor [CPU1] (supports 8 throttling states)
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [TZ01] (75 C)
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Non-volatile memory driver v1.3
    Linux agpgart interface v0.103
    Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    brd: module loaded
    loop: module loaded
    input: Macintosh mouse button emulation as /devices/virtual/input/input3
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 28 for MSI/MSI-X
    ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pmp pio slum part
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    scsi4 : ahci
    scsi5 : ahci
    ata1: SATA max UDMA/133 abar m2048@0xfc304000 port 0xfc304100 irq 28
    ata2: SATA max UDMA/133 irq_stat 0x00000040, connection status changed irq 28
    ata3: DUMMY
    ata4: DUMMY
    ata5: SATA max UDMA/133 abar m2048@0xfc304000 port 0xfc304300 irq 28
    ata6: SATA max UDMA/133 abar m2048@0xfc304000 port 0xfc304380 irq 28
    Fixed MDIO Bus: probed
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    ehci_hcd 0000:00:1a.7: setting latency timer to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1a.7: debug port 1
    ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    ehci_hcd 0000:00:1a.7: irq 19, io mem 0xfc304800
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb1: Product: EHCI Host Controller
    usb usb1: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE ehci_hcd
    usb usb1: SerialNumber: 0000:00:1a.7
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 6 ports detected
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfc304c00
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb2: Product: EHCI Host Controller
    usb usb2: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE ehci_hcd
    usb usb2: SerialNumber: 0000:00:1d.7
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 6 ports detected
    ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1a.0: setting latency timer to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
    usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
    usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb3: Product: UHCI Host Controller
    usb usb3: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE uhci_hcd
    usb usb3: SerialNumber: 0000:00:1a.0
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    uhci_hcd 0000:00:1a.1: setting latency timer to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
    usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb4: Product: UHCI Host Controller
    usb usb4: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE uhci_hcd
    usb usb4: SerialNumber: 0000:00:1a.1
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1a.2: setting latency timer to 64
    uhci_hcd 0000:00:1a.2: UHCI Host Controller
    uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001840
    usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb5: Product: UHCI Host Controller
    usb usb5: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE uhci_hcd
    usb usb5: SerialNumber: 0000:00:1a.2
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.0: irq 20, io base 0x00001860
    usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
    usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb6: Product: UHCI Host Controller
    usb usb6: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE uhci_hcd
    usb usb6: SerialNumber: 0000:00:1d.0
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
    usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
    usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb7: Product: UHCI Host Controller
    usb usb7: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE uhci_hcd
    usb usb7: SerialNumber: 0000:00:1d.1
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
    usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
    usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    usb usb8: Product: UHCI Host Controller
    usb usb8: Manufacturer: Linux 2.6.31.5-127.fc12.i686.PAE uhci_hcd
    usb usb8: SerialNumber: 0000:00:1d.2
    usb usb8: configuration #1 chosen from 1 choice
    hub 8-0:1.0: USB hub found
    hub 8-0:1.0: 2 ports detected
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    rtc_cmos 00:06: RTC can wake from S4
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    device-mapper: uevent: version 1.0.3
    device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: [email protected]
    cpuidle: using governor ladder
    cpuidle: using governor menu
    usbcore: registered new interface driver hiddev
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
    nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
    sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    ip_tables: (C) 2000-2006 Netfilter Core Team
    TCP cubic registered
    Initializing XFRM netlink socket
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    PM: Resume from disk failed.
    registered taskstats version 1
    No TPM chip found, activating TPM-bypass!
    Magic number: 10:442:639
    rtc_cmos 00:06: setting system clock to 2010-05-17 15:36:48 UTC (1274110608)
    Initalizing network drop monitor service
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
    ACPI: Battery Slot [BAT1] (battery present)
    ata6: SATA link down (SStatus 0 SControl 300)
    ata5: SATA link down (SStatus 0 SControl 300)
    usb 1-6: new high speed USB device using ehci_hcd and address 2
    ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    ata1.00: ATA-8: ST9500420ASG, 0004SDM1, max UDMA/133
    ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA ST9500420ASG 0004 PQ: 0 ANSI: 5
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 sda9 sda10
    usb 1-6: New USB device found, idVendor=0c45, idProduct=6407
    usb 1-6: New USB device strings: Mfr=2, Product=1, SerialNumber=0
    usb 1-6: Product: Laptop_Integrated_Webcam_2M
    usb 1-6: Manufacturer: CN0T821N7248797L01GE
    usb 1-6: configuration #1 chosen from 1 choice
    sda11 sda12 >
    sd 0:0:0:0: [sda] Attached SCSI disk
    Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input5
    ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata2.00: ATAPI: Optiarc DVD+/-RW AD-7640S, HD18, max UDMA/100, ATAPI AN
    ata2.00: configured for UDMA/100
    scsi 1:0:0:0: CD-ROM Optiarc DVD+-RW AD-7640S HD18 PQ: 0 ANSI: 5
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    Freeing unused kernel memory: 448k freed
    Write protecting the kernel text: 3572k
    Write protecting the kernel read-only data: 1716k
    dracut: dracut-002-13.4.git8f397a9b.fc12
    udev: starting version 145
    [drm] Initialized drm 1.1.0 20060810
    usb 8-2: new full speed USB device using uhci_hcd and address 2
    [drm] radeon defaulting to kernel modesetting.
    [drm] radeon kernel modesetting enabled.
    radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    radeon 0000:01:00.0: setting latency timer to 64
    [drm] radeon: Initializing kernel modesetting.
    [drm] register mmio base: 0xFC000000
    [drm] register mmio size: 65536
    ATOM BIOS: BR34026
    [drm] Clocks initialized !
    [drm] Detected VRAM RAM=256M, BAR=256M
    [drm] RAM width 64bits DDR
    [TTM] Zone kernel: Available graphics memory: 416288 kiB.
    [TTM] Zone highmem: Available graphics memory: 2042062 kiB.
    [drm] radeon: 256M of VRAM memory ready
    [drm] radeon: 512M of GTT memory ready.
    [drm] Loading RV710 CP Microcode
    platform radeon_cp.0: firmware: requesting radeon/RV710_pfp.bin
    platform radeon_cp.0: firmware: requesting radeon/RV710_me.bin
    [drm] GART: num cpu pages 131072, num gpu pages 131072
    [drm] ring test succeeded in 1 usecs
    [drm] radeon: ib pool ready.
    [drm] ib test succeeded in 0 usecs
    [drm] Radeon Display Connectors
    [drm] Connector 0:
    [drm] VGA
    [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [drm] Encoders:
    [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [drm] Connector 1:
    [drm] LVDS
    [drm] DDC: 0x7f68 0x7f68 0x7f6c 0x7f6c 0x7f70 0x7f70 0x7f74 0x7f74
    [drm] Encoders:
    [drm] LCD1: INTERNAL_UNIPHY2
    [drm] Connector 2:
    [drm] HDMI-A
    [drm] DDC: 0x7f10 0x7f10 0x7f14 0x7f14 0x7f18 0x7f18 0x7f1c 0x7f1c
    [drm] Encoders:
    [drm] DFP1: INTERNAL_UNIPHY
    usb 8-2: New USB device found, idVendor=12d1, idProduct=140b
    usb 8-2: New USB device strings: Mfr=1, Product=2, SerialNumber=4
    usb 8-2: Product: HUAWEI Mobile
    usb 8-2: Manufacturer: HUAÿWEI TECHNOLOGIES
    usb 8-2: SerialNumber: ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
    usb 8-2: configuration #1 chosen from 1 choice
    Initializing USB Mass Storage driver...
    [drm] fb mappable at 0xD0141000
    [drm] vram apper at 0xD0000000
    [drm] size 5760000
    [drm] fb depth is 24
    [drm] pitch is 6400
    fbcon: radeondrmfb (fb0) is primary device
    scsi9 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 2
    usb-storage: waiting for device to settle before scanning
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    executing set pll
    executing set crtc timing
    [drm] LVDS-11: set mode 1600x900 1c
    Console: switching to colour frame buffer device 200x56
    fb0: radeondrmfb frame buffer device
    registered panic notifier
    [drm] Initialized radeon 2.0.0 20080528 for 0000:01:00.0 on minor 0
    dracut: Starting plymouth daemon
    ACPI Error: Current brightness invalid 20090521 video-538
    input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/device:02/input/input6
    ACPI: Video Device [ATID] (multi-head: yes rom: no post: no)
    EXT4-fs (sda7): barriers enabled
    kjournald2 starting: pid 291, dev sda7:8, commit interval 5 seconds
    EXT4-fs (sda7): delayed allocation enabled
    EXT4-fs: file extents enabled
    EXT4-fs: mballoc enabled
    EXT4-fs (sda7): mounted filesystem with ordered data mode
    dracut: Mounted root filesystem /dev/sda7
    dracut: Loading SELinux policy
    type=1404 audit(1274110613.259:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
    SELinux: 8192 avtab hash slots, 144734 rules.
    SELinux: 8192 avtab hash slots, 144734 rules.
    SELinux: 8 users, 12 roles, 2941 types, 136 bools, 1 sens, 1024 cats
    SELinux: 75 classes, 144734 rules
    SELinux: Completing initialization.
    SELinux: Setting up existing superblocks.
    SELinux: initialized (dev sda7, type ext4), uses xattr
    SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
    SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
    SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
    SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
    SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
    SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
    SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
    SELinux: initialized (dev devpts, type devpts), uses transition SIDs
    SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
    SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
    SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
    SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
    SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
    SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
    SELinux: initialized (dev proc, type proc), uses genfs_contexts
    SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
    SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
    SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
    type=1403 audit(1274110613.566:3): policy loaded auid=4294967295 ses=4294967295
    dracut: Switching root
    usb-storage: device scan complete
    scsi 9:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 0
    scsi 9:0:0:1: Direct-Access HUAWEI SD Storage 2.31 PQ: 0 ANSI: 2
    sr1: scsi-1 drive
    sr 9:0:0:0: Attached scsi CD-ROM sr1
    sr 9:0:0:0: Attached scsi generic sg2 type 5
    sd 9:0:0:1: Attached scsi generic sg3 type 0
    sd 9:0:0:1: [sdb] Attached SCSI removable disk
    udev: starting version 145
    ACPI: WMI: Mapper loaded
    dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    iTCO_vendor_support: vendor-support=0
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    i801_smbus 0000:00:1f.3: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    ACPI: I/O resource 0000:00:1f.3 [0x1c00-0x1c1f] conflicts with ACPI region SMBI [0x1c00-0x1c0f]
    ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    type=1400 audit(1274090818.429:4): avc: denied { mmap_zero } for pid=392 comm="vbetool" scontext=system_u:system_r:vbetool_t:s0-s0:c0.c1023 tcontext=system_u:system_r:vbetool_t:s0-s0:c0.c1023 tclass=memprotect
    tg3.c:v3.99 (April 20, 2009)
    tg3 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    tg3 0000:02:00.0: setting latency timer to 64
    tg3 0000:02:00.0: wake-up capability disabled by ACPI
    tg3 0000:02:00.0: PME# disabled
    cfg80211: Calling CRDA to update world regulatory domain
    Linux video capture interface: v2.00
    usbcore: registered new interface driver usbserial
    USB Serial support registered for generic
    usbcore: registered new interface driver usbserial_generic
    usbserial: USB Serial Driver core
    USB Serial support registered for GSM modem (1-port)
    option 8-2:1.0: GSM modem (1-port) converter detected
    usb 8-2: GSM modem (1-port) converter now attached to ttyUSB0
    option 8-2:1.1: GSM modem (1-port) converter detected
    usb 8-2: GSM modem (1-port) converter now attached to ttyUSB1
    option 8-2:1.2: GSM modem (1-port) converter detected
    usb 8-2: GSM modem (1-port) converter now attached to ttyUSB2
    usbcore: registered new interface driver option
    option: v0.7.2:USB Driver for GSM modems
    eth0: Tigon3 [partno(BCM95784M) rev 5784100] (PCI Express) MAC address 00:24:e8:81:df:48
    eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1])
    eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_2M (0c45:6407)
    input: Laptop_Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input7
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27kds
    iwlagn: Copyright(c) 2003-2009 Intel Corporation
    iwlagn 0000:06:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    iwlagn 0000:06:00.0: setting latency timer to 64
    iwlagn 0000:06:00.0: Detected Intel Wireless WiFi Link 5100AGN REV=0x54
    iwlagn 0000:06:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    iwlagn 0000:06:00.0: irq 29 for MSI/MSI-X
    cfg80211: World regulatory domain updated:
    (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    phy0: Selected rate control algorithm 'iwl-agn-rs'
    cfg80211: Calling CRDA for country: IN
    cfg80211: Regulatory domain changed to country: IN
    (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    (5170000 KHz - 5250000 KHz @ 20000 KHz), (N/A, 2000 mBm)
    (5250000 KHz - 5330000 KHz @ 20000 KHz), (N/A, 2000 mBm)
    (5735000 KHz - 5835000 KHz @ 20000 KHz), (N/A, 2000 mBm)
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 30 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    hda_codec: ALC665: SKU not ready 0x00000000.
    hda_codec: ALC665: BIOS auto-probing.
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
    HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    HDA Intel 0000:01:00.1: irq 31 for MSI/MSI-X
    HDA Intel 0000:01:00.1: setting latency timer to 64
    device-mapper: multipath: version 1.1.0 loaded
    EXT4-fs (sda7): internal journal on sda7:8
    EXT4-fs (sda3): barriers enabled
    kjournald2 starting: pid 886, dev sda3:8, commit interval 5 seconds
    EXT4-fs (sda3): internal journal on sda3:8
    EXT4-fs (sda3): delayed allocation enabled
    EXT4-fs: file extents enabled
    EXT4-fs: mballoc enabled
    EXT4-fs (sda3): mounted filesystem with ordered data mode
    SELinux: initialized (dev sda3, type ext4), uses xattr
    EXT4-fs (sda6): barriers enabled
    kjournald2 starting: pid 887, dev sda6:8, commit interval 5 seconds
    EXT4-fs (sda6): internal journal on sda6:8
    EXT4-fs (sda6): delayed allocation enabled
    EXT4-fs: file extents enabled
    EXT4-fs: mballoc enabled
    EXT4-fs (sda6): mounted filesystem with ordered data mode
    SELinux: initialized (dev sda6, type ext4), uses xattr
    SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
    microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    platform microcode: firmware: requesting intel-ucode/06-17-0a
    microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    platform microcode: firmware: requesting intel-ucode/06-17-0a
    Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Microcode Update Driver: v2.00 removed.
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    ip6_tables: (C) 2000-2006 Netfilter Core Team
    tg3 0000:02:00.0: wake-up capability disabled by ACPI
    tg3 0000:02:00.0: PME# disabled
    tg3 0000:02:00.0: irq 32 for MSI/MSI-X
    ADDRCONF(NETDEV_UP): eth0: link is not ready
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts
    hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
    usb 4-1: new full speed USB device using uhci_hcd and address 2
    usb 4-1: New USB device found, idVendor=0a5c, idProduct=4500
    usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    usb 4-1: Product: BCM2046B1
    usb 4-1: Manufacturer: Broadcom
    usb 4-1: configuration #1 chosen from 1 choice
    hub 4-1:1.0: USB hub found
    hub 4-1:1.0: 3 ports detected
    usb 4-1.1: new full speed USB device using uhci_hcd and address 3
    usb 4-1.1: New USB device found, idVendor=413c, idProduct=8161
    usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    usb 4-1.1: configuration #1 chosen from 1 choice
    input: HID 413c:8161 as /devices/pci0000:00/0000:00:1a.1/usb4/4-1/4-1.1/4-1.1:1.0/input/input9
    generic-usb 0003:413C:8161.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 413c:8161] on usb-0000:00:1a.1-1.1/input0
    usb 4-1.2: new full speed USB device using uhci_hcd and address 4
    usb 4-1.2: New USB device found, idVendor=413c, idProduct=8162
    usb 4-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    usb 4-1.2: configuration #1 chosen from 1 choice
    input: HID 413c:8162 as /devices/pci0000:00/0000:00:1a.1/usb4/4-1/4-1.2/4-1.2:1.0/input/input10
    generic-usb 0003:413C:8162.0002: input,hidraw1: USB HID v1.11 Mouse [HID 413c:8162] on usb-0000:00:1a.1-1.2/input0

  • FIXED: BUG in Oracle XSLT processor

    Edit: I fixed it by just importing all of the Jdev libraries. My bad for being a dolt.
    I am trying to detect certain values in an XML document that start with $ (the dollar sign) character. This has some conflicts with the syntax for XSL variables. The following code gives an exception when running in the Oracle XSLT...
    <xsl:template name="interpretToken">
    <xsl:param name="token" />
    <xsl:choose>
    <xsl:when test="starts-with($token, '$')" >
    <a><xsl:attribute name="href">
    <xsl:value-of select='replace($token, "\$", "#")' />
    </xsl:attribute>
    <xsl:value-of select='replace($token, "\$", "")' />
    </a>
    </xsl:when>
    </xsl:choose>
    </xsl:template>
    (note that this isn't the best way to write the above code, but replace suffices)
    When I run this in the XSLT of JDev 10.1.3.2, the following stack trace is given:
    Exception in thread "Thread-1" java.lang.NoClassDefFoundError: oracle/i18n/text/OraNormalizer
         at oracle.xml.util.UnicodeUtil.<clinit>(UnicodeUtil.java:35)
         at oracle.xml.xslt.XSLSAXPrintDriver.printAttributes(XSLSAXPrintDriver.java:492)
         at oracle.xml.xslt.XSLSAXPrintDriver.startElement(XSLSAXPrintDriver.java:408)
         at oracle.xml.xslt.XSLEventHandler.reportStartElement(XSLEventHandler.java:267)
         at oracle.xml.xslt.XSLEventHandler.characters(XSLEventHandler.java:863)
         at oracle.xml.xslt.XSLValueOf.processAction(XSLValueOf.java:143)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLCondition.processAction(XSLCondition.java:181)
         at oracle.xml.xslt.XSLCondition.processAction(XSLCondition.java:157)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLCallTemplate.processAction(XSLCallTemplate.java:132)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLCondition.processAction(XSLCondition.java:181)
         at oracle.xml.xslt.XSLCondition.processAction(XSLCondition.java:157)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLCallTemplate.processAction(XSLCallTemplate.java:132)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLCondition.processAction(XSLCondition.java:181)
         at oracle.xml.xslt.XSLCondition.processAction(XSLCondition.java:157)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:242)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:142)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:242)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:142)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:242)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:142)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:242)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:142)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:242)
         at oracle.xml.xslt.XSLApplyTemplates.processAction(XSLApplyTemplates.java:142)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:581)
         at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:548)
         at oracle.xml.xslt.XSLProcessor.processXSL(XSLProcessor.java:333)
         at oracle.xml.xslt.XSLProcessor.processXSL(XSLProcessor.java:181)
         at oracle.xml.xslt.XSLProcessor.processXSL(XSLProcessor.java:218)
         at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:121)
         at oracle.xml.async.XSLTransformer.run(XSLTransformer.java:136)
         at java.lang.Thread.run(Thread.java:595)
    No line number in my XSLT is written, but I have isolated it to the above code in the XSL file. This is some bug in the Oracle implementation, because when I run it against Saxon9, it produces output without complaint. Please help me with a work around for detecting the dollar sign and removing it for the output or can I find an oracle xslt patched package.
    Thanks a lot. - astewart / [email protected]
    Message was edited by:
    astewart
    Message was edited by:
    astewart
    Message was edited by:
    astewart

    Hi,
    You have posted to the wrong forum. Try posting to one of the XML forums such as:
    General XML
    Ron

  • JRE 1.3.1 Bug May Screw Up Your Executable JAR File

    Hi;
    I just submitted this bug report to sun.
    It could save you a lot of pain.
    If you have both the JDK and a seperatley obtained Sun JRE on your computer you could build a deprecated code and not know it until you distribute your app to your user or remove jdk\bin from
    your class path.
    ======================================================================
    Bug Report: JDK 1.3.1 doesn't match JRE 1.3.1
    ======================================================================
    Hi;
    I discovered that the jre ( java.exe, javaw.exe ) that comes with the
    jdk 1.3.1 supports a deprecated option that the stand alone jre 1.3.1
    does not. Not all jre 1.3.1's of the same build are the same.
    In the jre that comes with jdk 1.3.1 you can execute code that uses
    "Cp850" for character encoding. In the stand alone jre 1.3.1 you
    cannot and get an exception thrown.
    This is a particularly insidious bug as many java programmers have
    both the jre that comes with the jdk and a stand alone version on
    their computers( for example, getting the java plugin for your browser).
    You can easily compile, run, and distribute java code that you think will
    work with the jre 1.3.1 only distribution....but will not.
    I figured this out ( after much pain ) after taking the c:\jdk\bin out
    of my path. The same code which execute with the jdk's jre, failed
    with the same version sun jre that I got as a separate distribution.
    Here is the chunk of code where I discovered this. I have put the
    block of code between "=======" lines. The code is further followed
    by more explanatory details:
    ================================================================
    public static void main(String argv[])
    String result = " ";
    // Read The Input File Into A String
    try
    FileInputStream file = new FileInputStream ("in.txt");
    DataInputStream in = new DataInputStream (file);
    byte[] b = new byte[ in.available() ];
    in.readFully (b);
    in.close ();
    //result = new String (b, 0, b.length, "US-ASCII");
    result = new String (b, 0, b.length, "Cp850");
    System.out.println(result);
    catch ( Exception e )
    e.printStackTrace();
    =================================================================
    I ran the command "java -version" on both jre 1.3.1 s just to make
    sure that each jre 1.3.1 was the same. The output of "java -version
    was identical:
    From:
    C:\Program Files\JavaSoft\JRE\1.3.1\bin\java.exe ( & javaw.exe )
    =========================================================
    java version "1.3.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
    Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
    From:
    C:\JDK\bin\java.exe ( & javaw.exe )
    =========================================================
    java version "1.3.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
    Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
    My apologies if this "bug" is really an illusion of my ignorance.

    Try making sure you have a 'i18n.jar' file in either the JDK or JRE's 'lib' directory (depending upon which one you're using).

  • Hope this is a bug in JDeveloper....... help needed....

    There's no reply for the following msg... i need help.... is this a bug in JDeveloper?
    Jdeveloper team(Visual Java editor) - anybody watching this?
    i have been waiting for the reply for the past 4 days, so
    Is anyone having suggestion, whether it will work or not? is there any additional feature for this? Every project is multilingual, not only my project, every project is supporting internationalization, so at design time it should support for resource bundle usage. am using Jdev 9.0.5 version, client side we are using swing, so i need a solution for this, does jdev supports this? if so whats d way? if it is not supporting y cant it be considered as a bug? it should be user friendly, so y this can be added as a new feature in the forthcoming version,
    waiting for ur suggestions, whatever it is juz explain,
    Thanking in advance...

    Hi,
    not sure why you hope that this is a bug?
    Swing does support internationalization and JDeveloper supoorts this. However, as usual in Swing, you have to develop it as tehre is no automated way for doing this.
    There is some help provided by ADF in that e..g. BC4J supports message bundles for translating Strings.
    See: http://java.sun.com/docs/books/tutorial/i18n/index.html
    Also, straight from the JDeveloper product page on OTN, though not directly Swing related
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/jdev10g_multilingual.pdf
    Frank

  • I18n & l10n best practices

    I am looking for information on i18n best practices in large projects e.g. how to manage many resources? What tools can help with l10n? How to preserve context for easy translation? etc.
    Thank you in advance,
    Ze'ev

    AFAIK, JILKit was always maintained by IBM, who have had a big hand in the internationalization areas of the JDK. This always made it an absolute cow to report bugs on.
    I have tried, and have quite literally got the answer "What's a JILKit?" from the Sun bug guys on the other end of the database, despite the fact that I've submitted it as an I18N tool bug! :)
    I would guess that Sun no longer support this, as Forte now has internationalization tools embedded within its editors. Probably a good guess that Sun will now say "Use Forte - it rocks, and we've just released Version 3". :)
    I'm yet to use the Forte I18N tools, so I don't know how good they are.
    To answer your conventions questions:
    In the past, I have stuck with JILKit despite its bugs. As much as it likes to crash and/or rearrange your code, it has been quite efficient at finding duplicate keys and so forth. I've also kept the ResourceBundles under lock and key in CVS repositories, as I've had one accident too many with keys that go missing when more than one person is maintaining the bundles. :)
    When it comes to naming the keys, I usually just stick with the English for whatever I was writing in the String in the first place. I often find that I'm more likely to remember where it came from, no matter what language it's in, that way.
    I'm not quite sure what you mean by a localization toolkit. Whether that's because I've never had to come up with one, I'm not sure! :)
    About the only other key thing I've found in the whole thing is the proliferation of the right fonts. I try and either ship a silver-bullet font like Arial Unicode MS, or just check for the right font, and deny the user the right to see the app in their language if it's not there.
    Oh, and one last thing. Don't ever, ever, under fear of death, use MS SourceSafe for source control (that's the source control method in MS Visual Developer's Suite). It breaks so often, and causes so many problems that it's ludicrous to consider it source control. :D
    Hope that helps!
    Martin Hughes

  • Bug on installing Version 1.5.1

    After downloaded new version and started (without any previous settings) it return errors messages like this:
    Exception Processing Message c0000013 Parameters 5ffa1d6c 5ffa1d6c 5ffa1d6c
    Message was edited by:
    LordMax

    Hi I have the same error on my windows 2000 VM ware: As you see below I use the E drive and C drive for the software. I checked all paths and it looks fine. The error is not so critical but annoying.
    apple.laf.useScreenMenuBar     true
    awt.toolkit     sun.awt.windows.WToolkit
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    com.apple.macos.smallTabs     true
    com.apple.mrj.application.apple.menu.about.name     "SQL_Developer"
    com.apple.mrj.application.growbox.intrudes     false
    file.encoding     Cp1252
    file.encoding.pkg     sun.io
    file.separator     \
    http.nonProxyHosts     localhost|127.0.0.1
    http.proxyHost     172.20.30.166
    http.proxyPort     8080
    https.nonProxyHosts     localhost|127.0.0.1
    https.proxyHost     172.20.30.166
    https.proxyPort     8080
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.AssertTracingDisabled     true
    ide.bootstrap.start     22405609151721
    ide.build     MAIN-5440
    ide.conf     E:\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    ide.config_pathname     E:\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.extension.search.path     sqldeveloper/extensions:jdev/extensions:ide/extensions
    ide.firstrun     false
    ide.java.minversion     1.5.0
    ide.launcherProcessId     900
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.patches.dir     ide/lib/patches
    ide.pref.dir     C:\Dokumente und Einstellungen\Administrator\Anwendungsdaten\SQL Developer
    ide.pref.dir.base     C:\Dokumente und Einstellungen\Administrator\Anwendungsdaten
    ide.product     oracle.sqldeveloper
    ide.shell.enableFileTypeAssociation     E:\sqldeveloper\sqldeveloper.exe
    ide.splash.screen     splash.gif
    ide.startingArg0     E:\sqldeveloper\sqldeveloper.exe
    ide.startingcwd     E:\sqldeveloper
    ide.user.dir     C:\Dokumente und Einstellungen\Administrator\Anwendungsdaten\SQL Developer
    ide.user.dir.var     IDE_USER_DIR
    ide.work.dir     C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\SQL Developer
    ide.work.dir.base     C:\Dokumente und Einstellungen\Administrator\Eigene Dateien
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\..\ide\lib\ide-boot.jar
    java.class.version     49.0
    java.endorsed.dirs     E:\sqldeveloper\jdk\jre\lib\endorsed
    java.ext.dirs     E:\sqldeveloper\jdk\jre\lib\ext
    java.home     E:\sqldeveloper\jdk\jre
    java.io.tmpdir     C:\WINNT\TEMP\
    java.library.path     E:\sqldeveloper;.;C:\WINNT\system32;C:\WINNT;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Programme\ZipGenius 6\;C:\Programme\CVSNT\
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.runtime.name     Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version     1.5.0_06-b05
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.5
    java.util.logging.config.file     logging.conf
    java.vendor     Sun Microsystems Inc.
    java.vendor.url     http://java.sun.com/
    java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
    java.version     1.5.0_06
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     1.5.0_06-b05
    jdbc.library     /E:/sqldeveloper/jdbc/lib/ojdbc5.jar
    line.separator     \r\n
    oracle.home     E:\sqldeveloper
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    orai18n.library     /E:/sqldeveloper/jlib/orai18n.jar
    os.arch     x86
    os.name     Windows 2000
    os.version     5.0
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.boot.class.path     E:\sqldeveloper\jdk\jre\lib\rt.jar;E:\sqldeveloper\jdk\jre\lib\i18n.jar;E:\sqldeveloper\jdk\jre\lib\sunrsasign.jar;E:\sqldeveloper\jdk\jre\lib\jsse.jar;E:\sqldeveloper\jdk\jre\lib\jce.jar;E:\sqldeveloper\jdk\jre\lib\charsets.jar;E:\sqldeveloper\jdk\jre\classes
    sun.boot.library.path     E:\sqldeveloper\jdk\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    user.dir     E:\sqldeveloper\sqldeveloper\bin
    user.home     C:\Dokumente und Einstellungen\Administrator
    user.language     de
    user.name     Administrator

  • Converting TimeZone & Currency with i18n in MyFaces

    Hi,
    I am trying to write a simple JSF app with i18n, need to support English, Russian and Spanish.
    I have noticed that TimeZone time, CurrencyCode and CurrencySymbol (which I get from resource bundles)
    remain the same when you change locale (DateTime and Number converter formatting does change correctly).
    Is that a bug ?
    I am using MyFaces 1.1.5 Happens in all browsers.
    Thank you in advance,
    Oleg.

    Why would you think that time zone would (or should) change when you change your locale? I think Russia extends over something like 8 different time zones - which one would you pick? Not to mention that you might very well be using an application in a certain language and locale but be located in a completely different time zone (you might be traveling, or you might be a native speaker of a certain language living permanently in another country, etc.).
    Similarly for currency: there is not necessarily a one-to-one link between locale and currency. Many online businesses offer payment in just one or two currencies, but offer a user interface in many languages. And you would need to perform currency conversion anyway, if the currency was tied to the UI/locale - let's say a user uses German, and sees currency amounts in Euros. That same user then switches to en_US as the locale. You wouldn't want to just automatically switch the currency symbol to be the one for US dollar, without converting the amount shown. So you need to/want to perform that as a very explicit process (converting both amounts AND currency symbol).

  • Unrecognized I18N key:

    I tried out the Sun Update Connection web interface. Seems neat, but I'm get the following error message for every patch I try to install this way:
    Unrecognized I18N key: "swup.server.smpatch.". Please contact Sun Support for comment explanation
    I installed patch 122231-01 before I attempted this.
    Can anyone explain what this means? I tried to contact Sun through the online support center, but all I get is "Read timed out" errors while attempting to fill out the forms. Can't seem to locate an email address for support.
    Many thanx

    Hello,
    There has been a bug raised for the error which you are seeing 6314844. The URL for this is below:
    http://onesearch.sun.com/search/onesearch/index.jsp?qt=6314844&site=sunsolve&otf=ss&col=support-sunsolve&otf=sunsolve&site=ss&col=search-sunsolve
    Is this the only error which you are seeing?
    Regards

  • What info do you want about Java i18n?

    Although this forum is an excellent resource for quick answers, it isn't always possible for participants to provide detailed solutions. Are there areas of Java i18n that you'd like to read more about, perhaps via a more lengthy technical article on the JDC? What are your suggestions?
    Regards,
    John O'Conner

    This may not be what you consider i18n, but
    I keep running into time zone problems, most
    recently with a customer in Germany. It seems
    that sometimes Java/Solaris picks up Daylight
    Saving Time correctly and sometimes not. I have
    duplicated the German machine's settings on
    my machine here in California, but it works correctly
    for me. We are using the same JDK exactly. The
    machines are not identical otherwise - the customer
    has a newer, more powerful Sun.
    A discussion of what needs to be done to get time
    zones to work consistently and correctly would be
    extremely valuable. Could it be a certain level of
    JDK (we use 1.3)? Some combination of Solaris
    patches? Environment variables to set? I can
    set a GMT offset explicitly, but we don't want customers
    to have to manually change this twice a year.
    By the way, see bug 4177450, which was closed 3
    years ago. Users on this forum are still reporting
    similar trouble. If this is due to user error rather than
    a bug, it's certainly worth a good description of how
    to do it correctly.

Maybe you are looking for

  • How do I burn a data disc of my camcorder movies that can play on an HP?

    Very frustrated, first I have no iDVD on my new Mac.  Very disappointing.  So now, I have my home movies on the Mac and need to burn them off to a disc, when I burn to a data disc, it wont play on another computer at all.  Please help so that I can s

  • Scheduling report in background and passing the necessary parameters

    Hi all, Using code (in a report1) ...i want to execute a report (report2) in background.....but at the same time i want to pass data (an internal table and a variable) to that report2. is it possible to pass data like internal table to a executable r

  • Dynamically set report field value

    In my old classic VB project, I was able to set a report field value using the following simple line of code. someReport.SomeField.SetText u201Cabcu201D This was nice and simple, now with crystal reports .Net I do the following: ((TextObject)someRepo

  • How to find active object ?

    Hi,   Can anybody please guide me , how to  find  an active BW objects like Info cube,ODS,info source and info objects? Please answer in details. Thanks and regards DEP

  • Want to be able to mount file systems in my computers at home

    Hi, I have 2 apple computers , a mac pro and an ibook and I want to be able to mount the file system from one to the other to transfer files. What software do I need to do this? I suppose I could use an FTP server just to transfer files is there one