blob: abd8aa240c033720991206366d9400aedd11ede6 [file] [log] [blame]
Garrett Cooperd2deda92011-01-18 01:43:39 -08001/*
2 * Out Of Memory (OOM) for NUMA
3 *
4 * The program is designed to cope with unpredictable like amount and
5 * system physical memory, swap size and other VMM technology like KSM,
6 * memcg, memory hotplug and so on which may affect the OOM
7 * behaviours. It simply increase the memory consumption 3G each time
8 * until all the available memory is consumed and OOM is triggered.
9 *
10 * Copyright (C) 2010 Red Hat, Inc.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of version 2 of the GNU General Public
13 * License as published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it would be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 * Further, this software is distributed without any warranty that it
20 * is free of the rightful claim of any third person regarding
21 * infringement or the like. Any license provided herein, whether
22 * implied or otherwise, applies only to this software file. Patent
23 * licenses, if any, provided herein do not apply to combinations of
24 * this program with other software, or any other product whatsoever.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write the Free Software
28 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
29 * 02110-1301, USA.
30 */
Caspar Zhang79667fa2012-03-12 14:41:46 +080031
32#include "config.h"
33#include <sys/types.h>
34#include <sys/stat.h>
35#include <errno.h>
36#include <fcntl.h>
37#include <stdio.h>
Garrett Cooperd2deda92011-01-18 01:43:39 -080038#include "test.h"
39#include "usctest.h"
Caspar Zhang79667fa2012-03-12 14:41:46 +080040#include "mem.h"
Garrett Cooperd2deda92011-01-18 01:43:39 -080041
42char *TCID = "oom02";
43int TST_TOTAL = 1;
Garrett Cooperd2deda92011-01-18 01:43:39 -080044
45#if HAVE_NUMA_H && HAVE_LINUX_MEMPOLICY_H && HAVE_NUMAIF_H \
46 && HAVE_MPOL_CONSTANTS
Garrett Cooperd2deda92011-01-18 01:43:39 -080047int main(int argc, char *argv[])
48{
49 char *msg;
Caspar Zhangff74ba52012-02-27 16:13:18 +080050 int lc;
Garrett Cooperd2deda92011-01-18 01:43:39 -080051
Caspar Zhang05697c42012-02-20 19:20:57 +080052 msg = parse_opts(argc, argv, NULL, NULL);
53 if (msg != NULL)
Garrett Cooper15619ba2011-01-18 01:48:15 -080054 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooperd2deda92011-01-18 01:43:39 -080055
Garrett Cooper10e5d882011-01-20 01:29:53 -080056#if __WORDSIZE == 32
Garrett Cooper4bab3352011-01-18 01:59:16 -080057 tst_brkm(TCONF, NULL, "test is not designed for 32-bit system.");
58#endif
Garrett Cooperd2deda92011-01-18 01:43:39 -080059
Garrett Cooperd2deda92011-01-18 01:43:39 -080060 setup();
61
62 for (lc = 0; TEST_LOOPING(lc); lc++) {
Caspar Zhangd59a6592013-03-07 14:59:12 +080063 tst_count = 0;
Garrett Cooperd2deda92011-01-18 01:43:39 -080064
65 tst_resm(TINFO, "process mempolicy.");
Garrett Cooper4bab3352011-01-18 01:59:16 -080066 testoom(1, 0, 1);
Garrett Cooperd2deda92011-01-18 01:43:39 -080067
68 tst_resm(TINFO, "process cpuset.");
Garrett Cooper4bab3352011-01-18 01:59:16 -080069 testoom(0, 0, 1);
Garrett Cooperd2deda92011-01-18 01:43:39 -080070 }
71 cleanup();
Garrett Coopera11ad222011-01-18 02:02:55 -080072 tst_exit();
Garrett Cooperd2deda92011-01-18 01:43:39 -080073}
74
75void setup(void)
76{
Garrett Cooperd6f4ae12011-01-18 01:48:55 -080077 tst_require_root(NULL);
Garrett Cooperd2deda92011-01-18 01:43:39 -080078 tst_sig(FORK, DEF_HANDLER, cleanup);
79 TEST_PAUSE;
80
Caspar Zhangff74ba52012-02-27 16:13:18 +080081 overcommit = get_sys_tune("overcommit_memory");
82 set_sys_tune("overcommit_memory", 1, 1);
Garrett Cooperd2deda92011-01-18 01:43:39 -080083 mount_mem("cpuset", "cpuset", NULL, CPATH, CPATH_NEW);
84}
85
86void cleanup(void)
87{
Caspar Zhangff74ba52012-02-27 16:13:18 +080088 set_sys_tune("overcommit_memory", overcommit, 0);
Garrett Cooperd2deda92011-01-18 01:43:39 -080089 umount_mem(CPATH, CPATH_NEW);
90
91 TEST_CLEANUP;
Garrett Cooperd2deda92011-01-18 01:43:39 -080092}
93
94#else /* no NUMA */
95int main(void)
96{
Garrett Cooper15619ba2011-01-18 01:48:15 -080097 tst_brkm(TCONF, NULL, "no NUMA development packages installed.");
Garrett Cooperd2deda92011-01-18 01:43:39 -080098}
99#endif