Big problem using 512x4 dimm w/ Neo 2 (Venice core). At impasse, need advice.

Sorry for the semi-lengthly post but Im at the end of my rope here. Here's my issue.
I have a Venice core and recently added a new pair of 512 x 2 to my system. Same exact set of G. Skill DDR 400 dual channel to go with the original 512 pair Ive had. Running @ 2T w/ default SPD (200mhz 2-3-3-6) I tested Memtest 86+ over 50 passes with all four banks filled, as well as isolating the new pair by themselves for 12 hours which tested flawlessly as well. I also ran all four sticks overclocked (216mhz DDR 433) with 2.5-3-3-7 timings which passed both Memtest and Prime 95 for 10+ hours respectively with no error. Everything seems to be in shape.
Now my problem. I keep getting a nasty lock up every time I run Battlefield 2, the whole system becomes completely frozen and its followed by a nasty buzzing noise in my headphones. The timing of it varies greatly. Most often its been after 5 to 15 minutes of play but most recently its been locking up as soon as the server menu updates for some reason, without even loading up the actual game! I tried different drivers and reinstalled the game to no avail. Im pretty sure its directly related to the 512 x 4 configuration as going back to 512 x 2 the game runs without any trouble.
The very first time the game locked up Event Viewer said I had NFTS corruption as a result of the error. I ran chkdisk and some 3rd party diagnostic tools but nothing turned up faulty. Thinking perhaps it was a voltage issue I upped the memory to 2.75 v, yet the next freeze resulted in a BSoD. It said "Page  Fault in Non Paged Area". Google brings up a ton of different results for that one so Im not sure what to make of it. Event Viewer called it category 102  event 1003.
I flashed the BIOS to 1.9 to make sure that wasn't the issue (it wasn't). Ive tried a lot of different settings in the Cell menu with timings, mhz and voltage. The longest without error (over 30 minutes before it finally froze) was at the default SPD w/ 2.65v. It always fails eventually though. No other game or application has given me a problem with all four sticks running at once. The thing is BF2 is probably the only app I have that actually uses over a  gig of ram at one time though, so its hard for me to be sure its only a BF2 issue at this point.
I could really use some advice here as Im pretty much stuck at this point. If everything checks out in Memtest, would the next suspect be a power supply or motherboard issue? My PSU is a high quality PC Power and Cooling 470w but its gives me some funny sensor readings I have to admit. I never thought anything  of them before since everything was stable until adding the ram but now Im wary. Everest diagnostic tool and the BIOS both report very different voltages, for example Everest says the 3.3 rail is only 3.07 v right now, whereas the BIOS says its at @ 3.15. Everest says the 12v rail is spot on @ 11.98 whereas the BIOS says its at 11.67 (yikes). Both agree the 5v rail is roughly 4.9 give or take. Im not sure if either one is right though, like I said this is the first time Ive had stability issues like this and before the ram Ive had my system overclocked and stable.

Thanks Bejon, Ill run it down 1 by 1.
Quote
- Do you get lockup´s running BF2 at cpu stock speed ? ( not talking about prime or memtest now. Your signature says OC from stock 2,2Ghz to 2,6Ghz which would mean something like 11x237, your post says memtest/prime 11x216 )
Yes, I still experience the BF2 lock up using stock setting for everything (CPU, multi, FSB, ram mhz, ram timing, voltage etc). I must've confused you with the 216 number, sorry about that. I meant to say my OC is 10x260 fsb using a 166 memory divider, which= 216 mhz for the ram (or DDR 433). This passed memtest and Prime 95 as well as stock, but BF2 still locked up with this setting. So basically overclocked or not, using divider or not... I still get the lockup.
Quote
- Did you actually test the 77.76 driver ( not just any differant driver ?)
Yes, tried drivers from the 72 set, 76, and the latest 77.77.
Quote
- Did your experiment with vcore, meaning for example startup 1.425v and cpu voltage +3,3% - still running at stock speed./ Maybe even try 1.6v for AGP.
1.425v +3.3% is exactly what I use for my overclock CPU setting and neither that nor the stock voltage make any difference. For some reason lowering RAM voltage to default (2.65v) seemed to result in going longer without error. I almost made it past 40 minutes thinking I solved the problem with this voltage but it finally caved in again.
Quote
- Did you install any patches ?
Yes BF2 is up to date.
Quote
- Another thing to check is if your Audio / LAN / VGA have some kind of IRQ or driver conflict.
I checked and it turns out I do have an IRQ with two assignments on it. IRQ 21 has both Nvidia Network Bus Enumerator and Standard Dual Channel PCI IDE Controller assigned to it. I have no idea what this means though, perhaps someone can shed light if its a potential root of the problem.
Also whats confusing me is the fact that sometimes when BF2 locks up with 512 x 4 it happens just loading up the server menu, not even loading game data into ram yet!
Quote
I ask these specified questions because I´m running BF2 flawless on another Neo2 system without any hickups with bios 1.8 and a Winchester+Venice stock speed 4 x 512 RAM (3-4-4-8 )and a 6600GT.
Thats kinda surprising to me with a Winchester because from what I understood only Venice/San Diego had the memory controller capable of running 512x4 @ 400+ mhz DDR. Sounds like you got a great chip!
Well thanks for your kind feedback Bejon, sorry if I came off a little snappy before. Im just very frustrated right now. Im going to try and reformat tomorrow just in case its somehow OS/IRQ related. If that doesn't work then Im really stuck. Also if someone can point me in the right direction in how to test my PSU for errors/bad rails Id really appreciate it.

