Whamcloud - gitweb
Align the types used by jbd2_journal_bmap and getblk with the kernel
[tools/e2fsprogs.git] / debugfs / debug_cmds.ct
index 666032b..1ff6c9d 100644 (file)
@@ -73,6 +73,9 @@ request do_rm, "Remove a file (unlink and kill_file, if appropriate)",
 request do_kill_file, "Deallocate an inode and its blocks",
        kill_file;
 
+request do_copy_inode, "Copy the inode structure",
+       copy_inode;
+
 request do_clri, "Clear an inode's contents",
        clri;
 
@@ -157,6 +160,9 @@ request do_dirsearch, "Search a directory for a particular filename",
 request do_bmap, "Calculate the logical->physical block mapping for an inode",
        bmap;
 
+request do_fallocate, "Allocate uninitialized blocks to an inode",
+       fallocate;
+
 request do_punch, "Punch (or truncate) blocks from an inode by deallocating them",
        punch, truncate;
 
@@ -188,7 +194,7 @@ request do_zap_block, "Zap block: fill with 0, pattern, flip bits etc.",
        zap_block, zap;
 
 request do_block_dump, "Dump contents of a block",
-       block_dump, bd;
+       block_dump, bdump, bd;
 
 request do_list_xattr, "List extended attributes of an inode",
        ea_list;
@@ -202,5 +208,26 @@ request do_set_xattr, "Set an extended attribute of an inode",
 request do_rm_xattr, "Remove an extended attribute of an inode",
        ea_rm;
 
+request do_list_quota, "List quota",
+       list_quota, lq;
+
+request do_get_quota, "Get quota",
+       get_quota, gq;
+
+request do_idump, "Dump the inode structure in hex",
+       inode_dump, idump, id;
+
+request do_journal_open, "Open the journal",
+       journal_open, jo;
+
+request do_journal_close, "Close the journal",
+       journal_close, jc;
+
+request do_journal_write, "Write a transaction to the journal",
+       journal_write, jw;
+
+request do_journal_run, "Recover the journal",
+       journal_run, jr;
+
 end;