Hi,<div>  I am a kernel newbie too, Kernel memory is not pagable, because kernel itself is responsible for paging. See this discussion, 
<a href="http://kerneltrap.org/node/6404">http://kerneltrap.org/node/6404</a> </div><div> </div><div>  Paging happens for regular processes, i.e each process memory is divided into a page of certain size(4kb in Linux), so it can swap for another page that might be needed for that particular moment, it usually replaces an page that have not been used for long time(see LRU,internal fragmentation). Kernel is a process too, just like anyother process, but it differs from others because it directly talks to the hardware and also it is the one which takes care of paging and LRU algo&#39;s. So it does not make much sense, for a kernel memory to be pageable, because, if it removes the page that contains that has the paging algorithm, then there is  no way to come back, you want to retrieve a page from disk_swap_area, but you cannot, because the page that contains code to retrieve the instructions are paged :)... This is not just for paging, since kernel controls everything, it is not advisable to put its own code in swap area(see, virtual memory, virtual memory = physical memory + swap space).</div>
<div><br></div><div>BTW, i am a kernel newbie too, this is my basic understanding, please feel free to correct it, if I am wrong....</div><div><br><div class="gmail_quote">On Thu, Jun 21, 2012 at 8:27 AM, Vijay Chauhan <span dir="ltr">&lt;<a href="mailto:kernel.vijay@gmail.com" target="_blank">kernel.vijay@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I am newbie.<br>
It has been said &quot;kernel memory is not pageable&quot;<br>
What does it mean? There is no concept of kernel virtual address?<br>
<br>
Any simple explanation will help me to udnerstand.<br>
<br>
Thanks,<br>
Vijay<br>
<br>
_______________________________________________<br>
Kernelnewbies mailing list<br>
<a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
<a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
</blockquote></div><br></div>