Results 1 to 6 of 6

Thread: serious network problems

  1. #1
    Not *@!%in Postman Pat! Ruggerbugger's Avatar
    Join Date
    Aug 2004
    Location
    Rugby, (England for the Yanks)
    Posts
    1,659
    Thanks
    42
    Thanked
    69 times in 53 posts
    • Ruggerbugger's system
      • Motherboard:
      • Asus A7N8X-E deluxe
      • CPU:
      • XP 3200+
      • Memory:
      • 1GB Kingston PC3200 DDR2 dual channel
      • Storage:
      • 1 x 40GB OS, 1 x 320GB Data
      • Graphics card(s):
      • Sapphire 9800 Pro
      • PSU:
      • 400W Akasa (I think)
      • Case:
      • Antec Super Lanboy
      • Monitor(s):
      • Samsung LE32 LCD 720p
      • Internet:
      • VM 4Mb

    serious network problems

    I've had serious problems with my wireless card in my laptop today. Trying to log on to theuniversity network, it would get to just before the Windows logon and blue-screen with the following error:

    PAGE_FAULT_IN_NONPAGED_AREA

    STOP: 0x0000050 (0xFF931018, 0x00000008, 0xFF931018, 0x00000000)

    If I disabled the wireless card, I could log into Windows and use the computer normally, I could also connect using a cable.

    I removed the card in Device Manager to see if redetecting it would work, it didn't, but it did **** up my wireless network at home. I've set up the entire thing again now, but was wondering if anyone could guess what happened.


    Click here for larger versions of photos

    Quote Originally Posted by Gonzo
    my a55 shoots great video in 1080i

  2. #2
    Ex-MSFT Paul Adams's Avatar
    Join Date
    Jul 2003
    Location
    %systemroot%
    Posts
    1,926
    Thanks
    29
    Thanked
    77 times in 59 posts
    • Paul Adams's system
      • Motherboard:
      • Asus Maximus VIII
      • CPU:
      • Intel Core i7-6700K
      • Memory:
      • 16GB
      • Storage:
      • 2x250GB SSD / 500GB SSD / 2TB HDD
      • Graphics card(s):
      • nVidia GeForce GTX1080
      • Operating System:
      • Windows 10 x64 Pro
      • Monitor(s):
      • Philips 40" 4K
      • Internet:
      • 500Mbps fiber
    Short answer:
    Basically a STOP 0x50 error is a pool corruption caused by 3rd party kernel mode drivers.
    It sounds like possibly the wireless driver could have been the culprit.


    Long answer:
    It's not always immediately obvious as to the cause - it is possible that the driver which Windows says tried to do something naughty was the victim of the corruption rather than the one that caused it.

    Imagine 2 drivers resident in memory next to each other.
    (For simplicity assume these memory addresses are decimal, so 4999 is followed by 5000 and not 4a00.)
    Driver A resides owns memory range 0000-4999 and Driver B owns range 5000-9999.
    Driver A starts to write to its memory space, and is badly coded so it doesn't do boundary checking - the code asks to write 1000 bytes starting at address 4500, overwriting the first 500 bytes of the pool owned by Driver B.
    Driver B has previously written data in these addresses and expects the data to be of a certain format - it tries to work with the data it wrote, maybe it stored other memory addresses there, and now because it is garbage is behaves in an unexpected manner.

    So Driver B asks Windows to do something it isn't permitted - accessing memory it doesn't own, calling a function with garbage arguments, whatever.
    Errors that occur in kernel mode generate exceptions - blue screens of death - and these are designed to prevent further corruption of data as the system stability is now in question.


    How to detect when the pool corruption occurs, and not when the result of the corruption causes a problem? Special Pool.

    In essence this puts a write-protected "wall" between each pool allocation, so if a driver (Driver A in my example) tries to write outside of its allocation it would attempt to write over write-protected memory and cause an exception.

    KB on enabling special pool for troubleshooting


    Not much you can do "post mortem", even the memory dump won't give much more definite info - you would need to use special pool or driver verifier to have Windows "watch" the drivers carefully (perfomance hit expected) and stop when one is being badly behaved (that memory dump would tell you the thread/process that actually did the naughty deed with more accuracy).

    If it wasn't the wireless driver it could have been any other kernel mode driver, or a filter driver such as a backup agent, firewall or AV which could be involved in every operation involving files or the network.
    ~ I have CDO. It's like OCD except the letters are in alphabetical order, as they should be. ~
    PC: Win10 x64 | Asus Maximus VIII | Core i7-6700K | 16GB DDR3 | 2x250GB SSD | 500GB SSD | 2TB SATA-300 | GeForce GTX1080
    Camera: Canon 60D | Sigma 10-20/4.0-5.6 | Canon 100/2.8 | Tamron 18-270/3.5-6.3

  3. #3
    Not *@!%in Postman Pat! Ruggerbugger's Avatar
    Join Date
    Aug 2004
    Location
    Rugby, (England for the Yanks)
    Posts
    1,659
    Thanks
    42
    Thanked
    69 times in 53 posts
    • Ruggerbugger's system
      • Motherboard:
      • Asus A7N8X-E deluxe
      • CPU:
      • XP 3200+
      • Memory:
      • 1GB Kingston PC3200 DDR2 dual channel
      • Storage:
      • 1 x 40GB OS, 1 x 320GB Data
      • Graphics card(s):
      • Sapphire 9800 Pro
      • PSU:
      • 400W Akasa (I think)
      • Case:
      • Antec Super Lanboy
      • Monitor(s):
      • Samsung LE32 LCD 720p
      • Internet:
      • VM 4Mb
    Thanks Paul, very comprehensive. I'm going to keep an eye on things for know, as they seem to be working OK. Given the fact that the crash also occurs when I turned the wireless antenna back on after booting into windows, and trying to connect, I'm assuming the wireless driver was the culprit.

    How much of a performance hit does special pool incur? What are the risks of using it?


    Click here for larger versions of photos

    Quote Originally Posted by Gonzo
    my a55 shoots great video in 1080i

  4. #4
    Ex-MSFT Paul Adams's Avatar
    Join Date
    Jul 2003
    Location
    %systemroot%
    Posts
    1,926
    Thanks
    29
    Thanked
    77 times in 59 posts
    • Paul Adams's system
      • Motherboard:
      • Asus Maximus VIII
      • CPU:
      • Intel Core i7-6700K
      • Memory:
      • 16GB
      • Storage:
      • 2x250GB SSD / 500GB SSD / 2TB HDD
      • Graphics card(s):
      • nVidia GeForce GTX1080
      • Operating System:
      • Windows 10 x64 Pro
      • Monitor(s):
      • Philips 40" 4K
      • Internet:
      • 500Mbps fiber
    Quote Originally Posted by Ruggerbugger
    How much of a performance hit does special pool incur? What are the risks of using it?
    Entirely dependent on what you run - there is a reason it's off by default though
    No "risks" as such, it doesn't do anything except insert write-protected sections between pool allocations so that errors in drivers get trapped when they occur.

    Windows by default is set up to do a fair bit of system performance monitoring, indexing and housekeeping for proactive tuning, but things like special pool, pool tagging, driver verifier, and manual memory dumps are reactive troubleshooting techniques when more detail is needed to isolate the root cause of a problem.

    You could run defrag, a spyware search, a full virus scan, check for version updates for every piece of software every time you turn on your computer - but in the long run you don't gain much except slowing down your logon time and general system performance.
    These tasks you just do when you need to - same as with messing about with the paged and nonpaged pool options.
    ~ I have CDO. It's like OCD except the letters are in alphabetical order, as they should be. ~
    PC: Win10 x64 | Asus Maximus VIII | Core i7-6700K | 16GB DDR3 | 2x250GB SSD | 500GB SSD | 2TB SATA-300 | GeForce GTX1080
    Camera: Canon 60D | Sigma 10-20/4.0-5.6 | Canon 100/2.8 | Tamron 18-270/3.5-6.3

  5. #5
    Not *@!%in Postman Pat! Ruggerbugger's Avatar
    Join Date
    Aug 2004
    Location
    Rugby, (England for the Yanks)
    Posts
    1,659
    Thanks
    42
    Thanked
    69 times in 53 posts
    • Ruggerbugger's system
      • Motherboard:
      • Asus A7N8X-E deluxe
      • CPU:
      • XP 3200+
      • Memory:
      • 1GB Kingston PC3200 DDR2 dual channel
      • Storage:
      • 1 x 40GB OS, 1 x 320GB Data
      • Graphics card(s):
      • Sapphire 9800 Pro
      • PSU:
      • 400W Akasa (I think)
      • Case:
      • Antec Super Lanboy
      • Monitor(s):
      • Samsung LE32 LCD 720p
      • Internet:
      • VM 4Mb
    Update. I reinstalled the wireless chipset driver this time, and it seemed to have solved the problem. Until I tried to set up and connect to the VPN at Warwick. This immediately brought up the error again. Any ideas?


    Click here for larger versions of photos

    Quote Originally Posted by Gonzo
    my a55 shoots great video in 1080i

  6. #6
    Not *@!%in Postman Pat! Ruggerbugger's Avatar
    Join Date
    Aug 2004
    Location
    Rugby, (England for the Yanks)
    Posts
    1,659
    Thanks
    42
    Thanked
    69 times in 53 posts
    • Ruggerbugger's system
      • Motherboard:
      • Asus A7N8X-E deluxe
      • CPU:
      • XP 3200+
      • Memory:
      • 1GB Kingston PC3200 DDR2 dual channel
      • Storage:
      • 1 x 40GB OS, 1 x 320GB Data
      • Graphics card(s):
      • Sapphire 9800 Pro
      • PSU:
      • 400W Akasa (I think)
      • Case:
      • Antec Super Lanboy
      • Monitor(s):
      • Samsung LE32 LCD 720p
      • Internet:
      • VM 4Mb
    bumpage...

    Does anyone have an idea why I can access the wireless hotspots at uni and get on the net, but attempting to access the VPN causes the blue screen? I wouldn't be that bothered, but I use the First Class conferencing system for uni, and it won't work through the hotspot, only the VPN.


    Click here for larger versions of photos

    Quote Originally Posted by Gonzo
    my a55 shoots great video in 1080i

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. problems with XP's network bridge
    By Gubs in forum Networking and Broadband
    Replies: 6
    Last Post: 27-09-2011, 11:03 PM
  2. Serious Network Error!
    By r1zeek in forum Networking and Broadband
    Replies: 2
    Last Post: 11-03-2004, 05:27 PM
  3. Quake 3 and Battlefield 1942 Network Problems
    By Applecrusher in forum Networking and Broadband
    Replies: 6
    Last Post: 19-01-2004, 09:37 AM
  4. nForce2 WindowsXP Network Driver problems
    By THCi in forum Software
    Replies: 7
    Last Post: 20-08-2003, 05:24 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •