summaryrefslogtreecommitdiffstats
path: root/debugfs/ro_debug_cmds.ct
blob: 736ade6ac39cd69de1d8f1cef4888a557c199c05 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#
# Restricted set of debugfs commands
#
# Copyright (C) 1993 Theodore Ts'o.  This file may be redistributed
# under the terms of the GNU Public License.
#
command_table debug_cmds;

request do_show_debugfs_params, "Show debugfs parameters",
	show_debugfs_params, params;

request do_open_filesys, "Open a filesystem",
	open_filesys, open;

request do_close_filesys, "Close the filesystem",
	close_filesys, close;

request do_freefrag, "Report free space fragmentation",
	freefrag, e2freefrag;

request do_show_super_stats, "Show superblock statistics",
	show_super_stats, stats;

request do_ncheck, "Do inode->name translation",
	ncheck;

request do_icheck, "Do block->inode translation",
	icheck;

request do_chroot, "Change root directory",
	change_root_directory, chroot;

request do_change_working_dir, "Change working directory",
	change_working_directory, cd;

request do_list_dir, "List directory",
	list_directory, ls;

request do_stat, "Show inode information ",
	show_inode_info, stat;

request do_dump_extents, "Dump extents information ",
	dump_extents, extents, ex;

request do_blocks, "Dump blocks used by an inode ",
	blocks;

request do_filefrag, "Report fragmentation information for an inode",
	filefrag;

request do_testi, "Test an inode's in-use flag",
	testi;

request do_find_free_block, "Find free block(s)",
	find_free_block, ffb;

request do_find_free_inode, "Find free inode(s)",
	find_free_inode, ffi;

request	do_print_working_directory, "Print current working directory",
	print_working_directory, pwd; 

request do_lsdel, "List deleted inodes",
	list_deleted_inodes, lsdel;

request do_logdump, "Dump the contents of the journal",
	logdump;

request do_htree_dump, "Dump a hash-indexed directory",
	htree_dump, htree;

request do_dx_hash, "Calculate the directory hash of a filename",
	dx_hash, hash;

request do_dirsearch, "Search a directory for a particular filename",
	dirsearch;

request do_bmap, "Calculate the logical->physical block mapping for an inode",
	bmap;

request do_imap, "Calculate the location of an inode",
	imap;

request do_supported_features, "Print features supported by this version of e2fsprogs",
	supported_features;

request do_dump_mmp, "Dump MMP information",
	dump_mmp;

request do_extent_open, "Open inode for extent manipulation",
	extent_open, eo;

request do_list_quota, "List quota",
	lost_quota, lq;

request do_get_quota, "Get quota",
	get_quota, gq;

end;