Similar Messages

  • Big big problems using Generics, BeanInfo and Introspector

    I'm having a big big problem with Introspector class. Let me setup the problem:
    public interface VO<T, V> {
      public T getOid();
      public void setOid(T oid);
      public V getVersion();
      public void setVersion(V version);
    public interface CarVO extends VO<Long, Integer> {
      public String getPlate();
      public void setPlate(String plate);
    public class CarVOImpl implements CarVO {
      private Long oid;
      private Integer version;
      private String plate;
      public Long getOid() { return this.oid; }
      public void setOid(Long oid) { this.oid = oid; }
      public String getPlate() { return this.plate; }
      public void setPlate(String plate) { this.plate = plate; }
      public Integer getVersion() { return this.version; }
      public void setVersion(Integer version) { this.version = version; }
    public class Cool {
      public static void main(String[] args) {
        try {
          CarVO vo = new CarVOImpl();
          PropertyDescriptor[] properties = Introspector.getBeanInfo(vo.getClass()).getPropertyDescriptors();
          for (int i = 0; i < properties.length; i++) {
            System.out.println("Name " + properties.getName());
    System.out.println("PropertyType " + properties[i].getPropertyType());
    } catch (Exception e) { e.printStackTrace(); }
    Well. This code is 100% alright, compilation OK. In runtime, no matter what I do, inverting the generic types, modifying interfaces, whatever, the property with the first generic type defined (in this example, oid) will be wrong resolved to java.lang.Object, instead the correct java.lang.Long.
    Name oid
    PropertyType class java.lang.ObjectAltering the order of the getter and setter in the source code seems to affect the result of Introspector!!! (ahhhhhhh)
    This is probably a damm bug of Introspector class, that is private of Sun. Any idea to correct this problem?

    Hi,
    JSF 1.1 doesn't coexist nicely with HTML components.
    So if your goal is to build layouts in HTML then this
    will not produce the result you want
    Skins in 10.1.3 are slightly different than in 11
    (selectors may have changed their names). If you need
    to specify the class property to make skins work then
    this indicates that the skin selectors you use are
    not the correct ones.
    FrankHi Frank,
    thank you for your help, I'm replacing every html component with adf one, panelGroup, panelHorizontal, panelBorder, objectImage etc... etc... but I have a problem...
    I need to put an object component about Macromedia Flash and I cannot find any adf component to replace it. Any idea please?
    Thank you again.
    Ciao.
    Ricky

  • Big problem using cd drive

    hello!
    (sorry if my english is bad, I am a russian guy)
    some time ago I faced a problem using my cd drive (I have an oldie iMac and mac os 9.2.2).
    every time I was feeding a cd to the drive, this computer was telling me something like "cannot intialize the disk"
    then I looked through "mac help" and found out, that I have no "high sierra access " file from "extensions" folder.
    And there was no help for me from russian service centers. tht guys told me something like: "chill out punk and install os x, because os 9 is a bag of crap"
    Ill be very glad if some of you wil send me that file at {post edited by moderator}
    zaranee spasibo!

    idunno, welcome to Apple Discussions.
    I sent you the extension "High Sierra File Access".
    You should not post your email address in your message. It will be harvested by spammers. An Apple host will remove the email address.
    You can show your email address as asphalt2006(at)ya(dot)ru, or put your address in your discussions profile.
     Cheers, Tom

  • Big problem- using ipod as an external Drive

    Hello
    Right now i am tring to save my School work (i do Homeschool) on myipod, using it as an External Drive. I plug my ipod, amd i go to my computer, and i see the ipodd drive, i open it, and after 5 seconds it colses by itself. Itunes does not open eiter, what shall i doÉ its really urgent!
    (doe sit have to do ith disabling Disk Mode? if yes, tell me how...cuz my itune is in French...and i do now how ou call that in French)
    Chris

    If you restore the iPod you will delete the files, so don't do it unless you have backups. Sorry I don't know about the error code.

  • Is anybody else having big problems using the new pages?

    Everything has moved and even the help section isn't that helpful. I have been sitting in class for over an hour trying to make a portfolio, but can't because everything is so different. I have no idea how any of the changes are supposed to make it simpler. You can't even save as a word document! Instead there's all this export rubbish. I'm going to fail this class because of the new pages update. I have been putting off this update for weeks but since the newest OS update, everything is automatically updating so I had no choice. Actually make it easier, or make it possible to undo the update.

    It's been 7 months since it came out. Didn't you read the reviews in the App Store? Plus all the forum posts here?
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    Use Pages '08/'09 it should still be in your Applications/iWork folder.
    Peter

  • So how's the MSI RS480M2-IL + Venice core CPUs now?

    Hi,
    I'm still thinking of building a system with the above combo, possibly with the Athlon 64 3200 (Venice core), and have been continuing to lurk here.  Now that the Venice core CPUs have been out a couple of weeks, what is everyone's opinion of this combo?  Have all problems been resolved at this point, or are there still outstanding "gotchas"? 
    I would be building this system for a relatively non-technical person, and will probably get Windows XP Home for now.  The main reason I'm thinking AMD 64 (vs. Sempron or Athlon XP) is that I want to leave some "headroom", i.e., whenever Longhorn gets here.
    Thanks,
    Jim

    Hi Jim,
    The "new" problem I'm seeing reported with Venice core and RS480M2-IL is memory failure in using DIMM slots 1 and 2.  I'm guessing the problem is tied to the new enhanced memory controller in the Venice core.  Question is: Is this a fixable problem with Bios or a real bug with Venice.  I'm hoping Bios.  Using Slot 3 and 4 seems to work as a bypass.
    In the mean time, I would use Winchester.  It's proven to work.   
    Danno
    BTW....delivered the system to my daughter and she's thrilled.  Running game World of Warcraft at 1280x1024x32 and it's just stable as hell.  All the testing and tweaking payed off.

  • Conclusion: Cannot get Neo2 stable w/ 512x4 DIMM @ DDR 400+ with Venice core!

    You can read about my whole troubleshooting process here https://forum-en.msi.com/index.php?topic=85550.msg611686#msg611686
    Basically to sum it up, BF2 freezes up when trying to run 512x4 ram 2T when using any speed above DDR 333. Seeing as how BF2 runs fine with 1 gig, and is is the only program I have that uses over 1024mb of ram at one time Im pretty sure its a hardware problem and not a software problem. Ive tried every voltage and every timing combination I can think of, reinstalled drivers, flashed different bios, and even reformatted XP just for the hell of it. The only stable configuration is using DDR 333mhz @ 2T. Unfortunately the performance hit is very noticable at this speed and not worth the added memory.
    Im not yet sure if its just a limitation of the Neo2 motherboard, or if I have a buggy Venice core, or if its a PSU issue. Has anyone been able to run 2 gigs with the Neo 2 and a Venice core at or over 400 ddr? And if so could you provide details to your configuration and settings? It'd be much appreciated.
    Also if anyone has an idea as to what the likely cause of the problem may be Im all ears as well. Thanks.

    Thanks for clarifying for me JayBee. Im wondering if I have a buggy Neo2 because the Venice memory controller should be able to handle this. Or maybe its the chip. Whats so vexing is I have no way of telling which is exactly the problem child if I want to try and RMA either one.
    As for the timings Ive tried 2.5-3-3-7 and 3-3-3-7, neither made a difference. I tried to go even looser with 3-4-4 and it wouldnt even post. Im running out of ideas.
    Quote from: JayBee on 29-August-05, 13:09:43
    The limitation (333 for 4 double sided dimms) applies to Newcastle and Winchester, although if you look at the thread Liverkick shows above, at least one person has achieved 400 speed with 4 dimms at 2T with Winchester.
    And I still have trouble believing that one. Not saying he's lying but I have a feeling his DRAM settings may have been on auto 333mhz or he just misread. If a Winchester is really handling that much memory @ 400 DDR he should sell it on ebay as a special collectors item.

  • I have a big problem :( why is it i cant update my ipod touch 2g into ios 4! im using the latest version of itunes and everytime i click "update" it stucks on the "contacting server" please help :( i want to update it now

    i have a big problem why is it i cant update my ipod touch 2g into ios 4! im using the latest version of itunes and everytime i click "update" it stucks on the "contacting server" please help i want to update it now

    Maybe here:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server

  • Hi, dear friends,   I have a big problem:   Since I installed OS 10.9.3 MAV (Maverick), I am unable to use Adobe CS6. Each opening Photoshop attempt, the system tells me an error of type 6 or 16.   Thank you for your help, Guys,   Marius SANNA

    Hi, dear friends,
    I have a big problem:
    Since I installed OS 10.9.3 MAV (Maverick), I am unable to use Adobe CS6. Each opening Photoshop attempt, the system tells me an error of type 6 or 16.
    Thank you for your help, Guys,
    Marius SANNA

    Which version of Photoshop do you have? The current version is 13.0.6.

  • Had to repair the HD using Disk Utility every few weeks- Big problem?

    Hey guys,
    I've used Onyx to verify my HD & it said that I needed to repair it. So I restarted using the Leopard CPU Drop-in DVD & it's been saying "Invalid file count" & "Invalid volume directory count" but it gets fixed. It seems like this happens around every few weeks. Is this a big problem? Anything I can do to prevent it?
    Thanks,
    David

    Hello David
    Yes they are replaceable but it's not straightforward. On the newest models it's easier/simpler to get into them but on the older models you needed a palette/putty knife and a good technique simply to get the top housing off. Inside there are a few small/thin/delicate connecting cables you need to be careful of. These two sites should give you more of an idea?
    http://www.ifixit.com/Teardown/Mac-mini-Model-A1283-Teardown/659/1
    http://www.youtube.com/watch?v=WFFjselaPMo
    If this seems like too much hard work take it to your nearest Apple Repair Specialist or Genius Bar. They'll be happy to do it for you for a nominal fee. You get the best of both worlds then - peace of mind the job has been done expertly and a replaced hard drive with all your data transferred over.
    HTH?
    Tony

  • A big problem with using endnotes in Pages 5

    Unlike Pages 09 which worked flawless with endnotes functionality, Pages 5 has a big problem with the feature that maybe been addressed.
    When I insert an endnote, I am prohibited from clicking the citation number at the end of the document which is supposed to take me back to the inserted citation.
    Am I doing something wrong here or this is just another invaluable feature removed by Apple?
    Please help!!!
    Thank you.

    It's not a feature I use much, so haven't worked at finding the flaws in the Pages 5 version, but going on just how badly Apple has done everything else in Pages 5 I am not at all surprised. It had problems from the beginning and Apple has take over 15 months to do frankly very, very little to fix anything.
    There was much heated debate by certain people on this site who swore blind that Apple would fix everything.
    Just remember the definition:
    Pessimist: n. Optimist with experience.
    Peter

  • HT2573 I am using macbook pro with update of 10.7.5...I am not able to authorize my digital signature. It is showing crypto service provider is missing. I am in a big problem. plzzz help me out....thanx

    I am using a mac book pro version 10.7.5..I am not able to authorize my digital signature.It is showing crypto service provider is missing. I am in a big problem . plzzzz help me out. Thanks

    You have 10.6 on that machine, I suggest you stick with it for performance, third party hardware and software reasons as long as possible.
    Consider 10.8 (not 10.7) when it's released, because 10.7 and 10.8 will require a new investment in software and newer third party hardware as it requires newer drivers the old machines won't have. (forced upgrade because of software, really nice of them)
    http://roaringapps.com/apps:table
    Far as your Safari problem do these things until it's resolved:
    1: Software Update fully under the Apple menu.
    2: Check the status of your plug-ins and update (works for all browsers) also install Firefox and see if your problems continue. You should always have at least two browsers on the machine just in case one fails.
    https://www.mozilla.org/en-US/plugincheck/
    Flash install instructions/problem resolution here if you need it.
    How to install Flash, fix problems
    3: Install Safari again from Apple's web site
    https://www.apple.com/safari/
    4: Run through this list of fixes, stopping with #16 and report back before doing #17
    Step by Step to fix your Mac

  • There appear to be big problems with Mavericks Mail, particularly if it's used for Gmail. Have other users noticed that it slows to a crawl and can't reload the contents of a folder instantly....Is there a fix coming?

    There appear to be big problems with Mavericks Mail, particularly if it's used for Gmail. Have other users noticed that it slows to a crawl and can't reload the contents of a folder instantly....Is there a fix coming?

    There is a large thread relating to Gmail, but nothing that sounds like that.
    Nobody here knows what Apple is going to do.
    You might try removing the Gmail account and then add it back in.

  • I have my mac pro with the keyboard in spanish and i didn't knew that it was going to be a big problem because i can't use the key pads the way they are printed, how can i use them the way they r printed?

    i have my mac pro with the keyboard in spanish and i didn't knew that it was going to be a big problem because i can't use the key pads the way they are printed, how can i use them the way they are printed?

    why can't you use the keyboard the way it is printed?

  • Just upgraded to Lion, how can i use my microsoft office especially excel.  I'm getting messages that it's no longer supported.  This is a BIG problem.  Help, please.

    Just upgraded to Lion, how can I use my microsoft office especially excel.  I'm getting messages that it's no longer supported.  This is a BIG problem.  Help, please.

    Apple has made a serious error not advising people when the Lion upgrade occurs that their present software may/will not be compatible and advise the user of such before and allow a opt out.
    All you can do (besides upgrading all your software) is backup your data off the machine (not to TimeMachine) and disconnect all drives.
    Hold c boot off the 10.6 disk and erase your makers hard drive on the far left, (that's the entire drive of everything)
    Partition tab: Option: GUID, format OS X extended and click apply so you get a new GUID (replacing the Lion one or trouble occurs later)
    Quit and install 10.6, then go through setup and use the same name as before, then update to 10.6.8
    Then c boot off the 10.6 disk again and use Disk Utility to Repair the disk the 10.6.8 update messed up.
    Then install all your programs again from fresh sources and lastly your user files in the same main user folders as before (music, pictures, documents etc.)
    Done as described will get you back just like it was before as close as possible, make SURE to use the same username or else your iTunes and other files get all messed up. Password and drive name can be different though if you wish.
    Note: if you've upgraded from 10.5 to 10.6, then you don't get the free iLife as it's not on the 10.6.3 white disks, only on the disks that came with your machine. So that will have to be purchased and reinstalled or use Pacifist to extract it from the 10.5 disks.
    This handy site can advise you what software doesn't work with the Lion.
    http://roaringapps.com/apps:table

Maybe you are looking for

  • Need help downloading apps on new Lumia!

    Please help!  Nokia online support not available for at least another day.  I have been trying to download apps from the store and it keeps giving the following comment: "There is a problem completing your request.  Try again later.  ERROR CODE: 8009

  • Please tell me the step by step process of backup and full restore

    Dear all, we are using ecc5 and windows and oracle 9i I am going to apply support package .Please tell me the step by step process of backup and full restore . I am using DB13 for backup. Please suggest. Regards, Shiva

  • 8i, W2k and SP1 - Oracle won't run

    I have a Compaq ML370 server running Windows 2000 server. I run 8i EE, release 2 (8.1.6). If I install W2K SP1, then the Oracle service won't start. It sits on 'starting'. The 'Listener' service and the 'Web Assistant' services both start. If I remov

  • Catch standard eventing

    Hi experts: As you can see in this document: /people/thomas.jung3/blog/2005/12/15/portal-eventing-a-solution-for-global-peace-and-harmony We can trigger and catch portal events if we send the event from one ABAP WD to another one. I want to create a

  • Run publication through command line or VBS.

    Is it possible to create a VB code that will run a publication through the command line,run the publication now using VBS ? Thanks Yoav