blob: 8bbb18a1b3f6d9f39be4a1e0e36f614d6134f25a [file] [log] [blame]
Garrett Cooperd2deda92011-01-18 01:43:39 -08001/*
Zhouping Liu62d50b72013-03-19 11:40:50 +08002 * Out Of Memory (OOM) for mempolicy - need NUMA system support
Garrett Cooperd2deda92011-01-18 01:43:39 -08003 *
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>
Zhouping Liu4849bb32013-03-19 11:40:52 +080038#include "numa_helper.h"
Garrett Cooperd2deda92011-01-18 01:43:39 -080039#include "test.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
Zhouping Liu62d50b72013-03-19 11:40:50 +080047
Garrett Cooperd2deda92011-01-18 01:43:39 -080048int main(int argc, char *argv[])
49{
Caspar Zhangff74ba52012-02-27 16:13:18 +080050 int lc;
Garrett Cooperd2deda92011-01-18 01:43:39 -080051
Cyril Hrubisd6d11d02015-03-09 17:35:43 +010052 tst_parse_opts(argc, argv, NULL, NULL);
Garrett Cooperd2deda92011-01-18 01:43:39 -080053
Garrett Cooper10e5d882011-01-20 01:29:53 -080054#if __WORDSIZE == 32
Garrett Cooper4bab3352011-01-18 01:59:16 -080055 tst_brkm(TCONF, NULL, "test is not designed for 32-bit system.");
56#endif
Garrett Cooperd2deda92011-01-18 01:43:39 -080057
Garrett Cooperd2deda92011-01-18 01:43:39 -080058 setup();
59
60 for (lc = 0; TEST_LOOPING(lc); lc++) {
Caspar Zhangd59a6592013-03-07 14:59:12 +080061 tst_count = 0;
Garrett Cooperd2deda92011-01-18 01:43:39 -080062
Zhouping Liu62d50b72013-03-19 11:40:50 +080063 tst_resm(TINFO, "OOM on MPOL_BIND mempolicy...");
Jan Stancek30ac84c2014-07-25 09:58:47 +020064 testoom(MPOL_BIND, 0, ENOMEM, 1);
Garrett Cooperd2deda92011-01-18 01:43:39 -080065
Zhouping Liu62d50b72013-03-19 11:40:50 +080066 tst_resm(TINFO, "OOM on MPOL_INTERLEAVE mempolicy...");
Jan Stancek30ac84c2014-07-25 09:58:47 +020067 testoom(MPOL_INTERLEAVE, 0, ENOMEM, 1);
Zhouping Liu62d50b72013-03-19 11:40:50 +080068
69 tst_resm(TINFO, "OOM on MPOL_PREFERRED mempolicy...");
Jan Stancek30ac84c2014-07-25 09:58:47 +020070 testoom(MPOL_PREFERRED, 0, ENOMEM, 1);
Garrett Cooperd2deda92011-01-18 01:43:39 -080071 }
72 cleanup();
Garrett Coopera11ad222011-01-18 02:02:55 -080073 tst_exit();
Garrett Cooperd2deda92011-01-18 01:43:39 -080074}
75
76void setup(void)
77{
Cyril Hrubisd1e794d2015-07-30 23:52:51 +020078 tst_require_root();
Garrett Cooperd2deda92011-01-18 01:43:39 -080079 tst_sig(FORK, DEF_HANDLER, cleanup);
80 TEST_PAUSE;
81
Jan Stancekb8c69af2016-02-23 11:00:32 +010082 if (!is_numa(NULL, NH_MEMS, 2))
Zhouping Liu4849bb32013-03-19 11:40:52 +080083 tst_brkm(TCONF, NULL, "The case need a NUMA system.");
Zhouping Liu62d50b72013-03-19 11:40:50 +080084
Caspar Zhangff74ba52012-02-27 16:13:18 +080085 overcommit = get_sys_tune("overcommit_memory");
86 set_sys_tune("overcommit_memory", 1, 1);
Garrett Cooperd2deda92011-01-18 01:43:39 -080087}
88
89void cleanup(void)
90{
Caspar Zhangff74ba52012-02-27 16:13:18 +080091 set_sys_tune("overcommit_memory", overcommit, 0);
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