LWN: Comments on "Yet another approach to memory fragmentation" https://lwn.net/Articles/121618/ This is a special feed containing comments posted to the individual LWN article titled "Yet another approach to memory fragmentation". en-us Sun, 02 Nov 2025 05:45:41 +0000 Sun, 02 Nov 2025 05:45:41 +0000 https://www.rssboard.org/rss-specification lwn@lwn.net Yet another approach to memory fragmentation https://lwn.net/Articles/166741/ https://lwn.net/Articles/166741/ yogeshom85 Hi,<br> <font class="QuotedText">&gt;Active freeing is not yet implemented in Mel's current patch, however. </font><br> <p> have active freeing implemented?<br> <p> <p> Sun, 08 Jan 2006 09:53:13 +0000 mapping of high-memory pages https://lwn.net/Articles/124151/ https://lwn.net/Articles/124151/ xoddam Ultimately, the high-memory pages will be mapped temporarily into the <br> kernel address space. <br> <br> Driver writers have the option of using a buffer in normal memory and <br> copy_to_user()/copy_from_user() functions to transfer data to/from <br> userspace. These functions hide the details of the virtual address <br> mapping. <br> <br> Alternatively the driver can use get_user_pages() to 'pin' the userspace <br> pages into memory and kmap() to get the kernel address of each page. <br> kmap() will return the fixed address of a normal page, or map a high <br> memory page into the kernel. The pages must be released afterwards with <br> kunmap() (a noop if the page is normal) and page_cache_release(). <br> <br> Fri, 18 Feb 2005 03:57:59 +0000 Yet another approach to memory fragmentation https://lwn.net/Articles/123262/ https://lwn.net/Articles/123262/ Nir I have a question. I hope I am not too rude. i am trying to understand whether high memory is visible in interrupt context ? When sending/getting a buffer to disk or NIC from an application that mapped high memory pages ( > 1GB ) are they copied to a normal memory and then copied to the user buffer ? Thank you. Raz Ben Jehuda razb@bitband.com Mon, 14 Feb 2005 08:40:28 +0000