<div dir="ltr">Jeff/Pramod,<div><br></div><div>I think what Pramod mentioned is partly right. However, I do not have more info on that yet. Will get back after some more digging in. For kernel memory </div><div>addresses you can do,</div>
<div><br></div><div>sudo cat /proc/vmallocinfo<br></div><div><br></div><div>This is in line with what Jeff mentioned. I will check why the upper 16 bits are set to 1.</div><div><br></div></div><div class="gmail_extra"><br>
<br><div class="gmail_quote">On Thu, Mar 6, 2014 at 11:13 AM, Jeff Haran <span dir="ltr">&lt;<a href="mailto:Jeff.Haran@citrix.com" target="_blank">Jeff.Haran@citrix.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="HOEnZb"><div class="h5">&gt; -----Original Message-----<br>
&gt; From: pramod gurav [mailto:<a href="mailto:pramod.gurav.etc@gmail.com">pramod.gurav.etc@gmail.com</a>]<br>
&gt; Sent: Thursday, March 06, 2014 12:56 AM<br>
&gt; To: Jeff Haran<br>
&gt; Cc: priyaranjan; kernelnewbies<br>
&gt; Subject: Re: Linux MM : virtual memory address space<br>
&gt;<br>
&gt; On Wed, Mar 5, 2014 at 12:39 AM, Jeff Haran &lt;<a href="mailto:Jeff.Haran@citrix.com">Jeff.Haran@citrix.com</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; From: <a href="mailto:kernelnewbies-bounces@kernelnewbies.org">kernelnewbies-bounces@kernelnewbies.org</a><br>
&gt; &gt; [mailto:<a href="mailto:kernelnewbies-bounces@kernelnewbies.org">kernelnewbies-bounces@kernelnewbies.org</a>] On Behalf Of pramod gurav<br>
&gt; &gt; Sent: Monday, March 03, 2014 11:33 PM<br>
&gt; &gt; To: priyaranjan<br>
&gt; &gt; Cc: kernelnewbies<br>
&gt; &gt; Subject: Re: Linux MM : virtual memory address space<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Mon, Mar 3, 2014 at 11:52 PM, priyaranjan &lt;<a href="mailto:priyaranjan45678@gmail.com">priyaranjan45678@gmail.com</a>&gt;<br>
&gt; &gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; I was going through <a href="http://linux-mm.org/HighMemory" target="_blank">http://linux-mm.org/HighMemory</a><br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; &quot;Currently the 32 bit x86 architecture is the most popular type of computer.<br>
&gt; &gt; In this architecture, traditionally the Linux kernel has split the 4GB of<br>
&gt; &gt; virtual memory address space into 3GB for user programs and 1GB for the<br>
&gt; &gt; kernel&quot;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; What about 64-bit system? Where does the code lie in linux kernel for the<br>
&gt; &gt; check?<br>
&gt; &gt;<br>
&gt; &gt; Is there any latest and updated memory management documentation for Linux<br>
&gt; &gt; kernel?<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Regards,<br>
&gt; &gt;<br>
&gt; &gt; Priyaranjan<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Priyaranjan,<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; As below link suggests:<br>
&gt; &gt;<br>
&gt; &gt; <a href="http://users.nccs.gov/~fwang2/linux/lk_addressing.txt" target="_blank">http://users.nccs.gov/~fwang2/linux/lk_addressing.txt</a><br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Also read this blog written in chinese:<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; <a href="http://adam8157.info/blog/2012/07/linux-x86-64-vm/" target="_blank">http://adam8157.info/blog/2012/07/linux-x86-64-vm/</a><br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; on 64 bit arch the virtual address space is huge (2 to thr power of 64). So<br>
&gt; &gt; the overhead of translating the virtual addresses will be high. TO avoid<br>
&gt; &gt; this only lower 48 bits are used to form virtual addresses.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; I believe this statement about only the lower 48 bits being used it not<br>
&gt; &gt; correct. That would imply that the upper 16 bits of all virtual addresses on<br>
&gt; &gt; x86_64 would be the same, which is clearly not the case since the upper 16<br>
&gt; &gt; bits of user space vas are all 0s yet the upper 16 bits of kernel space vas<br>
&gt; &gt; are all 1s.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Jeff Haran<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; Hi Jeff,<br>
&gt; Just noticed a line in /proc/cpuinfo on my 64 bit linux Machine which is:<br>
&gt;<br>
&gt; --&gt; address sizes : 36 bits physical, 48 bits virtual<br>
&gt;<br>
&gt; This should confirm the statement that, only lower 48 bits are used<br>
&gt; for virtual address space on a 64 it arch.<br>
&gt; And about upper 16 bits in kernel being 1s in the address range shown<br>
&gt; in the link, I think they are not correct.<br>
<br>
</div></div>All I can suggest is that you take a kernel and modify it to prink() the virtual address of some kernel data structure (or write a module to do the same) and see for yourself. At least on the x86_64 systems I use, the address of for example a struct sk_buff, which is allocated from a kmem cache, is in the upper end of the 64 bit address range. The top 16 bits are all 1s. Always. This is running recent Redhat EL6, but I believe the same will be true for kernels from <a href="http://kernel.org" target="_blank">kernel.org</a>.<br>

<span class="HOEnZb"><font color="#888888"><br>
Jeff Haran<br>
</font></span><div class="HOEnZb"><div class="h5"><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>
</div></div></blockquote></div><br></div>