GZIP ERROR -

Hi all,
when Trying to audit a running instance on bpel console i got the gzip error below. i click audit==>view raw xml ...any heşp would be appreciated..
reagrds
*<exception>*
Cannot uncompress data stream.
Cannot uncompress data stream with GZIP algorithm; exception is Corrupt GZIP trailer.
*</exception>*

Hi all,
when Trying to audit a running instance on bpel console i got the gzip error below. i click audit==>view raw xml ...any heşp would be appreciated..
reagrds
*<exception>*
Cannot uncompress data stream.
Cannot uncompress data stream with GZIP algorithm; exception is Corrupt GZIP trailer.
*</exception>*

Similar Messages

  • GZip error in Solaris 9

    I have wrote a program using GZIP to compress data, it work well in Solaris 2.6 with any any version of JDK. But recently we plan to migrate the OS to Solaris 9, and I found the program nolonger work now, it throws out a
    java.io.Exception : not a GZIP format
    My new Environment is Solaris 9 with JDK1.4.2 (32-bits). Does anyone come across this problem?
    My Testing Program
    import java.util.zip.GZIPOutputStream;
    import java.util.zip.GZIPInputStream;
    import java.io.*;
    public class testzip {
    public static void main(String argv[]) {
    String strCompressed = compress("<xml><test>ABCD1234</test></xml>") ;
    System.out.println ("===========================================") ;
    System.out.println (strCompressed) ;
    System.out.println ("===========================================") ;
    System.out.println (decompress(strCompressed)) ;
    System.out.println ("===========================================") ;
    public static String compress(String s) {
    String ret=null;
    try {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    GZIPOutputStream gz = new GZIPOutputStream(baos);
    gz.write(s.getBytes("UTF8"));
    gz.close();
    baos.close();
    ret=baos.toString();
    } catch(Exception e) {
    e.printStackTrace();
    return ret;
    public static String decompress(String s) {
    String obj=null;
    try {
    ByteArrayInputStream bais = new ByteArrayInputStream(s.getBytes());
    GZIPInputStream gz = new GZIPInputStream(bais);
    BufferedInputStream bis = new BufferedInputStream(gz);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    byte[] data = new byte[1];
    int count;
    while ((count=bis.read(data))!=-1) {
    baos.write(data);
    obj =new String(baos.toByteArray());
    gz.close();
    bais.close();
    } catch(Exception e) {
    e.printStackTrace();
    return obj;
    Thanks
    Kin

    Here is the code where I am calling the html cleaner method. This works fine in a Windows env but fails in Solaris. If I comment out the call to removeHtml(value).trim it will work. It will even work if I make a different call removeHtml("string to strip") from the main method. Why would it work in one place but not the other in Solaris, and why would it always work in Windows? Does anybody have any ideas?
               while (rs.next ()) {
                    for (int i = 1; i <= columnCount; ++i) {
                        String value = rs.getString (i);
                        if (rs.wasNull ()){
                            value = "<null>";
                        String columnName = rsmd.getColumnName(i).trim();
                        if(clean&&(columnName.equalsIgnoreCase("DESC")
                                  ||columnName.equalsIgnoreCase("HEADER")
                                  ||columnName.equalsIgnoreCase("TEXT")))
                             //Clean the text
                             //value = removeHtml(value).trim(); //remove html markup
                             value = value.replace('\n', ','); //remove new lines
                             value = value.replace('\r', ','); //remove carriage returns
                             value = replaceString(value, "&mdash", "-"); //remove dash markup
                           outputBuffer.append (value.trim());                      
                        outputBuffer.append ("||");
                    outputBuffer.append ("{{NEWLINE}}");
                }

  • How to call an Azure Web API (2.2) - from Dynamics Custom WorkFlow Activity of Plugin c#

    Hello,
    I am specifically trying to call a web api, that has a FromBody.
    However, I am trying to do it without having to use libraries (or nuget packages) that I cannot install on CRM of CRM Online.
    It seems JSON newtonsoft is big... or I guess I could use my own custom formatter...
    But I would love to see if someone has an example for posting to web API, versus an ASMX
    Thanks

    Wow I had this awesome thing typed up... and it wouldn't do it then wanted me to verify and then that messed up and I lost it all... Wow..
    Anyway
    [SOLVED]
    Works from Plugin or Workflow activity
    Use the Query string to pass things (not the body) or else you have to compress it and you can't use the libraries to DO that in the Sandbox... You CAN do that if you or on premise and do NOT isolate.. Then heck I did everything I wanted but for online
    this was it.
    You do NOT have to use WebClient, use HttpClient (follow the code below)
    WebApi 2.2 is what I used
    My signature for Webapi
    You do have to clean up the response.. as the string you get back is JSON.. and you cannot use the JSON desieralizer...
    Easy fix... just do a replacement of the \ and " to a " " space.. then Trim the result.. bingo a clean string response...
    [HttpGet]
    Public string MyMethod(string value1, string value2, string value3)
    This will parse the query string so USE these are your parameters in your query string or the API will NOT work. ?value1=ddd&&value2=ddd&&value3=aaa
    of course make up your own string names
    IIS and Apache etc work differently so the AMOUNT of data you can send will differ per platform, per version of platform AND usually you can configure it.. IIS used to be like 2048 by default.. anything beyond that (as a total URL incoming) was truncated..
    Not sure now. I know it was configurable
    I got it working.. all my points are gone... but it's possible
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Activities;
    using Microsoft.Xrm.Sdk;
    using Microsoft.Xrm.Sdk.Workflow;
    using Microsoft.Xrm.Sdk.Query;
    using Microsoft.Xrm;
    using System.Net.Http;
    using System.IO;
    using System.IO.Compression;
    using System.Net.Http.Headers;
    using System.Runtime.Serialization.Json;
    using System.ServiceModel;
    using System.Net;
    try
        string result = string.Empty;
        using (var client = new HttpClient())
            client.BaseAddress = new Uri(webapihost);
            client.DefaultRequestHeaders.Accept.Clear();
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/x-www-form-urlencoded"));
            client.Timeout = new TimeSpan(0, 0, 30); ;
            client.MaxResponseContentBufferSize = 2000000;
            using (HttpResponseMessage response = client.GetAsync(webapihost + apimethod + querystring).Result)
                if (response.IsSuccessStatusCode)
                    result = Decompress(response);
                    tracingService.Trace("Call Data Value [{0}]", result.ToString());
    catch (Exception simple)
        throw new InvalidPluginExecutionException("Error with simple HTTPClient x-www-form-urlencoded" + simple.ToString());
    private string Decompress(HttpResponseMessage response)
        try
            switch (response.Content.Headers.ContentEncoding.ToString().ToLower())
                case "gzip":
                        return DecompressGzip(response.Content.ReadAsStreamAsync().Result);
                case "deflate":
                        return Inflate(response.Content.ReadAsStreamAsync().Result);
                default:
                        return response.Content.ReadAsStringAsync().Result;
        catch (Exception ex)
            throw new Exception("Error decompressing: " + ex.ToString());
    private string DecompressGzip(Stream datastream)
        try
            //Create a new stream
            //decompress the original
            //get back the string (JSON)
            if (datastream != null)
                Stream decompressedStream = null;
                decompressedStream = new GZipStream(datastream, CompressionMode.Decompress, true);
                var streamReader = new StreamReader(decompressedStream);
                string stringdata = streamReader.ReadToEnd();
                decompressedStream.Dispose();
                return stringdata;
            else
                return string.Empty;
        catch (Exception ex)
            throw new Exception("Gzip error: " + ex.ToString());
    private string Inflate(Stream datastream)
        try
            if (datastream != null)
                Stream decompressedStream = null;
                decompressedStream = new DeflateStream(datastream, CompressionMode.Decompress, true);
                var streamReader = new StreamReader(decompressedStream);
                string stringdata = streamReader.ReadToEnd();
                decompressedStream.Dispose();
                return stringdata;
            else
                return string.Empty;
        catch (Exception ex)
            throw new Exception("Inflate error: " + ex.ToString());

  • Error while transferring data to a Unix file using the FILTER 'gzip'

    I have to particularly use the 'gzip' filter to compress the files that are placed in Unix directory through ABAP code. This filter was working fine initially and I was able to get the files saved correctly however lately I am getting a short dump at the TRANSFER command. the runtime error 'DATASET_PIPE_CLOSED'. Kindly guide me as to how i can avoid this.

    there is o relation of infoobject name in flat file and infoobjet name at BW side.
    please check with the object in the BW and their lengths and type of the object and check your flat file weather u have the same type there,
    now check the sequence of the objects in the transfer rules  and activate them.
    there u go.

  • WebService : error to retrieve big result gzip encoded

    Hi, I have a strange error with Results from Webservice SOAP
    when data is encoded in gzip or deflate mode.
    I have a webservice that return in non encoded mode a
    resultset of 95542 Bytes.
    The same resultset compressed in gzip is 8251 Bytes.
    No problem if there is no encoding between server and Flash
    Player (9,0,47 and 9,0,115 used)
    If Accept-Encoding header is set to gzip, deflate, then
    server send resultset encoded.
    Browser receive this resultset (trace with WireShark), but
    Flash Player don't load the result and the WebService go to timeout
    If I limit the data returned for this webservice by limiting
    number of rows returned, Flash is able to handle the result. For
    example : uncompressed data of 84070 Bytes give an encoded
    resultset of 7506 Bytes and theses data are well handled by flash
    player.
    I don't understand where is the problem.
    Does flash player have gzip decompression limitation ?
    Please help
    Thanks

    Hi, I have a strange error with Results from Webservice SOAP
    when data is encoded in gzip or deflate mode.
    I have a webservice that return in non encoded mode a
    resultset of 95542 Bytes.
    The same resultset compressed in gzip is 8251 Bytes.
    No problem if there is no encoding between server and Flash
    Player (9,0,47 and 9,0,115 used)
    If Accept-Encoding header is set to gzip, deflate, then
    server send resultset encoded.
    Browser receive this resultset (trace with WireShark), but
    Flash Player don't load the result and the WebService go to timeout
    If I limit the data returned for this webservice by limiting
    number of rows returned, Flash is able to handle the result. For
    example : uncompressed data of 84070 Bytes give an encoded
    resultset of 7506 Bytes and theses data are well handled by flash
    player.
    I don't understand where is the problem.
    Does flash player have gzip decompression limitation ?
    Please help
    Thanks

  • Gzip-1.5-1 error uncompressing temporary file in lynx

    Today updated gzip to 1.5-1-i686.  Thereafter in lynx 2.8.7-5 no websites would display.  The message is "error uncompressing temporary file."  I reverted to gzip 1.4-4 and lynx works as expected.

    There is a bugtracker...

  • Not in GZIP format error while trying to unzip the file

    I'm using GZIPInputStream in order to read data from zipped file.
    It worked perfectly from command line. I have to execute the same code from crontab and it gave me the exception:
    java.io.IOException: Not in GZIP format
    It tries to check the GZIP_MAGIC number and for some reason failed.
    The stack trace I'm getting points to GZIPInputStream constructor.
    GZIPInputStream input = new GZIPInputStream( new FileInputStream( fileName));
    Any help will be highly appreciated.
    Thanks,
    Arnold

    This may be a little late for you, but I am having the same problem. I am using an encryption package as well. I created input and output streams to wrap my encryption package. (javax.?? has something similar)
    Anyway, my algorithm goes: data -> gzip -> encrypt --------- ->decrypt -> gzip ->data
    If I used encryption without the gzip everything works fine, and if I use gzip without the encryption it works fine as well. But if I use them in conjuction, bad thing happen.
    I copied versions of the GZIPInput and output stream classes from java.util.zip and made my own so I could put in debug code. Then I saw what was happening. GZIP writes a header of 8b1f. It does this by writing a first to 1f as a byte (this is 31 in decimal) and then the 8b (this is 139 unsigned byte or -117 signed byte).
    My debug code shows that it writes 31,-117 to the stream, but reads 31,139 when I don't use encryption and 31,-117 when I do. Another strange thing about this, though, is that everywhere I have debug code, this is the only byte that prints out unsigned in my debug messages... When encryption is turned on this same debug message prints -117.
    I have no idea why this is happening. To test things some more, I changed my copy of the gzipinputstream to compare this header value with the GZIP_MAGIC number (35615) and with -29921. Now everything works perfectly. There has to be a better solution for this, but I don't know what it is yet.
    GZIP_MAGIC is 8b1f sent as two bytes 1f and then 8b, and then shifting the 8b.
    -117, using the Integer.toString(-117,16), gives a hex of -75. Using the same methodology as above, we can get -751f which is -29921.
    The header check is essentially:
    if ((int)readUByte(in) << 8) | (int)readUByte(in) != GZIP_MAGIC)
    your screwed
    So change this store the value in a variable and compare it to GZIP_MAGIC and -29921 and your problem will disappear.
    I am not sure what they were thinking. readUByte is a simple read. There is nothing unsigned about it. There is probably some casting somewhere along here that is causing the error, but nothing I am doing seem incorrect.
    Hope this helps. Actually, I hope you have solved your problem by now, but if not,... If you have any insights, I would appreciate hearing them.

  • Applet error, "not in gzip format"

    When trying to open an applet Java console shows:
    Error in server data transaction: Not in GZIP format
    Error while downloading productGroups. Mess=Not in GZIP format
    basic: Applet initialized
    basic: Starting applet
    basic: Applet started
    basic: Told clients applet is started
    But no applet appears :-(
    Using kubuntu, firefox 3.08, java version "1.6.0_13"
    Using it in windows xp and firefox works fine.
    Any suggestions?

    When trying to open an applet Java console shows:
    Error in server data transaction: Not in GZIP format
    Error while downloading productGroups. Mess=Not in GZIP format
    basic: Applet initialized
    basic: Starting applet
    basic: Applet started
    basic: Told clients applet is started
    But no applet appears :-(
    Using kubuntu, firefox 3.08, java version "1.6.0_13"
    Using it in windows xp and firefox works fine.
    Any suggestions?

  • Magic number Error in GZip

    Hi,
    while uncompressing the file i am getting below error
    Error: 0x0 at Unziping compressed file, Error: : The magic number in GZip header is not correct. Make sure you are passing in a GZip stream.
    Error: 0x8 at Unziping compressed file: The script returned a failure result.
    Task failed: Unziping compressed file
    please help
    Thanks

    check this out
    http://www.codekicks.com/2009/04/compressing-and-uncompressing-zip-files.html
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Error while loading a logo .gif image to the banner

    Hi all,
    I'm running Portalea on NT platform and I receive the following error, trying to load a gif image as a logo to the banner (this is in spanish but I hope you can understand it):
    Wed, 27 Dec 2000 07:03:25 GMT
    ORA-06510: PL/SQL: excepcisn definida por el usuario no tratada
    ORA-06512: en "PORTAL30.WWDOC_DOCU_BRI_TRG", lmnea 60
    ORA-06510: PL/SQL: excepcisn definida por el usuario no tratada
    ORA-04088: error durante la ejecucisn del disparador 'PORTAL30.WWDOC_DOCU_BRI_TRG'
    DAD name: portal30
    PROCEDURE : PORTAL30.wwptl_banner.savecustom
    URL : http://ORACLE1:80/pls/portal30/PORTAL30.wwptl_banner.savecustom
    PARAMETERS :
    ===========
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.22
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=ORACLE1
    REQUEST_METHOD=POST
    QUERY_STRING=
    PATH_INFO=/pls/portal30/PORTAL30.wwptl_banner.savecustom
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=192.168.100.224
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=6443
    HTTP_CONTENT_TYPE=multipart/form-data; boundary=---------------------------7d02753210f0280
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)
    HTTP_HOST=oracle1
    HTTP_ACCEPT=application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint, image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-comet, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=es
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=portal30=AB515A5F55262E576590647AC04D98A8EF1D5A6F56D19ECCD710BDB4A08D2354903C0CA288FDE0C9283E116C71C00B1B3821CEAB7A24979CFF326F4979143EE1FD147BC097C2AD7705313C93DAB32D8 4A6CF71C26B267CC0B2FEA03B385A2E84; portal30_sso=7452540140821A6010973F5CAC7E7D17C7498F309E15C228015C1C0546A702F5AFDE500B69BDCB8DE5C29DD726FC8DEEE85A1DC979ECC7B8A6A16CADEF1DAB0C0ACEC11897D5B99B1033884D61307BEA7AE581C 8AB988C8CBBBDCE6174BA01F6
    Authorization=
    HTTP_IF_MODIFIED_SINCE=
    null

    Hi,
    No errors was found in the installation log. I'm looking in the WWDOC_DOCUMENT$ table and found records that make references to my previous tries to upload the logo image. In order to make others tries, how can I delete this information? Are references to this files in any other table?.
    I'm looking over the solution provide by Laurent Baresse, refering to the NLS_LANGUAJE problem ... (Thanks Laurent).
    Best regards
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Karthika Siva ([email protected]):
    Fernando,
    Are you able to upload any documents into a content area? Please look at your installation log file (install.log) for any errors that may have occured during the installation of the product. Also make sure that the tablespace containing the WWDOC_DOCUMENT$ table is not full.
    Karthika<HR></BLOCKQUOTE>
    null

  • Error while trying SSL on OHS

    I'm getting "Init: SSL call to NZ function nzos_OpenWallet failed with error 29248" error in log file HTTP_Server~1 while starting OHS (using opmnctl startall).
    I created a Wallet with auto login option checked. I was able to create certificate Request and got a certificate from verisign (14 days Validity). I imported Root certificate and intermediate certificate from verisign into the wallet and then successfully imported the trial certificate. After saving the wallet in default location I got 2 files (cwallet.sso and ewallet.p12) there.
    Configuration in opmn.xml is :
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <environment>
    <variable id="PERL5LIB" value="D:\product\10.1.3\OracleAS_1\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread;$ORACLE_HOME\perl\5.8.3\lib;$ORACLE_HOME\perl\site\5.8.3\lib"/>
    <variable id="PHPRC" value="D:\product\10.1.3\OracleAS_1\Apache\Apache\conf"/>
    <variable id="PATH"
    value="$ORACLE_HOME\Perl\5.8.3\bin\MSWin32-x86-multi-thread" append="true"/>
    </environment>
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    </category>
    </module-data>
    <process-set id="HTTP_Server" numprocs="1"/>
    </process-type>
    </ias-component>
    my httpd.conf file is as follows:
    ## httpd.conf -- Apache HTTP server configuration file
    # Based upon the NCSA server configuration files originally by Rob McCool.
    # This is the main Apache server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://www.apache.org/docs/> for detailed information about
    # the directives.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # After this file is processed, the server will look for and process
    # D:\product\10.1.3\OracleAS_1\Apache\Apache/conf/srm.conf and then D:\product\10.1.3\OracleAS_1\Apache\Apache/conf/access.conf
    # unless you have overridden these with ResourceConfig and/or
    # AccessConfig directives here.
    # The configuration directives are grouped into three basic sections:
    # 1. Directives that control the operation of the Apache server process as a
    # whole (the 'global environment').
    # 2. Directives that define the parameters of the 'main' or 'default' server,
    # which responds to requests that aren't handled by a virtual host.
    # These directives also provide default values for the settings
    # of all virtual hosts.
    # 3. Settings for virtual hosts, which allow Web requests to be sent to
    # different IP addresses or hostnames and have them handled by the
    # same Apache server process.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do not begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "D:\product\10.1.3\OracleAS_1\Apache\Apache" will be interpreted by the
    # server as "D:\product\10.1.3\OracleAS_1\Apache\Apache/logs/foo.log".
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which Apache.exe is located
    # will be used by default. It is recommended that you always supply
    # an explicit drive letter in absolute paths, however, to avoid
    # confusion.
    ### Section 1: Global Environment
    # The directives in this section affect the overall operation of Apache,
    # such as the number of concurrent requests it can handle or where it
    # can find its configuration files.
    # ServerType is either inetd, or standalone. Inetd mode is only supported on
    # Unix platforms.
    ServerType standalone
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do NOT add a slash at the end of the directory path.
    ServerRoot "D:\product\10.1.3\OracleAS_1\Apache\Apache"
    # PidFile: The file in which the server should record its process
    # identification number when it starts.
    PidFile logs/httpd.pid
    # ScoreBoardFile: File used to store internal server process information.
    # Not all architectures require this. But if yours does (you'll know because
    # this file will be created when you run Apache) then you must ensure that
    # no two invocations of Apache share the same scoreboard file.
    ScoreBoardFile logs/httpd.scoreboard
    # In the standard configuration, the server will process httpd.conf (this
    # file, specified by the -f command line option), srm.conf, and access.conf
    # in that order. The latter two files are now distributed empty, as it is
    # recommended that all directives be kept in a single file for simplicity.
    # The commented-out values below are the built-in defaults. You can have the
    # server ignore these files altogether by using "/dev/null" (for Unix) or
    # "nul" (for Win32) for the arguments to the directives.
    #ResourceConfig conf/srm.conf
    #AccessConfig conf/access.conf
    # Timeout: The number of seconds before receives and sends time out.
    Timeout 300
    # SendBufferSize: controls setsockopt() call made to set send buffer size on
    # all sockets. Default OS value on most Windows platforms is too small.
    # Larger values can help if the average page size served by OHS is
    # large (~64 k)
    SendBufferSize 16384
    # KeepAlive: Whether or not to allow persistent connections (more than
    # one request per connection). Set to "Off" to deactivate.
    KeepAlive On
    # MaxKeepAliveRequests: The maximum number of requests to allow
    # during a persistent connection. Set to 0 to allow an unlimited amount.
    # We recommend you leave this number high, for maximum performance.
    MaxKeepAliveRequests 100
    # KeepAliveTimeout: Number of seconds to wait for the next request from the
    # same client on the same connection.
    KeepAliveTimeout 15
    # Apache on Win32 always creates one child process to handle requests. If it
    # dies, another child process is created automatically. Within the child
    # process multiple threads handle incoming requests. The next two
    # directives control the behaviour of the threads and processes.
    # MaxRequestsPerChild: the number of requests each child process is
    # allowed to process before the child dies. The child will exit so
    # as to avoid problems after prolonged use when Apache (and maybe the
    # libraries it uses) leak memory or other resources. On most systems, this
    # isn't really needed, but a few (such as Solaris) do have notable leaks
    # in the libraries. For Win32, set this value to zero (unlimited)
    # unless advised otherwise.
    # NOTE: This value does not include keepalive requests after the initial
    # request per connection. For example, if a child process handles
    # an initial request and 10 subsequent "keptalive" requests, it
    # would only count as 1 request towards this limit.
    MaxRequestsPerChild 0
    # Number of concurrent threads (i.e., requests) the server will allow.
    # Set this value according to the responsiveness of the server (more
    # requests active at once means they're all handled more slowly) and
    # the amount of system resources you'll allow the server to consume.
    ThreadsPerChild 50
    # Server-pool size regulation. Rather than making you guess how many
    # server processes you need, Apache dynamically adapts to the load it
    # sees --- that is, it tries to maintain enough server processes to
    # handle the current load, plus a few spare servers to handle transient
    # load spikes (e.g., multiple simultaneous requests from a single
    # Netscape browser).
    # It does this by periodically checking how many servers are waiting
    # for a request. If there are fewer than MinSpareServers, it creates
    # a new spare. If there are more than MaxSpareServers, some of the
    # spares die off. The default values are probably OK for most sites.
    #MinSpareServers 5
    #MaxSpareServers 20
    # Limit on total number of servers running, i.e., limit on the number
    # of clients who can simultaneously connect --- if this limit is ever
    # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
    # It is intended mainly as a brake to keep a runaway server from taking
    # the system with it as it spirals down...
    #MaxClients 150
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, in addition to the default. See also the <VirtualHost>
    # directive.
    #Listen 3000
    #Listen 12.34.56.78:80
    # BindAddress: You can support virtual hosts with this option. This directive
    # is used to tell the server which IP address to listen to. It can either
    # contain "*", an IP address, or a fully qualified Internet domain name.
    # See also the <VirtualHost> and Listen directives.
    #BindAddress *
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available before they are used.
    # Please read the file README.DSO in the Apache 1.3 distribution for more
    # details about the DSO mechanism and run `apache -l' for the list of already
    # built-in (statically linked and thus always available) modules in your Apache
    # binary.
    # Note: The order in which modules are loaded is important. Don't change
    # the order below without expert advice.
    # Example:
    # LoadModule foo_module libexec/mod_foo.dll
    LoadModule mime_magic_module modules/ApacheModuleMimeMagic.dll
    LoadModule mime_module modules/ApacheModuleMime.dll
    LoadModule dbm_auth_module modules/ApacheModuleAuthDBM.dll
    LoadModule digest_auth_module modules/ApacheModuleAuthDigest.dll
    LoadModule anon_auth_module modules/ApacheModuleAuthAnon.dll
    LoadModule cern_meta_module modules/ApacheModuleCERNMeta.dll
    LoadModule digest_module modules/ApacheModuleDigest.dll
    LoadModule expires_module modules/ApacheModuleExpires.dll
    LoadModule headers_module modules/ApacheModuleHeaders.dll
    LoadModule proxy_module modules/ApacheModuleProxy.dll
    LoadModule speling_module modules/ApacheModuleSpeling.dll
    LoadModule status_module modules/ApacheModuleStatus.dll
    LoadModule info_module modules/ApacheModuleInfo.dll
    LoadModule usertrack_module modules/ApacheModuleUserTrack.dll
    LoadModule vhost_alias_module modules/ApacheModuleVhostAlias.dll
    LoadModule agent_log_module modules/ApacheModuleLogAgent.dll
    LoadModule referer_log_module modules/ApacheModuleLogReferer.dll
    LoadModule perl_module modules/ApacheModulePerl.DLL
    LoadModule fastcgi_module modules/ApacheModuleFastCGI.dll
    LoadModule php4_module modules/ApacheModulePHP4.dll
    LoadModule onsint_module modules/ApacheModuleOnsint.dll
    LoadModule wchandshake_module modules/ApacheModuleWchandshake.dll
    ClearModuleList
    AddModule mod_so.c
    AddModule mod_onsint.c
    AddModule mod_mime_magic.c
    AddModule mod_mime.c
    AddModule mod_access.c
    AddModule mod_auth.c
    AddModule mod_negotiation.c
    AddModule mod_include.c
    AddModule mod_autoindex.c
    AddModule mod_dir.c
    AddModule mod_cgi.c
    #AddModule mod_userdir.c
    AddModule mod_alias.c
    AddModule mod_env.c
    AddModule mod_log_config.c
    AddModule mod_asis.c
    AddModule mod_imap.c
    AddModule mod_actions.c
    AddModule mod_setenvif.c
    AddModule mod_isapi.c
    AddModule mod_vhost_alias.c
    AddModule mod_log_referer.c
    AddModule mod_log_agent.c
    AddModule mod_auth_anon.c
    AddModule mod_auth_dbm.c
    AddModule mod_auth_digest.c
    AddModule mod_cern_meta.c
    AddModule mod_digest.c
    AddModule mod_expires.c
    AddModule mod_headers.c
    AddModule mod_proxy.c
    AddModule mod_speling.c
    AddModule mod_info.c
    AddModule mod_status.c
    AddModule mod_usertrack.c
    AddModule mod_perl.c
    AddModule mod_fastcgi.c
    AddModule mod_php4.c
    AddModule mod_wchandshake.c
    <IfDefine SSL>
    LoadModule ossl_module modules/ApacheModuleOSSL.DLL
    </IfDefine>
    # ExtendedStatus controls whether Apache will generate "full" status
    # information (ExtendedStatus On) or just basic information (ExtendedStatus
    # Off) when the "server-status" handler is called. The default is Off.
    ExtendedStatus On
    ### Section 2: 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # Port: The port to which the standalone server listens. Certain firewall
    # products must be configured before Apache can listen to a specific port.
    # Other running httpd servers will also interfere with this port. Disable
    # all firewall, security, and other services if you encounter problems.
    # To help diagnose problems use the Windows NT command NETSTAT -a
    Port 7777
    Listen 7777
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents.
    ServerAdmin [email protected]
    # ServerName allows you to set a host name which is sent back to clients for
    # your server if it's different than the one the program would get (i.e., use
    # "www" instead of the host's real name).
    # Note: You cannot just invent host names and hope they work. The name you
    # define here must be a valid DNS name for your host. If you don't understand
    # this, ask your network administrator.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    # You will have to access it by its address (e.g., http://123.45.67.89/)
    # anyway, and this will make redirections work in a sensible way.
    # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
    # machine always knows itself by this address. If you use Apache strictly for
    # local testing and development, you may use 127.0.0.1 as the server name.
    ServerName IFLMUD5DLHY4G.i-flex.com
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "D:\product\10.1.3\OracleAS_1\Apache\Apache\htdocs"
    # Each directory to which Apache has access, can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # permissions.
    <Directory />
    Options FollowSymLinks MultiViews
    AllowOverride None
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "D:\product\10.1.3\OracleAS_1\Apache\Apache\htdocs">
    # This may also be "None", "All", or any combination of "Indexes",
    # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
    # Note that "MultiViews" must be named explicitly --- "Options All"
    # doesn't give it to you.
    Options FollowSymLinks MultiViews
    # This controls which options the .htaccess files in directories can
    # override. Can also be "All", or any combination of "Options", "FileInfo",
    # "AuthConfig", and "Limit"
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # UserDir: The name of the directory which is appended onto a user's home
    # directory if a ~user request is received.
    # Under Win32, we do not currently try to determine the home directory of
    # a Windows login, so a format such as that below needs to be used. See
    # the UserDir documentation for details.
    <IfModule mod_userdir.c>
    UserDir "D:\product\10.1.3\OracleAS_1\Apache\Apache\users\"
    </IfModule>
    # Control access to UserDir directories. The following is an example
    # for a site where these directories are restricted to read-only.
    #<Directory /home/*/public_html>
    # AllowOverride FileInfo AuthConfig Limit
    # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    # <Limit GET POST OPTIONS PROPFIND>
    # Order allow,deny
    # Allow from all
    # </Limit>
    # <LimitExcept GET POST OPTIONS PROPFIND>
    # Order deny,allow
    # Deny from all
    # </LimitExcept>
    #</Directory>
    # DirectoryIndex: Name of the file or files to use as a pre-written HTML
    # directory index. Separate multiple entries with spaces.
    <IfModule mod_dir.c>
    DirectoryIndex index.html
    </IfModule>
    # AccessFileName: The name of the file to look for in each directory
    # for access control information.
    AccessFileName .htaccess
    # The following lines prevent .htaccess files from being viewed by
    # Web clients. Since .htaccess files often contain authorization
    # information, access is disallowed for security reasons. Comment
    # these lines out if you want Web visitors to see the contents of
    # .htaccess files. If you change the AccessFileName directive above,
    # be sure to make the corresponding changes here.
    # Also, folks tend to use names such as .htpasswd for password
    # files, so this will protect those as well.
    <Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    </Files>
    # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
    # document that was negotiated on the basis of content. This asks proxy
    # servers not to cache the document. Uncommenting the following line disables
    # this behavior, and proxies will be allowed to cache the documents.
    #CacheNegotiatedDocs
    # UseCanonicalName: (new for 1.3) With this setting turned on, whenever
    # Apache needs to construct a self-referencing URL (a URL that refers back
    # to the server the response is coming from) it will use ServerName and
    # Port to form a "canonical" name. With this setting off, Apache will
    # use the hostname:port that the client supplied, when possible. This
    # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
    UseCanonicalName On
    # TypesConfig describes where the mime.types file (or equivalent) is
    # to be found.
    <IfModule mod_mime.c>
    TypesConfig conf/mime.types
    </IfModule>
    # DefaultType is the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value. If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    # mod_mime_magic is not part of the default server (you have to add
    # it yourself with a LoadModule [see the DSO paragraph in the 'Global
    # Environment' section], or recompile the server and include mod_mime_magic
    # as part of the configuration), so it's enclosed in an <IfModule> container.
    # This means that the MIMEMagicFile directive will only be processed if the
    # module is part of the server.
    <IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
    </IfModule>
    # HostnameLookups: Log the names of clients or just their IP addresses
    # e.g., www.apache.org (on) or 204.62.129.132 (off).
    # The default is off because it'd be overall better for the net if people
    # had to knowingly turn this feature on, since enabling it means that
    # each client request will result in AT LEAST one lookup request to the
    # nameserver.
    HostnameLookups Off
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you do define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "|D:\product\10.1.3\OracleAS_1\Apache\Apache\bin\rotatelogs logs/error_log 43200"
    # LogLevel: Control the number of messages logged to the error.log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    # Alternate "common" format to use when fronted by webcache:
    # LogFormat "%{ClientIP}i %l %u %t \"%r\" %>s %b %h" common_webcache
    # When webcache is forwarding requests to OHS, %h becomes the IP of
    # the originating webcache server and the real client IP is stored
    # in the ClientIP header. The common_webcache format can be used
    # in place of the common format when using webcache but with one
    # important caveat: if clients are capable of bypassing webcache
    # then it is possible to spoof the client IP by manually setting
    # the ClientIP header so the %h field should be monitored in such
    # an environment. Another alternative to specifying the ClientIP
    # header directly in a LogFormat is to use the "UseWebCacheIp"
    # directive:
    # UseWebCacheIp On
    # When this is specified, %h is derived internally from the ClientIP
    # header and the access log format does not need to be modified.
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    CustomLog "|D:\product\10.1.3\OracleAS_1\Apache\Apache\bin\rotatelogs logs/access_log 43200" common
    # If you would like to have agent and referer logfiles, uncomment the
    # following directives.
    #CustomLog logs/referer.log referer
    #CustomLog logs/agent.log agent
    # If you prefer a single logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog logs/access.log combined
    # Optionally add a line containing the server version and virtual host
    # name to server-generated pages (error documents, FTP directory listings,
    # mod_status and mod_info output etc., but not CGI generated documents).
    # Set to "EMail" to also include a mailto: link to the ServerAdmin.
    # Set to one of: On | Off | EMail
    ServerSignature On
    # Apache parses all CGI scripts for the shebang line by default.
    # This comment line, the first line of the script, consists of the symbols
    # pound (#) and exclamation (!) followed by the path of the program that
    # can execute this specific script. For a perl script, with perl.exe in
    # the C:\Program Files\Perl directory, the shebang line should be:
    #!c:/program files/perl/perl
    # Note you mustnot_ indent the actual shebang line, and it must be the
    # first line of the file. Of course, CGI processing must be enabled by
    # the appropriate ScriptAlias or Options ExecCGI directives for the files
    # or directory in question.
    # However, Apache on Windows allows either the Unix behavior above, or can
    # use the Registry to match files by extention. The command to execute
    # a file of this type is retrieved from the registry by the same method as
    # the Windows Explorer would use to handle double-clicking on a file.
    # These script actions can be configured from the Windows Explorer View menu,
    # 'Folder Options', and reviewing the 'File Types' tab. Clicking the Edit
    # button allows you to modify the Actions, of which Apache 1.3 attempts to
    # perform the 'Open' Action, and failing that it will try the shebang line.
    # This behavior is subject to change in Apache release 2.0.
    # Each mechanism has it's own specific security weaknesses, from the means
    # to run a program you didn't intend the website owner to invoke, and the
    # best method is a matter of great debate.
    # To enable the this Windows specific behavior (and therefore -disable- the
    # equivilant Unix behavior), uncomment the following directive:
    #ScriptInterpreterSource registry
    # The directive above can be placed in individual <Directory> blocks or the
    # .htaccess file, with either the 'registry' (Windows behavior) or 'script'
    # (Unix behavior) option, and will override this server default option.
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    <IfModule mod_alias.c>
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL. So "/icons" isn't aliased in this
    # example, only "/icons/"..
    Alias /icons/ "D:\product\10.1.3\OracleAS_1\Apache\Apache\icons/"
    Alias /javacachedocs/ "D:\product\10.1.3\OracleAS_1\javacache\javadoc/"
    <IfModule mod_perl.c>
    Alias /perl/ "D:\product\10.1.3\OracleAS_1\Apache\Apache/cgi-bin/"
    </IfModule>
    <Directory "icons">
    Options MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the realname directory are treated as applications and
    # run by the server when requested rather than as documents sent to the client.
    # The same rules about trailing "/" apply to ScriptAlias directives as to
    # Alias.
    ScriptAlias /cgi-bin/ "D:\product\10.1.3\OracleAS_1\Apache\Apache\cgi-bin/"
    # "D:\product\10.1.3\OracleAS_1\Apache\Apache/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "D:\product\10.1.3\OracleAS_1\Apache\Apache\cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    </IfModule>
    # End of aliases.
    # Redirect allows you to tell clients about documents which used to exist in
    # your server's namespace, but do not anymore. This allows you to tell the
    # clients where to look for the relocated document.
    # Format: Redirect old-URI new-URL
    # Directives controlling the display of server-generated directory listings.
    <IfModule mod_autoindex.c>
    # FancyIndexing is whether you want fancy directory indexing or standard
    # Note, add the option TrackModified to the IndexOptions default list only
    # if all indexed directories reside on NTFS volumes. The TrackModified flag
    # will report the Last-Modified date to assist caches and proxies to properly
    # track directory changes, but it does not work on FAT volumes.
    IndexOptions FancyIndexing
    # AddIcon* directives tell the server which icon to show for different
    # files or filename extensions. These are only displayed for
    # FancyIndexed directories.
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    # DefaultIcon is which icon to show for files which do not have an icon
    # explicitly set.
    DefaultIcon /icons/unknown.gif
    # AddDescription allows you to place a short description after a file in
    # server-generated indexes. These are only displayed for FancyIndexed
    # directories.
    # Format: AddDescription "description" filename
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz
    # ReadmeName is the name of the README file the server will look for by
    # default, and append to directory listings.
    # HeaderName is the name of a file which should be prepended to
    # directory indexes.
    # If MultiViews are amongst the Options in effect, the server will
    # first look for name.html and include it if found. If name.html
    # doesn't exist, the server will then look for name.txt and include
    # it as plaintext if found.
    ReadmeName README
    HeaderName HEADER
    # IndexIgnore is a set of filenames which directory indexing should ignore
    # and not include in the listing. Shell-style wildcarding is permitted.
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    </IfModule>
    # End of indexing directives.
    # Document types.
    <IfModule mod_mime.c>
    # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
    # information on the fly. Note: Not all browsers support this.
    # Despite the name similarity, the following Add* directives have nothing
    # to do with the FancyIndexing customization directives above.
    AddEncoding x-compress Z
    AddEncoding x-gzip gz tgz
    # AddLanguage allows you to specify the language of a document. You can
    # then use content negotiation to give a browser a file in a language
    # it can understand.
    # Note 1: The suffix does not have to be the same as the language
    # keyword --- those with documents in Polish (whose net-standard
    # language code is pl) may wish to use "AddLanguage pl .po" to
    # avoid the ambiguity with the common suffix for perl scripts.
    # Note 2: The example entries below illustrate that in quite
    # some cases the two character 'Language' abbriviation is not
    # identical to the two character 'Country' code for its country,
    # E.g. 'Danmark/dk' versus 'Danish/da'.
    # Note 3: In the case of 'ltz' we violate the RFC by using a three char
    # specifier. But there is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
    # French (fr) - German (de) - Greek-Modern (el)
    # Italian (it) - Korean (kr) - Norwegian (no)
    # Portugese (pt) - Luxembourgeois* (ltz)
    # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
    # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
    # Russian (ru)
    AddLanguage ar .ar
    AddLanguage da .dk .da
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fi .fi
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage es .es_ES .es
    AddLanguage he .he .iw
    AddLanguage hu .hu
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage ko .ko
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt_BR .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage sk .sk
    AddLanguage sv .sv
    AddLanguage th .th
    AddLanguage tr .tr
    AddLanguage cz .cz .cs
    AddLanguage ro .ro
    AddLanguage ru .ru
    AddLanguage zh-cn .zh_CN
    AddLanguage zh-tw .zh_TW
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866 .cp866
    AddCharset ISO-8859-5 .iso-ru
    AddCharset KOI8-R .koi8-r
    AddCharset UCS-2 .ucs2
    AddCharset UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    <IfModule mod_negotiation.c>
    LanguagePriority ar en da nl et fi fr de el it ja ko kr no pl pt pt-br ro ru ltz ca es sk sv th tr zh-cn zh-tw zh-cn
    </IfModule>
    # AddType allows you to tweak mime.types without actually editing it, or to
    # make certain files to be certain types.
    # For example, the PHP 3.x module (not part of the Apache distribution - see
    # http://www.php.net) will typically use:
    #AddType application/x-httpd-php3 .php3
    #AddType application/x-httpd-php3-source .phps
    # And for PHP 4.x, use:
    AddType application/x-httpd-php .php .phtml
    AddType application/x-httpd-php-source .phps
    AddType application/x-tar .tgz
    # AddHandler allows you to map certain file extensions to "handlers",
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action command (see below)
    # If you want to use server side includes, or CGI outside
    # ScriptAliased directories, uncomment the following lines.
    # To use CGI scripts:
    #AddHandler cgi-script .cgi
    # To use server-parsed HTML files
    #AddType text/html .shtml
    #AddHandler server-parsed .shtml
    # Uncomment the following line to enable Apache's send-asis HTTP file
    # feature
    #AddHandler send-as-is asis
    # If you wish to use server-parsed imagemap files, use
    #AddHandler imap-file map
    # To enable type maps, you might want to use
    #AddHandler type-map var
    </IfModule>
    # End of document types.
    # Action lets you define media types that will execute a script whenever
    # a matching file is called. This eliminates the need for repeated URL
    # pathnames for oft-used CGI file processors.
    # Format: Action media/type /cgi-script/location
    # Format: Action handler-name /cgi-script/location
    # MetaDir: specifies the name of the directory in which Apache can find
    # meta information files. These files contain additional HTTP headers
    # to include when sending the document
    #MetaDir .web
    # MetaSuffix: specifies the file name suffix for the file containing the
    # meta information.
    #MetaSuffix .meta
    # Customizable error response (Apache style)
    # these come in three flavors
    # 1) plain text
    #ErrorDocument 500 "The server made a boo boo.
    # n.b. the single leading (") marks it as text, it does not get output
    # 2) local redirects
    #ErrorDocument 404 /missing.html
    # to redirect to local URL /missing.html
    #ErrorDocument 404 /cgi-bin/missing_handler.pl
    # N.B.: You can redirect to a script or a document using server-side-includes.
    # 3) external redirects
    #ErrorDocument 402 http://some.other_server.com/subscription_info.html
    # N.B.: Many of the environment variables associated with the original
    # request will not be available to such a script.
    # Customize behaviour based on the browser
    <IfModule mod_setenvif.c>
    # The following directives modify normal HTTP response behavior.
    # The first directive disables keepalive for Netscape 2.x and browsers that
    # spoof it. There are known problems with these browser implementations.
    # The second directive is for Microsoft Internet Explorer 4.0b2
    # which has a broken HTTP/1.1 implementation and does not properly
    # support keepalive when it is used on 301 or 302 (redirect) responses.
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    # The following directive disables HTTP/1.1 responses to browsers which
    # are in violation of the HTTP/1.0 spec by not being able to grok a
    # basic 1.1 response.
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    </IfModule>
    # End of browser customization directives
    # Allow server status reports, with the URL of http://servername/server-status
    # Change the ".your_domain.com" to match your domain to enable.
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost IFLMUD5DLHY4G.i-flex.com IFLMUD5DLHY4G
    </Location>
    # Allow remote server configuration reports, with the URL of
    # http://servername/server-info (requires that mod_info.c be loaded).
    # Change the ".your_domain.com" to match your domain to enable.
    #<Location /server-info>
    # SetHandler server-info
    # Order deny,allow
    # Deny from all
    # Allow from .your_domain.com
    #</Location>
    # There have been reports of people trying to abuse an old bug from pre-1.1
    # days. This bug involved a CGI script distributed as a part of Apache.
    # By uncommenting these lines you can redirect these attacks to a logging
    # script on phf.apache.org. Or, you can record them yourself, using the script
    # support/phf_abuse_log.cgi.
    #<Location /cgi-bin/phf*>
    # Deny from all
    # ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
    #</Location>
    # Proxy Server directives. Uncomment the following lines to
    # enable the proxy server:
    #<IfModule mod_proxy.c>
    # ProxyRequests On
    # <Directory proxy:*>
    # Order deny,allow
    # Deny from all
    # Allow from .your_domain.com
    # </Directory>
    # Enable/disable the handling of HTTP/1.1 "Via:" headers.
    # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
    # Set to one of: Off | On | Full | Block
    # ProxyVia On
    # To enable the cache as well, edit and uncomment the following lines:
    # (no cacheing without CacheRoot)
    # CacheRoot "D:\product\10.1.3\OracleAS_1\Apache\Apache\proxy"
    # CacheSize 5
    # CacheGcInterval 4
    # CacheMaxExpire 24
    # CacheLastModifiedFactor 0.1
    # CacheDefaultExpire 1
    # NoCache a_domain.com another_domain.edu joes.garage_sale.com
    #</IfModule>
    # End of proxy directives.
    ### Section 3: Virtual Hosts
    # VirtualHost: If you want to maintain multiple domains/hostnames on your
    # machine you can setup VirtualHost containers for them. Most configurations
    # use only name-based virtual hosts so the server doesn't need to worry about
    # IP addresses. This is indicated by the asterisks in the directives below.
    # Please see the documentation at <URL:http://www.apache.org/docs/vhosts/>
    # for further details before you try to setup virtual hosts.
    # You may use the command line option '-S' to verify your virtual host
    # configuration.
    # Use name-based virtual hosting.
    #NameVirtualHost *
    #NameVirtualHost 12.34.56.78:80
    #NameVirtualHost 12.34.56.78
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for requests without a known
    # server name.
    #<VirtualHost *>
    # ServerAdmin [email protected]
    # DocumentRoot /www/docs/dummy-host.example.com
    # ServerName dummy-host.example.com
    # ErrorLog logs/dummy-host.example.com-error_log
    # CustomLog logs/dummy-host.example.com-access_log common
    #</VirtualHost>
    #<VirtualHost default:*>
    #</VirtualHost>
    # Required for cgi perl scripts that are run from /cgi-bin/.
    SetEnv PERL5LIB "D:\product\10.1.3\OracleAS_1\perl\5.8.3\lib;D:\product\10.1.3\OracleAS_1\perl\site\5.8.3\lib"
    <IfModule mod_perl.c>
    # Perl Directives
    # PerlWarn On
    # PerlFreshRestart On
    # PerlSetEnv PERL5OPT Tw
    # PerlSetEnv PERL5LIB "D:\product\10.1.3\OracleAS_1\perl\5.8.3\lib;D:\product\10.1.3\OracleAS_1\perl\site\5.8.3\lib"
    PerlModule Apache
    # PerlModule Apache::Status
    PerlModule Apache::Registry
    # PerlModule Apache::CGI
    # PerlModule Apache::DBI
    # PerlRequire
    <Location /perl>
    SetHandler perl-script
    PerlHandler Apache::Registry
    AddHandler perl-script .pl
    Options +ExecCGI
    PerlSendHeader On
    </Location>
    # <Location /perl-status>
    # SetHandler perl-script
    # PerlHandler Apache::Status
    # order deny,allow
    # deny from all
    # allow from localhost
    # </Location>
    </IfModule>
    #Protect WEB-INF directory
    <DirectoryMatch /WEB-INF/>
    Order deny,allow
    Deny from all
    </DirectoryMatch>
    # Setup of FastCGI module
    <IfModule mod_fastcgi.c>
    Alias /fastcgi/ "D:\product\10.1.3\OracleAS_1\Apache\Apache\fastcgi/"
    ScriptAlias /fcgi-bin/ "D:\product\10.1.3\OracleAS_1\Apache\Apache\fcgi-bin/"
    <Directory "D:\product\10.1.3\OracleAS_1\Apache\Apache\fcgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    SetHandler fastcgi-script
    <IfModule mod_ossl.c>
    SSLOptions +StdEnvVars
    </IfModule>
    </Directory>
    </IfModule>
    # Include the mod_oc4j configuration file
    include "D:\product\10.1.3\OracleAS_1\Apache\Apache\conf\mod_oc4j.conf"
    # Include the mod_dms configuration file
    include "D:\product\10.1.3\OracleAS_1\Apache\Apache\conf\dms.conf"
    # Loading rewrite_module here so it loads before mod_oc4j
    LoadModule rewrite_module modules/ApacheModuleRewrite.dll
    # Include the SSL definitions and Virtual Host container
    include "D:\product\10.1.3\OracleAS_1\Apache\Apache\conf\ssl.conf"
    # Include the mod_osso configuration file
    #include "D:\product\10.1.3\OracleAS_1\Apache\Apache\conf\mod_osso.conf"
    # Include the Oracle configuration file for custom settings
    include "D:\product\10.1.3\OracleAS_1\Apache\Apache\conf\oracle_apache.conf"
    my ssl.conf is as follows:
    <IfDefine SSL>
    ## SSL Global Context
    ## All SSL configuration in this context applies both to
    ## the main server and all SSL-enabled virtual hosts.
    # Pass Phrase Dialog:
    # Configure the pass phrase gathering process.
    # The filtering dialog program (`builtin' is a internal
    # terminal dialog) has to provide the pass phrase on stdout.
    SSLPassPhraseDialog builtin
    # Inter-Process Session Cache:
    # Configure the SSL Session Cache: First either `none'
    # or `dbm:/path/to/file' for the mechanism to use and
    # second the expiring timeout (in seconds).
    #SSLSessionCache none
    #SSLSessionCache dbm:logs\ssl_scache
    #SSLSessionCache shmht:logs\ssl_scache(512000)
    SSLSessionCache shmcb:logs\ssl_scache(512000)
    # SessionCache Timeout:
    # This directive sets the timeout in seconds for the information stored
    # in the global/inter-process SSL Session Cache. It can be set as low as
    # 15 for testing, but should be set to higher values like 300 in real life.
    SSLSessionCacheTimeout 300
    # Semaphore:
    # Configure the path to the mutual explusion semaphore the
    # SSL engine uses internally for inter-process synchronization.
    SSLMutex sem
    # Logging:
    # The home of the dedicated SSL protocol logfile. Errors are
    # additionally duplicated in the general error log file. Put
    # this somewhere where it cannot be used for symlink attacks on
    # a real server (i.e. somewhere where only root can write).
    # Log levels are (ascending order: higher ones include lower ones):
    # none, error, warn, info, trace, debug.
    SSLLog logs\ssl_engine_log
    SSLLogLevel warn
    ## SSL Virtual Host Context
    # NOTE: this value should match the SSL Listen directive set previously in this
    # file otherwise your virtual host will not respond to SSL requests.
    # Some MIME-types for downloading Certificates and CRLs
    AddType application/x-x509-ca-cert .crt
    AddType application/x-pkcs7-crl .crl
    ## SSL Support
    ## When we also provide SSL we have to listen to the
    ## standard HTTP port (see above) and to the HTTPS port
    # NOTE: if virtual hosts are used and you change a port value below
    # from the original value, be sure to update the default port used
    # for your virtual hosts as well.
    Listen 443
    <VirtualHost IFLMUD5DLHY4G.i-flex.com:443>
    # General setup for the virtual host
    DocumentRoot "D:\product\10.1.3\OracleAS_1\Apache\Apache\htdocs"
    ServerName IFLMUD5DLHY4G.i-flex.com
    #ServerAdmin [email protected]
    ErrorLog "|D:\product\10.1.3\OracleAS_1\Apache\Apache\bin\rotatelogs logs/error_log 43200"
    TransferLog "|D:\product\10.1.3\OracleAS_1\Apache\Apache\bin\rotatelogs logs/access_log 43200"
    Port 443
    # SSL Engine Switch:
    # Enable/Disable SSL for this virtual host.
    SSLEngine on
    # SSL Cipher Suite:
    # List the ciphers that the client is permitted to negotiate.
    SSLCipherSuite ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
    # Server Wallet:
    # The server wallet contains the server's certificate, private key
    # and trusted certificates. Set SSLWallet at the wallet directory
    # using the syntax: file:<path-to-wallet-directory>
    SSLWallet D:\product\10.1.3\OracleAS_1\Apache\Apache\conf\ssl.wlt\default\ewallet.p12
    #SSLWalletPassword iflex2007
    # Certificate Revocation Lists (CRL):
    # Set the CA revocation path where to find CA CRLs for client
    # authentication or alternatively one huge file containing all
    # of them (file must be PEM encoded)
    # Note: Inside SSLCARevocationPath you need hash symlinks
    # to point to the certificate files. Use the provided
    # Makefile to update the hash symlinks after changes.
    #SSLCARevocationPath conf\ssl.crl
    #SSLCARevocationFile conf\ssl.crl\ca-bundle.crl
    # Client Authentication (Type):
    # Client certificate verification type and depth. Types are
    # none, optional and require
    SSLVerifyClient optional
    # Access Control:
    # With SSLRequire you can do per-directory access control based
    # on arbitrary complex boolean expressions containing server
    # variable checks and other lookup directives. The syntax is a
    # mixture between C and Perl. See the mod_ssl documentation
    # for more details.
    #<Location />
    #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)-/ \
    # and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
    # and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
    # and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
    # and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \
    # or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
    #</Location>
    # SSL Engine Options:
    # Set various options for the SSL engine.
    # o FakeBasicAuth:
    # Translate the client X.509 into a Basic Authorisation. This means that
    # the standard Auth/DBMAuth methods can be used for access control. The
    # user name is the `one line' version of the client's X.509 certificate.
    # Note that no password is obtained from the user. Every entry in the user
    # file needs this password: `xxj31ZMTZzkVA'.
    # o ExportCertData:
    # This exports two additional environment variables: SSL_CLIENT_CERT and
    # SSL_SERVER_CERT. These contain the PEM-encoded certificates of the
    # server (always existing) and the client (only existing when client
    # authentication is used). This can be used to import the certificates
    # into CGI scripts.
    # o StdEnvVars:
    # This exports the standard SSL/TLS related `SSL_*' environment variables.
    # Per default this exportation is switched off for performance reasons,
    # because the extraction step is an expensive operation and is usually
    # useless for serving static content. So one usually enables the
    # exportation for CGI and SSI requests only.
    # o CompatEnvVars:
    # This exports obsolete environment variables for backward compatibility
    # to Apache-SSL 1.x, mod_ssl 2.0.x, Sioux 1.0 and Stronghold 2.x. Use this
    # to provide compatibility to existing CGI scripts.
    # o StrictRequire:
    # This denies access when "SSLRequireSSL" or "SSLRequire" applied even
    # under a "Satisfy any" situation, i.e. when it applies access is denied
    # and no other module can change it.
    # o OptRenegotiate:
    # This enables optimized SSL connection renegotiation handling when SSL
    # directives are used in per-directory context.
    #SSLOptions FakeBasicAuth ExportCertData CompatEnvVars StrictRequire
    <Files ~ "\.(cgi|shtml)$">
    SSLOptions +StdEnvVars
    </Files>
    <Directory "D:\product\10.1.3\OracleAS_1\Apache\Apache\cgi-bin">
    SSLOptions +StdEnvVars
    </Directory>
    SetEnvIf User-Agent "MSIE" nokeepalive ssl-unclean-shutdown
    # Per-Server Logging:
    # The home of a custom SSL log file. Use this when you want a
    # compact non-error SSL logfile on a virtual host basis.
    CustomLog "|D:\product\10.1.3\OracleAS_1\Apache\Apache\bin\rotatelogs logs/ssl_request_log 43200" \
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
    </VirtualHost>
    </IfDefine>
    Please help me rectifying this error.
    Thanks a lot in advance.

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • ST22 short dump with error DFIF_REPO_SQL_ERROR

    HI, All
    SAP ERP 2004s on windows 2003x64 with SQLserver database.
    Here is ST22 and dev_w0
    20.03.2014                                      Dynamic List Display                                              1
    Runtime Error
    |Date      |Time    |Host      |User  |Client|Keep|Name of runtime error|Exception|Appl. component|Report|No. Sess|
    |20.03.2014|08:48:44|clusterx64|SAPSYS|000  |C  |DBIF_REPO_SQL_ERROR  |        |              |      |1      |
    |20.03.2014|08:18:44|clusterx64|SAPSYS|000  |C  |DBIF_REPO_SQL_ERROR  |        |              |      |1      |
    D:\usr\sap\PRD\DVEBMGS00\work\dev_w0
    trc file: "dev_w0", trc level: 1, release: "640"
    *  ACTIVE TRACE LEVEL          1
    *  ACTIVE TRACE COMPONENTS      all, M
    B
    B Mon Mar 17 13:26:13 2014
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' is "640.00", patchlevel (0.405)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid  562 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    414
    M intno      20020600
    M make:      multithreaded, Unicode, 64 bit
    M pid        4544
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4544) [dpxxdisp.c  1227]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm) 58560 (1464)
    M  DpShMCreate: sizeof(tm_adm) 38387184 (19184)
    M  DpShMCreate: sizeof(wp_ca_adm) 24000 (80)
    M  DpShMCreate: sizeof(appc_ca_adm) 8000 (80)
    M  DpShMCreate: sizeof(comm_adm) 1248000 (624)
    M  DpShMCreate: sizeof(vmc_adm) 0 (512)
    M  DpShMCreate: sizeof(wall_adm) (400056/346328/64/192)
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000B9B0050, size: 40479544)
    M  DpShMCreate: allocated sys_adm at 000000000B9B0050
    M  DpShMCreate: allocated wp_adm at 000000000B9B1C30
    M  DpShMCreate: allocated tm_adm_list at 000000000B9C00F0
    M  DpShMCreate: allocated tm_adm at 000000000B9C0118
    M  DpShMCreate: allocated wp_ca_adm at 000000000DE5BF08
    M  DpShMCreate: allocated appc_ca_adm at 000000000DE61CC8
    M  DpShMCreate: allocated comm_adm_list at 000000000DE63C08
    M  DpShMCreate: allocated comm_adm at 000000000DE63C20
    M  DpShMCreate: allocated vmc_adm_list at 000000000DF94720
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000DF94748
    M  DpShMCreate: allocated wall_adm at 000000000DF947B8
    M  DpRqQInit: Parameter rdisp/queue_lock_level = 2
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  tskhstart: taskhandler started
    M  tskh_init: initializing DIA work process W0
    M  tskh_init: rdisp/cleanup_after_crash = 1
    M
    M Mon Mar 17 13:26:15 2014
    M  calling db_connect ...
    C  Thread ID:3128
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  CopyLocalParameters: dbuser is 'prd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C
    C Mon Mar 17 13:26:16 2014
    C  Provider Release:9.00.4035.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C
    C Mon Mar 17 13:26:22 2014
    C  Cache sizes: header 104 bytes, 20000 names (32960000 bytes), 1000 dynamic statements (5752000 bytes), total 38712104 bytes
    C  Using shared procedure name cache SAPPRDX64_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: prd
    C  pn_id:SAPPRDX64_PRDPRD_PRD
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    M  db_connect o.k.
    M  ICT: exclude compression: *.zip,*.cs,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.js,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png
    I
    I Mon Mar 17 13:26:26 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000016320050, size: 41613000)
    M  SHM_ROLL_AREA (addr: 000007FFC4050050, size: 268435456)
    M  SHM_PAGING_AREA (addr: 0000000018AD0050, size: 134217728)
    M  SHM_ROLL_ADM (addr: 0000000020AE0050, size: 2678942)
    M  SHM_PAGING_ADM (addr: 0000000020D70050, size: 787488)
    M  ThCreateNoBuffer allocated 544152 bytes for 1000 entries at 0000000020E40050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateNoBuffer: correct_btc_behaviour = 1
    M  ThCreateVBAdm allocated 12176 bytes (50 server) at 0000000020ED0050
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0000000020F700D8, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0000000020F70320, size: 6240232)
    B  dbntab: Buffer FTAB(item array)  (addr: 0000000021563B08, size: 24960000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0000000022D31708, size: 128000000)
    B  dbntab: Buffer IREC(hash header)  (addr: 000000002A7500D8, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 000000002A750320, size: 6240232)
    B  dbntab: Buffer IREC(item array)  (addr: 000000002AD43B08, size: 6240000)
    B  dbntab: Buffer IREC(data area)    (addr: 000000002B337208, size: 13312000)
    B  dbntab: Buffer STAB(hash header)  (addr: 000000002BFF00D8, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 000000002BFF0320, size: 6240232)
    B  dbntab: Buffer STAB(item array)  (addr: 000000002C5E3B08, size: 6240000)
    B  dbntab: Buffer STAB(data area)    (addr: 000000002CBD7208, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 00000000350400D8, size: 4744)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0000000035041360, size: 6240232)
    B  dbntab: Buffer TTAB(item array)  (addr: 0000000035634B48, size: 15600000)
    B  dbntab: Buffer TTAB(data area)    (addr: 00000000365154C8, size: 113880000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 40, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 000000002CEEEA58)
    B  dbtbxbuf: Buffer TABL  (addr: 000000003D1C0150, size: 263640000, end: 000000004CD2D510)
    B  dbtbxbuf: Buffer TABLP (addr: 000000002E780150, size: 61440000, end: 0000000032218150)
    B  dbexpbuf: Buffer EIBUF (addr: 000000004CD30158, size: 122880000, end: 0000000054260158)
    B  dbexpbuf: Buffer ESM  (addr: 0000000032230158, size: 4194304, end: 0000000032630158)
    B  dbexpbuf: Buffer CUA  (addr: 0000000054270158, size: 30720000, end: 0000000055FBC158)
    B  dbexpbuf: Buffer OTR  (addr: 0000000032640158, size: 4194304, end: 0000000032A40158)
    B  dbcalbuf: Buffer CALE  (addr: 0000000032A50050, size: 500000, end: 0000000032ACA170)
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0
    M  rdisp/hold_keeps_time_slice -> 0
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0000000010E29190
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  3 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)  = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 00000000331C00C0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 00000000331C0C58
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A
    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 50852kb, dir_size: 25348kb.
    A  Attached to PXA (address 000007FFD4080050, size 720000K, 2 fragments of 334576K )
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------
    A
    A  ABAP ShmAdm attached (addr=000007FF26F71000 leng=20955136 end=000007FF2836D000)
    A  >> Shm MMADM area (addr=000007FF2741D070 leng=246976 end=000007FF27459530)
    A  >> Shm MMDAT area (addr=000007FF2745A000 leng=15806464 end=000007FF2836D000)
    A  RFC Destination> destination clusterx64_PRD_00 host clusterx64 system PRD systnr 0 (clusterx64_PRD_00)
    A  RFC Options> H=clusterx64,S=00,d=2
    A  RFC FRFC> fallback activ but this is not a central instance.
    A  
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC abap/SIGCHILD_default not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects allocated 83148 bytes at 0000000033330050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    360000
    Y    ztta/diag_ara  250000
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\PRD\DVEBMGS00\sec): ok
    N
    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\PRD\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:640.00]):
    B    max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B    min_blocking_factor =  5,  min_in_blocking_factor      =  10,
    B    prefer_union_all    =  1,  prefer_union_for_select_all =  0,
    B    prefer_fix_blocking =  0,  prefer_in_itab_opt          =  0,
    B    convert AVG        =  1,  alias table FUPD            =  0,
    B    escape_as_literal  =  0,  opt GE LE to BETWEEN        =  0,
    B    select *            =0x00,  character encoding          = STD / []:X,
    B    use_hints          = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                          rule_fae->0, concat_fae->0, concat_fae_or->0,
    B    join_conforms_iso  =  1
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 640, [6400.0.414.20020600]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [29]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume clusterx64_PRD_00
    E  Profile-Parameter: enque/sync_dequeall = 0
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.
    S
    S Mon Mar 17 13:26:31 2014
    S  server @>SSRV:clusterx64_PRD_00@< appears or changes (state 1)
    S  server @>SSRV:clusterx64_PRD_00@< appears or changes (state 1)
    B
    B Mon Mar 17 13:26:34 2014
    B  table logging switched off for all clients
    N
    N Mon Mar 17 13:26:44 2014
    N  login/password_change_for_SSO : 1 -> 1
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 0000000005990050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 00000000059907B8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 00000000059907F0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 00000000059907FC
    M  SecAudit(check_daily_file): audit file opened D:\usr\sap\PRD\DVEBMGS00\log\20140317000001.AUD
    D
    D Mon Mar 17 13:26:51 2014
    D  GuiStatus: table test
    D  GuiStatus set generate inline  >20140317132651<
    D  GuiStatus clear generate inline  >20140317132651<
    B
    B Mon Mar 17 13:27:00 2014
    B  dbmyclu : info : my major identification is 3232240218, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my uuid is C8157D392BFA064AAC992593949203BE.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.
    G
    G Mon Mar 17 13:27:03 2014
    G  GetWritePermissionForShm( pLocation = 283, pEnforce = 0 )
    G
    G Mon Mar 17 13:27:04 2014
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    M  ThEMsgArrived: sysmsg_for_rfc = 0
    G
    G Mon Mar 17 13:27:18 2014
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    A
    A Mon Mar 17 13:31:19 2014
    A  ***ATRA: session closed by other process
    D
    D Mon Mar 17 13:35:06 2014
    D  GuiStatus generation SAPLSUU5 is not running
    Y  go to separate LUW generation ===> 20140317133506
    Y    GuiStatus generate texts: SAPLSUU5 M
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    G
    G Mon Mar 17 13:35:16 2014
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    M
    M Mon Mar 17 13:40:02 2014
    M  ThIUsrDel: th_rollback_usrdelentry = 1
    A
    A Mon Mar 17 13:44:07 2014
    A  ***ATRA: session closed by other process
    B
    B Mon Mar 17 13:46:35 2014
    B  create_con (con_name=++DBO++0020)
    B  New connection 1 created
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 1 opened (DBSL handle 1)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000001 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    S
    S Mon Mar 17 13:51:33 2014
    S  found spool memory service RSPO-ACTIONS at 00000000331C9090
    D
    D Mon Mar 17 14:05:56 2014
    D  GuiStatus generation RSSTAT26 is not running
    Y  go to separate LUW generation ===> 20140317140556
    Y    GuiStatus generate: RSSTAT26 SELECT            
    Y
    Y Mon Mar 17 14:05:57 2014
    Y  return from separate LUW <=== WP: 2 th_rc=0 OK
    Y  go to separate LUW generation ===> 20140317140557
    Y    GuiStatus generate texts: RSSTAT26 E
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    D
    D Mon Mar 17 14:06:11 2014
    D  GuiStatus generation RSSTAT50 is not running
    Y  go to separate LUW generation ===> 20140317140611
    Y    GuiStatus generate: RSSTAT50 0010              
    Y
    Y Mon Mar 17 14:06:12 2014
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    Y  go to separate LUW generation ===> 20140317140612
    Y    GuiStatus generate texts: RSSTAT50 E
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    Y
    Y Mon Mar 17 14:07:10 2014
    Y
    Y  ===> running separate LUW generation: 20140317140710
    Y    ===> requesting WP: 1
    Y    GuiStatus generate: SAPMSRD0 MAIN_NEW          
    D  GuiStatus generate status prog >SAPMSRD0< status >MAIN_NEW<  >20140317140710<
    D  GuiStatus set generate inline  >20140317140710<
    D  GuiStatus clear generate inline  >20140317140710<
    Y
    Y  ===> running separate LUW generation: 20140317140710
    Y    ===> requesting WP: 1
    Y    GuiStatus generate texts: SAPMSRD0 E
    D  GuiStatus generate texts prog >SAPMSRD0<  >20140317140710<
    D  GuiStatus set generate inline  >20140317140710<
    D  GuiStatus clear generate inline  >20140317140710<
    Y
    Y Mon Mar 17 14:23:12 2014
    Y
    Y  ===> running separate LUW generation: 20140317142312
    Y    ===> requesting WP: 1
    Y    GuiStatus generate: RSMSSDBPAHI 0100              
    D  GuiStatus generate status prog >RSMSSDBPAHI< status >0100<  >20140317142312<
    D  GuiStatus set generate inline  >20140317142312<
    D  GuiStatus clear generate inline  >20140317142312<
    B
    B Mon Mar 17 14:31:34 2014
    B  create_con (con_name=++DBO++0020)
    B  New connection 2 created
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      YES NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000016 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000017 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 143134 SAPPRDX64                  
    B
    B Mon Mar 17 14:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,17,2}
    B
    B Mon Mar 17 15:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000030 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000031 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 153136 SAPPRDX64                  
    B
    B Mon Mar 17 15:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,31,2}
    B
    B Mon Mar 17 16:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C
    C Mon Mar 17 16:31:37 2014
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000044 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000045 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 163136 SAPPRDX64                  
    B
    B Mon Mar 17 16:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,45,2}
    B
    B Mon Mar 17 17:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000058 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000059 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 173136 SAPPRDX64                  
    B
    B Mon Mar 17 17:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,59,2}
    B
    B Mon Mar 17 18:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000072 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000073 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 183136 SAPPRDX64                  
    B
    B Mon Mar 17 18:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,73,2}
    B
    B Mon Mar 17 19:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000086 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000087 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 193136 SAPPRDX64                  
    B
    B Mon Mar 17 19:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,87,2}
    B
    B Mon Mar 17 20:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000100 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000101 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 203136 SAPPRDX64                  
    B
    B Mon Mar 17 20:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,101,2}
    B
    B Mon Mar 17 21:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000116 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000117 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 213136 SAPPRDX64                  
    B
    B Mon Mar 17 21:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,117,2}
    B
    B Mon Mar 17 22:31:37 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000130 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000131 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 223137 SAPPRDX64                  
    B
    B Mon Mar 17 22:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,131,2}
    B
    B Mon Mar 17 23:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000144 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000145 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 233136 SAPPRDX64                  
    B
    B Mon Mar 17 23:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,145,2}
    M
    M Tue Mar 18 00:01:33 2014
    M  SecAudit(check_daily_file): audit file closed D:\usr\sap\PRD\DVEBMGS00\log\20140317000001.AUD
    M  SecAudit(check_daily_file): audit file opened D:\usr\sap\PRD\DVEBMGS00\log\20140318000001.AUD
    B
    B Tue Mar 18 00:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000158 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000159 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 003136 SAPPRDX64                  
    B
    B Tue Mar 18 00:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,159,2}
    B
    B Tue Mar 18 01:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000172 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000173 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 013136 SAPPRDX64                  
    B
    B Tue Mar 18 01:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,173,2}
    B
    B Tue Mar 18 02:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000186 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000187 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 023136 SAPPRDX64                  
    B
    B Tue Mar 18 02:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,187,2}
    B
    B Tue Mar 18 03:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000200 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000201 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 033136 SAPPRDX64                  
    B
    B Tue Mar 18 03:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,201,2}
    B
    B Tue Mar 18 04:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000214 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000215 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 043136 SAPPRDX64                  
    B
    B Tue Mar 18 04:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,215,2}
    B
    B Tue Mar 18 05:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000230 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000231 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 053136 SAPPRDX64                  
    B
    B Tue Mar 18 05:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,231,2}
    B
    B Tue Mar 18 06:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000244 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000245 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 063136 SAPPRDX64                  
    B
    B Tue Mar 18 06:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,245,2}
    B
    B Tue Mar 18 07:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000258 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000259 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 073136 SAPPRDX64                  
    B
    B Tue Mar 18 07:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,259,2}
    B
    B Tue Mar 18 08:31:41 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000272 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000273 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 083141 SAPPRDX64                  
    B
    B Tue Mar 18 08:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,273,2}
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1128862
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F9FG0332RSEUMODut01i1o211ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F9FG0332RSEUMODut01i1o211ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table RSEUMOD    [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  *** ERROR => missing return code handler
    abdebug#?[17989] does not handle return code 1 from dbcrtab#6[1596]
    ==> calling sap_dext to abort transaction
    [dbeh.c      84]
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1112522
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table T100      [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1112522
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table T100      [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    C  TestConnection: line 7344. hr: 0x80004005 Unable to open a logical session
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), Unable to open a logical session
    C  Procname: [TestConnection - no proc]
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [TestConnection - no proc]
    C  Rollback: TestConnection(0) failed with dbcode 10054
    C  TestConnection: line 7344. hr: 0x80004005 Unable to open a logical session
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), Unable to open a logical session
    C  Procname: [TestConnection - no proc]
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [TestConnection - no proc]
    C  Rollback: TestConnection(1) failed with dbcode 10054
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  Reconnect state is entered by connection:
    B  000: name = R/3, con_id = 000000000, state = ACTIVE      , tx = NO , hc = NO , perm = YES,
    B      reco = YES, frco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  hdl_error_on_commit_rollback: DB-ROLLBACK detected RECONNECT state
    M  ThShortCommit: db unusable
    B  RECONNECT: rsdb/reco_trials: 3
    B  RECONNECT: rsdb/reco_sleep_time: 5
    B  RECONNECT: rsdb/reco_sync_all_server: OFF
    B  db_con_reconnect: reconnecting to connection 0:
    B  000: name = R/3, con_id = 000000000, state = INACTIVE    , tx = NO , hc = NO , perm = YES,
    B      reco = YES, frco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  disconnecting from connection 0 ...
    B  disconnected from connection 0
    B  opening connection 0 ...
    C  Thread ID:3128
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  CopyLocalParameters: dbuser is 'prd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.4035.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 104 bytes, 20000 names (32960000 bytes), 1000 dynamic statements (5752000 bytes), total 38712104 bytes
    C  Using shared procedure name cache SAPPRDX64_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: prd
    C  pn_id:SAPPRDX64_PRDPRD_PRD
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000279 INACTIVE    NO  NO  NO  NO  NO  003 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000273 DISCONNECTED NO  NO  NO  NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  successfully reconnected to connection 0
    B  ***LOG BYY=> work process left reconnect status [dblink#6 @ 732] [dblink  0732 ]
    B
    B Tue Mar 18 09:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C
    C Tue Mar 18 09:31:36 2014
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000286 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000287 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 093135 SAPPRDX64                  
    B
    B Tue Mar 18 09:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,287,2}
    B
    B Tue Mar 18 10:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000300 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000301 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 103135 SAPPRDX64                  
    B
    B Tue Mar 18 10:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,301,2}
    B
    B Tue Mar 18 11:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO 

    Hi All,
    We need to activate 0SR_DEFCUR currency object. I have activated the object and transported. Issue is resolved.
    Thanks to all for your kind replied.
    Regards,
    Don

  • Error in Starting Dispatcher

    When i start my Dispatcher i am getting the following error and it is in Yellow colour. Pls help me in this
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        BW7
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        5144
    Mon Apr 23 13:25:45 2007
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 5144) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >blrkecesbibw_BW7_01                     <
    DpShMCreate: sizeof(wp_adm)          22528     (1408)
    DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1440)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 07080040, size: 4657592)
    DpShMCreate: allocated sys_adm at 07080040
    DpShMCreate: allocated wp_adm at 07081E40
    DpShMCreate: allocated tm_adm_list at 07087640
    DpShMCreate: allocated tm_adm at 07087670
    DpShMCreate: allocated wp_ca_adm at 07456910
    DpShMCreate: allocated appc_ca_adm at 0745C6D0
    DpShMCreate: allocated comm_adm at 0745E610
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 074DF4D0
    DpShMCreate: allocated gw_adm at 074DF510
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 074DF540
    DpShMCreate: allocated wall_adm at 074DF548
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 2047 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 8188
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1629
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( blrkecesbibw) [dpxxdisp.c   11586]
    DpStartStopMsg: send start message (myname is >blrkecesbibw_BW7_01                     <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Mon Apr 23 13:25:48 2007
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Mon Apr 23 13:26:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:26:45 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3764
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1713
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:27:05 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:27:25 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5504
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1719
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:27:45 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:28:05 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6008
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1730
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:28:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:28:45 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1900
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1735
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:29:05 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:29:25 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7468
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1741
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:29:45 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:30:05 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 8000
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1750
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:30:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:30:45 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7668
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1757
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:31:05 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:31:25 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3868
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1764
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:31:45 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:32:05 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6640
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1773
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:32:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN

    the following is teh Dev_wo trace file
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon Apr 23 13:51:31 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll' is "700.08", patchlevel (0.72)
    B  New connection 0 created
    M sysno      01
    M sid        BW7
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    75
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        3012
    M
    M  kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3012) [dpxxdisp.c   1299]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Mon Apr 23 13:51:32 2007
    M  DpShMCreate: sizeof(wp_adm)          22528     (1408)
    M  DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1440)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 07880040, size: 4657592)
    M  DpShMCreate: allocated sys_adm at 07880040
    M  DpShMCreate: allocated wp_adm at 07881E40
    M  DpShMCreate: allocated tm_adm_list at 07887640
    M  DpShMCreate: allocated tm_adm at 07887670
    M  DpShMCreate: allocated wp_ca_adm at 07C56910
    M  DpShMCreate: allocated appc_ca_adm at 07C5C6D0
    M  DpShMCreate: allocated comm_adm at 07C5E610
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 07CDF4D0
    M  DpShMCreate: allocated gw_adm at 07CDF510
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 07CDF540
    M  DpShMCreate: allocated wall_adm at 07CDF548
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host blrkecesbibw

    M Mon Apr 23 13:51:33 2007
    M  calling db_connect ...
    C  Thread ID:5412
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  np:(local) connection used on BLRKECESBIBW
    C  CopyLocalParameters: dbuser is 'bw7'
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.
    C  Provider Release:08.10.1830
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Cache sizes: header 68 bytes, 20000 names (31520000 bytes), 500 dynamic statements (2844000 bytes), total 34364068 bytes
    C  Using shared procedure name cache BLRKECESBIBW_BW7BW7_BW7_MEM initialized by another process.
    C  Connected to db server : [BLRKECESBIBW] server_used : [np:(local)], dbname: BW7, dbuser: bw7
    C  pn_id:BLRKECESBIBW_BW7BW7_BW7
    C  Not using MARS (on sql 8.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20070423 135133 BLRKECESBIBW   
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Mon Apr 23 13:51:35 2007
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0CD00040, size: 4400000)
    M  SHM_ROLL_AREA          (addr: A2110040, size: 143360000)
    M  SHM_PAGING_AREA          (addr: 103F0040, size: 65536000)
    M  SHM_ROLL_ADM               (addr: 0D140040, size: 1432040)
    M  SHM_PAGING_ADM          (addr: 0D2A0040, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0D330040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 0D3C0040
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 16, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 154200C8, size: 30000000, end: 170BC448)
    B  dbtbxbuf: Buffer TABLP (addr: 170C00C8, size: 10240000, end: 17A840C8)
    B  dbexpbuf: Buffer EIBUF (addr: 17A900D0, size: 4194304, end: 17E900D0)
    B  dbexpbuf: Buffer ESM   (addr: 17EA00D0, size: 4194304, end: 182A00D0)
    B  dbexpbuf: Buffer CUA   (addr: 0FC200D0, size: 3072000, end: 0FF0E0D0)
    B  dbexpbuf: Buffer OTR   (addr: 182B00D0, size: 4194304, end: 186B00D0)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 05C427B0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 1C7200A8
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 1C7204F0
    S    using messages for server info
    S  size of spec char cache entry: 297028 bytes (timeout 100 sec)
    S  size of open spool request entry: 2132 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 21 MB, reducing # of fragments
    A  System page size: 4kb, total admin_size: 11740kb, dir_size: 11676kb.
    A  Attached to PXA (address AA9E0040, size 350000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=5731C000 leng=20955136 end=58718000)
    A  >> Shm MMADM area (addr=57791EB8 leng=126176 end=577B0B98)
    A  >> Shm MMDAT area (addr=577B1000 leng=16150528 end=58718000)
    A  RFC Destination> destination blrkecesbibw_BW7_01 host blrkecesbibw system BW7 systnr 1 (blrkecesbibw_BW7_01)
    A  RFC Options> H=blrkecesbibw,S=01,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 16892 bytes at 0FF90040
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\BW7\DVEBMGS01\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\BW7\DVEBMGS01\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B     max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          = STD / []:X,
    B     use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.75.20050900]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [10]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    S Mon Apr 23 13:51:36 2007
    S  server @>SSRV:blrkecesbibw_BW7_01@< appears or changes (state 1)
    C  The IRow interface is supported by this OLEDB provider

    M Mon Apr 23 13:51:37 2007
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 06060040
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 060607A8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 060607E0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 060607EC

    B Mon Apr 23 13:51:51 2007
    B  table logging switched off for all clients

    S Mon Apr 23 13:56:51 2007
    S  found spool memory service RSPO-ACTIONS at 1C729BB8

  • Update kernel and recieved a "Machine check error"

    I was on Vacation this last weekend but was finally able to update today. Upgrade seemd fine, issued reboot command and instead of my normal reboot I was greeted with "machine check error" flashing in my upper left hand corner. Syslinux never came up. I powered off manually and pulled the battery, subsequent reboot went off without a hitch.
    pacman log
    [2013-09-09 18:12] [PACMAN] Running 'pacman -Syyu'
    [2013-09-09 18:12] [PACMAN] synchronizing package lists
    [2013-09-09 18:12] [PACMAN] starting full system upgrade
    [2013-09-09 18:13] [PACMAN] upgraded curl (7.32.0-1 -> 7.32.0-2)
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'default'
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Starting build: 3.11.0-1-ck
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'fallback'
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck-fallback.img -S autodetect
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Starting build: 3.11.0-1-ck
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck-fallback.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Thank you for using http://repo-ck.com/ for your linux-ck package needs.
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Note that the following CPU optimized packages are or could be available to you:
    [2013-09-09 18:13] [ALPM-SCRIPTLET] AMD : barcelona, bulldozer, kx, k10, piledriver
    [2013-09-09 18:13] [ALPM-SCRIPTLET] Intel : atom, core2, haswell, ivybridge, nehalem, p4, pentm, sandybridge, haswell
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Search via group name: pacman -Sg ck-ivybridge
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Post in the repo support thread if package group is unavailable for your architecture:
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> https://bbs.archlinux.org/viewtopic.php?id=111715
    [2013-09-09 18:13] [PACMAN] upgraded linux-ck-sandybridge (3.10.10-1 -> 3.11-1)
    [2013-09-09 18:13] [PACMAN] upgraded linux-ck-sandybridge-headers (3.10.10-1 -> 3.11-1)
    [2013-09-09 18:13] [ALPM-SCRIPTLET] rmmod: ERROR: Module nvidia is not currently loaded
    [2013-09-09 18:13] [ALPM-SCRIPTLET] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2013-09-09 18:13] [PACMAN] upgraded nvidia-ck (325.15-5 -> 325.15-6)
    [2013-09-09 18:13] [PACMAN] upgraded parallel (20130722-1 -> 20130822-1)
    [2013-09-09 18:13] [PACMAN] upgraded portaudio (19_20111121-1 -> 19_20111121-2)
    [2013-09-09 18:13] [PACMAN] upgraded weechat (0.4.1-2 -> 0.4.1-4)
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Linux version 3.11.0-1-ck (squishy@ease) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Sep 9 08:00:27 EDT 2013
    [ 0.000000] Command line: initrd=/initramfs-linux-ck.img root=/dev/disk/by-uuid/0d909b36-6c1e-4652-abc6-5813297f38d5 rootflags=,relatime,data=ordered rootfstype=ext4 rw quiet vga=current elevator=noop BOOT_IMAGE=/vmlinuz-linux-ck
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000bac11fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bac12000-0x00000000bad8dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8e000-0x00000000bad9bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad9c000-0x00000000bad9dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bad9e000-0x00000000bad9ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bada0000-0x00000000bade7fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bade8000-0x00000000baf2bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baf2c000-0x00000000baf91fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf92000-0x00000000baf97fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baf98000-0x00000000bafe7fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bafe8000-0x00000000baffcfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baffd000-0x00000000baffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff980000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. RC512/RC512, BIOS 06VQ.M024.20110212.SSH 02/12/2011
    [ 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 = 0x23fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 3 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 4 base 100000000 mask F00000000 write-back
    [ 0.000000] 5 base 200000000 mask FC0000000 write-back
    [ 0.000000] 6 base 23FE00000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbaffd max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fccd0-0x000fccdf] mapped at [ffff8800000fccd0]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b0d000, 0x01b0dfff] PGTABLE
    [ 0.000000] BRK [0x01b0e000, 0x01b0efff] PGTABLE
    [ 0.000000] BRK [0x01b0f000, 0x01b0ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23fc00000-0x23fdfffff]
    [ 0.000000] [mem 0x23fc00000-0x23fdfffff] page 2M
    [ 0.000000] BRK [0x01b10000, 0x01b10fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23c000000-0x23fbfffff]
    [ 0.000000] [mem 0x23c000000-0x23fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
    [ 0.000000] [mem 0x200000000-0x23bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x40200000-0xbac11fff]
    [ 0.000000] [mem 0x40200000-0xbabfffff] page 2M
    [ 0.000000] [mem 0xbac00000-0xbac11fff] page 4k
    [ 0.000000] BRK [0x01b11000, 0x01b11fff] PGTABLE
    [ 0.000000] BRK [0x01b12000, 0x01b12fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbad8e000-0xbad9bfff]
    [ 0.000000] [mem 0xbad8e000-0xbad9bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbad9e000-0xbad9ffff]
    [ 0.000000] [mem 0xbad9e000-0xbad9ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbade8000-0xbaf2bfff]
    [ 0.000000] [mem 0xbade8000-0xbaf2bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbaf92000-0xbaf97fff]
    [ 0.000000] [mem 0xbaf92000-0xbaf97fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbafe8000-0xbaffcfff]
    [ 0.000000] [mem 0xbafe8000-0xbaffcfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x1fd18000-0x1fffefff]
    [ 0.000000] ACPI: RSDP 00000000000f0430 00024 (v02 SECCSD)
    [ 0.000000] ACPI: XSDT 00000000baffee18 0006C (v01 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI: FACP 00000000baf9bd98 000F4 (v04 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20130517/tbfadt-395)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT - 0xBAFE5E40/0x00000000BAFE5D40, using 32 (20130517/tbfadt-522)
    [ 0.000000] ACPI: DSDT 00000000baf84018 0866F (v01 SECCSD LH43STAR 00000000 INTL 20091112)
    [ 0.000000] ACPI: FACS 00000000bafe5e40 00040
    [ 0.000000] ACPI: APIC 00000000baffdf18 000CC (v02 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI: HPET 00000000bafe6d18 00038 (v01 SECCSD LH43STAR 06222004 AMI. 00000003)
    [ 0.000000] ACPI: SLIC 00000000baf9cc18 00176 (v01 SECCSD LH43STAR 06222004 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000bafe6c98 0003C (v01 SECCSD LH43STAR 06222004 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000baf91018 00A1D (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf90018 00996 (v01 PmRef CpuPm 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf9a018 00D80 (v01 SgRef SgTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf98018 011E8 (v01 OptRef OptTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237400000-ffff88023f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbac11fff]
    [ 0.000000] node 0: [mem 0xbad8e000-0xbad9bfff]
    [ 0.000000] node 0: [mem 0xbad9e000-0xbad9ffff]
    [ 0.000000] node 0: [mem 0xbade8000-0xbaf2bfff]
    [ 0.000000] node 0: [mem 0xbaf92000-0xbaf97fff]
    [ 0.000000] node 0: [mem 0xbafe8000-0xbaffcfff]
    [ 0.000000] node 0: [mem 0x100000000-0x23fdfffff]
    [ 0.000000] On node 0 totalpages: 2074398
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 157 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 760193 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20472 pages used for memmap
    [ 0.000000] Normal zone: 1310208 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[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[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x08] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0a] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0c] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0d] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0e] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x0f] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbac12000-0xbad8dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbad9c000-0xbad9dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbada0000-0xbade7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf2c000-0xbaf91fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf98000-0xbafe7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaffd000-0xbaffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-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-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-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-0xff97ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff980000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffd7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-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:16 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023fa00000 s84096 r8192 d22400 u131072
    [ 0.000000] pcpu-alloc: s84096 r8192 d22400 u131072 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2041826
    [ 0.000000] Kernel command line: initrd=/initramfs-linux-ck.img root=/dev/disk/by-uuid/0d909b36-6c1e-4652-abc6-5813297f38d5 rootflags=,relatime,data=ordered rootfstype=ext4 rw quiet vga=current elevator=noop BOOT_IMAGE=/vmlinuz-linux-ck
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 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: 8071168K/8297592K available (4912K kernel code, 725K rwdata, 1676K rodata, 1104K init, 1260K bss, 226424K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:1192 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 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 1995.468 MHz processor
    [ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.22 BogoMIPS (lpj=6651560)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000051] Security Framework initialized
    [ 0.000058] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000069] Mount-cache hash table entries: 256
    [ 0.000253] Initializing cgroup subsys memory
    [ 0.000263] Initializing cgroup subsys devices
    [ 0.000265] Initializing cgroup subsys freezer
    [ 0.000267] Initializing cgroup subsys net_cls
    [ 0.000268] Initializing cgroup subsys blkio
    [ 0.000270] Initializing cgroup subsys bfqio
    [ 0.000294] CPU: Physical Processor ID: 0
    [ 0.000295] CPU: Processor Core ID: 0
    [ 0.000300] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.000303] mce: CPU supports 9 MCE banks
    [ 0.000318] CPU0: Thermal monitoring enabled (TM1)
    [ 0.000330] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    [ 0.000467] Freeing SMP alternatives memory: 20K (ffffffff819cb000 - ffffffff819d0000)
    [ 0.001938] ACPI: Core revision 20130517
    [ 0.008675] ACPI: All ACPI Tables successfully acquired
    [ 0.016462] ftrace: allocating 19779 entries in 78 pages
    [ 0.027603] Switched APIC routing to physical flat.
    [ 0.028009] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061003] smpboot: CPU0: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.061011] TSC deadline timer enabled
    [ 0.061026] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    [ 0.061034] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    [ 0.061036] ... version: 3
    [ 0.061037] ... bit width: 48
    [ 0.061038] ... generic registers: 4
    [ 0.061040] ... value mask: 0000ffffffffffff
    [ 0.061041] ... max period: 0000ffffffffffff
    [ 0.061042] ... fixed-purpose events: 3
    [ 0.061043] ... event mask: 000000070000000f
    [ 0.084503] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.071127] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7
    [ 0.164288] Brought up 8 CPUs
    [ 0.164293] smpboot: Total of 8 processors activated (31940.80 BogoMIPS)
    [ 0.172724] devtmpfs: initialized
    [ 0.174171] PM: Registering ACPI NVS region [mem 0xbaf2c000-0xbaf91fff] (417792 bytes)
    [ 0.174179] PM: Registering ACPI NVS region [mem 0xbaf98000-0xbafe7fff] (327680 bytes)
    [ 0.175128] RTC time: 1:14:39, date: 09/10/13
    [ 0.175188] NET: Registered protocol family 16
    [ 0.175350] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.175353] ACPI: bus type PCI registered
    [ 0.175355] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.175429] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.175432] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.185354] PCI: Using configuration type 1 for base access
    [ 0.186084] bio: create slab <bio-0> at 0
    [ 0.186285] ACPI: Added _OSI(Module Device)
    [ 0.186287] ACPI: Added _OSI(Processor Device)
    [ 0.186289] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.186291] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.187915] ACPI: EC: Look up EC in DSDT
    [ 0.189513] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.239236] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.241431] ACPI: SSDT 00000000badba718 00661 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.241847] ACPI: Dynamic OEM Table Load:
    [ 0.241850] ACPI: SSDT (null) 00661 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.252823] ACPI: SSDT 00000000badbba98 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.253271] ACPI: Dynamic OEM Table Load:
    [ 0.253273] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.266019] ACPI: SSDT 00000000badb9d98 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.266428] ACPI: Dynamic OEM Table Load:
    [ 0.266430] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 1.207371] ACPI: Interpreter enabled
    [ 1.207386] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 1.207404] ACPI: (supports S0 S1 S3 S4 S5)
    [ 1.207406] ACPI: Using IOAPIC for interrupt routing
    [ 1.207438] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 1.207580] ACPI: No dock devices found.
    [ 1.221274] ACPI: Power Resource [FN00] (off)
    [ 1.221369] ACPI: Power Resource [FN01] (off)
    [ 1.222064] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 1.222103] \_SB_.PCI0:_OSC invalid UUID
    [ 1.222105] _OSC request data:1 8 0
    [ 1.222659] PCI host bridge to bus 0000:00
    [ 1.222663] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 1.222665] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 1.222668] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 1.222670] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 1.222672] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 1.222674] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 1.222676] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 1.222678] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 1.222680] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 1.222682] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 1.222684] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 1.222686] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 1.222695] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 1.222797] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    [ 1.222833] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.222921] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    [ 1.222933] pci 0000:00:02.0: reg 0x10: [mem 0xf5400000-0xf57fffff 64bit]
    [ 1.222941] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 1.222951] pci 0000:00:02.0: reg 0x20: [io 0xe000-0xe03f]
    [ 1.223070] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 1.223097] pci 0000:00:16.0: reg 0x10: [mem 0xf760a000-0xf760a00f 64bit]
    [ 1.223179] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 1.223280] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 1.223304] pci 0000:00:1a.0: reg 0x10: [mem 0xf7608000-0xf76083ff]
    [ 1.223402] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 1.223495] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 1.223514] pci 0000:00:1b.0: reg 0x10: [mem 0xf7600000-0xf7603fff 64bit]
    [ 1.223588] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.223678] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 1.223764] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.223823] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 1.223866] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    [ 1.223952] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 1.224010] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 1.224050] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
    [ 1.224135] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 1.224238] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 1.224262] pci 0000:00:1d.0: reg 0x10: [mem 0xf7607000-0xf76073ff]
    [ 1.224360] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.224451] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    [ 1.224646] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    [ 1.224668] pci 0000:00:1f.2: reg 0x10: [io 0xe0b0-0xe0b7]
    [ 1.224677] pci 0000:00:1f.2: reg 0x14: [io 0xe0a0-0xe0a3]
    [ 1.224686] pci 0000:00:1f.2: reg 0x18: [io 0xe090-0xe097]
    [ 1.224695] pci 0000:00:1f.2: reg 0x1c: [io 0xe080-0xe083]
    [ 1.224704] pci 0000:00:1f.2: reg 0x20: [io 0xe060-0xe07f]
    [ 1.224714] pci 0000:00:1f.2: reg 0x24: [mem 0xf7606000-0xf76067ff]
    [ 1.224763] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.224847] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 1.224866] pci 0000:00:1f.3: reg 0x10: [mem 0xf7605000-0xf76050ff 64bit]
    [ 1.224889] pci 0000:00:1f.3: reg 0x20: [io 0xe040-0xe05f]
    [ 1.225036] pci 0000:01:00.0: [10de:0dec] type 00 class 0x030200
    [ 1.225046] pci 0000:01:00.0: reg 0x10: [mem 0xf4000000-0xf4ffffff]
    [ 1.225055] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 1.225065] pci 0000:01:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref]
    [ 1.225072] pci 0000:01:00.0: reg 0x24: [io 0xd000-0xd07f]
    [ 1.225079] pci 0000:01:00.0: reg 0x30: [mem 0xf5000000-0xf507ffff pref]
    [ 1.232978] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.232986] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.232994] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
    [ 1.233003] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.233136] pci 0000:02:00.0: [8086:0087] type 00 class 0x028000
    [ 1.233183] pci 0000:02:00.0: reg 0x10: [mem 0xf6c00000-0xf6c01fff 64bit]
    [ 1.233407] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 1.243003] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.243013] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.243022] pci 0000:00:1c.0: bridge window [mem 0xf6c00000-0xf75fffff]
    [ 1.243037] pci 0000:00:1c.0: bridge window [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.243204] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    [ 1.243274] pci 0000:03:00.0: reg 0x10: [io 0xb000-0xb0ff]
    [ 1.243396] pci 0000:03:00.0: reg 0x18: [mem 0xe2c04000-0xe2c04fff 64bit pref]
    [ 1.243467] pci 0000:03:00.0: reg 0x20: [mem 0xe2c00000-0xe2c03fff 64bit pref]
    [ 1.243797] pci 0000:03:00.0: supports D1 D2
    [ 1.243799] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.253026] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 1.253036] pci 0000:00:1c.3: bridge window [io 0xb000-0xbfff]
    [ 1.253045] pci 0000:00:1c.3: bridge window [mem 0xf6200000-0xf6bfffff]
    [ 1.253060] pci 0000:00:1c.3: bridge window [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.253163] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
    [ 1.253193] pci 0000:04:00.0: reg 0x10: [mem 0xf5800000-0xf5801fff 64bit]
    [ 1.253333] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
    [ 1.263010] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 1.263020] pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    [ 1.263029] pci 0000:00:1c.4: bridge window [mem 0xf5800000-0xf61fffff]
    [ 1.263043] pci 0000:00:1c.4: bridge window [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.263086] pci_bus 0000:00: on NUMA node 0
    [ 1.263130] \_SB_.PCI0:_OSC invalid UUID
    [ 1.263131] _OSC request data:1 1f 0
    [ 1.263135] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.263137] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.263659] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 1.263721] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 1.263779] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 1.263838] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 10 11 12 14 15)
    [ 1.263896] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 1.263956] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 1.264015] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 10 11 12 14 15)
    [ 1.264073] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 *4 5 6 10 11 12 14 15)
    [ 1.264724] ACPI: Enabled 6 GPEs in block 00 to 3F
    [ 1.264732] ACPI: \_SB_.PCI0: notify handler is installed
    [ 1.264797] Found 1 acpi root devices
    [ 1.264842] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 1.264936] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.264940] vgaarb: loaded
    [ 1.264941] vgaarb: bridge control possible 0000:00:02.0
    [ 1.264981] PCI: Using ACPI for IRQ routing
    [ 1.266623] PCI: pci_cache_line_size set to 64 bytes
    [ 1.266695] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 1.266697] e820: reserve RAM buffer [mem 0xbac12000-0xbbffffff]
    [ 1.266700] e820: reserve RAM buffer [mem 0xbad9c000-0xbbffffff]
    [ 1.266702] e820: reserve RAM buffer [mem 0xbada0000-0xbbffffff]
    [ 1.266705] e820: reserve RAM buffer [mem 0xbaf2c000-0xbbffffff]
    [ 1.266706] e820: reserve RAM buffer [mem 0xbaf98000-0xbbffffff]
    [ 1.266708] e820: reserve RAM buffer [mem 0xbaffd000-0xbbffffff]
    [ 1.266710] e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
    [ 1.266803] NetLabel: Initializing
    [ 1.266805] NetLabel: domain hash size = 128
    [ 1.266806] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.266821] NetLabel: unlabeled traffic allowed by default
    [ 1.266851] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.266857] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.268893] Switched to clocksource hpet
    [ 1.273524] pnp: PnP ACPI init
    [ 1.273541] ACPI: bus type PNP registered
    [ 1.273643] system 00:00: [io 0x06a4] has been reserved
    [ 1.273646] system 00:00: [io 0x06a0] has been reserved
    [ 1.273650] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.273660] pnp 00:01: [dma 4]
    [ 1.273681] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.273705] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.273820] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.273850] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.273897] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 1.273900] system 00:05: [io 0x1000-0x100f] has been reserved
    [ 1.273902] system 00:05: [io 0xffff] has been reserved
    [ 1.273904] system 00:05: [io 0xffff] has been reserved
    [ 1.273907] system 00:05: [io 0x0400-0x0453] could not be reserved
    [ 1.273909] system 00:05: [io 0x0458-0x047f] has been reserved
    [ 1.273911] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 1.273913] system 00:05: [io 0x0a00-0x0a03] has been reserved
    [ 1.273915] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 1.273918] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.273966] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.274009] system 00:07: [io 0x0454-0x0457] has been reserved
    [ 1.274013] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 1.274065] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.274118] pnp 00:09: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 1.274348] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.274351] system 00:0a: [mem 0xfed10000-0xfed17fff] could not be reserved
    [ 1.274353] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.274355] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.274358] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 1.274360] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.274362] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 1.274364] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 1.274367] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.274369] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.274372] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 1.274375] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.274919] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
    [ 1.274921] system 00:0b: [mem 0x40000000-0x401fffff] has been reserved
    [ 1.274924] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 1.274936] pnp: PnP ACPI: found 12 devices
    [ 1.274937] ACPI: bus type PNP unregistered
    [ 1.281089] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.281093] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.281097] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
    [ 1.281100] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.281104] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.281108] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.281114] pci 0000:00:1c.0: bridge window [mem 0xf6c00000-0xf75fffff]
    [ 1.281118] pci 0000:00:1c.0: bridge window [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.281125] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 1.281129] pci 0000:00:1c.3: bridge window [io 0xb000-0xbfff]
    [ 1.281135] pci 0000:00:1c.3: bridge window [mem 0xf6200000-0xf6bfffff]
    [ 1.281140] pci 0000:00:1c.3: bridge window [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.281147] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 1.281150] pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    [ 1.281156] pci 0000:00:1c.4: bridge window [mem 0xf5800000-0xf61fffff]
    [ 1.281161] pci 0000:00:1c.4: bridge window [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.281460] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.281462] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.281464] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.281466] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 1.281468] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 1.281470] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 1.281472] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 1.281474] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 1.281476] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 1.281478] pci_bus 0000:00: resource 13 [mem 0xbfa00000-0xfeafffff]
    [ 1.281480] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    [ 1.281482] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 1.281484] pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf50fffff]
    [ 1.281486] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.281488] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 1.281490] pci_bus 0000:02: resource 1 [mem 0xf6c00000-0xf75fffff]
    [ 1.281492] pci_bus 0000:02: resource 2 [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.281494] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 1.281496] pci_bus 0000:03: resource 1 [mem 0xf6200000-0xf6bfffff]
    [ 1.281498] pci_bus 0000:03: resource 2 [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.281500] pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    [ 1.281502] pci_bus 0000:04: resource 1 [mem 0xf5800000-0xf61fffff]
    [ 1.281504] pci_bus 0000:04: resource 2 [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.281541] NET: Registered protocol family 2
    [ 1.281696] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.281865] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.282015] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.282036] TCP: reno registered
    [ 1.282039] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.282068] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.282163] NET: Registered protocol family 1
    [ 1.282176] pci 0000:00:02.0: Boot video device
    [ 1.529060] PCI: CLS 64 bytes, default 64
    [ 1.529098] Unpacking initramfs...
    [ 1.590479] Freeing initrd memory: 2972K (ffff88001fd18000 - ffff88001ffff000)
    [ 1.591336] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.591340] software IO TLB [mem 0xb6c12000-0xbac12000] (64MB) mapped at [ffff8800b6c12000-ffff8800bac11fff]
    [ 1.591697] Scanning for low memory corruption every 60 seconds
    [ 1.592068] audit: initializing netlink socket (disabled)
    [ 1.592079] type=2000 audit(1378775680.569:1): initialized
    [ 1.605419] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.606685] zbud: loaded
    [ 1.606816] VFS: Disk quotas dquot_6.5.2
    [ 1.606867] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.607049] msgmni has been set to 15769
    [ 1.607262] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.607320] io scheduler noop registered (default)
    [ 1.607324] io scheduler deadline registered
    [ 1.607360] io scheduler cfq registered
    [ 1.607365] io scheduler bfq registered
    [ 1.607452] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 1.607633] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.607648] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.607731] intel_idle: MWAIT substates: 0x21120
    [ 1.607733] intel_idle: v0.4 model 0x2A
    [ 1.607734] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.607793] GHES: HEST is not enabled!
    [ 1.607848] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.608292] Linux agpgart interface v0.103
    [ 1.608376] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PSM1] at 0x60,0x64 irq 1,12
    [ 1.611674] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.611689] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.611796] mousedev: PS/2 mouse device common for all mice
    [ 1.611968] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 1.611998] rtc_cmos 00:06: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.612007] Intel P-state driver initializing.
    [ 1.612017] Intel pstate controlling: cpu 0
    [ 1.612032] Intel pstate controlling: cpu 1
    [ 1.612043] Intel pstate controlling: cpu 2
    [ 1.612054] Intel pstate controlling: cpu 3
    [ 1.612065] Intel pstate controlling: cpu 4
    [ 1.612076] Intel pstate controlling: cpu 5
    [ 1.612089] Intel pstate controlling: cpu 6
    [ 1.612100] Intel pstate controlling: cpu 7
    [ 1.612312] cpuidle: using governor ladder
    [ 1.612573] cpuidle: using governor menu
    [ 1.612636] drop_monitor: Initializing network drop monitor service
    [ 1.612712] TCP: cubic registered
    [ 1.612809] NET: Registered protocol family 10
    [ 1.612992] NET: Registered protocol family 17
    [ 1.613001] Key type dns_resolver registered
    [ 1.613275] PM: Hibernation image not present or could not be loaded.
    [ 1.613285] registered taskstats version 1
    [ 1.613900] Magic number: 13:40:205
    [ 1.613944] acpi device:2d: hash matches
    [ 1.613991] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.614015] rtc_cmos 00:06: setting system clock to 2013-09-10 01:14:41 UTC (1378775681)
    [ 1.614893] Freeing unused kernel memory: 1104K (ffffffff818b7000 - ffffffff819cb000)
    [ 1.614895] Write protecting the kernel read-only data: 8192k
    [ 1.619318] Freeing unused kernel memory: 1220K (ffff8800014cf000 - ffff880001600000)
    [ 1.620313] Freeing unused kernel memory: 372K (ffff8800017a3000 - ffff880001800000)
    [ 1.620314] BFS CPU scheduler v0.441 by Con Kolivas.
    [ 1.627488] systemd-udevd[77]: starting version 204
    [ 1.629471] SCSI subsystem initialized
    [ 1.630602] ACPI: bus type ATA registered
    [ 1.630697] libata version 3.00 loaded.
    [ 1.631357] ahci 0000:00:1f.2: version 3.0
    [ 1.631500] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 1.642171] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0WARNINGx5 impl SATA mode
    [ 1.642175] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
    [ 1.642181] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.649744] scsi0 : ahciWARNING
    [ 1.650013] scsi1 : ahci
    [ 1.650141] scsi2 : ahci
    [ 1.650269] scsi3 : ahci
    [ 1.650401] scsi4 : ahci
    [ 1.650493] scsi5 : ahci
    [ 1.650686] ata1: SATA max UDMA/133 abar m2048@0xf7606000 port 0xf7606100 irq 41
    [ 1.650690] ata2: DUMMY
    [ 1.650694] ata3: SATA max UDMA/133 abar m2048@0xf7606000 port 0xf7606200 irq 41
    [ 1.650696] ata4: DUMMY
    [ 1.650698] ata5: DUMMY
    [ 1.650700] ata6: DUMMY
    [ 1.968795] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.968841] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.969674] ata1.00: ATA-9: M4-CT256M4SSD2, 010G, max UDMA/100
    [ 1.969683] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.970728] ata1.00: configured for UDMA/100
    [ 1.970980] scsi 0:0:0:0: Direct-Access ATA M4-CT256M4SSD2 010G PQ: 0 ANSI: 5
    [ 1.971592] ata3.00: ATAPI: TSSTcorp DVDWBD TS-LB23A, SC01, max UDMA/100
    [ 1.972317] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 1.972530] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.972535] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.972581] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.972980] ata3.00: configured for UDMA/100
    [ 1.974516] sda: sda1 sda2 sda3 sda4 sda5 sda6
    [ 1.975127] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.976456] scsi 2:0:0:0: CD-ROM TSSTcorp DVDWBD TS-LB23A SC01 PQ: 0 ANSI: 5
    [ 1.979211] ACPI: bus type USB registered
    [ 1.979276] usbcore: registered new interface driver usbfs
    [ 1.979339] usbcore: registered new interface driver hub
    [ 1.979451] usbcore: registered new device driver usb
    [ 1.980016] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.980024] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    [ 1.980224] xhci_hcd 0000:04:00.0: irq 42 for MSI/MSI-X
    [ 1.980231] xhci_hcd 0000:04:00.0: irq 43 for MSI/MSI-X
    [ 1.980237] xhci_hcd 0000:04:00.0: irq 44 for MSI/MSI-X
    [ 1.980244] xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 1.980251] xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
    [ 1.980257] xhci_hcd 0000:04:00.0: irq 47 for MSI/MSI-X
    [ 1.980264] xhci_hcd 0000:04:00.0: irq 48 for MSI/MSI-X
    [ 1.980271] xhci_hcd 0000:04:00.0: irq 49 for MSI/MSI-X
    [ 1.980520] xHCI xhci_add_endpoint called for root hub
    [ 1.980523] xHCI xhci_check_bandwidth called for root hub
    [ 1.980554] hub 1-0:1.0: USB hub found
    [ 1.980561] hub 1-0:1.0: 2 ports detected
    [ 1.980645] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.980666] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    [ 1.983135] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.983140] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.983305] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 1.983767] xHCI xhci_add_endpoint called for root hub
    [ 1.983769] xHCI xhci_check_bandwidth called for root hub
    [ 1.983799] hub 2-0:1.0: USB hub found
    [ 1.983808] hub 2-0:1.0: 2 ports detected
    [ 2.042830] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.075045] ehci-pci: EHCI PCI platform driver
    [ 2.075169] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 2.075177] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 2.075185] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 2.075200] ehci-pci 0000:00:1a.0: debug port 2
    [ 2.079109] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 2.079130] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7608000
    [ 2.088648] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 2.089496] hub 3-0:1.0: USB hub found
    [ 2.089505] hub 3-0:1.0: 2 ports detected
    [ 2.089935] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 2.089946] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 2.089954] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 2.089976] ehci-pci 0000:00:1d.0: debug port 2
    [ 2.093871] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 2.093888] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7607000
    [ 2.101986] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 2.102116] hub 4-0:1.0: USB hub found
    [ 2.102121] hub 4-0:1.0: 2 ports detected
    [ 2.134853] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 2.199793] systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.201658] systemd[1]: Set hostname to <watson>.
    [ 2.268492] 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.
    [ 2.268851] systemd[1]: Starting Collect Read-Ahead Data...
    [ 2.269341] systemd[1]: Starting Replay Read-Ahead Data...
    [ 2.269709] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 2.269820] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 2.269852] systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    [ 2.269873] systemd[1]: Starting Syslog Socket.
    [ 2.269927] systemd[1]: Listening on Syslog Socket.
    [ 2.269946] systemd[1]: Starting Remote File Systems.
    [ 2.269961] systemd[1]: Reached target Remote File Systems.
    [ 2.269975] systemd[1]: Starting Delayed Shutdown Socket.
    [ 2.270017] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 2.270038] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 2.270074] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 2.270088] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 2.270126] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 2.270140] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 2.270168] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 2.270210] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 2.270352] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 2.270370] systemd[1]: Starting Encrypted Volumes.
    [ 2.270384] systemd[1]: Reached target Encrypted Volumes.
    [ 2.270402] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 2.270449] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 2.270464] systemd[1]: Starting Paths.
    [ 2.270478] systemd[1]: Reached target Paths.
    [ 2.270494] systemd[1]: Starting Journal Socket.
    [ 2.270543] systemd[1]: Listening on Journal Socket.
    [ 2.270567] systemd[1]: Mounting POSIX Message Queue File System...
    [ 2.270849] systemd[1]: Mounting Debug File System...
    [ 2.271238] systemd[1]: Starting Create static device nodes in /dev...
    [ 2.271494] systemd-readahead[136]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 2.271888] systemd[1]: Starting Journal Service...
    [ 2.272443] systemd[1]: Started Journal Service.
    [ 2.272532] systemd[1]: Mounting Huge Pages File System...
    [ 2.273048] systemd[1]: Starting udev Kernel Socket.
    [ 2.273080] systemd[1]: Listening on udev Kernel Socket.
    [ 2.273155] systemd[1]: Starting udev Control Socket.
    [ 2.273189] systemd[1]: Listening on udev Control Socket.
    [ 2.273294] systemd[1]: Starting udev Coldplug all Devices...
    [ 2.273733] systemd[1]: Starting Swap.
    [ 2.273754] systemd[1]: Reached target Swap.
    [ 2.273772] systemd[1]: Expecting device dev-disk-by\x2duuid-06ee03bc\x2dca64\x2d406d\x2dbe45\x2db2b645137e08.device...
    [ 2.273786] systemd[1]: Expecting device dev-disk-by\x2duuid-5aedfe61\x2d50f2\x2d47c7\x2d82ac\x2d79930ee37462.device...
    [ 2.294504] systemd-sysctl[154]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 2.298123] EXT4-fs (sda5): re-mounted. Opts: discard
    [ 2.306988] systemd-udevd[161]: starting version 204
    [ 2.330645] FS-Cache: Loaded
    [ 2.344801] ACPI: Requesting acpi_cpufreq
    [ 2.345279] wmi: Mapper loaded
    [ 2.345847] RPC: Registered named UNIX socket transport module.
    [ 2.345849] RPC: Registered udp transport module.
    [ 2.345850] RPC: Registered tcp transport module.
    [ 2.345851] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 2.355607] FS-Cache: Netfs 'nfs' registered for caching
    [ 2.358082] ACPI: Battery Slot [BAT1] (battery present)
    [ 2.358579] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 2.358604] ACPI: Lid Switch [LID0]
    [ 2.359113] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 2.359119] ACPI: Power Button [PWRB]
    [ 2.359456] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 2.359461] ACPI: Sleep Button [SLPB]
    [ 2.359772] ACPI: AC Adapter [ADP1] (off-line)
    [ 2.360090] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 2.360096] ACPI: Power Button [PWRF]
    [ 2.374300] ACPI: Fan [FAN0] (off)
    [ 2.374551] ACPI: Fan [FAN1] (off)
    [ 2.375124] ACPI: Invalid active2 threshold
    [ 2.377341] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 2.377349] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377354] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377358] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377362] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377364] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377368] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377372] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377373] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377377] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377381] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377383] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.378357] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.378361] ACPI: Thermal Zone [TZ00] (52 C)
    [ 2.383745] ACPI Warning: 0x000000000000e040-0x000000000000e05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 2.383753] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.383911] mei_me 0000:00:16.0: setting latency timer to 64
    [ 2.383955] mei_me 0000:00:16.0: irq 50 for MSI/MSI-X
    [ 2.386775] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 2.388164] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 2.388178] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 2.388494] r8169 0000:03:00.0: irq 51 for MSI/MSI-X
    [ 2.392549] r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xffffc90004622000, e8:11:32:25:4e:78, XID 0c200000 IRQ 51
    [ 2.392554] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 2.394650] cfg80211: Calling CRDA to update world regulatory domain
    [ 2.395234] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 2.396342] [drm] Initialized drm 1.1.0 20060810
    [ 2.397019] thermal LNXTHERM:01: registered as thermal_zone1
    [ 2.397023] ACPI: Thermal Zone [TZ01] (52 C)
    [ 2.403428] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 2.403432] Copyright(c) 2003-2013 Intel Corporation
    [ 2.403550] iwlwifi 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 2.403625] iwlwifi 0000:02:00.0: irq 52 for MSI/MSI-X
    [ 2.413574] iwlwifi 0000:02:00.0: loaded firmware version 41.28.5.1 build 33926 op_mode iwldvm
    [ 2.414850] snd_hda_intel 0000:00:1b.0: irq 53 for MSI/MSI-X
    [ 2.459516] samsung_laptop: detected SABI interface: SwSmi@
    [ 2.459520] samsung_laptop: Backlight controlled by ACPI video driver
    [ 2.475073] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 2.475258] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 2.475342] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 2.479302] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 2.479307] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 2.479310] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 2.479312] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
    [ 2.479315] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN, REV=0x84
    [ 2.479382] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 2.486443] [drm] Memory usable by graphics device = 2048M
    [ 2.486454] i915 0000:00:02.0: setting latency timer to 64
    [ 2.510361] iTCO_vendor_support: vendor-support=0
    [ 2.510974] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 2.511063] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 2.511169] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 2.515715] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 2.522955] hub 3-1:1.0: USB hub found
    [ 2.523029] hub 3-1:1.0: 6 ports detected
    [ 2.552940] i915 0000:00:02.0: irq 54 for MSI/MSI-X
    [ 2.552952] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.552953] [drm] Driver supports precise vblank timestamp query.
    [ 2.552974] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.553071] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.554259] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.582133] [drm] Wrong MCH_SSKPD value: 0x17050407
    [ 2.582136] [drm] This can cause pipe underruns and display issues.
    [ 2.582137] [drm] Please upgrade your BIOS to fix this.
    [ 2.591839] tsc: Refined TSC clocksource calibration: 1995.467 MHz
    [ 2.597052] fbcon: inteldrmfb (fb0) is primary device
    [ 2.631810] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 2.691536] EXT4-fs (sda3): mounting ext2 file system using the ext4 subsystem
    [ 2.697765] EXT4-fs (sda3): mounted filesystem without journal. Opts: (null)
    [ 2.708392] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: discard
    [ 2.726771] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 2.732165] systemd-logind[678]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 2.732251] systemd-logind[678]: Watching system buttons on /dev/input/event2 (Power Button)
    [ 2.732373] systemd-logind[678]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 2.732460] systemd-logind[678]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 2.733090] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 2.755620] hub 4-1:1.0: USB hub found
    [ 2.755733] hub 4-1:1.0: 6 ports detected
    [ 2.821911] usb 3-1.4: new high-speed USB device number 3 using ehci-pci
    [ 3.108586] usb 4-1.3: new high-speed USB device number 3 using ehci-pci
    [ 3.308514] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 3.322812] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x15, 0x0c.
    [ 3.395720] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input9
    [ 3.568352] Console: switching to colour frame buffer device 170x48
    [ 3.574903] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 3.574905] i915 0000:00:02.0: registered panic notifier
    [ 3.575357] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 3.593033] Switched to clocksource tsc
    [ 3.594635] media: Linux media interface: v0.10
    [ 3.601441] Linux video capture interface: v2.00
    [ 3.607344] uvcvideo: Found UVC 1.00 device WebCam SCB-1110M (1210:0909)
    [ 3.612805] input: WebCam SCB-1110M as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input10
    [ 3.612886] usbcore: registered new interface driver uvcvideo
    [ 3.612889] USB Video Class driver (1.1.1)
    [ 3.624759] acpi device:47: registered as cooling_device10
    [ 3.628631] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 3.628749] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:45/LNXVIDEO:00/input/input11
    [ 3.631116] acpi device:51: registered as cooling_device11
    [ 3.631300] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 3.631373] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input12
    [ 3.631455] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 3.645951] i2400m_usb 4-1.3:1.0: WiMAX interface wmx0 (64:d4:da:24:b5:c0) ready
    [ 3.653985] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.654187] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
    [ 3.874277] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.874474] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
    [ 3.963960] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 4.328298] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 7.107250] i2400m_usb 4-1.3:1.0: firmware interface version 9.3.2
    [ 7.117012] usbcore: registered new interface driver i2400m_usb
    [ 7.141746] wlan0: authenticate with 00:22:6b:70:c5:e9
    [ 7.151167] wlan0: send auth to 00:22:6b:70:c5:e9 (try 1/3)
    [ 7.197933] wlan0: authenticated
    [ 7.200356] wlan0: associate with 00:22:6b:70:c5:e9 (try 1/3)
    [ 7.201891] wlan0: RX AssocResp from 00:22:6b:70:c5:e9 (capab=0x11 status=0 aid=2)
    [ 7.205520] wlan0: associated
    [ 7.205524] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 16.681425] bbswitch: version 0.7
    [ 16.681440] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 16.681445] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 16.681454] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 16.681520] bbswitch: detected an Optimus _DSM function
    [ 16.681556] bbswitch: disabling discrete graphics
    [ 16.681559] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 16.711802] pci 0000:01:00.0: power state changed by ACPI to D3cold
    [ 16.711812] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is off
    [ 41.636100] fuse init (API version 7.22)
    [ 440.485588] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 440.507912] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 453.967678] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 453.984936] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    I have never seen this error and my googlefu return issues with overclocking which I am not doing. Any info on the subject I'd love to hear.
    Cheers.
    EDIT: Was only happening when issuing 'systemctl reboot' so I switched back to 3.10.10-1-ARCH and reboot command now works.
    Last edited by doug piston (2013-09-10 02:05:56)

    Well, I can tell you that this kind of error is not OS related, but rather a HW thing.  It happens where there is a general detection of something going wrong.  Sometimes it can happen randomly and might not be an indication of a problem.  But sometimes it can be caused by things that are improperly functioning within the system like bad capacitors. 
    Unfortunately I don't really know what to do about such things except give you machine a proper inspection.  But if things are working fine, and continue to do so, I wouldn't worry about it.  If it becomes a regular occurance, then I'd worry.

  • Sap-nw:3300 not reached error in gateway

    Dear experts,
    I am facing a strange problem after a successful installation of netweaver Java+abap.
    when i start the server i found this error
    **** ERROR file opened at 20100131 114242 Arab Standard T, SAP-REL 700,0,113 RFC-VER 3 911150 MT-SL
    T:2844 Error in program 'igsmux': ======> CPIC-CALL: 'SAP_CMNOREGTP'
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner 'sap-nw:3300' not reached
    TIME        Sun Jan 31 11:42:42 2010
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2770
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     1
    i ignore the error and i tried to login
    after successful login to the portal server when i access the user administration tab. the explorer show
    SAP WebAS Engine is starting...
    If this state does not change within a few minutes,
    please contact your system administrator.
    Check the recommendations in SAP Notes: 943498, 764417
    Message: Dispatcher running but no server connected!
    and the server turns to yellow again when it turns to green again
    i checked dev_rd
    Sun Jan 31 13:11:15 2010
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 9 / sock 268
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1205) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 304
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1148) [nixxi.cpp    4424]
    ***LOG S23=> GwIDisconnectClient, client disconnected (006) [gwxxrd.c     11592]
    ***LOG S74=> GwIDisconnectClient, client disconnected ( sap-nw) [gwxxrd.c     11603]
    ***LOG S0R=> GwIDisconnectClient, client disconnected () [gwxxrd.c     11638]
    ***LOG S0I=> GwIDisconnectClient, client disconnected ( jlaunch) [gwxxrd.c     11651]
    *  LOCATION    SAP-Gateway on host sap-nw / sapgw00
    *  ERROR       connection to partner 'sap-nw:1148' broken
    *  TIME        Sun Jan 31 13:11:15 2010
    *  RELEASE     700
    *  COMPONENT   NI (network interface)
    *  VERSION     38
    *  RC          -6
    *  MODULE      nixxi.cpp
    *  LINE        4424
    *  DETAIL      NiIRead
    *  SYSTEM CALL recv
    *  ERRNO       10054
    *  ERRNO TEXT  WSAECONNRESET: Connection reset by peer
    *  COUNTER     232
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 10 / sock 256
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1206) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 11 / sock 244
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1208) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 12 / sock 232
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1207) [nixxi.cpp    4424]
    then i try to login again with the browser it give me
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 01:27_31/01/10_6192950
    See the details for the exception ID in the log file.
    any help would be appreciated
    <br>
    i also wanted to add that telnet 3300 works fine ping to host name is ok
    my os win2003 sap 2004s sr3
    Edited by: ebrahime on Jan 31, 2010 11:37 AM

    thanks for your reply. i wanted to add 2 thing after the installation the password i entered in installation was not working  for all the super users that is why i had to delete SAP* from database and change the j2ee_Admin password.
    you mentioned that the java stack is unable to communicate with abap stack but i can login to portal by j2ee_admin user. but when i go to identity management then it give the error i gave you earlier.
    any way the dev_w0 file contents is bellow
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Tue Feb 02 10:23:01 2010
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\ENP\DVEBMGS00\exe\dbdb6slib.dll' ...
    B  Library 'F:\usr\sap\ENP\DVEBMGS00\exe\dbdb6slib.dll' loaded
    B  Version of 'F:\usr\sap\ENP\DVEBMGS00\exe\dbdb6slib.dll' is "700.08", patchlevel (0.144)
    C  DbSl trace SM50: switch request to level 1
    B  New connection 0 created
    M sysno      00
    M sid        ENP
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    144
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        1604
    M
    M  kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1604) [dpxxdisp.c   1305]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          25168     (1480)
    M  DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1864)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 0000000010E70050, size: 6348592)
    M  DpShMCreate: allocated sys_adm at 0000000010E70050
    M  DpShMCreate: allocated wp_adm at 0000000010E72150
    M  DpShMCreate: allocated tm_adm_list at 0000000010E783A0
    M  DpShMCreate: allocated tm_adm at 0000000010E78400
    M  DpShMCreate: allocated wp_ca_adm at 00000000113DC2A0
    M  DpShMCreate: allocated appc_ca_adm at 00000000113E2060
    M  DpShMCreate: allocated comm_adm at 00000000113E3FA0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000001146AC30
    M  DpShMCreate: allocated gw_adm at 000000001146ACB0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000001146ACE0
    M  DpShMCreate: allocated wall_adm at 000000001146ACF0
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Tue Feb 02 10:23:02 2010
    M  ThInit: running on host ENP

    M Tue Feb 02 10:23:03 2010
    M  calling db_connect ...
    C  Registering callback for dynamic profile parameters
    C  DB2 library successfully loaded DB2 library 'F:\usr\sap\ENP\DVEBMGS00\exe/db6_clidriver\bin\db2app64.dll' successfully loaded

    C  DB6 (DB2 UDB) UNICODE database interface 700.08 [opt]

    C  DB6 shared library (dbdb6slib) patchlevels
    C    (0.8) DB6: V8.2.2 optguidelines in OPEN SQL (note 150037)
    C    (0.8) Support of SDBUPDEXCL (note 847616)
    C    (0.9) DB6: use export file for dbdb6slib (note 835135)
    C    (0.9) DB6: Core in getAndBindSQLDA (note 833183)
    C    (0.10) DB6: link dbdb6slib.dll on windows with libdb6.obj (note 761159)
    C    (0.10) DB6: DUPLICATE_KEY on MERGE -> repeat (note 851474)
    C    (0.15) DB6: wrong CAST for short string ABAP type (note 861905)
    C    (0.17) DB6: special characters in sidadm passwd (note 865839)
    C    (0.21) DB6: no SAP_INFO comments (note 873889)
    C    (0.22) DB6: hints: get correlation names from view texts (note 868888)
    C    (0.23) DB6: hints: get correlation names from view texts (note 868888)
    C    (0.26) DB6: DB6_DBSL_CLP_COMMAND STRING_BAD_REF (note 883402)
    C    (0.27) DB6: activate value compression (note 886231)
    C    (0.28) DB6: optimization guidelines on views part 2 (note 868888)
    C    (0.30) DB6: no SQL trace for SQLCancel (note 892111)
    C    (0.33) DB6: append SAP_TA comment (note 873889)
    C    (0.34) DB6: activate value compression with quoted names (note 886231)
    C    (0.36) DB6: Repeat isolated DDL statements after SQL0911 (note 901338)
    C    (0.41) DB6: add V9 to list of supported DB2 releases (note 912386)
    C    (0.50) DB6: reread passwords for secondary connections (note 931742)
    C    (0.52) DB6: double quote table names in optguidelines (note 868888)
    C    (0.54) DB6: error handling in DBSL CLP (note 940260)
    C    (0.69) DB6: technical support of DB2 CLI driver (note 962892)
    C    (0.73) DB6: log table name on TRUNCATE failure (note 970743)
    C    (0.79) DB6: column type XML in index size calculation (note 982993)
    C    (0.82) DB6: CAST for SSTRING data types (note 989568)
    C    (0.86) DB6: long runtimes for R3szchk (note 1000847)
    C    (0.88) DB6: patch collection Dec 06 (note 1005574)
    C    (0.96) DB6: patch collection Jan 07 (note 1017852)
    C    (0.97) DB6: CLP commands with DB2 CLI Driver (note 1024102)
    C    (0.99) DB6: SUBSTITUTE VALUES with FAE statements (note 1028779)
    C    (0.107) DB6: patch collection Apr 07 (note 1047194)
    C    (0.110) DB6: SAP user names ending with non-ASCII char (note 1054555)
    C    (0.113) DB6: work process type in application snapshot (note 1059905)
    C    (0.114) DB6: connect using SAPDBHOST and DB2DB6_SVCENAME (note 1062049)
    C    (0.117) DB6: patch for execution of long DDL statements (note 1069658)
    C    (0.122) DB6: SNAPSHOT_TBS_CFG table function is deprecated (note 1077963)
    C    (0.123) DB6: CLP commands on Windows with V9.1 (note 1080149)
    C    (0.124) DB6: Set DB2CODEPAGE=819 for non-Unicode (note 1084400)
    C    (0.126) DB6: reuse optguidelines on FAE statements (note 1087375)
    C    (0.126) DB6: Enforce DB2CODEPAGE=819 for non-Unicode environments (note 1084400)
    C    (0.128) DB6: db6_free on invalid memory area (note 1092030)
    C    (0.133) DB6: statement cache enhancements (note 1101031)
    C    (0.136) DB6: change for enhancement pack installer (note 1111536)
    C    (0.138) DB6: improoved table size estimate for DB8 V8 (note 1119934)
    C    (0.144) I5/OS ldappasswd support for 5250 terminal. (note 1129573)
    C    (0.144) MSSQL: ODBC fastload on separate connection (note 1131805)

    C  Supported features:

    C  ..retrieving configuration parameters
    C  ..done
    C  Running with UTF-8 Unicode

    C Tue Feb 02 10:23:04 2010
    C  Running with CLI driver
    C  DB2 client driver version '09.01.0007'
    C  Connected to DB2 server type 'DB2/NT64'
    C  Connected to DB2 version '09.01.0007'
    C  Connect to 'ENP' as 'SAPENP' schema 'SAPENP' o.k.; con_hdl=0
    C  Database code page is ok.
    C  Database collating sequence is ok.
    C  DB2_WORKLOAD=SAP is set in DB2 registry as required.
    C  CLI Insert Buffering is disabled on single partition databases.
    C  DbSl trace SM50: switch request to level 1
    C  DbSlControl: returning SAPDBHOST='ENP'
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100202 102303 ENP            
    C  DbSlControl: returning SAPDBHOST='ENP'
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Tue Feb 02 10:23:05 2010
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0000000015400050, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 000007FFDDA80050, size: 268435456)
    M  SHM_PAGING_AREA          (addr: 0000000015840050, size: 134217728)
    M  SHM_ROLL_ADM               (addr: 000000001D850050, size: 2678942)
    M  SHM_PAGING_ADM          (addr: 000000001DAE0050, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 000000001DB70050
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 000000000AE50050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 17, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 0000000021540160, size: 30000000, end: 00000000231DC4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 00000000231E0160, size: 10240000, end: 0000000023BA4160)
    B  dbexpbuf: Buffer EIBUF (addr: 0000000023BC0170, size: 4194304, end: 0000000023FC0170)
    B  dbexpbuf: Buffer ESM   (addr: 0000000023FD0170, size: 4194304, end: 00000000243D0170)
    B  dbexpbuf: Buffer CUA   (addr: 00000000243E0170, size: 3072000, end: 00000000246CE170)
    B  dbexpbuf: Buffer OTR   (addr: 00000000246D0170, size: 4194304, end: 0000000024AD0170)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000128BEA10
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 000000002DDF00D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 000000002DDF0610
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2272 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 11460kb, dir_size: 11392kb.
    A  Attached to PXA (address 000007FFEDAB0050, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=000007FF35ED5000 leng=20955136 end=000007FF372D1000)
    A  >> Shm MMADM area (addr=000007FF363AEF10 leng=244096 end=000007FF363EA890)
    A  >> Shm MMDAT area (addr=000007FF363EB000 leng=15622144 end=000007FF372D1000)
    A  RFC Destination> destination ENP_ENP_00 host ENP system ENP systnr 0 (ENP_ENP_00)
    A  RFC Options> H=ENP,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 35354 bytes at 000000002DF60050
    N  SsfSapSecin: putenv(SECUDIR=F:\usr\sap\ENP\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is F:\usr\sap\ENP\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...completed with return code 5.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [DB6:700.08]):
    B     max_blocking_factor =  30,  max_in_blocking_factor      =  60,
    B     min_blocking_factor =   1,  min_in_blocking_factor      =   1,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x0f,  character encoding          = STD / <none>:-,
    B     use_hints           = abap->1, dbif->0x3, upto->2147483647, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.144.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [16]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  VSI: WP init in ABAP VM completed with rc=0
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume ENP_ENP_00
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    M Tue Feb 02 10:23:06 2010
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 000000000A960050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 000000000A9607C0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 000000000A960800
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 000000000A96080C

    M Tue Feb 02 10:23:28 2010
    M  rdisp/rb_cleaned_rfc = 0

    A Tue Feb 02 10:23:34 2010
    A  RFC FRFC> fallback on the central gateway ENP sapgw00 activ

