219 lines
5.0 KiB
C
219 lines
5.0 KiB
C
/*
|
|
* Copyright (c) 2008 Vijay Kumar B. <vijaykumar@bravegnu.org>
|
|
*
|
|
* Based on testcases/kernel/syscalls/waitpid/waitpid01.c
|
|
* Original copyright message:
|
|
*
|
|
* Copyright (c) International Business Machines Corp., 2001
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|
* the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/*
|
|
* NAME
|
|
* move_pages03.c
|
|
*
|
|
* DESCRIPTION
|
|
* Test movement of pages mapped by a process.
|
|
*
|
|
* ALGORITHM
|
|
* 1. Start the test case program as root.
|
|
* 2. Allocate a shared memory in NUMA node A.
|
|
* 3. Fork another process.
|
|
* 4. Use move_pages() to move the pages to NUMA node B, with the
|
|
* MPOL_MF_MOVE_ALL.
|
|
* 5. Check if all pages are in node B.
|
|
*
|
|
* USAGE: <for command-line>
|
|
* move_pages03 [-c n] [-i n] [-I x] [-P x] [-t]
|
|
* where, -c n : Run n copies concurrently.
|
|
* -i n : Execute test n times.
|
|
* -I x : Execute test for x seconds.
|
|
* -P x : Pause for x seconds between iterations.
|
|
* -t : Turn on syscall timing.
|
|
*
|
|
* History
|
|
* 05/2008 Vijay Kumar
|
|
* Initial Version.
|
|
*
|
|
* Restrictions
|
|
* None
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <semaphore.h>
|
|
#include <errno.h>
|
|
#include "test.h"
|
|
#include "move_pages_support.h"
|
|
|
|
#define TEST_PAGES 2
|
|
#define TEST_NODES 2
|
|
|
|
enum {
|
|
SEM_CHILD_SETUP,
|
|
SEM_PARENT_TEST,
|
|
|
|
MAX_SEMS
|
|
};
|
|
|
|
void setup(void);
|
|
void cleanup(void);
|
|
|
|
char *TCID = "move_pages03";
|
|
int TST_TOTAL = 1;
|
|
|
|
/*
|
|
* child() - touches shared pages, and waits for signal from parent.
|
|
* @pages: shared pages allocated in parent
|
|
* @sem: semaphore to sync with parent
|
|
*/
|
|
void child(void **pages, sem_t * sem)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < TEST_PAGES; i++) {
|
|
char *page;
|
|
|
|
page = pages[i];
|
|
page[0] = 0xAA;
|
|
}
|
|
|
|
/* Setup complete. Ask parent to continue. */
|
|
if (sem_post(&sem[SEM_CHILD_SETUP]) == -1)
|
|
tst_resm(TWARN | TERRNO, "error post semaphore");
|
|
|
|
/* Wait for testcase in parent to complete. */
|
|
if (sem_wait(&sem[SEM_PARENT_TEST]) == -1)
|
|
tst_resm(TWARN | TERRNO, "error wait semaphore");
|
|
|
|
exit(0);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
|
|
tst_parse_opts(argc, argv, NULL, NULL);
|
|
|
|
setup();
|
|
|
|
#ifdef HAVE_NUMA_V2
|
|
unsigned int i;
|
|
int lc;
|
|
unsigned int from_node;
|
|
unsigned int to_node;
|
|
int ret;
|
|
|
|
ret = get_allowed_nodes(NH_MEMS, 2, &from_node, &to_node);
|
|
if (ret < 0)
|
|
tst_brkm(TBROK | TERRNO, cleanup, "get_allowed_nodes: %d", ret);
|
|
|
|
/* check for looping state if -i option is given */
|
|
for (lc = 0; TEST_LOOPING(lc); lc++) {
|
|
void *pages[TEST_PAGES] = { 0 };
|
|
int nodes[TEST_PAGES];
|
|
int status[TEST_PAGES];
|
|
pid_t cpid;
|
|
sem_t *sem;
|
|
|
|
/* reset tst_count in case we are looping */
|
|
tst_count = 0;
|
|
|
|
ret = alloc_shared_pages_on_node(pages, TEST_PAGES, from_node);
|
|
if (ret == -1)
|
|
continue;
|
|
|
|
for (i = 0; i < TEST_PAGES; i++) {
|
|
nodes[i] = to_node;
|
|
}
|
|
|
|
sem = alloc_sem(MAX_SEMS);
|
|
if (sem == NULL) {
|
|
goto err_free_pages;
|
|
}
|
|
|
|
/*
|
|
* Fork a child process so that the shared pages are
|
|
* now really shared between two processes.
|
|
*/
|
|
cpid = fork();
|
|
if (cpid == -1) {
|
|
tst_resm(TBROK | TERRNO, "forking child failed");
|
|
goto err_free_sem;
|
|
} else if (cpid == 0) {
|
|
child(pages, sem);
|
|
}
|
|
|
|
/* Wait for child to setup and signal. */
|
|
if (sem_wait(&sem[SEM_CHILD_SETUP]) == -1)
|
|
tst_resm(TWARN | TERRNO, "error wait semaphore");
|
|
|
|
ret = numa_move_pages(0, TEST_PAGES, pages, nodes,
|
|
status, MPOL_MF_MOVE_ALL);
|
|
if (ret < 0) {
|
|
tst_resm(TFAIL|TERRNO, "move_pages failed");
|
|
goto err_kill_child;
|
|
} else if (ret > 0) {
|
|
tst_resm(TINFO, "move_pages() returned %d", ret);
|
|
}
|
|
|
|
verify_pages_on_node(pages, status, TEST_PAGES, to_node);
|
|
|
|
err_kill_child:
|
|
/* Test done. Ask child to terminate. */
|
|
if (sem_post(&sem[SEM_PARENT_TEST]) == -1)
|
|
tst_resm(TWARN | TERRNO, "error post semaphore");
|
|
/* Read the status, no zombies! */
|
|
wait(NULL);
|
|
err_free_sem:
|
|
free_sem(sem, MAX_SEMS);
|
|
err_free_pages:
|
|
free_shared_pages(pages, TEST_PAGES);
|
|
}
|
|
#else
|
|
tst_resm(TCONF, NUMA_ERROR_MSG);
|
|
#endif
|
|
|
|
cleanup();
|
|
|
|
tst_exit();
|
|
}
|
|
|
|
/*
|
|
* setup() - performs all ONE TIME setup for this test
|
|
*/
|
|
void setup(void)
|
|
{
|
|
|
|
tst_sig(FORK, DEF_HANDLER, cleanup);
|
|
|
|
check_config(TEST_NODES);
|
|
|
|
/* Pause if that option was specified
|
|
* TEST_PAUSE contains the code to fork the test with the -c option.
|
|
*/
|
|
TEST_PAUSE;
|
|
}
|
|
|
|
/*
|
|
* cleanup() - performs all ONE TIME cleanup for this test at completion
|
|
*/
|
|
void cleanup(void)
|
|
{
|
|
|
|
}
|