Man Page: truncate_inode_pages_range
Operating Environment: suse
Section: 9
TRUNCATE_INODE_PAGES(9) Memory Management in Linux TRUNCATE_INODE_PAGES(9)NAMEtruncate_inode_pages_range - truncate range of pages specified by start & end byte offsetsSYNOPSISvoid truncate_inode_pages_range(struct address_space * mapping, loff_t lstart, loff_t lend);ARGUMENTSmapping mapping to truncate lstart offset from which to truncate lend offset to which to truncateDESCRIPTIONTruncate the page cache, removing the pages that are between specified offsets (and zeroing out partial page (if lstart is not page aligned)). Truncate takes two passes - the first pass is nonblocking. It will not block on page locks and it will not block on writeback. The second pass will wait. This is to prevent as much IO as possible in the affected region. The first pass will remove most pages, so the search cost of the second pass is low. When looking at page->index outside the page lock we need to be careful to copy it into a local to avoid races (it could change at any time). We pass down the cache-hot hint to the page freeing code. Even if the mapping is large, it is probably the case that the final pages are the most recently touched, and freeing happens in ascending file offset order.COPYRIGHTKernel Hackers Manual 2.6. July 2010 TRUNCATE_INODE_PAGES(9)
| Related Man Pages |
|---|
| remap_file_pages(2) - centos |
| remap_file_pages(2) - suse |
| fadvise64_64(2) - linux |
| fadvise64(2) - mojave |
| fadvise64_64(2) - x11r4 |
| Similar Topics in the Unix Linux Community |
|---|
| Is UNIX an open source OS ? |
| Change directory error |
| Getting command output to putty window title. |
| Update kernel Linux without reboot?! |
| SOCKS proxy & PAM configuration exposure |