<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 30, 2015 at 10:46 PM,  <span dir="ltr">&lt;<a href="mailto:Valdis.Kletnieks@vt.edu" target="_blank">Valdis.Kletnieks@vt.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">On Mon, 30 Mar 2015 20:25:38 +0530, Sunny Shah said:<br>
<br>
&gt;    - The book says, about releasing page frames to the per CPU cache - &quot;no<br>
<span class="">&gt;    page frame is ever released to the cold cache: the kernel always assumes<br>
&gt;    the freed page frame is hot with respect to the hardware cache&quot;. What is<br>
&gt;    the reason for this decision ?<br>
<br>
</span>What can go wrong if the page is cold but the kernel assumes it&#39;s hot?<br>
<br>
What can go wrong if the kernel assumes it&#39;s cold but it&#39;s actually hot?<br>
<br>
(Hint - in which cases will it do a cache flush?  In which cases is a<br>
cache flush needed? What happens in each case if the kernel guesses wrong?)<br></blockquote><div> </div><div>Here&#39;s my understanding:</div><div>- If a page is cold but kernel assumes it to be hot, a &#39;hot&#39; allocation of that page would need it to be loaded into the CPU cache which means a little overhead.</div><div>- If a page is hot but kernel assumes it to be cold, a future &#39;hot&#39; allocation would eventually cause the invalidation of the CPU cache location corresponding to that page. But, even if the page were assumed to be hot, this might have anyway happened due to another page occupying the same cache location.</div><div><br></div><div>This has confused me even more! I&#39;m not sure if this is correct, but if it is, wouldn&#39;t this mean treating hot pages as cold is better ?</div><div>I apologise for anything that I might be looking over or not thinking in the right direction. Please feel free to rebuke.</div><div><br></div><div>Also, any help on my other questions would be greatly appreciated:</div></div><div style="font-size:12.8000001907349px"><ul><li style="margin-left:15px">It is possible for a page to be in ZONE_NORMAL and yet have it&#39;s PG_reserved flag cleared. Is this correct ?</li><li style="margin-left:15px">The function &quot;fix_to_virt&quot; for fix-mapped linear addresses does the following:<br><br>return (0xfffff000UL - (idx &lt;&lt; PAGE_SHIFT));<br><br>Why are the upper 4096 bytes not used, and the addressing starts from the top of the virtual address space - 4096 ?</li><li style="margin-left:15px">The book says &quot;each fix-mapped linear address maps one page frame of the physical memory&quot;. Shouldn&#39;t it be &quot;maps one<i>physical location</i> of memory&quot; rather than one page frame ?</li><li style="margin-left:15px">My understanding is that the kernel page table entries for addresses &gt; 896 MB would be empty and those addresses would be mapped using separate data structures used for temporary and permanent kernel mappings and non-contiguous page frame allocation. Is this wrong ?<br></li></ul><div><br></div><div>Thanks,</div><div>Sunny</div></div></div></div>