<div dir="ltr"><div>base1 = 0xA4D000; size1=0x1000;</div><div>memblock_reserve (base1, size1);</div><div><br></div><div>(In a separate static driver code)</div><div>request_mem_region_exclusive (0x00A4D000, 4096, &quot;csSIGILL&quot;)<br></div><div><br></div><div>If a driver requests for a memory region, shouldn&#39;t the kernel then not allocate it for any other purpose?</div><div><br></div><div>-Regards</div><div>Nikhil</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 28, 2016 at 3:12 PM, Arun Sudhilal <span dir="ltr">&lt;<a href="mailto:getarunks@gmail.com" target="_blank">getarunks@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 Nikhil,<br>
<span class=""><br>
On Wed, Sep 28, 2016 at 2:41 PM, Nikhil Utane<br>
&lt;<a href="mailto:nikhil.subscribed@gmail.com">nikhil.subscribed@gmail.com</a>&gt; wrote:<br>
&gt; Arun,<br>
&gt;<br>
&gt; What seems to have done the trick is calling memblock_remove() followed by a<br>
&gt; call to request_mem_region(). This creates a hole which can be confirmed in<br>
&gt; the output of /proc/iomem.<br>
&gt;<br>
&gt; Do you see any issue with this approach?<br>
<br>
</span>I really don&#39;t know how it works for you. Marking address of a page as<br>
iomem.  How buddy allocator ignores this page?<br>
request_mem_region() is a way of managing IO resource memory, to avoid<br>
two drivers using same IO memory. It has not relation with buddy<br>
allocator.<br>
<br>
Can you post code snippet?<br>
<br>
Regards,<br>
Arun<br>
<div class="HOEnZb"><div class="h5"><br>
&gt;<br>
&gt; -Thanks<br>
&gt; Nikhil<br>
&gt;<br>
&gt; On Tue, Sep 27, 2016 at 4:14 PM, Arun Sudhilal &lt;<a href="mailto:getarunks@gmail.com">getarunks@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hello Nikhil,<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Sep 9, 2016 at 7:01 AM, Nikhil Utane<br>
&gt;&gt; &lt;<a href="mailto:nikhil.subscribed@gmail.com">nikhil.subscribed@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; I want to reserve a physical memory page with a fixed PFN. I do not want<br>
&gt;&gt; &gt; this page to be used by anyone else. I am calling memblock_reserve() to<br>
&gt;&gt; &gt; supposedly reserve the page. I am writing some content into this page.<br>
&gt;&gt; &gt; What<br>
&gt;&gt; &gt; I see is that during some runs the content of this page is modified<br>
&gt;&gt; &gt; (either<br>
&gt;&gt; &gt; fully or sometimes partially). In few runs, I see it as intact. Is it<br>
&gt;&gt; &gt; expected that even after calling memblock_reserve() the kernel can<br>
&gt;&gt; &gt; allocate<br>
&gt;&gt; &gt; this physical page for any other purpose? How is memblock_remove()<br>
&gt;&gt; &gt; different<br>
&gt;&gt; &gt; from memblock_reserve? I tried reading up but didn&#39;t see any useful<br>
&gt;&gt; &gt; information. What I understood is memblock_remove will completely remove<br>
&gt;&gt; &gt; from kernel&#39;s allocation mechanism. Should I then be using remove<br>
&gt;&gt; &gt; instead of<br>
&gt;&gt; &gt; reserve?<br>
&gt;&gt;<br>
&gt;&gt; when a DT entry is added to  #reserved-memory node, what<br>
&gt;&gt; drivers/of/fdt.c does is to call memblock_remove() and<br>
&gt;&gt; memblock_reserve().<br>
&gt;&gt; This happens after the memblock driver is initialized but before buddy<br>
&gt;&gt; allocator up. Did you try this approach? This should work for you.<br>
&gt;&gt;<br>
&gt;&gt; Only option once the kernel boot is complete is to try out the<br>
&gt;&gt; technique what mm/memory_hotplug.c does while offline memory.<br>
&gt;&gt; isolate_page_range and then migrate.<br>
&gt;&gt;<br>
&gt;&gt; Regards,<br>
&gt;&gt; Arun<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -Thanks<br>
&gt;&gt; &gt; Nikhil<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; ______________________________<wbr>_________________<br>
&gt;&gt; &gt; Kernelnewbies mailing list<br>
&gt;&gt; &gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.<wbr>org</a><br>
&gt;&gt; &gt; <a href="https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" rel="noreferrer" target="_blank">https://lists.kernelnewbies.<wbr>org/mailman/listinfo/<wbr>kernelnewbies</a><br>
&gt;&gt; &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br></div>