Maybe you are looking for

  • Sudden stop in hotsync from Z22 to Mac OS 10.5.4

    I have a palm z22 that I connect to my Mac (OS 10.5.4) with a USB chord. It has suddenly stopped connecting when I try to use hotsync. I've tried rebooting the palm, and using am alternative USB chord for the palm z22 known to work. Any ideas on what

  • How to find function code for Dynamic generated program

    Hi, I have created a dynamic program for getting different selection screens depending on inputs . I am finding a flaw that, pressing 'BACK' buttn is leading some other action which was coded by me,  instead of going back. SY-UCOMM is also not workin

  • Base 64 Encode/Decode

    I consider sending clear text problematic when the data ends up as XML information. Converting the text Strings to Base 64 between PHP and Flex 2 (or anything else and Flex 2) eliminates issues with character text like <> and &'s. I've done a lot of

  • PR number range after MRP is not triggered

    Dear gurus,               My MM consultant needs a seperate number range for Purchase Requsition during the MRP Run.I have configured  in Plant Parameters number range for PR and also since we are using the MRP Group.I have configured the purchasing

  • Error message on E3500

    Can anyone tell what does this error message means? Thanks for any feedback at all... Feb 18 11:17:55 oracle unix: WARNING: /sbus@2,0/QLGC,isp@2,10000/sd@5,1 (sd178):^M^M Feb 18 11:17:55 oracle unix:      Error for Command: read(10) Error Level: Retr