• Home
Name Date Size #Lines LOC

..--

.gitignoreD03-May-202439 43

00_description.txtD03-May-20243 KiB6856

CHANGELOGD03-May-202457 31

COPYINGD03-May-202417.6 KiB341281

MakefileD03-May-20241 KiB304

READMED03-May-20242.1 KiB7753

TODOD03-May-20245 KiB8573

fork_exec_loop.cD03-May-20241.2 KiB4017

fork_freeze.shD03-May-20242 KiB7336

freeze_cancel.shD03-May-20241.9 KiB6631

freeze_kill_thaw.shD03-May-20242.6 KiB9037

freeze_move_thaw.shD03-May-20243.7 KiB11446

freeze_self_thaw.shD03-May-20242.6 KiB9245

freeze_sleep_thaw.shD03-May-20242.6 KiB8637

freeze_thaw.shD03-May-20241.9 KiB6832

freeze_write_freezing.shD03-May-20241.9 KiB6128

libcgroup_freezerD03-May-202422.9 KiB1,000759

libltpD03-May-20241.9 KiB10267

run_freezer.shD03-May-20243.3 KiB13481

stop_freeze_sleep_thaw_cont.shD03-May-20242.4 KiB8844

stop_freeze_thaw_cont.shD03-May-20242.2 KiB8438

timed_forkbomb.cD03-May-20242.2 KiB8653

vfork.cD03-May-20248.4 KiB394290

vfork_freeze.shD03-May-20243.1 KiB12163

write_freezing.shD03-May-20241.8 KiB5926

README

1==============================================================
2Test Suite for the Control Group Freezer and Signal Subsystems
3==============================================================
4Author: Matt Helsley
5Date: June, 2008
6Last update: January 19th, 2009
7
8About:
9------
10These tests exercise the freezer and signal subsystems (aka controllers)
11available since kernel 2.6.28 or later.
12
13These tests exercise the freezer control group controller. This controller is
14a useful for implementing container checkpointing or if you wish to gradually
15freeze tasks in cgroups before doing a suspend.
16
17The common case is embodied in the freeze_thaw.sh test file. However,
18the scripts are also designed to test a few obscure cases such as:
19	freeze self -- freeze the control group that the current process is
20		in
21	freeze cancellation -- freeze but then backout of the freeze processing
22		and issue a "thaw" command before reaching the frozen state
23	signalling freezing/frozen tasks -- this should delay delivery of the
24		signal until the task is unfrozen
25	vfork -- The vfork system call introduces an obscure special case for
26		the freezer kernel code. This test case attempts to trigger any
27		unanticipated corner cases involving vfork.
28
29
30NOTES:
31
32	Using the cgroup freezer prevents the tasks from being automatically
33		woken up upon a "Power Management Resume". You will need to
34		manually unfreeze cgroups.
35
36	These tests assume that most of the library functions in
37	libcgroup_subsys take much less than $sample_sleep time to execute. If
38	this assumption is incorrect then many of these tests may fail in
39	unusual ways. So make sure $sample_sleep is a "reasonable" amount of
40	time.
41
42Building:
43---------
44
45Run the command line:
46	make all
47
48
49Installing:
50-----------
51
52Run the command line:
53
54
55Cleaning:
56---------
57
58Run the command line:
59
60	make clean
61
62
63Running:
64--------
65
66Run the command line:
67
68	./run.sh
69
70Results:
71--------
72
73The results should show up as PASS/FAIL in the LTP logs for each script. The
74output frequently will be more specific (beyond which test script failed)
75about where and what failure occurred.
76
77