Whamcloud - gitweb
debugfs: teach logdump the -n <num_trans> option
[tools/e2fsprogs.git] / debugfs / debug_cmds.ct
index 5bd3fe1..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;
 
@@ -211,6 +217,17 @@ request do_get_quota, "Get quota",
 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;