Windows

Find Memory Leak with Poolmon in Windows Non Paged Memory. Steps to use

Find Memory Leak with Poolmon in Windows

In this article, we help you identify and find memory leak with Poolmon in Windows environments.

Of many issues, you may face with your Windows ecosystem, one pressing issue that may need attention would be the memory leak problem. Memory leaks can be of quite a few types. One standard error you may come across includes Kernel level Memory Leak issue. How would you solve it? We will guide you through the process in today’s tutorial.

What is a Memory Leak?

Under normal circumstances, a process allocates the memory from a paged or non paged pool. However, it can at times fail to free the memory. While new processes are allocated memory, the older memory allocated to the previous processes is not released back to the OS.

This causes the limited memory of the pools to deplete over time. As a result, your system begins slowing down. When the memory in the pools is completely exhausted, it causes a complete failure of your system. The process involved in finding a memory leak and resolving it would necessarily require the exact root-cause of the memory leak and address it.

Ideally, memory leaks can happen in two ways- a Kernel Mode Memory Leak and a User Mode Memory Leak. There are several ways employed to address a memory leak issue depending upon the cause of the problem.

Find Memory Leak with Poolmon: The Solution

If you are suspecting a Kernel Mode memory leak in your device, the best option you can employ to resolve it is to use Poolmon. Poolmon is a utility that keeps track of the memory usage by the pool by their tag name.

Poolmon is included into your Windows Driver Kit, usually referred to as WDK. Here is how you would be able to use Poolmon to address the concern of Kernel Mode memory Leak.

Here are the steps you can follow to identify memory leaks in kernel Mode through Poolmon.

Enable Poolmon Utility

If you are on Windows XP or Windows 2000, you would need to enable it. If you are on the later version of Windows, you will find it already enabled by default.

Here is how you can enable Poolmon on Windows XP and Windows 200 –

  • You need to use GFlags first to enable Poolmon.
  • You can find GFlags included in Debugging Tools for Windows.
  • Launch
  • Go to System Registry
  • Check the box for Enable Pool Tagging
  • Once all these settings are done, click on

Restart your computer for all the changes you made to take effect.

Use Poolmon to find the Memory Leak

Poolmon displays the paged and non paged pool bytes in its header. The information is updated every few seconds.

Follow the procedure here to find the memory leak in your system –

  • Launch Poolmon
  • Ensure you are aware of the exact memory leak issue in your system. If you are sure that the memory leak is occurring in the non paged pool, press P once. In case you are confident that the memory leak is caused by the paged pool, press P twice. You can leave the application without pressing P at all if you are unsure. This will include all the pools.
  • Now, press B. This will display the bytes in the order of maximum bytes in use
  • Take a screenshot and save it. Preferably name it with the time tag for easy tracking.
  • Keep taking screenshots every half an hour.
  • Compare the screenshots. This will give you an idea about the tags which are causing higher memory usage.

Stop the test and repeat the tests after a while once again. Check how much memory was released. Ideally, an application should allocate and free memory almost at a constant rate. In case if you find an application allocating memory at a faster pace than that it frees, then it would be an indication to prove that there is a memory leak.

Poolmon Commands

If you are using Poolmon, you should be aware of a few commands so that you can work with it appropriately. Here is the list of the commands used with Poolmon.

Command What It does
P Sorts the list of tags by the paged, non paged and mixed type. Press P repeatedly to cycle through the options
B Sort the list of tags based on maximum byte usage
M Sort the list of tags based on maximum byte allocation
T Sort the list of tags based on tag name in the alphabetical order
E Displays the paged, non paged and total tags across at the bottom. Use the command to cycle through the options.
A Sort the tags based on the allocation size
F Sort the tags based on the type Free operation
S Sort the list of tags based on the difference between the allocated and freed memory
Q Quit Poolmon

How can you Address the Leak?

Please note that Poolmon is only a monitoring utility. It would monitor the pool tags and the memory usage handled by them. Thus, you can use them to guide you on which tags are using a high amount of memory and therefore are causing a memory leak. It cannot be used to solve the issue of memory leaks.

Once you have identified the tag that is associated with the memory leak, you can use other tools to determine the exact reason to identify the instances of memory leak. Kernel Debugger can be one of the tools that can be helpful in that regard. Explaining those tools, however, is beyond the scope of this article. However, Poolmon can be your best bet if you are facing memory leak issues and attempting to sort it out.

The Parting Thoughts

Poolmon is indeed an excellent choice for identifying the memory leak issues on your device at the Kernel level. Memory leak issues can severely degrade the performance of your system and as such need to be addressed right in time. We assume we have been able to guide you in the right way to use Poolmon in identifying the occurrence of memory leak on your Windows system. Once you have found the existence of the leak and the tags that are causing it, it should be quite easy to see the solutions through other means.

Disclaimer: The Questions and Answers provided on https://www.gigxp.com are for general information purposes only. We make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information, products, services, or related graphics contained on the website for any purpose.

What's your reaction?

Excited
0
Happy
0
In Love
0
Not Sure
0
Silly
0

You may also like

Comments are closed.

More in:Windows