1REMAP_FILE_PAGES(2) Linux Programmer's Manual REMAP_FILE_PAGES(2)
2
3
4
6 remap_file_pages - create a non-linear file mapping
7
9 #define _GNU_SOURCE
10 #include <sys/mman.h>
11
12 int remap_file_pages(void *start, size_t size, int prot,
13 ssize_t pgoff, int flags);
14
16 The remap_file_pages() system call is used to create a non-linear map‐
17 ping, that is, a mapping in which the pages of the file are mapped into
18 a non-sequential order in memory. The advantage of using
19 remap_file_pages() over using repeated calls to mmap(2) is that the
20 former approach does not require the kernel to create additional VMA
21 (Virtual Memory Area) data structures.
22
23 To create a non-linear mapping we perform the following steps:
24
25 1. Use mmap() to create a mapping (which is initially linear).
26 This mapping must be created with the MAP_SHARED flag.
27
28 2. Use one or more calls to remap_file_pages() to rearrange the
29 correspondence between the pages of the mapping and the pages of
30 the file. It is possible to map the same page of a file into
31 multiple locations within the mapped region.
32
33 The pgoff and size arguments specify the region of the file that is to
34 be relocated within the mapping: pgoff is a file offset in units of the
35 system page size; size is the length of the region in bytes.
36
37 The start argument serves two purposes. First, it identifies the map‐
38 ping whose pages we want to rearrange. Thus, start must be an address
39 that falls within a region previously mapped by a call to mmap(). Sec‐
40 ond, start specifies the address at which the file pages identified by
41 pgoff and size will be placed.
42
43 The values specified in start and size should be multiples of the sys‐
44 tem page size. If they are not, then the kernel rounds both values
45 down to the nearest multiple of the page size.
46
47 The prot argument must be specified as 0.
48
49 The flags argument has the same meaning as for mmap(), but all flags
50 other than MAP_NONBLOCK are ignored.
51
53 On success, remap_file_pages() returns 0. On error, -1 is returned,
54 and errno is set appropriately.
55
57 The remap_file_pages() system call appeared in Linux 2.5.46.
58
60 EINVAL start does not refer to a valid mapping created with the
61 MAP_SHARED flag.
62
63 EINVAL start, size, prot, or pgoff is invalid.
64
66 The remap_file_pages() system call is Linux specific.
67
69 getpagesize(2), mmap(2), mmap2(2), mprotect(2), mremap(2), msync(2),
70 feature_test_macros(7)
71
72
73
74Linux 2.6 2004-10-28 REMAP_FILE_PAGES(2)