xref: /freebsd/contrib/netbsd-tests/rump/rumpkern/t_vm.c (revision 1a36faad54665288ed4eb839d2a4699ae2ead45e)
1*63d1fd59SEnji Cooper /*	$NetBSD: t_vm.c,v 1.4 2017/01/13 21:30:43 christos Exp $	*/
257718be8SEnji Cooper 
357718be8SEnji Cooper /*-
457718be8SEnji Cooper  * Copyright (c) 2010 The NetBSD Foundation, Inc.
557718be8SEnji Cooper  * All rights reserved.
657718be8SEnji Cooper  *
757718be8SEnji Cooper  * Redistribution and use in source and binary forms, with or without
857718be8SEnji Cooper  * modification, are permitted provided that the following conditions
957718be8SEnji Cooper  * are met:
1057718be8SEnji Cooper  * 1. Redistributions of source code must retain the above copyright
1157718be8SEnji Cooper  *    notice, this list of conditions and the following disclaimer.
1257718be8SEnji Cooper  * 2. Redistributions in binary form must reproduce the above copyright
1357718be8SEnji Cooper  *    notice, this list of conditions and the following disclaimer in the
1457718be8SEnji Cooper  *    documentation and/or other materials provided with the distribution.
1557718be8SEnji Cooper  *
1657718be8SEnji Cooper  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
1757718be8SEnji Cooper  * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
1857718be8SEnji Cooper  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
1957718be8SEnji Cooper  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2057718be8SEnji Cooper  * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
2157718be8SEnji Cooper  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2257718be8SEnji Cooper  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
2357718be8SEnji Cooper  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2457718be8SEnji Cooper  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
2557718be8SEnji Cooper  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2657718be8SEnji Cooper  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
2757718be8SEnji Cooper  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2857718be8SEnji Cooper  */
2957718be8SEnji Cooper 
3057718be8SEnji Cooper #include <sys/types.h>
3157718be8SEnji Cooper #include <sys/mount.h>
3257718be8SEnji Cooper #include <sys/sysctl.h>
3357718be8SEnji Cooper 
3457718be8SEnji Cooper #include <rump/rump.h>
3557718be8SEnji Cooper 
3657718be8SEnji Cooper #include <atf-c.h>
3757718be8SEnji Cooper #include <stdio.h>
3857718be8SEnji Cooper #include <stdlib.h>
3957718be8SEnji Cooper 
40*63d1fd59SEnji Cooper #include "h_macros.h"
4157718be8SEnji Cooper #include "../kernspace/kernspace.h"
4257718be8SEnji Cooper 
4357718be8SEnji Cooper ATF_TC(busypage);
ATF_TC_HEAD(busypage,tc)4457718be8SEnji Cooper ATF_TC_HEAD(busypage, tc)
4557718be8SEnji Cooper {
4657718be8SEnji Cooper 
4757718be8SEnji Cooper 	atf_tc_set_md_var(tc, "descr", "Checks VM pagewaits work");
4857718be8SEnji Cooper }
4957718be8SEnji Cooper 
ATF_TC_BODY(busypage,tc)5057718be8SEnji Cooper ATF_TC_BODY(busypage, tc)
5157718be8SEnji Cooper {
5257718be8SEnji Cooper 
5357718be8SEnji Cooper 	rump_init();
5457718be8SEnji Cooper 
5557718be8SEnji Cooper 	rump_schedule();
5657718be8SEnji Cooper 	rumptest_busypage();
5757718be8SEnji Cooper 	rump_unschedule();
5857718be8SEnji Cooper }
5957718be8SEnji Cooper 
6057718be8SEnji Cooper ATF_TC(uvmwait);
ATF_TC_HEAD(uvmwait,tc)6157718be8SEnji Cooper ATF_TC_HEAD(uvmwait, tc)
6257718be8SEnji Cooper {
6357718be8SEnji Cooper 
6457718be8SEnji Cooper 	atf_tc_set_md_var(tc, "descr", "Tests that uvm_wait works");
6557718be8SEnji Cooper 	atf_tc_set_md_var(tc, "timeout", "30");
6657718be8SEnji Cooper }
6757718be8SEnji Cooper 
6857718be8SEnji Cooper #define UVMWAIT_LIMIT 1024*1024
ATF_TC_BODY(uvmwait,tc)6957718be8SEnji Cooper ATF_TC_BODY(uvmwait, tc)
7057718be8SEnji Cooper {
7157718be8SEnji Cooper 	char buf[64];
7257718be8SEnji Cooper 
7357718be8SEnji Cooper 	/* limit rump kernel memory */
7457718be8SEnji Cooper 	snprintf(buf, sizeof(buf), "%d", UVMWAIT_LIMIT);
7557718be8SEnji Cooper 	setenv("RUMP_MEMLIMIT", buf, 1);
7657718be8SEnji Cooper 
7757718be8SEnji Cooper 	rump_init();
7857718be8SEnji Cooper 
7957718be8SEnji Cooper 	rump_schedule();
8057718be8SEnji Cooper 	rumptest_alloc(UVMWAIT_LIMIT);
8157718be8SEnji Cooper 	rump_unschedule();
8257718be8SEnji Cooper }
8357718be8SEnji Cooper 
ATF_TP_ADD_TCS(tp)8457718be8SEnji Cooper ATF_TP_ADD_TCS(tp)
8557718be8SEnji Cooper {
8657718be8SEnji Cooper 
8757718be8SEnji Cooper 	ATF_TP_ADD_TC(tp, busypage);
8857718be8SEnji Cooper 	ATF_TP_ADD_TC(tp, uvmwait);
8957718be8SEnji Cooper 
9057718be8SEnji Cooper 	return atf_no_error();
9157718be8SEnji Cooper }
92