blob: 55ec2555fd936d7130dc0c977c03658358dbb668 [file] [log] [blame]
subrata_modak8dfa1b32008-07-26 04:15:36 +00001/*
2 * Copyright (c) 2008 Vijay Kumar B. <vijaykumar@bravegnu.org>
3 *
4 * Based on testcases/kernel/syscalls/waitpid/waitpid01.c
5 * Original copyright message:
6 *
7 * Copyright (c) International Business Machines Corp., 2001
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
subrata_modak8dfa1b32008-07-26 04:15:36 +000022 */
23
24/*
25 * NAME
26 * move_pages08.c
27 *
28 * DESCRIPTION
29 * Failure when the no. of pages is ULONG_MAX.
30 *
31 * ALGORITHM
32 *
33 * 1. Pass ULONG_MAX pages to move_pages().
34 * 2. Check if errno is set to E2BIG.
35 *
36 * USAGE: <for command-line>
37 * move_pages08 [-c n] [-i n] [-I x] [-P x] [-t]
38 * where, -c n : Run n copies concurrently.
39 * -i n : Execute test n times.
40 * -I x : Execute test for x seconds.
41 * -P x : Pause for x seconds between iterations.
42 * -t : Turn on syscall timing.
43 *
44 * History
45 * 05/2008 Vijay Kumar
46 * Initial Version.
47 *
48 * Restrictions
Jan Stancek7e5d1ed2012-05-09 13:51:53 +020049 * kernel < 2.6.29
subrata_modak8dfa1b32008-07-26 04:15:36 +000050 */
51
52#include <sys/mman.h>
53#include <sys/types.h>
54#include <sys/wait.h>
55#include <unistd.h>
56#include <errno.h>
Garrett Coopere8530df2010-12-21 11:37:57 -080057#include "test.h"
subrata_modak8dfa1b32008-07-26 04:15:36 +000058#include "move_pages_support.h"
59
60#define TEST_PAGES 2
61#define TEST_NODES 2
62
Wanlong Gaod6153bf2012-05-09 20:25:49 +080063static void setup(void);
64static void cleanup(void);
subrata_modak8dfa1b32008-07-26 04:15:36 +000065
66char *TCID = "move_pages08";
67int TST_TOTAL = 1;
subrata_modak8dfa1b32008-07-26 04:15:36 +000068
69int main(int argc, char **argv)
70{
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020071 const char *msg;
subrata_modak8dfa1b32008-07-26 04:15:36 +000072
Garrett Cooper45e285d2010-11-22 12:19:25 -080073 msg = parse_opts(argc, argv, NULL, NULL);
Wanlong Gaod6153bf2012-05-09 20:25:49 +080074 if (msg != NULL)
subrata_modak8dfa1b32008-07-26 04:15:36 +000075 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -080076
subrata_modak8dfa1b32008-07-26 04:15:36 +000077 setup();
78
yaberauneyaef772532009-10-09 17:55:43 +000079#if HAVE_NUMA_MOVE_PAGES
80 unsigned int i;
Cyril Hrubis89af32a2012-10-24 16:39:11 +020081 int lc;
Jan Stancek134bea02012-06-28 11:03:18 +020082 unsigned int from_node;
83 unsigned int to_node;
84 int ret;
85
Jan Stancekd534a442012-08-09 14:15:38 +080086 ret = get_allowed_nodes(NH_MEMS, 2, &from_node, &to_node);
87 if (ret < 0)
Wanlong Gao354ebb42012-12-07 10:10:04 +080088 tst_brkm(TBROK | TERRNO, cleanup, "get_allowed_nodes: %d", ret);
yaberauneyaef772532009-10-09 17:55:43 +000089
subrata_modak8dfa1b32008-07-26 04:15:36 +000090 /* check for looping state if -i option is given */
91 for (lc = 0; TEST_LOOPING(lc); lc++) {
92 void *pages[TEST_PAGES] = { 0 };
93 int nodes[TEST_PAGES];
94 int status[TEST_PAGES];
subrata_modak8dfa1b32008-07-26 04:15:36 +000095
Caspar Zhangd59a6592013-03-07 14:59:12 +080096 /* reset tst_count in case we are looping */
97 tst_count = 0;
subrata_modak8dfa1b32008-07-26 04:15:36 +000098
99 ret = alloc_pages_on_node(pages, TEST_PAGES, from_node);
100 if (ret == -1)
101 continue;
102
103 for (i = 0; i < TEST_PAGES; i++)
104 nodes[i] = to_node;
105
106 ret = numa_move_pages(0, ULONG_MAX, pages, nodes,
107 status, MPOL_MF_MOVE);
subrata_modak8dfa1b32008-07-26 04:15:36 +0000108 if (ret == -1 && errno == E2BIG)
109 tst_resm(TPASS, "move_pages failed with "
110 "E2BIG as expected");
111 else
Jan Stancek855da1d2014-02-25 16:09:56 +0100112 tst_resm(TFAIL|TERRNO, "move pages did not fail "
113 "with E2BIG ret: %d", ret);
subrata_modak8dfa1b32008-07-26 04:15:36 +0000114
115 free_pages(pages, TEST_PAGES);
116 }
yaberauneyaef772532009-10-09 17:55:43 +0000117#else
118 tst_resm(TCONF, "move_pages support not found.");
119#endif
subrata_modak8dfa1b32008-07-26 04:15:36 +0000120
121 cleanup();
Garrett Cooper1e6f5a62010-12-19 09:58:10 -0800122 tst_exit();
subrata_modak8dfa1b32008-07-26 04:15:36 +0000123
subrata_modak8dfa1b32008-07-26 04:15:36 +0000124}
125
126/*
127 * setup() - performs all ONE TIME setup for this test
128 */
Wanlong Gaod6153bf2012-05-09 20:25:49 +0800129static void setup(void)
subrata_modak8dfa1b32008-07-26 04:15:36 +0000130{
Jan Stancek7e5d1ed2012-05-09 13:51:53 +0200131 /*
132 * commit 3140a2273009c01c27d316f35ab76a37e105fdd8
133 * Author: Brice Goglin <Brice.Goglin@inria.fr>
134 * Date: Tue Jan 6 14:38:57 2009 -0800
135 * mm: rework do_pages_move() to work on page_sized chunks
136 *
137 * reworked do_pages_move() to work by page-sized chunks and removed E2BIG
138 */
139 if ((tst_kvercmp(2, 6, 29)) >= 0)
140 tst_brkm(TCONF, NULL, "move_pages: E2BIG was removed in "
141 "commit 3140a227");
Garrett Cooper2c282152010-12-16 00:55:50 -0800142
subrata_modak8dfa1b32008-07-26 04:15:36 +0000143 tst_sig(FORK, DEF_HANDLER, cleanup);
144
145 check_config(TEST_NODES);
146
147 /* Pause if that option was specified
148 * TEST_PAUSE contains the code to fork the test with the -c option.
149 */
150 TEST_PAUSE;
151}
152
153/*
154 * cleanup() - performs all ONE TIME cleanup for this test at completion
155 */
Wanlong Gaod6153bf2012-05-09 20:25:49 +0800156static void cleanup(void)
subrata_modak8dfa1b32008-07-26 04:15:36 +0000157{
subrata_modak8dfa1b32008-07-26 04:15:36 +0000158
Wanlong Gaod6153bf2012-05-09 20:25:49 +0800159}