You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
7 months ago
..
00_description.txt v811_spc009_project 7 months ago
CHANGELOG v811_spc009_project 7 months ago
COPYING v811_spc009_project 7 months ago
Makefile v811_spc009_project 7 months ago
README v811_spc009_project 7 months ago
TODO v811_spc009_project 7 months ago
fork_exec_loop.c v811_spc009_project 7 months ago
fork_freeze.sh v811_spc009_project 7 months ago
freeze_cancel.sh v811_spc009_project 7 months ago
freeze_kill_thaw.sh v811_spc009_project 7 months ago
freeze_move_thaw.sh v811_spc009_project 7 months ago
freeze_self_thaw.sh v811_spc009_project 7 months ago
freeze_sleep_thaw.sh v811_spc009_project 7 months ago
freeze_thaw.sh v811_spc009_project 7 months ago
freeze_write_freezing.sh v811_spc009_project 7 months ago
libcgroup_freezer v811_spc009_project 7 months ago
libltp v811_spc009_project 7 months ago
run_freezer.sh v811_spc009_project 7 months ago
stop_freeze_sleep_thaw_cont.sh v811_spc009_project 7 months ago
stop_freeze_thaw_cont.sh v811_spc009_project 7 months ago
timed_forkbomb.c v811_spc009_project 7 months ago
vfork.c v811_spc009_project 7 months ago
vfork_freeze.sh v811_spc009_project 7 months ago
write_freezing.sh v811_spc009_project 7 months ago

README

==============================================================
Test Suite for the Control Group Freezer and Signal Subsystems
==============================================================
Author: Matt Helsley
Date: June, 2008
Last update: January 19th, 2009

About:
------
These tests exercise the freezer and signal subsystems (aka controllers)
available since kernel 2.6.28 or later.

These tests exercise the freezer control group controller. This controller is
a useful for implementing container checkpointing or if you wish to gradually
freeze tasks in cgroups before doing a suspend.

The common case is embodied in the freeze_thaw.sh test file. However,
the scripts are also designed to test a few obscure cases such as:
	freeze self -- freeze the control group that the current process is
		in
	freeze cancellation -- freeze but then backout of the freeze processing
		and issue a "thaw" command before reaching the frozen state
	signalling freezing/frozen tasks -- this should delay delivery of the
		signal until the task is unfrozen
	vfork -- The vfork system call introduces an obscure special case for
		the freezer kernel code. This test case attempts to trigger any
		unanticipated corner cases involving vfork.


NOTES:

	Using the cgroup freezer prevents the tasks from being automatically
		woken up upon a "Power Management Resume". You will need to
		manually unfreeze cgroups.

	These tests assume that most of the library functions in
	libcgroup_subsys take much less than $sample_sleep time to execute. If
	this assumption is incorrect then many of these tests may fail in
	unusual ways. So make sure $sample_sleep is a "reasonable" amount of
	time.

Building:
---------

Run the command line:
	make all


Installing:
-----------

Run the command line:


Cleaning:
---------

Run the command line:

	make clean


Running:
--------

Run the command line:

	./run.sh

Results:
--------

The results should show up as PASS/FAIL in the LTP logs for each script. The
output frequently will be more specific (beyond which test script failed)
about where and what failure occurred.