TextItem.size is wrong after transform (CS 6)

Hey, i've a export script for Photoshop, which creates a XML file.
On field in this XML is the font size for each text layer. But the .size value is wrong when we transform the text layer.
Example and steps to reproduce:
create a text layer
set font size 6pt (font family doesn't matter)
TextItem.size will export "6 pt"
transform the text - make it larger
Photoshop shows for example "12 pt" as the font size
TextItem.size still exports "6 pt"
Is there any way to get the correct font size?
When transforming text, you will get a value like "11.9999 pt" (you mostly don't get a round number).
But when you try to set the font size to 12 pt manually, TextItem.size still exports the old value.
The exporter works great in CS 3, the font sizes are correct. But in CS 6 its wrong.
Is this a PS bug maybe?
Alex

Here is an example of getting all text layer names and font sizes...
main();
function main(){
if(!documents.length) return;
var txtLayers = getNamesPlusIDs();
var txtSize = new Array();
for(var a in txtLayers){
    txtSize.push([[txtLayers[a][1].toString()],[getTextSize(Number(txtLayers[a][0]))]]);
alert(txtSize.join('\n'));
function getNamesPlusIDs(){
   var ref = new ActionReference();
   ref.putEnumerated( charIDToTypeID('Dcmn'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
   var count = executeActionGet(ref).getInteger(charIDToTypeID('NmbL')) +1;
   var Names=[];
try{
    activeDocument.backgroundLayer;
var i = 0; }catch(e){ var i = 1; };
   for(i;i<count;i++){
       if(i == 0) continue;
        ref = new ActionReference();
        ref.putIndex( charIDToTypeID( 'Lyr ' ), i );
        var desc = executeActionGet(ref);
        var layerName = desc.getString(charIDToTypeID( 'Nm  ' ));
        var Id = desc.getInteger(stringIDToTypeID( 'layerID' ));
        if(layerName.match(/^<\/Layer group/) ) continue;
        var layerType = typeIDToStringID(desc.getEnumerationValue( stringIDToTypeID( 'layerSection' )));
        var isLayerSet =( layerType == 'layerSectionContent') ? false:true;
        if(desc.hasKey(stringIDToTypeID('textKey'))) Names.push([[Id],[layerName]]);
return Names;
function getTextSize(ID){
var ref = new ActionReference();
ref.putIdentifier(charIDToTypeID('Lyr '), ID);
var desc = executeActionGet(ref).getObjectValue(stringIDToTypeID('textKey'));
var textSize =  desc.getList(stringIDToTypeID('textStyleRange')).getObjectValue(0).getObjectValue(stringIDToTypeID('textStyle')).getDouble (stringIDToTypeID('size'));
if (desc.hasKey(stringIDToTypeID('transform'))) {
            var mFactor = desc.getObjectValue(stringIDToTypeID('transform')).getUnitDoubleValue (stringIDToTypeID("yy") );
    textSize = (textSize* mFactor).toFixed(2);
return Number(textSize).toFixed(2);

Similar Messages

  • Sync send step after transformation step

    Hi Gurus,
    The send step I have after transformation step is not getting the input message. I am splitting the message into 2 messages in the trans step and using one of them as input message in send step. I am getting 'empty container is send to the send step' error.
    Please help me with this problem. I am not sure what I am missing.
    Thanks
    Kalyan

    Kalyan,
    Just adding to the disucussion, you might have  specified a source and 2 target msgs in the transformation step.
    Make sure it is one of the 2 target msgs that you have specified for the send step.
    You can view the 2 target msgs in SXMB_MONI.
    Use Michal's blog for reference.
    /people/michal.krawczyk2/blog/2005/09/16/xi-how-to-test-your-mapping-in-real-life-scenarios
    Regards,
    Jai Shankar

  • In CS6, why the file size remains same after croping? And how do I reduce the size after each cropin

    In CS6, why the file size remains same after croping? And how do I reduce the size after each croping? Thx

    Select the Crop Tool and check the box [  ] Delete Cropped Pixels and you should see a reduction in file size.  With the box unchecked, the data is still maintained in the document, you just can't see it.
    -Noel

  • Did CC 2014.2 break textItem.size?

    Scripts that worked before the update are now broken, and text layers created via script are all 12px. See this simple script:
    var docRef = activeDocument;
    var TextLabel = docRef.artLayers.add();
    TextLabel.kind = LayerKind.TEXT;
    TextLabel.name = "Test";
    TextLabel.textItem.contents = "This text should be 50pt";
    TextLabel.textItem.size = new UnitValue("50 points"); // other variations, such as TextLabel.textItem.size = 50 also fail.
    TextLabel.textItem.font = "Monaco";
    Any help? Thanks.

    OK Using  ActionManager code can work around the problem. Below I have an object called PSCCFontSizeFix with a single method setFontSize that takes a layer and the font size in points. This needs to be the first operation on the text layer or odd things may happen. Also, you will need to explicitly set the font type-face as the one embedded probably isn't the one that you want. Sample usage code is down at the bottom.
    PSCCFontSizeFix = {};
    PSCCFontSizeFix.setFontSize = function(layer, pts) {
    var idsetd = charIDToTypeID( "setd" );
        var desc70 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref13 = new ActionReference();
            var idTxLr = charIDToTypeID( "TxLr" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref13.putEnumerated( idTxLr, idOrdn, idTrgt );
        desc70.putReference( idnull, ref13 );
        var idT = charIDToTypeID( "T   " );
            var desc71 = new ActionDescriptor();
            var idTxt = charIDToTypeID( "Txt " );
            desc71.putString( idTxt, """tmp""" );
            var idwarp = stringIDToTypeID( "warp" );
                var desc72 = new ActionDescriptor();
                var idwarpStyle = stringIDToTypeID( "warpStyle" );
                var idwarpStyle = stringIDToTypeID( "warpStyle" );
                var idwarpNone = stringIDToTypeID( "warpNone" );
                desc72.putEnumerated( idwarpStyle, idwarpStyle, idwarpNone );
                var idwarpValue = stringIDToTypeID( "warpValue" );
                desc72.putDouble( idwarpValue, 0.000000 );
                var idwarpPerspective = stringIDToTypeID( "warpPerspective" );
                desc72.putDouble( idwarpPerspective, 0.000000 );
                var idwarpPerspectiveOther = stringIDToTypeID( "warpPerspectiveOther" );
                desc72.putDouble( idwarpPerspectiveOther, 0.000000 );
                var idwarpRotate = stringIDToTypeID( "warpRotate" );
                var idOrnt = charIDToTypeID( "Ornt" );
                var idHrzn = charIDToTypeID( "Hrzn" );
                desc72.putEnumerated( idwarpRotate, idOrnt, idHrzn );
            var idwarp = stringIDToTypeID( "warp" );
            desc71.putObject( idwarp, idwarp, desc72 );
            var idtextGridding = stringIDToTypeID( "textGridding" );
            var idtextGridding = stringIDToTypeID( "textGridding" );
            var idNone = charIDToTypeID( "None" );
            desc71.putEnumerated( idtextGridding, idtextGridding, idNone );
            var idOrnt = charIDToTypeID( "Ornt" );
            var idOrnt = charIDToTypeID( "Ornt" );
            var idHrzn = charIDToTypeID( "Hrzn" );
            desc71.putEnumerated( idOrnt, idOrnt, idHrzn );
            var idAntA = charIDToTypeID( "AntA" );
            var idAnnt = charIDToTypeID( "Annt" );
            var idantiAliasSharp = stringIDToTypeID( "antiAliasSharp" );
            desc71.putEnumerated( idAntA, idAnnt, idantiAliasSharp );
            var idbounds = stringIDToTypeID( "bounds" );
                var desc73 = new ActionDescriptor();
                var idLeft = charIDToTypeID( "Left" );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc73.putUnitDouble( idLeft, idPnt, 0.000000 );
                var idTop = charIDToTypeID( "Top " );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc73.putUnitDouble( idTop, idPnt, -52.739868 );
                var idRght = charIDToTypeID( "Rght" );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc73.putUnitDouble( idRght, idPnt, 108.017578 );
                var idBtom = charIDToTypeID( "Btom" );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc73.putUnitDouble( idBtom, idPnt, 25.253906 );
            var idbounds = stringIDToTypeID( "bounds" );
            desc71.putObject( idbounds, idbounds, desc73 );
            var idboundingBox = stringIDToTypeID( "boundingBox" );
                var desc74 = new ActionDescriptor();
                var idLeft = charIDToTypeID( "Left" );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc74.putUnitDouble( idLeft, idPnt, 2.640000 );
                var idTop = charIDToTypeID( "Top " );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc74.putUnitDouble( idTop, idPnt, -42.960000 );
                var idRght = charIDToTypeID( "Rght" );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc74.putUnitDouble( idRght, idPnt, 104.651719 );
                var idBtom = charIDToTypeID( "Btom" );
                var idPnt = charIDToTypeID( "#Pnt" );
                desc74.putUnitDouble( idBtom, idPnt, 12.720000 );
            var idboundingBox = stringIDToTypeID( "boundingBox" );
            desc71.putObject( idboundingBox, idboundingBox, desc74 );
            var idtextShape = stringIDToTypeID( "textShape" );
                var list13 = new ActionList();
                    var desc75 = new ActionDescriptor();
                    var idTEXT = charIDToTypeID( "TEXT" );
                    var idTEXT = charIDToTypeID( "TEXT" );
                    var idPnt = charIDToTypeID( "Pnt " );
                    desc75.putEnumerated( idTEXT, idTEXT, idPnt );
                    var idOrnt = charIDToTypeID( "Ornt" );
                    var idOrnt = charIDToTypeID( "Ornt" );
                    var idHrzn = charIDToTypeID( "Hrzn" );
                    desc75.putEnumerated( idOrnt, idOrnt, idHrzn );
                    var idTrnf = charIDToTypeID( "Trnf" );
                        var desc76 = new ActionDescriptor();
                        var idxx = stringIDToTypeID( "xx" );
                        desc76.putDouble( idxx, 1.000000 );
                        var idxy = stringIDToTypeID( "xy" );
                        desc76.putDouble( idxy, 0.000000 );
                        var idyx = stringIDToTypeID( "yx" );
                        desc76.putDouble( idyx, 0.000000 );
                        var idyy = stringIDToTypeID( "yy" );
                        desc76.putDouble( idyy, 1.000000 );
                        var idtx = stringIDToTypeID( "tx" );
                        desc76.putDouble( idtx, 0.000000 );
                        var idty = stringIDToTypeID( "ty" );
                        desc76.putDouble( idty, 0.000000 );
                    var idTrnf = charIDToTypeID( "Trnf" );
                    desc75.putObject( idTrnf, idTrnf, desc76 );
                    var idrowCount = stringIDToTypeID( "rowCount" );
                    desc75.putInteger( idrowCount, 1 );
                    var idcolumnCount = stringIDToTypeID( "columnCount" );
                    desc75.putInteger( idcolumnCount, 1 );
                    var idrowMajorOrder = stringIDToTypeID( "rowMajorOrder" );
                    desc75.putBoolean( idrowMajorOrder, true );
                    var idrowGutter = stringIDToTypeID( "rowGutter" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc75.putUnitDouble( idrowGutter, idPnt, 0.000000 );
                    var idcolumnGutter = stringIDToTypeID( "columnGutter" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc75.putUnitDouble( idcolumnGutter, idPnt, 0.000000 );
                    var idSpcn = charIDToTypeID( "Spcn" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc75.putUnitDouble( idSpcn, idPnt, 0.000000 );
                    var idframeBaselineAlignment = stringIDToTypeID( "frameBaselineAlignment" );
                    var idframeBaselineAlignment = stringIDToTypeID( "frameBaselineAlignment" );
                    var idalignByAscent = stringIDToTypeID( "alignByAscent" );
                    desc75.putEnumerated( idframeBaselineAlignment, idframeBaselineAlignment, idalignByAscent );
                    var idfirstBaselineMinimum = stringIDToTypeID( "firstBaselineMinimum" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc75.putUnitDouble( idfirstBaselineMinimum, idPnt, 0.000000 );
                    var idbase = stringIDToTypeID( "base" );
                        var desc77 = new ActionDescriptor();
                        var idHrzn = charIDToTypeID( "Hrzn" );
                        desc77.putDouble( idHrzn, 0.000000 );
                        var idVrtc = charIDToTypeID( "Vrtc" );
                        desc77.putDouble( idVrtc, 0.000000 );
                    var idPnt = charIDToTypeID( "Pnt " );
                    desc75.putObject( idbase, idPnt, desc77 );
                var idtextShape = stringIDToTypeID( "textShape" );
                list13.putObject( idtextShape, desc75 );
            desc71.putList( idtextShape, list13 );
            var idTxtt = charIDToTypeID( "Txtt" );
                var list14 = new ActionList();
                    var desc78 = new ActionDescriptor();
                    var idFrom = charIDToTypeID( "From" );
                    desc78.putInteger( idFrom, 0 );
                    var idT = charIDToTypeID( "T   " );
                    desc78.putInteger( idT, 4 );
                    var idTxtS = charIDToTypeID( "TxtS" );
                        var desc79 = new ActionDescriptor();
                        var idstyleSheetHasParent = stringIDToTypeID( "styleSheetHasParent" );
                        desc79.putBoolean( idstyleSheetHasParent, true );
                        var idfontPostScriptName = stringIDToTypeID( "fontPostScriptName" );
                        desc79.putString( idfontPostScriptName, """Monaco""" );
                        var idFntN = charIDToTypeID( "FntN" );
                        desc79.putString( idFntN, """Monaco""" );
                        var idFntS = charIDToTypeID( "FntS" );
                        desc79.putString( idFntS, """Regular""" );
                        var idScrp = charIDToTypeID( "Scrp" );
                        desc79.putInteger( idScrp, 0 );
                        var idFntT = charIDToTypeID( "FntT" );
                        desc79.putInteger( idFntT, 1 );
                        var idSz = charIDToTypeID( "Sz  " );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( idSz, idPnt, pts );
                        var idimpliedFontSize = stringIDToTypeID( "impliedFontSize" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( idimpliedFontSize, idPnt, pts );
                        var idHrzS = charIDToTypeID( "HrzS" );
                        desc79.putDouble( idHrzS, 100.000000 );
                        var idVrtS = charIDToTypeID( "VrtS" );
                        desc79.putDouble( idVrtS, 100.000000 );
                        var idsyntheticBold = stringIDToTypeID( "syntheticBold" );
                        desc79.putBoolean( idsyntheticBold, false );
                        var idsyntheticItalic = stringIDToTypeID( "syntheticItalic" );
                        desc79.putBoolean( idsyntheticItalic, false );
                        var idautoLeading = stringIDToTypeID( "autoLeading" );
                        desc79.putBoolean( idautoLeading, true );
                        var idTrck = charIDToTypeID( "Trck" );
                        desc79.putInteger( idTrck, 0 );
                        var idBsln = charIDToTypeID( "Bsln" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( idBsln, idPnt, 0.000000 );
                        var idimpliedBaselineShift = stringIDToTypeID( "impliedBaselineShift" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( idimpliedBaselineShift, idPnt, 0.000000 );
                        var idAtKr = charIDToTypeID( "AtKr" );
                        var idAtKr = charIDToTypeID( "AtKr" );
                        var idmetricsKern = stringIDToTypeID( "metricsKern" );
                        desc79.putEnumerated( idAtKr, idAtKr, idmetricsKern );
                        var idfontCaps = stringIDToTypeID( "fontCaps" );
                        var idfontCaps = stringIDToTypeID( "fontCaps" );
                        var idNrml = charIDToTypeID( "Nrml" );
                        desc79.putEnumerated( idfontCaps, idfontCaps, idNrml );
                        var iddigitSet = stringIDToTypeID( "digitSet" );
                        var iddigitSet = stringIDToTypeID( "digitSet" );
                        var iddefaultDigits = stringIDToTypeID( "defaultDigits" );
                        desc79.putEnumerated( iddigitSet, iddigitSet, iddefaultDigits );
                        var idkashidas = stringIDToTypeID( "kashidas" );
                        var idkashidas = stringIDToTypeID( "kashidas" );
                        var idkashidaDefault = stringIDToTypeID( "kashidaDefault" );
                        desc79.putEnumerated( idkashidas, idkashidas, idkashidaDefault );
                        var iddiacXOffset = stringIDToTypeID( "diacXOffset" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( iddiacXOffset, idPnt, 0.000000 );
                        var iddiacYOffset = stringIDToTypeID( "diacYOffset" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( iddiacYOffset, idPnt, 0.000000 );
                        var idmarkYDistFromBaseline = stringIDToTypeID( "markYDistFromBaseline" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc79.putUnitDouble( idmarkYDistFromBaseline, idPnt, 24.000000 );
                        var idbaseline = stringIDToTypeID( "baseline" );
                        var idbaseline = stringIDToTypeID( "baseline" );
                        var idNrml = charIDToTypeID( "Nrml" );
                        desc79.putEnumerated( idbaseline, idbaseline, idNrml );
                        var idstrikethrough = stringIDToTypeID( "strikethrough" );
                        var idstrikethrough = stringIDToTypeID( "strikethrough" );
                        var idstrikethroughOff = stringIDToTypeID( "strikethroughOff" );
                        desc79.putEnumerated( idstrikethrough, idstrikethrough, idstrikethroughOff );
                        var idUndl = charIDToTypeID( "Undl" );
                        var idUndl = charIDToTypeID( "Undl" );
                        var idunderlineOff = stringIDToTypeID( "underlineOff" );
                        desc79.putEnumerated( idUndl, idUndl, idunderlineOff );
                        var idligature = stringIDToTypeID( "ligature" );
                        desc79.putBoolean( idligature, true );
                        var idaltligature = stringIDToTypeID( "altligature" );
                        desc79.putBoolean( idaltligature, false );
                        var idcontextualLigatures = stringIDToTypeID( "contextualLigatures" );
                        desc79.putBoolean( idcontextualLigatures, false );
                        var idfractions = stringIDToTypeID( "fractions" );
                        desc79.putBoolean( idfractions, false );
                        var idordinals = stringIDToTypeID( "ordinals" );
                        desc79.putBoolean( idordinals, false );
                        var idswash = stringIDToTypeID( "swash" );
                        desc79.putBoolean( idswash, false );
                        var idtitling = stringIDToTypeID( "titling" );
                        desc79.putBoolean( idtitling, false );
                        var idconnectionForms = stringIDToTypeID( "connectionForms" );
                        desc79.putBoolean( idconnectionForms, false );
                        var idstylisticAlternates = stringIDToTypeID( "stylisticAlternates" );
                        desc79.putBoolean( idstylisticAlternates, false );
                        var idornaments = stringIDToTypeID( "ornaments" );
                        desc79.putBoolean( idornaments, false );
                        var idjustificationAlternates = stringIDToTypeID( "justificationAlternates" );
                        desc79.putBoolean( idjustificationAlternates, false );
                        var idfigureStyle = stringIDToTypeID( "figureStyle" );
                        var idfigureStyle = stringIDToTypeID( "figureStyle" );
                        var idNrml = charIDToTypeID( "Nrml" );
                        desc79.putEnumerated( idfigureStyle, idfigureStyle, idNrml );
                        var idproportionalMetrics = stringIDToTypeID( "proportionalMetrics" );
                        desc79.putBoolean( idproportionalMetrics, false );
                        var idkana = stringIDToTypeID( "kana" );
                        desc79.putBoolean( idkana, false );
                        var iditalics = stringIDToTypeID( "italics" );
                        desc79.putBoolean( iditalics, false );
                        var idbaselineDirection = stringIDToTypeID( "baselineDirection" );
                        var idbaselineDirection = stringIDToTypeID( "baselineDirection" );
                        var idrotated = stringIDToTypeID( "rotated" );
                        desc79.putEnumerated( idbaselineDirection, idbaselineDirection, idrotated );
                        var idtextLanguage = stringIDToTypeID( "textLanguage" );
                        var idtextLanguage = stringIDToTypeID( "textLanguage" );
                        var idenglishLanguage = stringIDToTypeID( "englishLanguage" );
                        desc79.putEnumerated( idtextLanguage, idtextLanguage, idenglishLanguage );
                        var idjapaneseAlternate = stringIDToTypeID( "japaneseAlternate" );
                        var idjapaneseAlternate = stringIDToTypeID( "japaneseAlternate" );
                        var iddefaultForm = stringIDToTypeID( "defaultForm" );
                        desc79.putEnumerated( idjapaneseAlternate, idjapaneseAlternate, iddefaultForm );
                        var idmojiZume = stringIDToTypeID( "mojiZume" );
                        desc79.putDouble( idmojiZume, 0.000000 );
                        var idgridAlignment = stringIDToTypeID( "gridAlignment" );
                        var idgridAlignment = stringIDToTypeID( "gridAlignment" );
                        var idroman = stringIDToTypeID( "roman" );
                        desc79.putEnumerated( idgridAlignment, idgridAlignment, idroman );
                        var idnoBreak = stringIDToTypeID( "noBreak" );
                        desc79.putBoolean( idnoBreak, false );
                        var idClr = charIDToTypeID( "Clr " );
                            var desc80 = new ActionDescriptor();
                            var idRd = charIDToTypeID( "Rd  " );
                            desc80.putDouble( idRd, 122.625584 );
                            var idGrn = charIDToTypeID( "Grn " );
                            desc80.putDouble( idGrn, 122.625591 );
                            var idBl = charIDToTypeID( "Bl  " );
                            desc80.putDouble( idBl, 122.625591 );
                        var idRGBC = charIDToTypeID( "RGBC" );
                        desc79.putObject( idClr, idRGBC, desc80 );
                        var idstrokeColor = stringIDToTypeID( "strokeColor" );
                            var desc81 = new ActionDescriptor();
                            var idRd = charIDToTypeID( "Rd  " );
                            desc81.putDouble( idRd, 0.000000 );
                            var idGrn = charIDToTypeID( "Grn " );
                            desc81.putDouble( idGrn, 0.000000 );
                            var idBl = charIDToTypeID( "Bl  " );
                            desc81.putDouble( idBl, 0.000000 );
                        var idRGBC = charIDToTypeID( "RGBC" );
                        desc79.putObject( idstrokeColor, idRGBC, desc81 );
                        var idbaseParentStyle = stringIDToTypeID( "baseParentStyle" );
                            var desc82 = new ActionDescriptor();
                            var idfontPostScriptName = stringIDToTypeID( "fontPostScriptName" );
                            desc82.putString( idfontPostScriptName, """MyriadPro-Regular""" );
                            var idFntN = charIDToTypeID( "FntN" );
                            desc82.putString( idFntN, """Myriad Pro""" );
                            var idFntS = charIDToTypeID( "FntS" );
                            desc82.putString( idFntS, """Regular""" );
                            var idScrp = charIDToTypeID( "Scrp" );
                            desc82.putInteger( idScrp, 0 );
                            var idFntT = charIDToTypeID( "FntT" );
                            desc82.putInteger( idFntT, 0 );
                            var idSz = charIDToTypeID( "Sz  " );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idSz, idPnt, 12.000000 );
                            var idimpliedFontSize = stringIDToTypeID( "impliedFontSize" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idimpliedFontSize, idPnt, 12.000000 );
                            var idHrzS = charIDToTypeID( "HrzS" );
                            desc82.putDouble( idHrzS, 100.000000 );
                            var idVrtS = charIDToTypeID( "VrtS" );
                            desc82.putDouble( idVrtS, 100.000000 );
                            var idsyntheticBold = stringIDToTypeID( "syntheticBold" );
                            desc82.putBoolean( idsyntheticBold, false );
                            var idsyntheticItalic = stringIDToTypeID( "syntheticItalic" );
                            desc82.putBoolean( idsyntheticItalic, false );
                            var idautoLeading = stringIDToTypeID( "autoLeading" );
                            desc82.putBoolean( idautoLeading, true );
                            var idTrck = charIDToTypeID( "Trck" );
                            desc82.putInteger( idTrck, 0 );
                            var idBsln = charIDToTypeID( "Bsln" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idBsln, idPnt, 0.000000 );
                            var idimpliedBaselineShift = stringIDToTypeID( "impliedBaselineShift" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idimpliedBaselineShift, idPnt, 0.000000 );
                            var idcharacterRotation = stringIDToTypeID( "characterRotation" );
                            desc82.putDouble( idcharacterRotation, 0.000000 );
                            var idAtKr = charIDToTypeID( "AtKr" );
                            var idAtKr = charIDToTypeID( "AtKr" );
                            var idmetricsKern = stringIDToTypeID( "metricsKern" );
                            desc82.putEnumerated( idAtKr, idAtKr, idmetricsKern );
                            var idfontCaps = stringIDToTypeID( "fontCaps" );
                            var idfontCaps = stringIDToTypeID( "fontCaps" );
                            var idNrml = charIDToTypeID( "Nrml" );
                            desc82.putEnumerated( idfontCaps, idfontCaps, idNrml );
                            var iddigitSet = stringIDToTypeID( "digitSet" );
                            var iddigitSet = stringIDToTypeID( "digitSet" );
                            var iddefaultDigits = stringIDToTypeID( "defaultDigits" );
                            desc82.putEnumerated( iddigitSet, iddigitSet, iddefaultDigits );
                            var iddirOverride = stringIDToTypeID( "dirOverride" );
                            var iddirOverride = stringIDToTypeID( "dirOverride" );
                            var iddirOverrideDefault = stringIDToTypeID( "dirOverrideDefault" );
                            desc82.putEnumerated( iddirOverride, iddirOverride, iddirOverrideDefault );
                            var idkashidas = stringIDToTypeID( "kashidas" );
                            var idkashidas = stringIDToTypeID( "kashidas" );
                            var idkashidaDefault = stringIDToTypeID( "kashidaDefault" );
                            desc82.putEnumerated( idkashidas, idkashidas, idkashidaDefault );
                            var iddiacVPos = stringIDToTypeID( "diacVPos" );
                            var iddiacVPos = stringIDToTypeID( "diacVPos" );
                            var iddiacVPosOpenType = stringIDToTypeID( "diacVPosOpenType" );
                            desc82.putEnumerated( iddiacVPos, iddiacVPos, iddiacVPosOpenType );
                            var iddiacXOffset = stringIDToTypeID( "diacXOffset" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( iddiacXOffset, idPnt, 0.000000 );
                            var iddiacYOffset = stringIDToTypeID( "diacYOffset" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( iddiacYOffset, idPnt, 0.000000 );
                            var idmarkYDistFromBaseline = stringIDToTypeID( "markYDistFromBaseline" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idmarkYDistFromBaseline, idPnt, 100.000000 );
                            var idbaseline = stringIDToTypeID( "baseline" );
                            var idbaseline = stringIDToTypeID( "baseline" );
                            var idNrml = charIDToTypeID( "Nrml" );
                            desc82.putEnumerated( idbaseline, idbaseline, idNrml );
                            var idotbaseline = stringIDToTypeID( "otbaseline" );
                            var idotbaseline = stringIDToTypeID( "otbaseline" );
                            var idNrml = charIDToTypeID( "Nrml" );
                            desc82.putEnumerated( idotbaseline, idotbaseline, idNrml );
                            var idstrikethrough = stringIDToTypeID( "strikethrough" );
                            var idstrikethrough = stringIDToTypeID( "strikethrough" );
                            var idstrikethroughOff = stringIDToTypeID( "strikethroughOff" );
                            desc82.putEnumerated( idstrikethrough, idstrikethrough, idstrikethroughOff );
                            var idUndl = charIDToTypeID( "Undl" );
                            var idUndl = charIDToTypeID( "Undl" );
                            var idunderlineOff = stringIDToTypeID( "underlineOff" );
                            desc82.putEnumerated( idUndl, idUndl, idunderlineOff );
                            var idunderlineOffset = stringIDToTypeID( "underlineOffset" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idunderlineOffset, idPnt, 0.000000 );
                            var idligature = stringIDToTypeID( "ligature" );
                            desc82.putBoolean( idligature, true );
                            var idaltligature = stringIDToTypeID( "altligature" );
                            desc82.putBoolean( idaltligature, false );
                            var idcontextualLigatures = stringIDToTypeID( "contextualLigatures" );
                            desc82.putBoolean( idcontextualLigatures, false );
                            var idalternateLigatures = stringIDToTypeID( "alternateLigatures" );
                            desc82.putBoolean( idalternateLigatures, false );
                            var idoldStyle = stringIDToTypeID( "oldStyle" );
                            desc82.putBoolean( idoldStyle, false );
                            var idfractions = stringIDToTypeID( "fractions" );
                            desc82.putBoolean( idfractions, false );
                            var idordinals = stringIDToTypeID( "ordinals" );
                            desc82.putBoolean( idordinals, false );
                            var idswash = stringIDToTypeID( "swash" );
                            desc82.putBoolean( idswash, false );
                            var idtitling = stringIDToTypeID( "titling" );
                            desc82.putBoolean( idtitling, false );
                            var idconnectionForms = stringIDToTypeID( "connectionForms" );
                            desc82.putBoolean( idconnectionForms, false );
                            var idstylisticAlternates = stringIDToTypeID( "stylisticAlternates" );
                            desc82.putBoolean( idstylisticAlternates, false );
                            var idornaments = stringIDToTypeID( "ornaments" );
                            desc82.putBoolean( idornaments, false );
                            var idjustificationAlternates = stringIDToTypeID( "justificationAlternates" );
                            desc82.putBoolean( idjustificationAlternates, false );
                            var idfigureStyle = stringIDToTypeID( "figureStyle" );
                            var idfigureStyle = stringIDToTypeID( "figureStyle" );
                            var idNrml = charIDToTypeID( "Nrml" );
                            desc82.putEnumerated( idfigureStyle, idfigureStyle, idNrml );
                            var idproportionalMetrics = stringIDToTypeID( "proportionalMetrics" );
                            desc82.putBoolean( idproportionalMetrics, false );
                            var idkana = stringIDToTypeID( "kana" );
                            desc82.putBoolean( idkana, false );
                            var iditalics = stringIDToTypeID( "italics" );
                            desc82.putBoolean( iditalics, false );
                            var idruby = stringIDToTypeID( "ruby" );
                            desc82.putBoolean( idruby, false );
                            var idbaselineDirection = stringIDToTypeID( "baselineDirection" );
                            var idbaselineDirection = stringIDToTypeID( "baselineDirection" );
                            var idrotated = stringIDToTypeID( "rotated" );
                            desc82.putEnumerated( idbaselineDirection, idbaselineDirection, idrotated );
                            var idtextLanguage = stringIDToTypeID( "textLanguage" );
                            var idtextLanguage = stringIDToTypeID( "textLanguage" );
                            var idenglishLanguage = stringIDToTypeID( "englishLanguage" );
                            desc82.putEnumerated( idtextLanguage, idtextLanguage, idenglishLanguage );
                            var idjapaneseAlternate = stringIDToTypeID( "japaneseAlternate" );
                            var idjapaneseAlternate = stringIDToTypeID( "japaneseAlternate" );
                            var iddefaultForm = stringIDToTypeID( "defaultForm" );
                            desc82.putEnumerated( idjapaneseAlternate, idjapaneseAlternate, iddefaultForm );
                            var idmojiZume = stringIDToTypeID( "mojiZume" );
                            desc82.putDouble( idmojiZume, 0.000000 );
                            var idgridAlignment = stringIDToTypeID( "gridAlignment" );
                            var idgridAlignment = stringIDToTypeID( "gridAlignment" );
                            var idroman = stringIDToTypeID( "roman" );
                            desc82.putEnumerated( idgridAlignment, idgridAlignment, idroman );
                            var idenableWariChu = stringIDToTypeID( "enableWariChu" );
                            desc82.putBoolean( idenableWariChu, false );
                            var idwariChuCount = stringIDToTypeID( "wariChuCount" );
                            desc82.putInteger( idwariChuCount, 2 );
                            var idwariChuLineGap = stringIDToTypeID( "wariChuLineGap" );
                            desc82.putInteger( idwariChuLineGap, 0 );
                            var idwariChuScale = stringIDToTypeID( "wariChuScale" );
                            desc82.putDouble( idwariChuScale, 0.500000 );
                            var idwariChuWidow = stringIDToTypeID( "wariChuWidow" );
                            desc82.putInteger( idwariChuWidow, 2 );
                            var idwariChuOrphan = stringIDToTypeID( "wariChuOrphan" );
                            desc82.putInteger( idwariChuOrphan, 2 );
                            var idwariChuJustification = stringIDToTypeID( "wariChuJustification" );
                            var idwariChuJustification = stringIDToTypeID( "wariChuJustification" );
                            var idwariChuAutoJustify = stringIDToTypeID( "wariChuAutoJustify" );
                            desc82.putEnumerated( idwariChuJustification, idwariChuJustification, idwariChuAutoJustify );
                            var idtcyUpDown = stringIDToTypeID( "tcyUpDown" );
                            desc82.putInteger( idtcyUpDown, 0 );
                            var idtcyLeftRight = stringIDToTypeID( "tcyLeftRight" );
                            desc82.putInteger( idtcyLeftRight, 0 );
                            var idleftAki = stringIDToTypeID( "leftAki" );
                            desc82.putDouble( idleftAki, -1.000000 );
                            var idrightAki = stringIDToTypeID( "rightAki" );
                            desc82.putDouble( idrightAki, -1.000000 );
                            var idjiDori = stringIDToTypeID( "jiDori" );
                            desc82.putInteger( idjiDori, 0 );
                            var idnoBreak = stringIDToTypeID( "noBreak" );
                            desc82.putBoolean( idnoBreak, false );
                            var idClr = charIDToTypeID( "Clr " );
                                var desc83 = new ActionDescriptor();
                                var idRd = charIDToTypeID( "Rd  " );
                                desc83.putDouble( idRd, 0.000000 );
                                var idGrn = charIDToTypeID( "Grn " );
                                desc83.putDouble( idGrn, 0.000000 );
                                var idBl = charIDToTypeID( "Bl  " );
                                desc83.putDouble( idBl, 0.000000 );
                            var idRGBC = charIDToTypeID( "RGBC" );
                            desc82.putObject( idClr, idRGBC, desc83 );
                            var idstrokeColor = stringIDToTypeID( "strokeColor" );
                                var desc84 = new ActionDescriptor();
                                var idRd = charIDToTypeID( "Rd  " );
                                desc84.putDouble( idRd, 0.000000 );
                                var idGrn = charIDToTypeID( "Grn " );
                                desc84.putDouble( idGrn, 0.000000 );
                                var idBl = charIDToTypeID( "Bl  " );
                                desc84.putDouble( idBl, 0.000000 );
                            var idRGBC = charIDToTypeID( "RGBC" );
                            desc82.putObject( idstrokeColor, idRGBC, desc84 );
                            var idFl = charIDToTypeID( "Fl  " );
                            desc82.putBoolean( idFl, true );
                            var idStrk = charIDToTypeID( "Strk" );
                            desc82.putBoolean( idStrk, false );
                            var idfillFirst = stringIDToTypeID( "fillFirst" );
                            desc82.putBoolean( idfillFirst, true );
                            var idfillOverPrint = stringIDToTypeID( "fillOverPrint" );
                            desc82.putBoolean( idfillOverPrint, false );
                            var idstrokeOverPrint = stringIDToTypeID( "strokeOverPrint" );
                            desc82.putBoolean( idstrokeOverPrint, false );
                            var idlineCap = stringIDToTypeID( "lineCap" );
                            var idlineCap = stringIDToTypeID( "lineCap" );
                            var idbuttCap = stringIDToTypeID( "buttCap" );
                            desc82.putEnumerated( idlineCap, idlineCap, idbuttCap );
                            var idlineJoin = stringIDToTypeID( "lineJoin" );
                            var idlineJoin = stringIDToTypeID( "lineJoin" );
                            var idmiterJoin = stringIDToTypeID( "miterJoin" );
                            desc82.putEnumerated( idlineJoin, idlineJoin, idmiterJoin );
                            var idlineWidth = stringIDToTypeID( "lineWidth" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idlineWidth, idPnt, 1.000000 );
                            var idmiterLimit = stringIDToTypeID( "miterLimit" );
                            var idPnt = charIDToTypeID( "#Pnt" );
                            desc82.putUnitDouble( idmiterLimit, idPnt, 4.000000 );
                            var idlineDashoffset = stringIDToTypeID( "lineDashoffset" );
                            desc82.putDouble( idlineDashoffset, 0.000000 );
                        var idTxtS = charIDToTypeID( "TxtS" );
                        desc79.putObject( idbaseParentStyle, idTxtS, desc82 );
                    var idTxtS = charIDToTypeID( "TxtS" );
                    desc78.putObject( idTxtS, idTxtS, desc79 );
                var idTxtt = charIDToTypeID( "Txtt" );
                list14.putObject( idTxtt, desc78 );
            desc71.putList( idTxtt, list14 );
            var idparagraphStyleRange = stringIDToTypeID( "paragraphStyleRange" );
                var list15 = new ActionList();
                    var desc85 = new ActionDescriptor();
                    var idFrom = charIDToTypeID( "From" );
                    desc85.putInteger( idFrom, 0 );
                    var idT = charIDToTypeID( "T   " );
                    desc85.putInteger( idT, 4 );
                    var idparagraphStyle = stringIDToTypeID( "paragraphStyle" );
                        var desc86 = new ActionDescriptor();
                        var idstyleSheetHasParent = stringIDToTypeID( "styleSheetHasParent" );
                        desc86.putBoolean( idstyleSheetHasParent, true );
                        var idAlgn = charIDToTypeID( "Algn" );
                        var idAlg = charIDToTypeID( "Alg " );
                        var idLeft = charIDToTypeID( "Left" );
                        desc86.putEnumerated( idAlgn, idAlg, idLeft );
                        var idfirstLineIndent = stringIDToTypeID( "firstLineIndent" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idfirstLineIndent, idPnt, 0.000000 );
                        var idimpliedFirstLineIndent = stringIDToTypeID( "impliedFirstLineIndent" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idimpliedFirstLineIndent, idPnt, 0.000000 );
                        var idstartIndent = stringIDToTypeID( "startIndent" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idstartIndent, idPnt, 0.000000 );
                        var idimpliedStartIndent = stringIDToTypeID( "impliedStartIndent" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idimpliedStartIndent, idPnt, 0.000000 );
                        var idendIndent = stringIDToTypeID( "endIndent" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idendIndent, idPnt, 0.000000 );
                        var idimpliedEndIndent = stringIDToTypeID( "impliedEndIndent" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idimpliedEndIndent, idPnt, 0.000000 );
                        var idspaceBefore = stringIDToTypeID( "spaceBefore" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idspaceBefore, idPnt, 0.000000 );
                        var idimpliedSpaceBefore = stringIDToTypeID( "impliedSpaceBefore" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idimpliedSpaceBefore, idPnt, 0.000000 );
                        var idspaceAfter = stringIDToTypeID( "spaceAfter" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idspaceAfter, idPnt, 0.000000 );
                        var idimpliedSpaceAfter = stringIDToTypeID( "impliedSpaceAfter" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc86.putUnitDouble( idimpliedSpaceAfter, idPnt, 0.000000 );
                        var idautoLeadingPercentage = stringIDToTypeID( "autoLeadingPercentage" );
                        desc86.putDouble( idautoLeadingPercentage, 1.200000 );
                        var idleadingType = stringIDToTypeID( "leadingType" );
                        var idleadingType = stringIDToTypeID( "leadingType" );
                        var idleadingBelow = stringIDToTypeID( "leadingBelow" );
                        desc86.putEnumerated( idleadingType, idleadingType, idleadingBelow );
                        var iddirectionType = stringIDToTypeID( "directionType" );
                        var iddirectionType = stringIDToTypeID( "directionType" );
                        var iddirLeftToRight = stringIDToTypeID( "dirLeftToRight" );
                        desc86.putEnumerated( iddirectionType, iddirectionType, iddirLeftToRight );
                        var idkashidaWidthType = stringIDToTypeID( "kashidaWidthType" );
                        var idkashidaWidthType = stringIDToTypeID( "kashidaWidthType" );
                        var idkashidaWidthMedium = stringIDToTypeID( "kashidaWidthMedium" );
                        desc86.putEnumerated( idkashidaWidthType, idkashidaWidthType, idkashidaWidthMedium );
                        var idhyphenate = stringIDToTypeID( "hyphenate" );
                        desc86.putBoolean( idhyphenate, true );
                        var idhyphenateWordSize = stringIDToTypeID( "hyphenateWordSize" );
                        desc86.putInteger( idhyphenateWordSize, 6 );
                        var idhyphenatePreLength = stringIDToTypeID( "hyphenatePreLength" );
                        desc86.putInteger( idhyphenatePreLength, 2 );
                        var idhyphenatePostLength = stringIDToTypeID( "hyphenatePostLength" );
                        desc86.putInteger( idhyphenatePostLength, 2 );
                        var idhyphenateLimit = stringIDToTypeID( "hyphenateLimit" );
                        desc86.putInteger( idhyphenateLimit, 0 );
                        var idhyphenationZone = stringIDToTypeID( "hyphenationZone" );
                        desc86.putDouble( idhyphenationZone, 36.000000 );
                        var idhyphenateCapitalized = stringIDToTypeID( "hyphenateCapitalized" );
                        desc86.putBoolean( idhyphenateCapitalized, true );
                        var idjustificationWordMinimum = stringIDToTypeID( "justificationWordMinimum" );
                        desc86.putDouble( idjustificationWordMinimum, 0.800000 );
                        var idjustificationWordDesired = stringIDToTypeID( "justificationWordDesired" );
                        desc86.putDouble( idjustificationWordDesired, 1.000000 );
                        var idjustificationWordMaximum = stringIDToTypeID( "justificationWordMaximum" );
                        desc86.putDouble( idjustificationWordMaximum, 1.330000 );
                        var idjustificationLetterMinimum = stringIDToTypeID( "justificationLetterMinimum" );
                        desc86.putDouble( idjustificationLetterMinimum, 0.000000 );
                        var idjustificationLetterDesired = stringIDToTypeID( "justificationLetterDesired" );
                        desc86.putDouble( idjustificationLetterDesired, 0.000000 );
                        var idjustificationLetterMaximum = stringIDToTypeID( "justificationLetterMaximum" );
                        desc86.putDouble( idjustificationLetterMaximum, 0.000000 );
                        var idjustificationGlyphMinimum = stringIDToTypeID( "justificationGlyphMinimum" );
                        desc86.putDouble( idjustificationGlyphMinimum, 1.000000 );
                        var idjustificationGlyphDesired = stringIDToTypeID( "justificationGlyphDesired" );
                        desc86.putDouble( idjustificationGlyphDesired, 1.000000 );
                        var idjustificationGlyphMaximum = stringIDToTypeID( "justificationGlyphMaximum" );
                        desc86.putDouble( idjustificationGlyphMaximum, 1.000000 );
                        var idhangingRoman = stringIDToTypeID( "hangingRoman" );
                        desc86.putBoolean( idhangingRoman, false );
                        var idburasagari = stringIDToTypeID( "burasagari" );
                        var idburasagari = stringIDToTypeID( "burasagari" );
                        var idburasagariNone = stringIDToTypeID( "burasagariNone" );
                        desc86.putEnumerated( idburasagari, idburasagari, idburasagariNone );
                        var idpreferredKinsokuOrder = stringIDToTypeID( "preferredKinsokuOrder" );
                        var idpreferredKinsokuOrder = stringIDToTypeID( "preferredKinsokuOrder" );
                        var idpushIn = stringIDToTypeID( "pushIn" );
                        desc86.putEnumerated( idpreferredKinsokuOrder, idpreferredKinsokuOrder, idpushIn );
                        var idtextEveryLineComposer = stringIDToTypeID( "textEveryLineComposer" );
                        desc86.putBoolean( idtextEveryLineComposer, false );
                        var idtextComposerEngine = stringIDToTypeID( "textComposerEngine" );
                        var idtextComposerEngine = stringIDToTypeID( "textComposerEngine" );
                        var idtextLatinCJKComposer = stringIDToTypeID( "textLatinCJKComposer" );
                        desc86.putEnumerated( idtextComposerEngine, idtextComposerEngine, idtextLatinCJKComposer );
                    var idparagraphStyle = stringIDToTypeID( "paragraphStyle" );
                    desc85.putObject( idparagraphStyle, idparagraphStyle, desc86 );
                var idparagraphStyleRange = stringIDToTypeID( "paragraphStyleRange" );
                list15.putObject( idparagraphStyleRange, desc85 );
            desc71.putList( idparagraphStyleRange, list15 );
            var idkerningRange = stringIDToTypeID( "kerningRange" );
                var list16 = new ActionList();
            desc71.putList( idkerningRange, list16 );
        var idTxLr = charIDToTypeID( "TxLr" );
        desc70.putObject( idT, idTxLr, desc71 );
    executeAction( idsetd, desc70, DialogModes.NO );
    // Sample usage code
    var doc = app.documents.add(5, 7, 300);
    var layer = doc.artLayers.add(); 
    layer.kind = LayerKind.TEXT; 
    layer.name = "Test"; 
    var titem = layer.textItem;
    titem.size = new UnitValue("50", "pt");
    if (titem.size.as("pt") != 50) {
      PSCCFontSizeFix.setFontSize(layer, 50);
    titem.contents = "This text should be 50pt"; 
    titem.font = "Monaco";
    alert(titem.size);

  • How to see out put after Transform in BPEL process

    hi,
    Is there some way in 11 G "BPEL" process manager, to see the output after "transform".
    I am using "transform" to map data, however unable to see what is going in the output
    please advice
    thanks
    Yatan

    thanks James,
    Yes I was seeing the flow only, however if I click on "transform" activity, I dont see any thing more then
    "updated output variable x", is there some other view where we can see, what values got updated in the output variable,
    I am asking this because lot of logic goes while transforming the variables which creates lot of errors, so how to check
    what variables are going in the output of the transform variable.
    please advice
    thanks
    Yatan

  • How to reduce the size of file after delete some datas?

    The size of the database file isn't smaller than ago after delete some data from database.
    How to reduce the size of file after delete some datas?

    Hi,
    What BDB release are you using? If it's one of the latest releases, then what you are looking for is the DB->compact() method:
    http://download.oracle.com/docs/cd/E17076_01/html/api_reference/C/dbcompact.html
    The DB->compact() method compacts Btree, Hash, and Recno access method databases, and optionally returns unused Btree, Hash or Recno database pages to the underlying filesystem. Please let me know if it helps.
    Bogdan Coman

  • Get size of Shape after scale

    how can i get a size of Shape after a scale
    Urgent <><>

    code ?! you need code for math ?!?!
    new_size = scale * old_size;
    new_area = Math.pow(scale,2) * old_area;
    new_volume = Math.pow(scale,3) * old_volume;
    (And what happened to getBounds()?)

  • Want to send selected nodes after transformation

    Hi,
    I am doing transformation and due to which all the nodes are taken in output even empty/null nodes too. I wan that only selected nodes will be in the output payload after transformation for e.g only mandatory and not null optional fields will be send. How can this be possible?
    -vivek

    How do you know what fields are "selected". Are you going to check them on payload to see if they're not null, and ifso, you assign them to the target? Or some other construction.
    Eitherway, i think can use the "test" condition in xsl to see what fields to map and what fields to skip. Or if you don't use xsl but just the assigns you need to some switch construnction in bpel to design what fields to map.

  • SharePoint publishing website runs wrong after several days, but return correct after reset IIS

    SharePoint publishing website runs wrong after several days, but return correct after IISReset.
    I have a custom solution on this publishing site, which looks up sharepoint resources, I've changed 
    "List View Lookup Threshold" up to 50 in resource throttling, but this keep occurs sometimes.
    could you give me some clue to solve this permanently?
    Thanks very much in advance!
    ~Rosone

    I am sure you are using BLOB cache. Try to disable it and check. I have seen this issue with BLOB cache.
    Do we see some error in ULS logs and Event viewer
    Use fiddler and check if there is something like 404.
    Try below tool on your code
    https://spdisposecheck2012.codeplex.com/
    If this helped you resolve your issue, please mark it Answered

  • Correct in Crystal, Wrong after distribution

    Post Author: Patric
    CA Forum: General
    Hi,
    I have a strange problem I think. Using variables that comes from a subreport. Looks like this:WhilePrintingRecords;Shared NumberVar LaborTotal;Shared NumberVar PriceLaborTotal  ;Shared NumberVar LaborGTotal;LaborGTotal := LaborGTotal + LaborTotal + PriceLaborTotal
    I then print the variable "LaborGTotal at the end of the report as a Grand TotalShared NumberVar LaborGTotal;LaborGTotal
    It works find. Result is for example 3297. The strange is that after I have distributedthe report to our Network I get another result printing (2637). When counting all the rowsI see that no posts are missing and a manual count shows that everything is printedbut the variable is counting wrong after I have used the Distribution expert.
    I am using  Crystal 8.5 so it is not exactly new stuff. I know that. But has anyone seensomething similar?
    Best regards
    Patric

    Calendar app > tap any birthday > edit it by setting another date, e.g. November 14 > tap Done > edit the birthday again (set November 13 back).
    From now on everything will be fine.

  • How to know whether a node contains a point after transformation?

    I have tried the contains function but i can't make it after transformation such as changing the scaleX,rotate or any other things.

    Answer by example:
    var scene: Scene;
    var rect: Rectangle;
    Stage
      title: "Forum Test"
      scene: scene = Scene
        width: 500
        height: 500
        fill: Color.LAVENDER
        content:
          rect = Rectangle
            x: 100
            y: 100
            width: 200
            height: 100
            arcWidth: 50
            arcHeight: 50
            fill: Color.web('#00BB00')
            stroke: Color.GREEN
            strokeWidth: 5
            onMousePressed: function (evt: MouseEvent): Void
              if (evt.primaryButtonDown)
                evt.node.rotate += 15.0;
                evt.node.scaleX *= 1.1;
              else
                evt.node.rotate -= 15.0;
                evt.node.scaleX /= 1.1;
          Rectangle
            width: 500
            height: 500
            fill: Color.TRANSPARENT
            onMouseMoved: function (evt: MouseEvent): Void
              var pt = rect.sceneToLocal(evt.x, evt.y);
              if (rect.contains(pt))
                rect.stroke = Color.RED
              else
                rect.stroke = Color.GREEN
    }

  • Get TextItem.size

    Hi folks,
    I am trying to get the point size of text items in a script. I have tried to simply access the TextItem.size property on both POINT and PARAGRPAH TexItem's but in both cases the property contains NaN. It seems we can only use this property to set the point size?
    Does anyone know a way to find out the point size a TextItem uses?
    regards
    Ben

    After some more testing it seems that we can get the point size of a text item even if it is not the active layer, the problem I am having seems to be related to PatchPanel, either that or there is a problem in my project somewhere else causing the error. I have started a new thread over at the patchpanel forums to see if anyone there can reproduce the problem.

  • Disk Utility: Reporting wrong size for disk after a restore

    First up, hardware is G4(PPC) running OS 10.4.11
    I've just purchased and installed a new 500G drive for this old workhorse as an upgrade for the previous secondary drive. Set it up with a single partition, JHFS+. No problems so far. Went to copy the files from the old drive to this new one and thought, "Why don't I try that handly looking Restore button?". +Yeah, apparently a bad idea+. The old drive is 120GB. I set its (only) volume to be the source and my newly created partition to be the target; set it going and left it alone. All appeared to be well when I came back, until I checked the available space on the new drive.
    Disk Utility now reports that this new, 500G drive has a Total Capacity of 128G (137,438,952,960 bytes).
    *Remedies tried so far:*
    - I've tried reformatting/partitioning, but wasn't able to convince it otherwise. Also tried it booting from an install DVD just in case that made a difference.
    - I downloaded a utility from the drive manufacturer which I managed to get on to an ancient, dusty w2k box. Reformatted the drive with 2 NTFS partitions. This seemed to do the trick as they both mounted when I rebooted the Mac. However, when I went to reformat the volumes to JHFS I noticed that the total disk size was still being reported as 128G. Still, they reformatted fine and I transfered my data to them. On a reboot, though, the Mac decided that it didn't want to see the second partition and only shows me disk1s10, ignoring the second partition I set up.
    - I have an identical, empty drive to the 500G. I thought I might be able to use the Restore "feature" to trick it back. Set up the second 500G in a firewire box, ran the restore from the empty volume to the screwed up one. No dice.
    I thought that OS X ignored any sort of BIOS info on a drive and merely looked at the physical media. Is this correct? Does it store this gathered info in a file somewhere that I can delete?
    *This is a call for help.*
    I have no problems playing with the command line as root, if that's the sort of suggestions you've got. I just thought I'd ask here before I fdisk/dd etc from new500 to old500. Geometry of the new500 is 60801/255/63.

    Thanks! That sounds like a good short term solution for a backup.
    EDIT: Cross reference link for anyone who happens to google this thread with a similar problem:
    http://discussions.apple.com/thread.jspa?messageID=7230072&tstart=0
    Message was edited by: mr_lunch

  • [SOLVED] Key characters wrong after upgrade

    Using Sony Vaio Pro after upgrade to 3.11.1-1-ARCH I can only type some keys while holding down "Fn" key. Seems my keymap is incorrect.
    e.g when i type the 'p' key i get '*'. I have to hold 'Fn' key to get the 'p'. But 'd' wont display anything at all when 'Fn' is pressed. Very hard to type
    However:
    arch# localectl status
    System Locale: LANG=en_US.UTF-8
    VC Keymap: us
    X11 Layout: n/a
    It happens at login and also in X. I boot to console (tty1), login then I use
    startx
    to run Fluxbox.
    vconsole.conf
    arch# cat vconsole.conf
    KEYMAP=us
    FONT=Lat2-Terminus16
    Also
    arch# xmodmap -pke
    keycode 8 =
    keycode 9 = Escape NoSymbol Escape
    keycode 10 = 1 exclam 1 exclam
    keycode 11 = 2 at 2 at
    keycode 12 = 3 numbersign 3 numbersign
    keycode 13 = 4 dollar 4 dollar
    keycode 14 = 5 percent 5 percent
    keycode 15 = 6 asciicircum 6 asciicircum
    keycode 16 = 7 ampersand 7 ampersand
    keycode 17 = 8 asterisk 8 asterisk
    keycode 18 = 9 parenleft 9 parenleft
    keycode 19 = 0 parenright 0 parenright
    keycode 20 = minus underscore minus underscore
    keycode 21 = equal plus equal plus
    keycode 22 = BackSpace BackSpace BackSpace BackSpace
    keycode 23 = Tab ISO_Left_Tab Tab ISO_Left_Tab
    keycode 24 = q Q q Q
    keycode 25 = w W w W
    keycode 26 = e E e E
    keycode 27 = r R r R
    keycode 28 = t T t T
    keycode 29 = y Y y Y
    keycode 30 = u U u U
    keycode 31 = i I i I
    keycode 32 = o O o O
    keycode 33 = p P p P
    keycode 34 = bracketleft braceleft bracketleft braceleft
    keycode 35 = bracketright braceright bracketright braceright
    keycode 36 = Return NoSymbol Return
    keycode 37 = Control_L NoSymbol Control_L
    keycode 38 = a A a A
    keycode 39 = s S s S
    keycode 40 = d D d D
    keycode 41 = f F f F
    keycode 42 = g G g G
    keycode 43 = h H h H
    keycode 44 = j J j J
    keycode 45 = k K k K
    keycode 46 = l L l L
    keycode 47 = semicolon colon semicolon colon
    keycode 48 = apostrophe quotedbl apostrophe quotedbl
    keycode 49 = grave asciitilde grave asciitilde
    keycode 50 = Shift_L NoSymbol Shift_L
    keycode 51 = backslash bar backslash bar
    keycode 52 = z Z z Z
    keycode 53 = x X x X
    keycode 54 = c C c C
    keycode 55 = v V v V
    keycode 56 = b B b B
    keycode 57 = n N n N
    keycode 58 = m M m M
    keycode 59 = comma less comma less
    keycode 60 = period greater period greater
    keycode 61 = slash question slash question
    keycode 62 = Shift_R NoSymbol Shift_R
    keycode 63 = KP_Multiply KP_Multiply KP_Multiply KP_Multiply KP_Multiply KP_Multiply XF86ClearGrab
    keycode 64 = Alt_L Meta_L Alt_L Meta_L
    keycode 65 = space NoSymbol space
    keycode 66 = Caps_Lock NoSymbol Caps_Lock
    keycode 67 = F1 F1 F1 F1 F1 F1 XF86Switch_VT_1
    keycode 68 = F2 F2 F2 F2 F2 F2 XF86Switch_VT_2
    keycode 69 = F3 F3 F3 F3 F3 F3 XF86Switch_VT_3
    keycode 70 = F4 F4 F4 F4 F4 F4 XF86Switch_VT_4
    keycode 71 = F5 F5 F5 F5 F5 F5 XF86Switch_VT_5
    keycode 72 = F6 F6 F6 F6 F6 F6 XF86Switch_VT_6
    keycode 73 = F7 F7 F7 F7 F7 F7 XF86Switch_VT_7
    keycode 74 = F8 F8 F8 F8 F8 F8 XF86Switch_VT_8
    keycode 75 = F9 F9 F9 F9 F9 F9 XF86Switch_VT_9
    keycode 76 = F10 F10 F10 F10 F10 F10 XF86Switch_VT_10
    keycode 77 = Num_Lock NoSymbol Num_Lock
    keycode 78 = Scroll_Lock NoSymbol Scroll_Lock
    keycode 79 = KP_Home KP_7 KP_Home KP_7
    keycode 80 = KP_Up KP_8 KP_Up KP_8
    keycode 81 = KP_Prior KP_9 KP_Prior KP_9
    keycode 82 = KP_Subtract KP_Subtract KP_Subtract KP_Subtract KP_Subtract KP_Subtract XF86Prev_VMode
    keycode 83 = KP_Left KP_4 KP_Left KP_4
    keycode 84 = KP_Begin KP_5 KP_Begin KP_5
    keycode 85 = KP_Right KP_6 KP_Right KP_6
    keycode 86 = KP_Add KP_Add KP_Add KP_Add KP_Add KP_Add XF86Next_VMode
    keycode 87 = KP_End KP_1 KP_End KP_1
    keycode 88 = KP_Down KP_2 KP_Down KP_2
    keycode 89 = KP_Next KP_3 KP_Next KP_3
    keycode 90 = KP_Insert KP_0 KP_Insert KP_0
    keycode 91 = KP_Delete KP_Decimal KP_Delete KP_Decimal
    keycode 92 = ISO_Level3_Shift NoSymbol ISO_Level3_Shift
    keycode 93 =
    keycode 94 = less greater less greater bar brokenbar bar
    keycode 95 = F11 F11 F11 F11 F11 F11 XF86Switch_VT_11
    keycode 96 = F12 F12 F12 F12 F12 F12 XF86Switch_VT_12
    keycode 97 =
    keycode 98 = Katakana NoSymbol Katakana
    keycode 99 = Hiragana NoSymbol Hiragana
    keycode 100 = Henkan_Mode NoSymbol Henkan_Mode
    keycode 101 = Hiragana_Katakana NoSymbol Hiragana_Katakana
    keycode 102 = Muhenkan NoSymbol Muhenkan
    keycode 103 =
    keycode 104 = KP_Enter NoSymbol KP_Enter
    keycode 105 = Control_R NoSymbol Control_R
    keycode 106 = KP_Divide KP_Divide KP_Divide KP_Divide KP_Divide KP_Divide XF86Ungrab
    keycode 107 = Print Sys_Req Print Sys_Req
    keycode 108 = Alt_R Meta_R Alt_R Meta_R
    keycode 109 = Linefeed NoSymbol Linefeed
    keycode 110 = Home NoSymbol Home
    keycode 111 = Up NoSymbol Up
    keycode 112 = Prior NoSymbol Prior
    keycode 113 = Left NoSymbol Left
    keycode 114 = Right NoSymbol Right
    keycode 115 = End NoSymbol End
    keycode 116 = Down NoSymbol Down
    keycode 117 = Next NoSymbol Next
    keycode 118 = Insert NoSymbol Insert
    keycode 119 = Delete NoSymbol Delete
    keycode 120 =
    keycode 121 = XF86AudioMute NoSymbol XF86AudioMute
    keycode 122 = XF86AudioLowerVolume NoSymbol XF86AudioLowerVolume
    keycode 123 = XF86AudioRaiseVolume NoSymbol XF86AudioRaiseVolume
    keycode 124 = XF86PowerOff NoSymbol XF86PowerOff
    keycode 125 = KP_Equal NoSymbol KP_Equal
    keycode 126 = plusminus NoSymbol plusminus
    keycode 127 = Pause Break Pause Break
    keycode 128 = XF86LaunchA NoSymbol XF86LaunchA
    keycode 129 = KP_Decimal KP_Decimal KP_Decimal KP_Decimal
    keycode 130 = Hangul NoSymbol Hangul
    keycode 131 = Hangul_Hanja NoSymbol Hangul_Hanja
    keycode 132 =
    keycode 133 = Super_L NoSymbol Super_L
    keycode 134 = Super_R NoSymbol Super_R
    keycode 135 = Menu NoSymbol Menu
    keycode 136 = Cancel NoSymbol Cancel
    keycode 137 = Redo NoSymbol Redo
    keycode 138 = SunProps NoSymbol SunProps
    keycode 139 = Undo NoSymbol Undo
    keycode 140 = SunFront NoSymbol SunFront
    keycode 141 = XF86Copy NoSymbol XF86Copy
    keycode 142 = XF86Open NoSymbol XF86Open
    keycode 143 = XF86Paste NoSymbol XF86Paste
    keycode 144 = Find NoSymbol Find
    keycode 145 = XF86Cut NoSymbol XF86Cut
    keycode 146 = Help NoSymbol Help
    keycode 147 = XF86MenuKB NoSymbol XF86MenuKB
    keycode 148 = XF86Calculator NoSymbol XF86Calculator
    keycode 149 =
    keycode 150 = XF86Sleep NoSymbol XF86Sleep
    keycode 151 = XF86WakeUp NoSymbol XF86WakeUp
    keycode 152 = XF86Explorer NoSymbol XF86Explorer
    keycode 153 = XF86Send NoSymbol XF86Send
    keycode 154 =
    keycode 155 = XF86Xfer NoSymbol XF86Xfer
    keycode 156 = XF86Launch1 NoSymbol XF86Launch1
    keycode 157 = XF86Launch2 NoSymbol XF86Launch2
    keycode 158 = XF86WWW NoSymbol XF86WWW
    keycode 159 = XF86DOS NoSymbol XF86DOS
    keycode 160 = XF86ScreenSaver NoSymbol XF86ScreenSaver
    keycode 161 =
    keycode 162 = XF86RotateWindows NoSymbol XF86RotateWindows
    keycode 163 = XF86Mail NoSymbol XF86Mail
    keycode 164 = XF86Favorites NoSymbol XF86Favorites
    keycode 165 = XF86MyComputer NoSymbol XF86MyComputer
    keycode 166 = XF86Back NoSymbol XF86Back
    keycode 167 = XF86Forward NoSymbol XF86Forward
    keycode 168 =
    keycode 169 = XF86Eject NoSymbol XF86Eject
    keycode 170 = XF86Eject XF86Eject XF86Eject XF86Eject
    keycode 171 = XF86AudioNext NoSymbol XF86AudioNext
    keycode 172 = XF86AudioPlay XF86AudioPause XF86AudioPlay XF86AudioPause
    keycode 173 = XF86AudioPrev NoSymbol XF86AudioPrev
    keycode 174 = XF86AudioStop XF86Eject XF86AudioStop XF86Eject
    keycode 175 = XF86AudioRecord NoSymbol XF86AudioRecord
    keycode 176 = XF86AudioRewind NoSymbol XF86AudioRewind
    keycode 177 = XF86Phone NoSymbol XF86Phone
    keycode 178 =
    keycode 179 = XF86Tools NoSymbol XF86Tools
    keycode 180 = XF86HomePage NoSymbol XF86HomePage
    keycode 181 = XF86Reload NoSymbol XF86Reload
    keycode 182 = XF86Close NoSymbol XF86Close
    keycode 183 =
    keycode 184 =
    keycode 185 = XF86ScrollUp NoSymbol XF86ScrollUp
    keycode 186 = XF86ScrollDown NoSymbol XF86ScrollDown
    keycode 187 = parenleft NoSymbol parenleft
    keycode 188 = parenright NoSymbol parenright
    keycode 189 = XF86New NoSymbol XF86New
    keycode 190 = Redo NoSymbol Redo
    keycode 191 = XF86Tools NoSymbol XF86Tools
    keycode 192 = XF86Launch5 NoSymbol XF86Launch5
    keycode 193 = XF86Launch6 NoSymbol XF86Launch6
    keycode 194 = XF86Launch7 NoSymbol XF86Launch7
    keycode 195 = XF86Launch8 NoSymbol XF86Launch8
    keycode 196 = XF86Launch9 NoSymbol XF86Launch9
    keycode 197 =
    keycode 198 = XF86AudioMicMute NoSymbol XF86AudioMicMute
    keycode 199 = XF86TouchpadToggle NoSymbol XF86TouchpadToggle
    keycode 200 = XF86TouchpadOn NoSymbol XF86TouchpadOn
    keycode 201 = XF86TouchpadOff NoSymbol XF86TouchpadOff
    keycode 202 =
    keycode 203 = Mode_switch NoSymbol Mode_switch
    keycode 204 = NoSymbol Alt_L NoSymbol Alt_L
    keycode 205 = NoSymbol Meta_L NoSymbol Meta_L
    keycode 206 = NoSymbol Super_L NoSymbol Super_L
    keycode 207 = NoSymbol Hyper_L NoSymbol Hyper_L
    keycode 208 = XF86AudioPlay NoSymbol XF86AudioPlay
    keycode 209 = XF86AudioPause NoSymbol XF86AudioPause
    keycode 210 = XF86Launch3 NoSymbol XF86Launch3
    keycode 211 = XF86Launch4 NoSymbol XF86Launch4
    keycode 212 = XF86LaunchB NoSymbol XF86LaunchB
    keycode 213 = XF86Suspend NoSymbol XF86Suspend
    keycode 214 = XF86Close NoSymbol XF86Close
    keycode 215 = XF86AudioPlay NoSymbol XF86AudioPlay
    keycode 216 = XF86AudioForward NoSymbol XF86AudioForward
    keycode 217 =
    keycode 218 = Print NoSymbol Print
    keycode 219 =
    keycode 220 = XF86WebCam NoSymbol XF86WebCam
    keycode 221 =
    keycode 222 =
    keycode 223 = XF86Mail NoSymbol XF86Mail
    keycode 224 = XF86Messenger NoSymbol XF86Messenger
    keycode 225 = XF86Search NoSymbol XF86Search
    keycode 226 = XF86Go NoSymbol XF86Go
    keycode 227 = XF86Finance NoSymbol XF86Finance
    keycode 228 = XF86Game NoSymbol XF86Game
    keycode 229 = XF86Shop NoSymbol XF86Shop
    keycode 230 =
    keycode 231 = Cancel NoSymbol Cancel
    keycode 232 = XF86MonBrightnessDown NoSymbol XF86MonBrightnessDown
    keycode 233 = XF86MonBrightnessUp NoSymbol XF86MonBrightnessUp
    keycode 234 = XF86AudioMedia NoSymbol XF86AudioMedia
    keycode 235 = XF86Display NoSymbol XF86Display
    keycode 236 = XF86KbdLightOnOff NoSymbol XF86KbdLightOnOff
    keycode 237 = XF86KbdBrightnessDown NoSymbol XF86KbdBrightnessDown
    keycode 238 = XF86KbdBrightnessUp NoSymbol XF86KbdBrightnessUp
    keycode 239 = XF86Send NoSymbol XF86Send
    keycode 240 = XF86Reply NoSymbol XF86Reply
    keycode 241 = XF86MailForward NoSymbol XF86MailForward
    keycode 242 = XF86Save NoSymbol XF86Save
    keycode 243 = XF86Documents NoSymbol XF86Documents
    keycode 244 = XF86Battery NoSymbol XF86Battery
    keycode 245 = XF86Bluetooth NoSymbol XF86Bluetooth
    keycode 246 = XF86WLAN NoSymbol XF86WLAN
    keycode 247 =
    keycode 248 =
    keycode 249 =
    keycode 250 =
    keycode 251 =
    keycode 252 =
    keycode 253 =
    keycode 254 =
    keycode 255 =
    and...
    arch# localectl list-keymaps
    ANSI-dvorak
    amiga-de
    amiga-us
    applkey
    atari-de
    atari-se
    atari-uk-falcon
    atari-us
    azerty
    backspace
    bashkir
    be-latin1
    bg-cp1251
    bg-cp855
    bg_bds-cp1251
    bg_bds-utf8
    bg_pho-cp1251
    bg_pho-utf8
    br-abnt
    br-abnt2
    br-latin1-abnt2
    br-latin1-us
    by
    by-cp1251
    bywin-cp1251
    cf
    colemak
    croat
    ctrl
    cz
    cz-cp1250
    cz-lat2
    cz-lat2-prog
    cz-qwertz
    cz-us-qwertz
    de
    de-latin1
    de-latin1-nodeadkeys
    de-mobii
    de_CH-latin1
    de_alt_UTF-8
    defkeymap
    defkeymap_V1.0
    dk
    dk-latin1
    dvorak
    dvorak-ca-fr
    dvorak-es
    dvorak-fr
    dvorak-fr-bepo
    dvorak-fr-bepo-utf8
    dvorak-l
    Entire dmesg as i wasnt sure what to look for:
    arch# dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.1-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Sep 14 19:30:21 CEST 2013
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda2 rw libata.force=noncq
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ca4bcfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca4bd000-0x00000000ca4c3fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ca4c4000-0x00000000ca8e5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca8e6000-0x00000000cac36fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cac37000-0x00000000da898fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000da899000-0x00000000dab40fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dab41000-0x00000000dab55fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000dab56000-0x00000000dbaaafff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000dbaab000-0x00000000dbffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dbfff000-0x00000000dbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000dd000000-0x00000000df1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI=0xdab45000 ACPI 2.0=0xdab45000 SMBIOS=0xdbf50498
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem01: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem02: type=2, attr=0xf, range=[0x0000000000059000-0x0000000000060000) (0MB)
    [ 0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000060000-0x000000000009e000) (0MB)
    [ 0.000000] efi: mem04: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f4f000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000001f4f000-0x000000007fd1b000) (2013MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x000000007fd1b000-0x0000000080000000) (2MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000080000000-0x00000000c7c54000) (1148MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x00000000c7c54000-0x00000000c7d54000) (1MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x00000000c7d54000-0x00000000ca0fb000) (35MB)
    [ 0.000000] efi: mem12: type=1, attr=0xf, range=[0x00000000ca0fb000-0x00000000ca4bd000) (3MB)
    [ 0.000000] efi: mem13: type=10, attr=0xf, range=[0x00000000ca4bd000-0x00000000ca4c4000) (0MB)
    [ 0.000000] efi: mem14: type=4, attr=0xf, range=[0x00000000ca4c4000-0x00000000ca610000) (1MB)
    [ 0.000000] efi: mem15: type=3, attr=0xf, range=[0x00000000ca610000-0x00000000ca8a8000) (2MB)
    [ 0.000000] efi: mem16: type=4, attr=0xf, range=[0x00000000ca8a8000-0x00000000ca8c4000) (0MB)
    [ 0.000000] efi: mem17: type=3, attr=0xf, range=[0x00000000ca8c4000-0x00000000ca8de000) (0MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x00000000ca8de000-0x00000000ca8e6000) (0MB)
    [ 0.000000] efi: mem19: type=6, attr=0x800000000000000f, range=[0x00000000ca8e6000-0x00000000cabbe000) (2MB)
    [ 0.000000] efi: mem20: type=0, attr=0xf, range=[0x00000000cabbe000-0x00000000cac37000) (0MB)
    [ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000cac37000-0x00000000cac44000) (0MB)
    [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000cac44000-0x00000000cac4e000) (0MB)
    [ 0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000cac4e000-0x00000000cac4f000) (0MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000cac4f000-0x00000000cac50000) (0MB)
    [ 0.000000] efi: mem25: type=2, attr=0xf, range=[0x00000000cac50000-0x00000000cac51000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x00000000cac51000-0x00000000cac52000) (0MB)
    [ 0.000000] efi: mem27: type=2, attr=0xf, range=[0x00000000cac52000-0x00000000cac53000) (0MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x00000000cac53000-0x00000000d8a97000) (222MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000d8a97000-0x00000000d8ab8000) (0MB)
    [ 0.000000] efi: mem30: type=7, attr=0xf, range=[0x00000000d8ab8000-0x00000000d8ac9000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x00000000d8ac9000-0x00000000d8ad8000) (0MB)
    [ 0.000000] efi: mem32: type=7, attr=0xf, range=[0x00000000d8ad8000-0x00000000d8adf000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x00000000d8adf000-0x00000000d9bf6000) (17MB)
    [ 0.000000] efi: mem34: type=7, attr=0xf, range=[0x00000000d9bf6000-0x00000000da656000) (10MB)
    [ 0.000000] efi: mem35: type=3, attr=0xf, range=[0x00000000da656000-0x00000000da899000) (2MB)
    [ 0.000000] efi: mem36: type=0, attr=0xf, range=[0x00000000da899000-0x00000000da9ab000) (1MB)
    [ 0.000000] efi: mem37: type=0, attr=0xf, range=[0x00000000da9ab000-0x00000000dab41000) (1MB)
    [ 0.000000] efi: mem38: type=9, attr=0xf, range=[0x00000000dab41000-0x00000000dab45000) (0MB)
    [ 0.000000] efi: mem39: type=9, attr=0xf, range=[0x00000000dab45000-0x00000000dab56000) (0MB)
    [ 0.000000] efi: mem40: type=10, attr=0xf, range=[0x00000000dab56000-0x00000000db20f000) (6MB)
    [ 0.000000] efi: mem41: type=10, attr=0xf, range=[0x00000000db20f000-0x00000000dbaab000) (8MB)
    [ 0.000000] efi: mem42: type=6, attr=0x800000000000000f, range=[0x00000000dbaab000-0x00000000dbe81000) (3MB)
    [ 0.000000] efi: mem43: type=6, attr=0x800000000000000f, range=[0x00000000dbe81000-0x00000000dbf52000) (0MB)
    [ 0.000000] efi: mem44: type=5, attr=0x800000000000000f, range=[0x00000000dbf52000-0x00000000dbf96000) (0MB)
    [ 0.000000] efi: mem45: type=5, attr=0x800000000000000f, range=[0x00000000dbf96000-0x00000000dbfff000) (0MB)
    [ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000dbfff000-0x00000000dc000000) (0MB)
    [ 0.000000] efi: mem47: type=7, attr=0xf, range=[0x0000000100000000-0x000000011fe00000) (510MB)
    [ 0.000000] efi: mem48: type=0, attr=0x0, range=[0x00000000dd000000-0x00000000df200000) (34MB)
    [ 0.000000] efi: mem49: type=11, attr=0x8000000000000001, range=[0x00000000f8000000-0x00000000fc000000) (64MB)
    [ 0.000000] efi: mem50: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem51: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem52: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem53: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem54: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Sony Corporation SVP13213CGB/VAIO, BIOS R0270V7 05/17/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x11fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7F00000000 write-back
    [ 0.000000] 1 base 0100000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 3 base 00DE000000 mask 7FFE000000 uncachable
    [ 0.000000] 4 base 00DD000000 mask 7FFF000000 uncachable
    [ 0.000000] 5 base 011FE00000 mask 7FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xdd000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xdc000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2d000, 0x02b2dfff] PGTABLE
    [ 0.000000] BRK [0x02b2e000, 0x02b2efff] PGTABLE
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
    [ 0.000000] [mem 0x11fc00000-0x11fdfffff] page 2M
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11fbfffff]
    [ 0.000000] [mem 0x11c000000-0x11fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff]
    [ 0.000000] [mem 0x100000000-0x11bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xca4bcfff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0xbfffffff] page 1G
    [ 0.000000] [mem 0xc0000000-0xca3fffff] page 2M
    [ 0.000000] [mem 0xca400000-0xca4bcfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca4c4000-0xca8e5fff]
    [ 0.000000] [mem 0xca4c4000-0xca5fffff] page 4k
    [ 0.000000] [mem 0xca600000-0xca7fffff] page 2M
    [ 0.000000] [mem 0xca800000-0xca8e5fff] page 4k
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xcac37000-0xda898fff]
    [ 0.000000] [mem 0xcac37000-0xcadfffff] page 4k
    [ 0.000000] [mem 0xcae00000-0xda7fffff] page 2M
    [ 0.000000] [mem 0xda800000-0xda898fff] page 4k
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xdbfff000-0xdbffffff]
    [ 0.000000] [mem 0xdbfff000-0xdbffffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x7fd1b000-0x7fffffff]
    [ 0.000000] ACPI: RSDP 00000000dab45000 00024 (v02 Sony)
    [ 0.000000] ACPI: XSDT 00000000dab45098 000AC (v01 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000dab4fa20 0010C (v05 Sony VAIO 20130517 MSFT 00010013)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20130517/tbfadt-202)
    [ 0.000000] ACPI: DSDT 00000000dab451d0 0A84F (v02 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: FACS 00000000dbaa9080 00040
    [ 0.000000] ACPI: APIC 00000000dab4fb30 00072 (v03 Sony VAIO 20130517 MSFT 00010013)
    [ 0.000000] ACPI: FPDT 00000000dab4fba8 00044 (v01 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: MSDM 00000000dab4fbf0 00055 (v03 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000dab4fc48 0003C (v01 Sony VAIO 20130517 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000dab4fc88 00038 (v01 Sony VAIO 20130517 MSFT 00000005)
    [ 0.000000] ACPI: SSDT 00000000dab4fcc0 00269 (v01 Sony VAIO 20130517 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000dab4ff30 00379 (v01 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: PCCT 00000000dab502b0 0006E (v05 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000dab50320 00AC4 (v01 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000dab50de8 00473 (v01 Sony VAIO 20130517 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000dab51260 00AD8 (v01 Sony VAIO 20130517 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000dab51d38 004FC (v01 Sony VAIO 20130517 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000dab52238 03019 (v01 Sony VAIO 20130517 INTL 20091112)
    [ 0.000000] ACPI: ECDT 00000000dab55258 000C1 (v01 Sony VAIO 20130517 MSFT 00000005)
    [ 0.000000] ACPI: BGRT 00000000dab55320 00038 (v00 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000dab55358 006F8 (v01 Sony VAIO 20130517 INTL 20091112)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x11fdfffff]
    [ 0.000000] NODE_DATA [mem 0x11fdf7000-0x11fdfbfff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011b400000-ffff88011f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x11fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00057fff]
    [ 0.000000] node 0: [mem 0x00059000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0xca4bcfff]
    [ 0.000000] node 0: [mem 0xca4c4000-0xca8e5fff]
    [ 0.000000] node 0: [mem 0xcac37000-0xda898fff]
    [ 0.000000] node 0: [mem 0xdbfff000-0xdbffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x11fdfffff]
    [ 0.000000] On node 0 totalpages: 1024734
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13910 pages used for memmap
    [ 0.000000] DMA32 zone: 890178 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2040 pages used for memmap
    [ 0.000000] Normal zone: 130560 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca4bd000-0xca4c3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca8e6000-0xcac36fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xda899000-0xdab40fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdab41000-0xdab55fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdab56000-0xdbaaafff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdbaab000-0xdbffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdc000000-0xdcffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdd000000-0xdf1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf200000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xdf200000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88011fa00000 s86528 r8192 d24064 u524288
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1008698
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda2 rw libata.force=noncq
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3927780K/4098936K available (5045K kernel code, 795K rwdata, 1696K rodata, 1140K init, 1284K bss, 171156K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:984 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2294.585 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4591.38 BogoMIPS (lpj=7648616)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000017] init_memory_mapping: [mem 0xca8e6000-0xcabbdfff]
    [ 0.000018] [mem 0xca8e6000-0xcabbdfff] page 4k
    [ 0.000037] init_memory_mapping: [mem 0xdbaab000-0xdbf51fff]
    [ 0.000038] [mem 0xdbaab000-0xdbbfffff] page 4k
    [ 0.000039] [mem 0xdbc00000-0xdbdfffff] page 2M
    [ 0.000040] [mem 0xdbe00000-0xdbf51fff] page 4k
    [ 0.000060] init_memory_mapping: [mem 0xdbf52000-0xdbffefff]
    [ 0.000061] [mem 0xdbf52000-0xdbffefff] page 4k
    [ 0.008960] Security Framework initialized
    [ 0.008966] AppArmor: AppArmor disabled by boot time parameter
    [ 0.008967] Yama: becoming mindful.
    [ 0.009198] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.010017] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.010342] Mount-cache hash table entries: 256
    [ 0.010498] Initializing cgroup subsys memory
    [ 0.010505] Initializing cgroup subsys devices
    [ 0.010507] Initializing cgroup subsys freezer
    [ 0.010508] Initializing cgroup subsys net_cls
    [ 0.010510] Initializing cgroup subsys blkio
    [ 0.010529] CPU: Physical Processor ID: 0
    [ 0.010530] CPU: Processor Core ID: 0
    [ 0.010534] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.011505] mce: CPU supports 7 MCE banks
    [ 0.011517] CPU0: Thermal monitoring enabled (TM1)
    [ 0.011527] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.011639] Freeing SMP alternatives memory: 20K (ffffffff819e5000 - ffffffff819ea000)
    [ 0.012421] ACPI: Core revision 20130517
    [ 0.021168] ACPI: All ACPI Tables successfully acquired
    [ 0.023936] ftrace: allocating 20088 entries in 79 pages
    [ 0.032450] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.065435] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
    [ 0.065443] TSC deadline timer enabled
    [ 0.065450] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.065456] ... version: 3
    [ 0.065456] ... bit width: 48
    [ 0.065457] ... generic registers: 4
    [ 0.065458] ... value mask: 0000ffffffffffff
    [ 0.065459] ... max period: 0000ffffffffffff
    [ 0.065460] ... fixed-purpose events: 3
    [ 0.065461] ... event mask: 000000070000000f
    [ 0.103163] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.088893] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.145014] Brought up 4 CPUs
    [ 0.145018] smpboot: Total of 4 processors activated (18364.54 BogoMIPS)
    [ 0.148570] devtmpfs: initialized
    [ 0.149427] PM: Registering ACPI NVS region [mem 0xca4bd000-0xca4c3fff] (28672 bytes)
    [ 0.149429] PM: Registering ACPI NVS region [mem 0xdab56000-0xdbaaafff] (16076800 bytes)
    [ 0.150252] RTC time: 14:05:45, date: 09/22/13
    [ 0.150284] NET: Registered protocol family 16
    [ 0.150387] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.150389] ACPI: bus type PCI registered
    [ 0.150390] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.150433] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.150435] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.156968] PCI: Using configuration type 1 for base access
    [ 0.157481] bio: create slab <bio-0> at 0
    [ 0.157569] ACPI: Added _OSI(Module Device)
    [ 0.157571] ACPI: Added _OSI(Processor Device)
    [ 0.157572] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.157573] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.159194] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.199540] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.201585] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.202115] ACPI: SSDT 00000000dab35c18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.202519] ACPI: Dynamic OEM Table Load:
    [ 0.202521] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.212083] ACPI: SSDT 00000000dab35618 005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.212759] ACPI: Dynamic OEM Table Load:
    [ 0.212761] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.225212] ACPI: SSDT 00000000dab34d98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.225792] ACPI: Dynamic OEM Table Load:
    [ 0.225795] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.239138] ACPI: Interpreter enabled
    [ 0.239149] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.239156] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.239179] ACPI: (supports S0 S3 S4 S5)
    [ 0.239181] ACPI: Using IOAPIC for interrupt routing
    [ 0.239214] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.239341] ACPI: No dock devices found.
    [ 0.286805] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.287437] PCI host bridge to bus 0000:00
    [ 0.287441] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.287442] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.287444] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.287445] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.287447] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.287448] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.287449] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.287450] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.287452] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.287453] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.287454] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.287456] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.287457] pci_bus 0000:00: root bus resource [mem 0xdf200000-0xfeafffff]
    [ 0.287464] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.287647] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.287658] pci 0000:00:02.0: reg 0x10: [mem 0xf6400000-0xf67fffff 64bit]
    [ 0.287665] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.287669] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.287842] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.287849] pci 0000:00:03.0: reg 0x10: [mem 0xf7d14000-0xf7d17fff 64bit]
    [ 0.288043] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.288059] pci 0000:00:14.0: reg 0x10: [mem 0xf7d00000-0xf7d0ffff 64bit]
    [ 0.288112] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.288246] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.288278] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.288297] pci 0000:00:16.0: reg 0x10: [mem 0xf7d1c000-0xf7d1c01f 64bit]
    [ 0.288360] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.288534] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.288547] pci 0000:00:1b.0: reg 0x10: [mem 0xf7d10000-0xf7d13fff 64bit]
    [ 0.288602] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.288738] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.288773] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
    [ 0.288841] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.288980] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.289018] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.289085] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.289224] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.289260] pci 0000:00:1c.4: [8086:9c1a] type 01 class 0x060400
    [ 0.289327] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.289466] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 0.289502] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.289521] pci 0000:00:1d.0: reg 0x10: [mem 0xf7d1a000-0xf7d1a3ff]
    [ 0.289604] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.289752] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.289785] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.290041] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.290053] pci 0000:00:1f.3: reg 0x10: [mem 0xf7d19000-0xf7d190ff 64bit]
    [ 0.290071] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.290331] pci 0000:01:00.0: [8086:08b1] type 00 class 0x028000
    [ 0.290364] pci 0000:01:00.0: reg 0x10: [mem 0xf7c00000-0xf7c01fff 64bit]
    [ 0.290527] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.290564] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.297561] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.297568] pci 0000:00:1c.0: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.297646] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.297650] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
    [ 0.297654] pci 0000:00:1c.3: bridge window [mem 0xf7200000-0xf7bfffff]
    [ 0.297660] pci 0000:00:1c.3: bridge window [mem 0xf0a00000-0xf13fffff 64bit pref]
    [ 0.297794] pci 0000:03:00.0: [144d:a800] type 00 class 0x010601
    [ 0.297864] pci 0000:03:00.0: reg 0x24: [mem 0xf6810000-0xf6811fff]
    [ 0.297880] pci 0000:03:00.0: reg 0x30: [mem 0xf6800000-0xf680ffff pref]
    [ 0.297943] pci 0000:03:00.0: PME# supported from D3hot D3cold
    [ 0.297977] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.304218] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.304222] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.304226] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff]
    [ 0.304232] pci 0000:00:1c.4: bridge window [mem 0xf0000000-0xf09fffff 64bit pref]
    [ 0.304349] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.304595] acpi PNP0A08:00: ACPI _OSC control (0x18) granted
    [ 0.318222] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318282] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318340] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318397] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318458] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318514] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318570] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318625] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.319091] ACPI: Enabled 3 GPEs in block 00 to 7F
    [ 0.319098] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.319171] Found 1 acpi root devices
    [ 0.319350] ACPI: EC: GPE = 0x7, I/O: command/status = 0x66, data = 0x62
    [ 0.319440] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.319443] vgaarb: loaded
    [ 0.319444] vgaarb: bridge control possible 0000:00:02.0
    [ 0.319481] PCI: Using ACPI for IRQ routing
    [ 0.320737] PCI: pci_cache_line_size set to 64 bytes
    [ 0.320770] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.320772] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    [ 0.320773] e820: reserve RAM buffer [mem 0xca4bd000-0xcbffffff]
    [ 0.320774] e820: reserve RAM buffer [mem 0xca8e6000-0xcbffffff]
    [ 0.320775] e820: reserve RAM buffer [mem 0xda899000-0xdbffffff]
    [ 0.320777] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
    [ 0.320843] NetLabel: Initializing
    [ 0.320844] NetLabel: domain hash size = 128
    [ 0.320845] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.320858] NetLabel: unlabeled traffic allowed by default
    [ 0.320872] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.320877] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.322892] Switched to clocksource hpet
    [ 0.326442] pnp: PnP ACPI init
    [ 0.326454] ACPI: bus type PNP registered
    [ 0.326556] pnp 00:00: [dma 4]
    [ 0.326576] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.326592] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.326667] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.326759] system 00:03: [io 0x0680-0x069f] has been reserved
    [ 0.326762] system 00:03: [io 0x2008-0x200b] has been reserved
    [ 0.326763] system 00:03: [io 0xffff] has been reserved
    [ 0.326765] system 00:03: [io 0xffff] has been reserved
    [ 0.326766] system 00:03: [io 0x1c00-0x1cfe] has been reserved
    [ 0.326768] system 00:03: [io 0x1d00-0x1dfe] has been reserved
    [ 0.326769] system 00:03: [io 0x1e00-0x1efe] has been reserved
    [ 0.326771] system 00:03: [io 0x1f00-0x1ffe] has been reserved
    [ 0.326772] system 00:03: [io 0x1800-0x18fe] could not be reserved
    [ 0.326774] system 00:03: [io 0x164e-0x164f] has been reserved
    [ 0.326776] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.326799] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.326834] system 00:05: [io 0x1854-0x1857] has been reserved
    [ 0.326836] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.326868] system 00:06: [io 0x04d0-0x04d1] has been reserved
    [ 0.326870] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.326901] pnp 00:07: Plug and Play ACPI device, IDs SNYa009 PNP030b (active)
    [ 0.326934] pnp 00:08: Plug and Play ACPI device, IDs FOX0015 PNP0f13 (active)
    [ 0.340120] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.340123] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.340125] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.340128] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.340130] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.340132] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.340134] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.340137] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.340139] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.340141] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.340144] system 00:09: [mem 0xf7fef000-0xf7feffff] has been reserved
    [ 0.340148] system 00:09: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
    [ 0.340151] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.340409] pnp: PnP ACPI: found 10 devices
    [ 0.340411] ACPI: bus type PNP unregistered
    [ 0.346802] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.346805] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.346818] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.346820] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.346824] pci 0000:00:1c.0: BAR 15: assigned [mem 0xdf200000-0xdf3fffff 64bit pref]
    [ 0.346826] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.346828] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.346831] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.346834] pci 0000:00:1c.0: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.346838] pci 0000:00:1c.0: bridge window [mem 0xdf200000-0xdf3fffff 64bit pref]
    [ 0.346842] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.346844] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
    [ 0.346848] pci 0000:00:1c.3: bridge window [mem 0xf7200000-0xf7bfffff]
    [ 0.346851] pci 0000:00:1c.3: bridge window [mem 0xf0a00000-0xf13fffff 64bit pref]
    [ 0.346855] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.346857] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.346861] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff]
    [ 0.346864] pci 0000:00:1c.4: bridge window [mem 0xf0000000-0xf09fffff 64bit pref]
    [ 0.347007] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.347009] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.347011] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.347012] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.347013] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.347015] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.347016] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.347018] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.347019] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.347020] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.347022] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.347023] pci_bus 0000:00: resource 15 [mem 0xdf200000-0xfeafffff]
    [ 0.347025] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.347026] pci_bus 0000:01: resource 1 [mem 0xf7c00000-0xf7cfffff]
    [ 0.347027] pci_bus 0000:01: resource 2 [mem 0xdf200000-0xdf3fffff 64bit pref]
    [ 0.347029] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.347030] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf7bfffff]
    [ 0.347032] pci_bus 0000:02: resource 2 [mem 0xf0a00000-0xf13fffff 64bit pref]
    [ 0.347033] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.347035] pci_bus 0000:03: resource 1 [mem 0xf6800000-0xf71fffff]
    [ 0.347036] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf09fffff 64bit pref]
    [ 0.347062] NET: Registered protocol family 2
    [ 0.347198] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.347284] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.347380] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.347396] TCP: reno registered
    [ 0.347401] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.347415] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.347462] NET: Registered protocol family 1
    [ 0.347470] pci 0000:00:02.0: Boot video device
    [ 0.347696] PCI: CLS 64 bytes, default 64
    [ 0.347724] Unpacking initramfs...
    [ 0.398164] Freeing initrd memory: 2964K (ffff88007fd1b000 - ffff880080000000)
    [ 0.398168] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.398170] software IO TLB [mem 0xd4a97000-0xd8a97000] (64MB) mapped at [ffff8800d4a97000-ffff8800d8a96fff]
    [ 0.398309] Scanning for low memory corruption every 60 seconds
    [ 0.398505] audit: initializing netlink socket (disabled)
    [ 0.398517] type=2000 audit(1379858745.393:1): initialized
    [ 0.409641] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.410648] zbud: loaded
    [ 0.410763] VFS: Disk quotas dquot_6.5.2
    [ 0.410795] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.410923] msgmni has been set to 7724
    [ 0.411081] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.411107] io scheduler noop registered
    [ 0.411108] io scheduler deadline registered
    [ 0.411129] io scheduler cfq registered (default)
    [ 0.411271] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.411282] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.411352] efifb: probing for efifb
    [ 0.412251] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009900000, using 8100k, total 8100k
    [ 0.412253] efifb: mode is 1920x1080x32, linelength=7680, pages=1
    [ 0.412253] efifb: scrolling: redraw
    [ 0.412255] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.417131] Console: switching to colour frame buffer device 240x67
    [ 0.421936] fb0: EFI VGA frame buffer device
    [ 0.421941] intel_idle: MWAIT substates: 0x11142120
    [ 0.421942] intel_idle: v0.4 model 0x45
    [ 0.421943] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.421982] GHES: HEST is not enabled!
    [ 0.422024] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.422370] Linux agpgart interface v0.103
    [ 0.422422] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.424318] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.424339] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.424409] mousedev: PS/2 mouse device common for all mice
    [ 0.424445] rtc_cmos 00:04: RTC can wake from S4
    [ 0.424564] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.424589] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.424699] cpuidle: using governor ladder
    [ 0.424844] cpuidle: using governor menu
    [ 0.424924] drop_monitor: Initializing network drop monitor service
    [ 0.424981] TCP: cubic registered
    [ 0.425053] NET: Registered protocol family 10
    [ 0.425179] NET: Registered protocol family 17
    [ 0.425185] Key type dns_resolver registered
    [ 0.425363] PM: Hibernation image not present or could not be loaded.
    [ 0.425371] registered taskstats version 1
    [ 0.425757] Magic number: 13:668:81
    [ 0.425818] rtc_cmos 00:04: setting system clock to 2013-09-22 14:05:46 UTC (1379858746)
    [ 0.426532] Freeing unused kernel memory: 1140K (ffffffff818c8000 - ffffffff819e5000)
    [ 0.426534] Write protecting the kernel read-only data: 8192k
    [ 0.428631] Freeing unused kernel memory: 1088K (ffff8800024f0000 - ffff880002600000)
    [ 0.429319] Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    [ 0.435624] systemd-udevd[56]: starting version 207
    [ 0.440408] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.454039] ACPI: bus type USB registered
    [ 0.454095] usbcore: registered new interface driver usbfs
    [ 0.454107] usbcore: registered new interface driver hub
    [ 0.454146] usbcore: registered new device driver usb
    [ 0.455012] SCSI subsystem initialized
    [ 0.455147] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.455323] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.455328] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.455335] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.455421] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.455426] ehci-pci: EHCI PCI platform driver
    [ 0.455442] xhci_hcd 0000:00:14.0: irq 56 for MSI/MSI-X
    [ 0.455605] xHCI xhci_add_endpoint called for root hub
    [ 0.455607] xHCI xhci_check_bandwidth called for root hub
    [ 0.455643] hub 1-0:1.0: USB hub found
    [ 0.455652] hub 1-0:1.0: 9 ports detected
    [ 0.456254] ACPI: bus type ATA registered
    [ 0.456330] libata version 3.00 loaded.
    [ 0.456831] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.456837] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.457045] ahci 0000:03:00.0: version 3.0
    [ 0.457057] xHCI xhci_add_endpoint called for root hub
    [ 0.457060] xHCI xhci_check_bandwidth called for root hub
    [ 0.457099] hub 2-0:1.0: USB hub found
    [ 0.457107] hub 2-0:1.0: 4 ports detected
    [ 0.457139] ahci 0000:03:00.0: irq 57 for MSI/MSI-X
    [ 0.469505] ahci 0000:03:00.0: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
    [ 0.469510] ahci 0000:03:00.0: flags: 64bit ncq led clo only pio ccc
    [ 0.469726] scsi0 : ahci
    [ 0.469805] ata1: SATA max UDMA/133 abar m8192@0xf6810000 port 0xf6810100 irq 57
    [ 0.473024] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.473034] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.473044] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 0.473059] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.476969] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.476983] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7d1a000
    [ 0.486211] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.486436] hub 3-0:1.0: USB hub found
    [ 0.486441] hub 3-0:1.0: 2 ports detected
    [ 0.796062] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.796274] ata1.00: FORCE: horkage modified (noncq)
    [ 0.796343] ata1.00: ATA-9: SAMSUNG MZHPU128HCGM-00000, UXM6401Q, max UDMA/133
    [ 0.796346] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (not used)
    [ 0.801330] ata1.00: configured for UDMA/133
    [ 0.801557] scsi 0:0:0:0: Direct-Access ATA SAMSUNG MZHPU128 UXM6 PQ: 0 ANSI: 5
    [ 0.803137] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 0.803287] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.803300] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.803399] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.805467] sda: sda1 sda2
    [ 0.806019] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.815971] usb 1-3: new full-speed USB device number 2 using xhci_hcd
    [ 0.831975] hidraw: raw HID events driver (C) Jiri Kosina
    [ 0.833319] usbcore: registered new interface driver usbhid
    [ 0.833321] usbhid: USB HID core driver
    [ 0.834261] input: eGalax Inc. eGalaxTouch EXC7910-1031-12.00.03 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input1
    [ 0.834479] hid-multitouch 0003:0EEF:A108.0001: input,hiddev0,hidraw0: USB HID v2.10 Device [eGalax Inc. eGalaxTouch EXC7910-1031-12.00.03] on usb-0000:00:14.0-3/input0
    [ 0.882188] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 0.922934] systemd[1]: RTC configured in localtime, applying delta of 600 minutes to system time.
    [ 0.929364] systemd[1]: systemd 207 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 0.929946] systemd[1]: Set hostname to <arch>.
    [ 0.983808] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 0.984035] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 0.984085] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 0.984100] systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    [ 0.984205] systemd[1]: Starting Remote File Systems.
    [ 0.984284] systemd[1]: Reached target Remote File Systems.
    [ 0.984295] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 0.984400] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 0.984410] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 0.984518] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 0.984527] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 0.984604] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 0.984612] systemd[1]: Starting Delayed Shutdown Socket.
    [ 0.984686] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 0.984711] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 0.984866] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 0.984879] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 0.984908] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 0.984916] systemd[1]: Starting Paths.
    [ 0.984974] systemd[1]: Reached target Paths.
    [ 0.984983] systemd[1]: Starting Encrypted Volumes.
    [ 0.985044] systemd[1]: Reached target Encrypted Volumes.
    [ 0.985054] systemd[1]: Starting udev Kernel Socket.
    [ 0.985125] systemd[1]: Listening on udev Kernel Socket.
    [ 0.985135] systemd[1]: Starting udev Control Socket.
    [ 0.985208] systemd[1]: Listening on udev Control Socket.
    [ 0.985217] systemd[1]: Starting Journal Socket.
    [ 0.985306] systemd[1]: Listening on Journal Socket.
    [ 0.985628] systemd[1]: Starting Apply Kernel Variables...
    [ 0.986092] systemd[1]: Starting udev Coldplug all Devices...
    [ 0.986404] systemd[1]: Mounting Huge Pages File System...
    [ 0.986753] systemd[1]: Mounting POSIX Message Queue File System...
    [ 0.987139] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 0.987572] systemd[1]: Mounting Debug File System...
    [ 0.989206] usb 1-5: new high-speed USB device number 3 using xhci_hcd
    [ 0.990670] systemd[1]: Started Set Up Additional Binary Formats.
    [ 0.990699] systemd[1]: Starting Setup Virtual Console...
    [ 0.992974] systemd[1]: Starting Load Kernel Modules...
    [ 0.993344] systemd[1]: Starting Journal Service...
    [ 0.993810] systemd[1]: Started Journal Service.
    [ 1.010288] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 1.013973] systemd-journald[117]: Vacuuming done, freed 0 bytes
    [ 1.026796] cfg80211: Calling CRDA to update world regulatory domain
    [ 1.032563] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 1.032566] Copyright(c) 2003-2013 Intel Corporation
    [ 1.032596] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
    [ 1.032669] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 1.032718] iwlwifi 0000:01:00.0: irq 58 for MSI/MSI-X
    [ 1.038032] iwlwifi 0000:01:00.0: loaded firmware version 22.0.7.0 op_mode iwlmvm
    [ 1.057685] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless N 7260, REV=0x144
    [ 1.057741] iwlwifi 0000:01:00.0: L1 Disabled; Enabling L0S
    [ 1.057886] iwlwifi 0000:01:00.0: L1 Disabled; Enabling L0S
    [ 1.060756] systemd-udevd[149]: starting version 207
    [ 1.094633] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 1.095037] ACPI: Requesting acpi_cpufreq
    [ 1.097389] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 1.100587] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 1.100595] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.100599] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 1.100603] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 1.100607] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.100608] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 1.100611] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 1.100615] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.100616] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 1.102294] ACPI: AC Adapter [ADP1] (on-line)
    [ 1.102298] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 1.102305] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.105913] mei_me 0000:00:16.0: setting latency timer to 64
    [ 1.105951] mei_me 0000:00:16.0: irq 59 for MSI/MSI-X
    [ 1.112812] [drm] Initialized drm 1.1.0 20060810
    [ 1.115476] snd_hda_intel 0000:00:03.0: enabling device (0000 -> 0002)
    [ 1.115570] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
    [ 1.115697] snd_hda_intel 0000:00:1b.0: irq 60 for MSI/MSI-X
    [ 1.120414] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 1.120620] ACPI: Lid Switch [LID0]
    [ 1.120778] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    [ 1.120784] ACPI: Power Button [PWRB]
    [ 1.121008] sony_laptop: Sony Notebook Control Driver v0.6
    [ 1.121078] input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input5
    [ 1.121108] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input6
    [ 1.130280] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input7
    [ 1.130323] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
    [ 1.135059] [drm] Memory usable by graphics device = 2048M
    [ 1.135064] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
    [ 1.135066] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 1.135082] Console: switching to colour dummy device 80x25
    [ 1.136857] i915 0000:00:02.0: setting latency timer to 64
    [ 1.138311] sony_laptop: brightness ignored, must be controlled by ACPI video driver
    [ 1.143666] mei_me 0000:00:16.0: NFC MEI VERSION: IVN 0x1 Vendor ID 0x1 Type 0x1
    [ 1.148840] microcode: CPU0 sig=0x40651, pf=0x40, revision=0xa
    [ 1.171510] i915 0000:00:02.0: irq 61 for MSI/MSI-X
    [ 1.171520] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.171521] [drm] Driver supports precise vblank timestamp query.
    [ 1.171591] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.172449] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.177055] iTCO_vendor_support: vendor-support=0
    [ 1.177695] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 1.177735] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 1.177882] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 1.178341] media: Linux media interface: v0.10
    [ 1.184727] Linux video capture interface: v2.00
    [ 1.186224] ACPI: Battery Slot [BAT0] (battery present)
    [ 1.196551] ACPI: Battery Slot [BAT1] (battery absent)
    [ 1.196702] uvcvideo: Found UVC 1.00 device USB Webcam (0bda:5727)
    [ 1.200296] thermal LNXTHERM:00: registered as thermal_zone0
    [ 1.200301] ACPI: Thermal Zone [TZ00] (47 C)
    [ 1.206849] microcode: CPU1 sig=0x40651, pf=0x40, revision=0xa
    [ 1.208042] input: USB Webcam as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input9
    [ 1.208252] usbcore: registered new interface driver uvcvideo
    [ 1.208255] USB Video Class driver (1.1.1)
    [ 1.208413] nfc: nfc_init: NFC Core ver 0.1
    [ 1.208433] NET: Registered protocol family 39
    [ 1.212998] microcode: CPU2 sig=0x40651, pf=0x40

    bump. Really need some help on this
    Since last post I found and read a number of posts relating to HOOKS. Mr Elendig got me thinking that it wasn't an X issue but a system issue.
    So....
    I put 'keyboard' and 'keymap' hook both before and after 'autodetect' in mkinitcpio.conf and ran
    # mkinitcpio -p linux
    That didn't work.
    I implemented an ~/.Xmodmap file and updated my ~/.Xinitrc according to the wiki.
    That didn't work in Fluxbox.
    I changed keyboard to 'fr' then back to 'us' both in console and in vconsole.conf.
    That didn't work
    BUT THEN.....I added
    FONT_MAP=8859_to_uni
    to my vconsole.conf 'rebooted' and everything worked!! Awesome, right? No.
    Because then I
    # poweroff
    and turned on again and came back to the tty login prompt and the keys were wrong again.
    I removed
    FONT_MAP=8859_to_uni
    from vconsole.conf, rebooted, then put it back in, rebooted and there was no change.
    I then added
    FONT_MAP=8859_to_uni
    to the boot prompt line before booting.
    That didn't work.
    I also read a post where someone created the LiveUSB on a different computer and this was thought to be the cause of some of their problems after they upgraded the 'linux' pacakge using 'pacman'. I created my LiveUSB on a Fedora 19 system. Not sure if that could be the problem.
    Last night I upgraded to Linux 3.11.3-1-ARCH in a hope against hope that would sort things out.
    It didn't
    I'm new to Linux and have learnt a lot through my Arch Linux install which has been great. I really would like to avoid a fresh install using an Arch Linux created LiveUSB but at the moment that's what I'm looking at unless someone can help me out.
    Thanks in advance.

  • DVCPro HD render wrong after update to 12.1?

    Here's my issue, rendering out of After Effects CC 12.1 as DVCpro HD 1080i60 is showing up as the wrong aspect ratio, it renders out as 1888 x1062. Before the update to After Effects CC 12.1 it was working/rendering completely fine as 1280 x1080.
    Take a DVCPRO HD 1080 comp, render it and it renders as 1888 x1062, not 1280 x1080 like it did before.  And the strange thing, if I re-import that rendered clip into AE, it will see it as 1280 x1080 (1.50), but if I open that clip up in Quicktime, it will see it only as 1888 x1062 ??  Again, before the update to 12.1 even quicktime would see it correctly as 1280 x1080.  Something in the header info in quicktime is now wrong and it won't read it correctly.  We have a piece of gear that i need to send files to as dvcpro hd 1280 x1080 and it won't even take them anymore because the quicktime header or something is wacky.  (yes the gear i'm sending to is weird, and strange we send it that format, don't ask, I know)
    I've tired rendering/exporting out of media encoder and premiere since the update and it's the same thing.  Even rendering from AE and forcing it to resize in the render queue won't work.... it still shows up as 1888 x1062.  Errr
    So I'm not sure where to start looking to fix the problem?  Is it happening because of the Adobe update to 12.1, is it a quicktime issue or is it my Calibrated software for DVCpro on windows..... I don't know?  I just know it was all working great before this latest update and now it's not.
    Any ideas or a direction to look into would be greatly appreicated.
    I'm using windows 7 profesional
    Adobe creative cloud
    And software called "Calibrated" DVCPro HD Decode software so we can use DVCPro clips on windows.
    HD Z820
    AJA Kona Card
    nvidia k5000

    Any particular reason that you are rendering back to DVCPro HD? That's a non square pixel format designed for cameras not delivery of product, it is not suitable for DI (digital intermediates) or delivery to anything standard. I would do all my work in a standard HD 1920 X 1080 comp and render my DI and Delivery product to that frame size. AE will automatically adjust your DVCPro HD footage.
    The only reason that I can think of to render to DVCProHD is to copy your footage back to tape or to storage cards to playback on a camera or DVCProHD deck, but if you have a capture card that you are using to output to tape, and I see you do, then your system will work with standard HD files just fine.
    As far as the QT wrapper being broken, if you must render back to DVCPro HD the try the Adobe Media Encoder. It does a better job compressing things than the Render Cue.
    As a last thought, do what Szalam suggestes, update.

Maybe you are looking for