LWN: Comments on "Four-level page tables" http://lwn.net/Articles/106177/ This is a special feed containing comments posted to the individual LWN article titled "Four-level page tables". hourly 2 Four-level page tables http://lwn.net/Articles/225720/rss 2007-03-13T05:41:03+00:00 amit2030 From the kernel code, the first line is actually two lines:<br> <p> struct mm_struct *mm = current-&gt;mm;<br> pgd = pgd_offset(mm, address);<br> Four-level page tables http://lwn.net/Articles/106589/rss 2004-10-14T17:36:12+00:00 tjc Great article! I always wondered how that worked, but I didn't have time to research it. Articles like this make the subscription cost seem trivial.<br> Four-level page tables http://lwn.net/Articles/106570/rss 2004-10-14T14:13:50+00:00 ajax First line, below, needed for completeness. <blockquote><pre> pgd = pgd_offset(address); pmd = pmd_offset(pgd, address); pte = *pte_offset_map(pmd, address); page = pte_page(pte); </pre></blockquote>