1FIND_GET_ENTRIES_TAG(9) Memory Management in Linux FIND_GET_ENTRIES_TAG(9)
2
3
4
6 find_get_entries_tag - find and return entries that match tag
7
9 unsigned find_get_entries_tag(struct address_space * mapping,
10 pgoff_t start, int tag,
11 unsigned int nr_entries,
12 struct page ** entries,
13 pgoff_t * indices);
14
16 mapping
17 the address_space to search
18
19 start
20 the starting page cache index
21
22 tag
23 the tag index
24
25 nr_entries
26 the maximum number of entries
27
28 entries
29 where the resulting entries are placed
30
31 indices
32 the cache indices corresponding to the entries in entries
33
35 Like find_get_entries, except we only return entries which are tagged
36 with tag.
37
39Kernel Hackers Manual 3.10 June 2019 FIND_GET_ENTRIES_TAG(9)