HWIC-2FE fails to pass ping packets greater than 449 in slots 0,1 on 3845

When we install an HWIC-2FE card in slot 0 or slot 1 of a 3845, the interface fails to pass any ping packet greater in size than 449 bytes.  It works fine up until that limit is reached, but then fails completely on a larger size packet.  If we move to slot 3 or slot 4 on the 3845, the card works just fine!  I have looked through the cisco official bug tracker for HWIC-2FE, but could not find a similar symptom listed.  We're running advanced ip services 12.4(24)T7 code on the routers.  We're wondering if anyone else has encountered similar problems and may know if there's a software fix or if this is a platform problem with the 3800 series.  Thank you for your time.

I'd be tempted to accept your response, but it doesn't explain why the card works when moved to another slot, without making any other changes.  My impression is there's some kind of hardware/asic problem with those slots in the 3845.

Similar Messages

  • MP4 encodes fail when output size is greater than 4GB, AME CC 2014.2 (8.2.054)

    I have a jpeg image sequence about 45 min long at 30fps.
    Using AME CC (7.2.2.29) I can successfully encode to MP4, CBR at 18 Mbps. File size is about 5.53 GB.
    Using AME CC 2014.2 (8.2.054), with the identical preset (migrated directly from previous AME), the resulting file is unplayable.
    AME CC 2014 gives following warning at the end of the encode:
    - Source File: /Volumes/LS-GRAID-8TB-1/DDL_video/Output/1_Frames/2_Current/102-204-C01-CallanderVeryGold _16bit/102-204-C01-CallanderVeryGold_16bit_[00000-82441].jpg
    - Output File: /Volumes/LS-GRAID-8TB-1/DDL_video/Output/2_Encode/1_Review/102-204-C01-CallanderVeryGold_ 16bit.mp4
    - Preset Used: DDL-MP4-CBR18
    - Video: 1920x1080 (1.0), 30 fps, Progressive, 00:45:48:02
    - Audio:
    - Bitrate: CBR, Target 18.00 Mbps
    - Encoding Time: 00:55:28
    01/19/2015 03:33:17 PM : File Encoded with warning
    Adobe Media Encoder
    Could not write XMP data in output file.
    When I either reduce the bit rate OR reduce the work area, so that the final output file is under 4GB  (or more specifically, under approximately 4,096,000,000 bytes), I do not get the XMP warning, and the final file is playable.
    Again, please note that the previous version of AME CC does not have this problem when using an identical preset on identical source, so it does not seem to be a problem with the source frames or the output format chosen, it seems to be an issue with the current build of AME.
    Is there a solution to this issue?
    thanks

    I have had the exact same problem, I am now trying to encode with audio. ( I also did not need audio ).
    My file size and bit rate is a little higher . and using VBR not CBR but it is a mp4 encode and exact same problem, unplayable.
    I am now trying an encode with audio on at lowest possible rate, to see if it assembles the video correctly.
    I can confirm the work around, With AUDIO on, the export works.
    BTW: also tried the sequence directly in Premiere 2014.2 and same error.
    -----:LOG:-----
    03/06/2015 08:19:46 AM : Queue Started
    - Source File:Adobe Premier Edit_1.prproj
    - Output File: FullRez1080_59.94fps_VBR10-50_noAudio.mp4
    - Preset Used: Custom
    - Video: 1920x1080 (1.0), 59.94 fps, Progressive, 02;53;33;46
    - Audio:
    - Bitrate: VBR, 1 pass, Target 10.00 Mbps, Max 50.00 Mbps
    - Encoding Time: 03:40:33
    03/06/2015 12:00:19 PM : File Encoded with warning
    Adobe Media Encoder
    Could not write XMP data in output file.
    03/06/2015 10:12:51 PM : Queue Started
    - Source File: Adobe Premier Edit_6.prproj
    - Output File:FullRez1080_59.94fps_VBR_20-50.mp4
    - Preset Used: Custom
    - Video: 1920x1080 (1.0), 59.94 fps, Progressive, 02;53;33;14
    - Audio: AAC, 16 kbps, 8 kHz, Mono
    - Bitrate: VBR, 1 pass, Target 20.00 Mbps, Max 50.00 Mbps
    - Encoding Time: 05:11:45
    03/07/2015 03:24:36 AM : File Successfully Encoded
    Machine:
    Mac Pro 6,1
    12-Core Intel Xeon E5
    64GB RAM

  • How many vlan can be created on single port of HWIC-2FE

    Hi Guys,
    I have a router 1921 with a HWIC-2FE.
    How many VLAN can I create in each port of HWIC-2FE.  
    Thank you
    Salvo

    I'm not sure what you are referring to. How many VLANs can be untagged while the port is in access? Or how many VLANs can you pass on a trunk?

  • Script fails when passing values from pl/sql to unix variable

    Script fails when passing values from pl/sql to unix variable
    Dear All,
    I am Automating STATSPACK reporting by modifying the sprepins.sql script.
    Using DBMS_JOB I take the snap of the database and at the end of the day the cron job creates the statspack report and emails it to me.
    I am storing the snapshot ids in the database and when running the report picking up the recent ids(begin snap and end snap).
    From the sprepins.sql script
    variable bid number;
    variable eid number;
    begin
    select begin_snap into :bid from db_snap;
    select end_snap into :eid from db_snap;
    end;
    This fails with the following error:
    DB Name DB Id Instance Inst Num Release Cluster Host
    RDMDEVL 3576140228 RDMDEVL 1 9.2.0.4.0 NO ibm-rdm
    :ela := ;
    ERROR at line 4:
    ORA-06550: line 4, column 17:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string> pipe
    The symbol "null" was substituted for ";" to continue.
    ORA-06550: line 6, column 16:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev su
    But when I change the select statements below the report runs successfully.
    variable bid number;
    variable eid number;
    begin
    select '46' into :bid from db_snap;
    select '47' into :eid from db_snap;
    end;
    Even changing the select statements to:
    select TO_CHAR(begin_snap) into :bid from db_snap;
    select TO_CHAR(end_snap) into :eid from db_snap;
    Does not help.
    Please Help.
    TIA,
    Nischal

    Hi,
    could it be the begin_ and end_ Colums of your query?
    Seems SQL*PLUS hs parsing problems?
    try to fetch another column from that table
    and see if the error raises again.
    Karl

  • Passing variable of size greater than 32767 from Pro*C to PL/SQL procedure

    Hi,
    I am trying to pass a variable os size greater than 32767 from Pro*C to an SQL procedure.I tried assigning the host variable directly to a CLOB in the SQL section but nothing happens.In the below code the size of l_var1 is 33000.PROC_DATA is a procedure that takes CLOB as input and gives the other three(Data,Err_Code,Err_Msg) as output.These variables are declared globally.
    Process_Data(char* l_var1)
    EXEC SQL EXECUTE
    DECLARE
    l_clob clob;
    BEGIN
    l_clob := :l_var1
    PROC_DATA(l_clob,:Data,:Err_Code,:Err_Msg) ;
    COMMIT;
    END;
    END-EXEC;
    I also tried using DBMS_LOB.This was the code that i used.
    Process_Data(char* l_var1)
    EXEC SQL EXECUTE
    DECLARE
    l_clob clob;
    BEGIN
    DBMS_LOB.CREATETEMPORARY(l_clob,TRUE);
    DBMS_LOB.OPEN(l_clob,dbms_lob.lob_readwrite);
    DBMS_LOB.WRITE (l_clob, LENGTH (:l_var1), 1,:l_var1);
    PROC_DATA(l_clob,:Data,:Err_Code,:Err_Msg) ;
    COMMIT;
    END;
    END-EXEC;
    Here since DBMS_LOB packages allow a maximum of 32767,the value of l_var1 is not being assigned to l_clob.
    I am able to do the above process provided i split l_var1 into two variables and then append to l_clob using WRITEAPPEND.i.e l_var1 is 32000 in length and l_var2 contains the rest.
    Process_Data(char* l_var1,char* l_var2)
    EXEC SQL EXECUTE
    DECLARE
    l_clob clob;
    BEGIN
    dbms_lob.createtemporary(l_clob,TRUE);
    dbms_lob.OPEN(l_clob,dbms_lob.lob_readwrite);
    DBMS_LOB.WRITE (l_clob, LENGTH (:l_var1), 1,:l_var1);
    DBMS_LOB.WRITEAPPEND (l_clob, LENGTH(:l_var2), :l_var2);
    PROC_DATA(l_clob,:Data,:Err_Code,:Err_Msg) ;
    COMMIT;
    END;
    END-EXEC;
    But the above code requires dynamic memory allocation in Pro*C which i would like to avoid.Could you let me know if there is any other way to perform the above?

    Hi,
    The Long Datatype has been deprecated use Clob or Blob. This will solve lot of problems inherent with the datatype.
    Regards,
    Ganesh R

  • PUT Blobs of size greater than 5.5MB fail with HTTPS but not HTTP

    I have written a Cygwin app that uploads (using the REST API PUT operation) Block Blobs to my Azure storage account, and it works well for different size blobs when using HTTP. However, use of SSL (i.e. PUT using HTTPS) fails for Blobs greater than 5.5MB.
    Blobs less than 5.5MB upload correctly. Anything greater and I find that the TCP session (as seen by Wireshark) reports a dwindling window size that goes to 0 once the aforementioned number of bytes have been transferred. The failure is very repeatable and
    consistent. As a point of reference,  PUT operations against my Google/AWS/HP accounts work fine when using HTTPS for various object sizes, which suggests my problem is not in my client but specific to the HTTPS implementation on the MSAZURE storage servers. 
    If I upload the 5.5MB blob as two separate uploads of 4MB and 1.5MB followed by a PUT Block List, the operation succeeds as long as the two uploads used
    separate HTTPS sessions. Notice the emphasis on separate. That same operation fails if I attempt to maintain an HTTPS session across both uploads. This is another data point that seems to suggest that the Storage
    server has a problem 
    Any ideas on why I might be seeing this odd behavior that appears very specific to MS Azure HTTPS, but is not seen when used against AWS/Google/HP cloud storage servers?

    Hi,
    I'm getting this problem also when trying to upload blobs > 5.5mb using the Azure PHP SDK with HTTPS.
    There is no way I can find to get a blob > 5.5mb to upload, unless you use http, rather than https, which is not a good solution.
    I've written my own scripts to use the HTTP_Request2 library, to send the request as a test, and it fails with that also when using the 'socket' method.
    However, if I write a script using the PHP Curl extension directly, then it works fine, and blobs > 5.5mb get uploaded.
    It seems to be irrelevant which method is used, uploading in 1 go, or using smaller chunks, the PHP SDK seems broken.
    Also, I think I've found another bug in the SDK, when you do the smaller chunks, the assigning of the BlockID is not correct.
    In: WindowsAzure/Blob/BlobRestProxy.php
    Line: $block->setBlockId(base64_encode(str_pad($counter++, '0', 6)));
    That is incorrect usage of the str_pad function, and if you upload a huge blob that needs splitting, then the blockIDs will after a while become a different length and therefore fail.
    It should be: str_pad($counter++, 6, '0',STR_PAD_LEFT);
    I also think there is 1 too many base64_encodes() in there, as I think its being done twice, once in that line, and then again within the createBlobBlock() just before the send() for a 2nd time.
    Can someone please advice, when this/these bug(s) will be fixed in the PHP SDK, as at the moment its useless to me as I cant upload things securely.

  • KQL query using "Greater Than" fails

    I have developed a CSOM app that does a KQL query against several managed properties. One of these properties is numeric (mapped to RefinableDouble01), so I have a greater than (>) comparison in the query string:
         RefinableDouble01>41.12345
    I developed the app in Office 365 and when I run the query there, it works fine (no errors).  However, when I run it to our internal SharePoint 2013 site, it fails with the error:
         "We didn't understand your search terms. Make sure they're using proper syntax."
    As far as I can tell, the configuration of the internal site matches the Office 365 site.
    If I use a query on a text property, so that I don't use the greater than comparison, that query works. The query results from that query also show that the managed property RefinableDouble01 is properly mapped and returns the expected numeric value.
    Does anyone know what the problem is? I'm wondering if the KQL query functionality is not properly set up in our internal site, but that is not an area that I am familiar with.
    Bob Feldman

    Here is more information, from the ULS Log file, regarding the error:
    06/27/2014 11:05:13.47  NodeRunnerQuery1-d8a6a564-7b37- (0x0BA4) 0x0DC4 Search                         Query Processing             
     aizc0 High     Microsoft.Office.Server.Search.Query.Ims.ImsQueryInternal : New request: Query text 'RefinableDouble01>41.12345', Query template ''; HiddenConstraints: ; SiteSubscriptionId: 00000000-0000-0000-0000-000000000000 fa039f9c-0884-60df-c11a-64f9b09837c4
    06/27/2014 11:05:13.48  NodeRunnerQuery1-d8a6a564-7b37- (0x0BA4) 0x0DC4 Search                         Query Processing             
     aizgn Medium   Microsoft.Office.Server.Search.Query.Pipeline.Executors.QueryPipelineHardWiredFlowExecutor : (FlowExecutor)eventSearchFlowDone: d8a6a564-7b37-4815-a35f-f97acc0d6cba, RefinableDouble01>41.12345, Microsoft.ProductivitySearchFlow,
    0, SPWFEAPP, Error=Exception occurred due to some other exception fa039f9c-0884-60df-c11a-64f9b09837c4 fa039f9c-0884-60df-c11a-64f9b09837c4
    06/27/2014 11:05:13.48  NodeRunner.exe (0x0BA4)                  0x0DC4 SharePoint Server Search       Query                        
     aisyt High     ExecuteFlowInternal FlowExecutor:Microsoft.ProductivitySearchFlow Exception: Microsoft.Ceres.Evaluation.DataModel.CommonEvaluationException: Exception occurred due to some other exception ---> Microsoft.Office.Server.Search.Query.QueryMalformedException:
    Query 'RefinableDouble01>41.12345' failed: syntax error at position 0, The operation is illegal for the given property, property expression: RefinableDouble01>41.8882213637562     --- End of inner exception stack trace ---    
    at Microsoft.Office.Server.Search.Query.Pipeline.Processing.KeywordQueryParserEvaluator.KeywordQueryParserProducer.ParseKeywordQuery(String queryText, ParsingContext parsingContext, Boolean debugMode, String& searchTerms)     at Microsoft.Office.Server.Search.Query.Pipeline.Processing.KeywordQueryParserEvalua... fa039f9c-0884-60df-c11a-64f9b09837c4
    06/27/2014 11:05:13.48  w3wp.exe (0x196C)                        0x41B0 SharePoint Server Search       Query                        
     dk68 High     SearchServiceApplication::Execute--Exception: Microsoft.Office.Server.Search.Query.QueryMalformedException: We didn't understand your search terms. Make sure they're using proper syntax. ---> System.ServiceModel.FaultException`1[Microsoft.Office.Server.Search.Administration.SearchServiceApplicationFault]:
    Query 'RefinableDouble01>41.12345' failed: syntax error at position 0, The operation is illegal for the given property, property expression: RefinableDouble01>41.8882213637562    Server stack trace:      at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime
    operation, ProxyRpc& rpc)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at ... fa039f9c-0884-60df-c11a-64f9b09837c4

  • Trying To Insert XML String Greater Than 4000 Characters in PHP Fails

    Dear Sir,
    Subject:-Trying To Insert XML String Greater Than 4000 Characters in PHP Fails ORA-01704.
    In an attempt to design web app in PHP and inserting data into "CLOB" field of "articles" table associated with it, returning ORA-01704: string literal too long error.
    Platform: OEL5
    Database 11g(11.0.7.0)
    php : 5.2
    I refer to oracle document ID: [ID 336888.1] it is asking to contact support.
    Please help us in this regards.
    Many Thanks,
    mkyazdani

    Hi,
    I appreciate you, yes it is similar i have referred that manual and also inform to our php developer about the changes we need to make in our php script.
    Regards,
    mkyazdani

  • Processddx difficulty w/ certain pdfs; failed: start page is greater than end page

    I have encountered some problems using the cfpdf processddx action with certain pdfs. Some PDFs work with my code and some don't. Upon a failure, the dump of my output named var indicates the following:
    PDFOUT
    failed: start page is greater than end page
    Does anyone have an idea what is happening and why? How can I resolve?
    All I can conclude from my debugging is that files generated with the cf_html2pdf custom tag seem to alway fail an produce this error.
    Here's the code I'm running:
    <h1>getPDFInfo.cfm</h1>
    <cfif IsDDX("getInfo.ddx")>
    <!--- This code creates a structure for the input files. --->
    <cfset inputStruct=StructNew()>
    <cfset inputStruct.PDFIn="inputFile5.pdf">
    <!--- This code creates a structure for the output file. --->
    <cfset outputStruct=StructNew()>
    <cfset outputStruct.PDFOut="Result#RandRange(0, 555)#.xml">
    <!--- This code processes the DDX instructions --->
    <cfpdf action="processddx" ddxfile="getInfo.ddx" inputfiles="#inputStruct#"
        outputfiles="#outputStruct#" name="info">
    <cfdump var="#info#">
    <cfelse>
    DDX is bad
    </cfif>
    and my ddx file simply reads:
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ns.adobe.com/DDX/1.0/ coldfusion_ddx.xsd">
    <DocumentInformation result="PDFOut" source="PDFIn" />
    </DDX>
    Thanks much,
    Ian

    I have encountered some problems using the cfpdf processddx action with certain pdfs. Some PDFs work with my code and some don't. Upon a failure, the dump of my output named var indicates the following:
    PDFOUT
    failed: start page is greater than end page
    Does anyone have an idea what is happening and why? How can I resolve?
    All I can conclude from my debugging is that files generated with the cf_html2pdf custom tag seem to alway fail an produce this error.
    Here's the code I'm running:
    <h1>getPDFInfo.cfm</h1>
    <cfif IsDDX("getInfo.ddx")>
    <!--- This code creates a structure for the input files. --->
    <cfset inputStruct=StructNew()>
    <cfset inputStruct.PDFIn="inputFile5.pdf">
    <!--- This code creates a structure for the output file. --->
    <cfset outputStruct=StructNew()>
    <cfset outputStruct.PDFOut="Result#RandRange(0, 555)#.xml">
    <!--- This code processes the DDX instructions --->
    <cfpdf action="processddx" ddxfile="getInfo.ddx" inputfiles="#inputStruct#"
        outputfiles="#outputStruct#" name="info">
    <cfdump var="#info#">
    <cfelse>
    DDX is bad
    </cfif>
    and my ddx file simply reads:
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ns.adobe.com/DDX/1.0/ coldfusion_ddx.xsd">
    <DocumentInformation result="PDFOut" source="PDFIn" />
    </DDX>
    Thanks much,
    Ian

  • "Returned mail: Message failed to pass through virus scanner"

    We have a large number of this mail (see below) on our OCS1 cause by virus like MyDoom:
    From: "Mail Delivery Subsystem" <[email protected]>
    To: [email protected]
    Mime-Version: 1.0
    Content-Type: multipart/report;
         report-type=delivery-status; BOUNDARY="----ORCL_ES6_BOUNCE_1095724----"
    Date: Fri, 22 Oct 2004 09:52:32 +0200
    Subject: Returned mail: Message failed to pass through virus scanner
    ------ORCL_ES6_BOUNCE_1095724----
    Content-Type: text/plain
    The original message was received at Fri, 22 Oct 2004 09:51:21 +0200
    from <[email protected]>
    ----- The following addresses had delivery problems -----
    <[email protected]> (unrecoverable error)
    ----- Transcript of session follows -----
    Message failed to pass through virus scanner
    ------ORCL_ES6_BOUNCE_1095724----
    content-type: message/delivery-status
    Reporting-MTA: dns; maildb.italtbs.com
    Final-Recipient: rfc822;[email protected]
    Action: failed
    Status: 5.7.7
    Diagnostic-Code: smtp; Message failed to pass through virus scanner
    ------ORCL_ES6_BOUNCE_1095724----
    Content-Type: message/rfc822
    Return-Path: <[email protected]>
    Received: from mailas.italtbs.com by maildb.italtbs.com
         with ESMTP id 10957241098431481; Fri, 22 Oct 2004 09:51:21 +0200
    Received: from italtbs.com
         by mailas.italtbs.com with SMTP id i9M7pJJ06571
         for <[email protected]>; Fri, 22 Oct 2004 09:51:19 +0200
    Message-Id: <[email protected]>
    From: [email protected]
    To: [email protected]
    Subject: Found
    Date: Fri, 22 Oct 2004 09:50:40 +0200
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_NextPart_000_0007_0000355F.0000439E"
    X-Priority: 3
    X-MSMail-Priority: Normal
    ------ORCL_ES6_BOUNCE_1095724------
    On MAILAS.italtbs.com are installed infrastructure, sendmail and Symantec Scan Engine.
    On MAILDB.italtbs.com are installed storage database and midtier.
    Can I stop this useless messagges?
    Thanks and regard
    Matteo

    Are you still unable to send email?  What client are you using?  Do you see your job represented on ePrintCenter?
    Although I am an HP employee, I am speaking for myself and not for HP

  • 1841 SEC K9 with HWIC-2FE

    Hi!
    Is it possible to use the HWIC-2FE module into the 1841 SEC/K9 bundle? Using the online Cisco Dynamic config tool, HWIC-2FE is not listed as an option when you select the 1841. Does it mean that this configuration won't work? Thanks very much for your help!

    Unfortunately the 1841 does not support the HWIC-2FE module. It only supports the HWIC-1FE module. See attached link for more details -
    http://www.cisco.com/en/US/docs/routers/access/interfaces/ic/hardware/installation/guide/fe_hwic.html#wp1049748
    Jon

  • Failed to log accounting packet to any logging destination

    Does anybody knows the explanation of the expresion: "failed to log accounting packet to any logging destination"
    Any reference to documentation, internet links, etc. helpful to understand if i have a problem or not would be very grateful.
    (I have running acs 4.1 in a windows server)
    Thanks
    pere

    Sounds like the CSLog service is broken or you're using remote logging and it couldn't reach any of the remote servers.
    CSLog has a number of plug-in "targets" eg CSV, remote agent, ODBC etc. If it doesnt achieve at least one success it will generate the error you are seeing.
    In short your log data is going into a black hole never to be seen again.

  • CRS-1 ping packet loss

    Hi everyone,
    CRS1 IOS-XR 3.8  when i try to ping packet option and got packet loss as below and don't sure that XR limit for ping or not?
    RP/0/RP0/CPU0:#ping 10.0.0.1 size 3000 count 1000   (ping to outside switch 3750)
    Mon Oct  8 10:12:34.582 THAI
    Type escape sequence to abort.
    Sending 1000, 3000-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
    if i user size 1500 don't have packet losss.
    Can anyone explanation to me?
    Thanks alot.
    Kodos.

    Hello,
    Above result is PING from CRS-1 to another switch, we try to vary packet size and found that if its size greather than 2800 then we always get 4 packets loss from 1000.
    Can you please advice?
    Thanks,
    Rojarek

  • UPLOAD OF ATTACHMENT FILES GREATER THAN 100KB FAILS

    Attachment/Upload file is failing if the file is more than 50KB. The version i am using is 11.5.8 on Sun solaris. Any ideas???

    mlfedv,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • The code segment cannot be greater than or equal to 64K. - Windows 8

    Hello,
    I am having an issue on some windows 8 systems, a crash occurs in NtSetEvent, the exception thrown is "0x000000C8: The code segment cannot be greater than or equal to 64K.".
    This crash only occurs on Windows 8.
    The callstack doesn't help much
        KERNELBASE.dll!_RaiseException@16()    Unknown
        ntdll.dll!_NtSetEvent@8()    Unknown
        kernel32.dll!@BaseThreadInitThunk@12()    Unknown
        ntdll.dll!__RtlUserThreadStart()    Unknown
        ntdll.dll!__RtlUserThreadStart@8()    Unknown
    Could it be a bug within windows 8 ? If not what steps should I take to find the cause of this crash ?
    Thank you,
    Max

    I have a feeling like you have corrupted something.  Likely by stomping on memory due to a bug in your program such as a buffer overrun or use of a deleted object in C++.
    Although you may have incurred corruption to your registry through a variety of means, not limited to bad disk drives, or the unintentional write of bad data due to a bug in your program, if you are experiencing this on multiple systems, then registry corruption
    is less likely.  Which brings me back to the idea that you have a bug in your code that has trashed memory somehow.
    The stack traces and error codes do not indicate the cause of the problem.
    What does your program do??
    Without seeing at least some of the code, or knowing how big the scope of the code is, it's not useful for me to start guessing specifics of what may have happened.  But since you're not disclosing anything at all about your code apart from your exception,
    I'm forced to do some guesswork and just give general advice.
    Here are some easy classical strategies for locating the cause of the problem:
    Build your code in debug mode and run your code in the debugger.  (Yes, some people need to be told this.)
    Bisect the problem through revision control.  Back up to when the problem didn't happen and find the last revision that causes the problem.  (If you're not using a revision control system, start now.)
    Bisect the problem by eliminating chunks of code.  Trim out functionality until the problem goes away.
    Write unit tests.  Test the various pieces of your program to eliminate bugs.  At the very least, make use of assertions.
    Have a look at what your program is DOING when the crash happens.  Certainly there must be a cause.  Try to isolate the problem by associating it with a certain activity in your program.  Gate off functionality by introducing places where
    your program waits before proceeding.  At some point, you'll pass a point where the error can now occur.
    Run code analysis on your project and see if it comes up with any possible culprits.
    Don't ignore compiler warnings, they often indicate something that can turn into a bigger problem.  Compile at the highest warning level.
    Look at your usage of various API functions for logical mistakes.  Here are some examples:
    When using third party libraries or SDKs, have you initialized libraries appropriately?  Have you called all the appropriate initialization functions and used the APIs as intended?  Read documentation and make sure you are using calls appropriately.
    For functions that take a HANDLE, such as SetEvent, are you passing a valid handle?  Have you closed the handle but kept the old handle value around?
    When storing pointers to objects, have you accidentally deleted an object but kept its pointer around, only to make use of the pointer at a later time in your program?  This is particularly harmful when performing a write operation as you can corrupt
    just about anything.
    Are you using variables without giving them an initial value?  You may get unexpected values for variables if you do not initialize them.  This is particularly important for stack variables.
    When using arrays or string buffers, have you allocated enough storage for the bytes you are writing?  C++ doesn't detect reading or writing with an invalid array index as a problem.  It happily reads or writes past the end of your intended
    storage.  Such offences are called "buffer overruns".
    When multi-threading, are you taking steps to ensure data integrity?  Unsynchronized access to data from multiple threads is a notorious cause of strange and difficult to reproduce bugs.  Your data passes through states that you may not expect
    that can be observed by unsynchronized threads.  Use locking mechanisms appropriately and marshal your data diligently.
    Are you relying on valid input from an external source beyond your control such as a network client, database, or file?  Diligently validate all input that comes from an external source.  Be prepared for any situation that you can't control at
    compile time.
    Are you ignoring error codes?  Some functions may fail, but you may be assuming they have succeeded and then gone on to use invalid data.
    Look for mathematical errors.  Calculation of indices of arrays are a notorious culprit.  Beware of off by one errors.  Indices start at zero and go up to N-1, where N is the number of elements in the array.
    Beware of sentinel values.  Some functions such as "IndexOf" will return an index of -1 when not found and can result in a miscalculation of an actual index.
    Are you making use of
    RAII techniques in your code?  Failing to correctly allocate and deallocate resources can cause problems.
    Are you making use of unsafe casts?  C-Style casts say "I know what I'm doing", and you can get into dangerous situations.  Prefer static_cast<> over a C-Style cast wherever possible.
    Also look at your project settings for problems
    Have you accidentally mixed incompatible compiler settings between components?
    Approach debugging with an open mind.  Mark Twain said, "It ain't what you don't know that gets you into trouble. It's what you know for sure that just ain't so."

Maybe you are looking for

  • K7N2 Delta-L - RADEON 9800SE AiW Power Up Problem

    SYSTEM: K7N2 Delta-L ( BIOS updated to w6570nms.560 - v5.6 ) AMD 2600XP 512MB Crucial RAM Adaptec SCSI 39160 Sapphire Radeon 9800SE AiW Antec 480W True Power PSU   +5V ( 0A - 38A )   +12V ( 0.8A - 22A )   +3.3V 0A - 30A ) PROBLEM: I've just got the R

  • Can not get my wireless to work for windows

    Just bought a new macbook pro 15 and used bootcamp to install windows 7 pro. Now I can not get any internet, wired or wireless. Is there any drives I can install to solve this problem?

  • How to add shared services in Safari

    I ran Onyx to rebuild the LaunchServices in /Maintenance/Rebuilding. After restarting the Mac I discovered that the Share button in Safari now shows "No Service". Prior to that I had services like Evernote, Facebook, Twitter and maybe some others tha

  • Where do I find the newest version of the Blend software for PC?

    I updated the Blend app on my Passport and now it won't connect to my PC.  It says I need to update the software on the computer, but when I go to http://ca.blackberry.com/software/desktop/blackberry-blend.html# and click Download Blackberry Blend fo

  • Automatic transcode settings can't close DVD image in standard 4,7gb size

    So I have this feature film of a marriage 1h30m long that Encore refuses to generate an ISO of standard DVD size. The point is, for some reason this project in particular is generating a 6gb image, in the settings that even 2h10m fits standard DVD si