summaryrefslogtreecommitdiffstats
path: root/lib/ext2fs/tst_bitmaps_cmd.ct
blob: 13b7fa7c811d0f618395fa34e32a8cadee49301b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
command_table tst_bitmaps_cmds;

request setup_cmd, "Setup file system",
	setup;

request close_cmd, "Close file system",
	close;

request dump_inode_bitmap_cmd, "Dump the inode bitmap",
	dump_inode_bitmap, dump_ib;

request dump_block_bitmap_cmd, "Dump the block bitmap",
	dump_block_bitmap, dump_bb;

request do_setb, "Set block",
	set_block, setb;

request do_clearb, "Clear block",
	clear_block, clearb;

request do_testb, "Test block",
	test_block, testb;

request do_ffzb, "Find first zero block",
	find_first_zero_block, ffzb;

request do_ffsb, "Find first set block",
	find_first_set_block, ffsb;

request do_zerob, "Clear block bitmap",
	clear_block_bitmap, zerob;

request do_seti, "Set inode",
	set_inode, seti;

request do_cleari, "Clear inode",
	clear_inode, cleari;

request do_testi, "Test inode",
	test_inode, testi;

request do_ffzi, "Find first zero inode",
	find_first_zero_inode, ffzi;

request do_ffsi, "Find first set inode",
	find_first_set_inode, ffsi;

request do_zeroi, "Clear inode bitmap",
	clear_inode_bitmap, zeroi;

end;