aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing
diff options
context:
space:
mode:
authorSimon Guo <wei.guo.simon@gmail.com>2016-10-07 19:59:43 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-10-07 21:46:28 -0400
commitc7f032bbe4cacb57e49d5c48bf06de8dc28a449f (patch)
tree17ef7645fa23703a9de33b3b413d755eb6c17f27 /tools/testing
parentb155b4fde5bdde9fed439cd1f5ea07173df2ed31 (diff)
selftest: split mlock2_ funcs into separate mlock2.h
To prepare mlock2.h whose functionality will be reused. Link: http://lkml.kernel.org/r/1472554781-9835-4-git-send-email-wei.guo.simon@gmail.com Signed-off-by: Simon Guo <wei.guo.simon@gmail.com> Cc: Alexey Klimov <klimov.linux@gmail.com> Cc: Eric B Munson <emunson@akamai.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com> Cc: Mel Gorman <mgorman@techsingularity.net> Cc: Michal Hocko <mhocko@suse.com> Cc: Shuah Khan <shuah@kernel.org> Cc: Simon Guo <wei.guo.simon@gmail.com> Cc: Thierry Reding <treding@nvidia.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'tools/testing')
-rw-r--r--tools/testing/selftests/vm/mlock2-tests.c21
-rw-r--r--tools/testing/selftests/vm/mlock2.h20
2 files changed, 21 insertions, 20 deletions
diff --git a/tools/testing/selftests/vm/mlock2-tests.c b/tools/testing/selftests/vm/mlock2-tests.c
index 02ca5e0177c5..7cb13cede483 100644
--- a/tools/testing/selftests/vm/mlock2-tests.c
+++ b/tools/testing/selftests/vm/mlock2-tests.c
@@ -7,27 +7,8 @@
7#include <string.h> 7#include <string.h>
8#include <sys/time.h> 8#include <sys/time.h>
9#include <sys/resource.h> 9#include <sys/resource.h>
10#include <syscall.h>
11#include <errno.h>
12#include <stdbool.h> 10#include <stdbool.h>
13 11#include "mlock2.h"
14#ifndef MLOCK_ONFAULT
15#define MLOCK_ONFAULT 1
16#endif
17
18#ifndef MCL_ONFAULT
19#define MCL_ONFAULT (MCL_FUTURE << 1)
20#endif
21
22static int mlock2_(void *start, size_t len, int flags)
23{
24#ifdef __NR_mlock2
25 return syscall(__NR_mlock2, start, len, flags);
26#else
27 errno = ENOSYS;
28 return -1;
29#endif
30}
31 12
32struct vm_boundaries { 13struct vm_boundaries {
33 unsigned long start; 14 unsigned long start;
diff --git a/tools/testing/selftests/vm/mlock2.h b/tools/testing/selftests/vm/mlock2.h
new file mode 100644
index 000000000000..b9c6d9fe372f
--- /dev/null
+++ b/tools/testing/selftests/vm/mlock2.h
@@ -0,0 +1,20 @@
1#include <syscall.h>
2#include <errno.h>
3
4#ifndef MLOCK_ONFAULT
5#define MLOCK_ONFAULT 1
6#endif
7
8#ifndef MCL_ONFAULT
9#define MCL_ONFAULT (MCL_FUTURE << 1)
10#endif
11
12static int mlock2_(void *start, size_t len, int flags)
13{
14#ifdef __NR_mlock2
15 return syscall(__NR_mlock2, start, len, flags);
16#else
17 errno = ENOSYS;
18 return -1;
19#endif
20}