1FILEMAP_WRITE_AND_WA(9) Memory Management in Linux FILEMAP_WRITE_AND_WA(9)
2
3
4
6 filemap_write_and_wait_range - write out & wait on a file range
7
9 int filemap_write_and_wait_range(struct address_space * mapping,
10 loff_t lstart, loff_t lend);
11
13 mapping
14 the address_space for the pages
15
16 lstart
17 offset in bytes where the range starts
18
19 lend
20 offset in bytes where the range ends (inclusive)
21
23 Write out and wait upon file offsets lstart->lend, inclusive.
24
25 Note that `lend' is inclusive (describes the last byte to be written)
26 so that this function can be used to write to the very end-of-file (end
27 = -1).
28
30Kernel Hackers Manual 3.10 June 2019 FILEMAP_WRITE_AND_WA(9)