<br><br><div class="gmail_quote">On Thu, Feb 21, 2013 at 10:45 AM, Mandeep Sandhu <span dir="ltr">&lt;<a href="mailto:mandeepsandhu.chd@gmail.com" target="_blank">mandeepsandhu.chd@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">
<div class="im">&gt; I know the pages are kept on disk initially and then swapped in as needed/referenced.  Thus if there are code pages where none of the code in the page has been executed since starting the app, then that page will remain on disk until the application logic eventually invokes it.  At that point it will be demand loaded from disk.<br>

&gt;<br>
&gt; During that early stage, do the never used pages show as swapped out?  If so, why would anyone want all those never used pages to be brought into ram just to sit there unused?<br>
<br>
</div>Are you saying that pages of code segment (of an executable) which<br>
have not been accessed yet, are copied onto the swap space from their<br>
location on the disk when the program is exec&#39;ed? Or do they remain on<br>
disk (in their original location) and loaded into memory only when<br>
accessed (and _then_ possibly swapped out)? If they remain on disk,<br>
then that wouldn&#39;t show up in swap space, right?<br></blockquote><div><br>If the code segment of an executable which hasn&#39;t been accessed, they will remain on disk because they have fixed filesystem backing. Only when they are referenced, they will go to cache and then when inactive and/or while reclaiming, they will end up in disk again. But, afaik, anything which has a filesystem backing, a fixed storage backing, doesn&#39;t go to swap. This part is pretty clear to me. Only anon pages go to swap and something which is on disk, is not anon in first place. <br>
<br>Soham<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
-mandeep<br>
<div class="im"><br>
&gt;<br>
&gt; The end result is that that swap&#39;ed pages represent pages available to be swapped in, but not the number of pages that were actually swapped out at some point in time.<br>
&gt;<br>
&gt; Greg<br>
&gt; --<br>
&gt; Sent from my Android phone with K-9 Mail. Please excuse my brevity.<br>
&gt;<br>
</div>&gt; _______________________________________________<br>
&gt; Kernelnewbies mailing list<br>
&gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
&gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
</blockquote></div><br>