X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=debugfs%2FChangeLog;h=29408203182eac6a37f60329e2e4a1d3a6db7909;hb=a8e772498cea7d6d2d84d94c7985c79afb96a4fa;hp=a8d0c8f67c0291792e44aadc57ecb147f08c32b8;hpb=5e4f070952bb4472e28a925f591b551baf2db278;p=tools%2Fe2fsprogs.git diff --git a/debugfs/ChangeLog b/debugfs/ChangeLog index a8d0c8f..2940820 100644 --- a/debugfs/ChangeLog +++ b/debugfs/ChangeLog @@ -1,5 +1,167 @@ +2002-03-08 Theodore Tso + + * Release of E2fsprogs 1.27 + +2002-03-07 + + * ls.c (list_dir_proc): Fix typo in debugfs which was causing a + compiler warning. + +2002-03-05 Theodore Tso + + * lsdel.c (do_lsdel): lsdel uses the pager to print out the list + of potentially deleted inode. Thanks to Jaroslav Drzik + for suggesting this enhancement. + + * debugfs.c (do_modify_inode): Fix bug which caused modify_inode + to core dump if a fliesystem isn't open. Thanks to + Jaroslav Drzik for finding and reporting + the bug and his proposed fix. + +2002-02-26 Theodore Tso + + * ls.c (list_dir_proc): When listing the directory entry in long + format, include the file type of the directory entry in + parenthesis. + +2002-02-25 Theodore Tso + + * util.c (open_pager): If the PAGER environment is set to __none__ + then don't use a pager at all, and ship it all to stdout. + + * Makefile.in, debug_cmds.ct, htree.c: Add new file htree.c, which + implements the three new commands, htree_dump, dx_hash, + and dirsearch. + +2002-02-24 Theodore Tso + + * Makefile.in (install): Remove any compressed man pages before + installing the man pages. + +2002-02-03 Theodore Tso + + * Release of E2fsprogs 1.26 + +2002-01-03 Theodore Tso + + * lsdel.c (do_lsdel): New optional argument which allows the user + to only see the most recently deleted files. + + * debugfs.c (do_undel, do_testb, do_freeb, do_setb, do_ffb): Add + new command, undelete, which automates undeleting a + deleted inode and linking it back to a directory. Add a + count argument to the testb, freeb, setb, and ffb commands. + + * ls.c (list_dir_proc, do_list_dir): Add support for -d option + which lists deleted directory entries. + + * debug_cmds.ct: Add new command, undelete. + + * dump.c, icheck.c, logdump.c, ls.c, lsdel.c, setsuper.c, + debugfs.c: Use new utility functions which factor out + commonly used code. + + * util.c (debugfs_read_inode, debugfs_write_inode, + common_block_args_process, common_inode_args_process, + common_args_process, strtoblk, parse_ulong): New + functions which factor out commonly used code into + subroutines for ease of maintenance and to make the + executable size smaller. + +2001-12-23 Theodore Tso + + * Makefile.in, jfs_user.h: Move linux/jbd.h to + ext2fs/kernel-jbd.h, to avoid using the system header + file version of hbd.h when using diet glibc (since it + forcibly adds /usr/include to the beginning of the + include search path.) + +2001-12-22 Theodore Tso + + * debugfs.c (kill_file_by_inode, release_blocks_proc): Update the + group descriptor free block and inode counts when deleting + or killing a file. + +2001-12-16 Theodore Tso + + * setsuper.c (print_possible_fields), + logdump.c (dump_journal): Fix gcc -Wall nits + + * Makefile.in, jfs_user.h: linux/jfs.h has been renamed to + linux/jbd.h + +2001-12-02 Theodore Tso + + * util.c (close_pager): Use pclose() instead of fclose() when + closing the pager stream. + +2001-11-30 Theodore Tso + + * debugfs.c (finish_range, dump_blocks): Fixed bug in Andreas's > + 2GB support changes: you need to use %lld when printf'ing + an long long variable. + +2001-11-24 Theodore Tso + + * debugfs.8.in: Update manual page to document the set_super_value + and logdump commands, and move the "specifying files" + section closer to the beginning of the man page so people + won't miss it. + + * setsuper.c (print_possible_fields): "set_super_value -l" now + prints out the list of valid superblock fields which the + ssv command can set. + +2001-09-20 Theodore Tso + + * Release of E2fsprogs 1.25 + +2001-09-02 Theodore Tso + + * Release of E2fsprogs 1.24a + +2001-08-30 Theodore Tso + + * Release of E2fsprogs 1.24 + +2001-08-27 Theodore Tso + + * debugfs.c (main): Remove EXT2FS_VERSION from the version + display, since it only confuses people. + +2001-08-15 Theodore Tso + + * Release of E2fsprogs 1.23 + +2001-08-12 Theodore Tso + + * logdump.c (do_logdump, dump_journal): Add support for dumping + external journals. + +2001-06-23 Theodore Tso + + * Release of E2fsprogs 1.22 + +2001-06-15 Theodore Tso + + * Release of E2fsprogs 1.21 + +2001-06-13 Theodore Tso + + * setsuper.c: Add s_lastcheck field to the fields which can be + modified using set_super_value. (Suggested by Andreas + Dilger) + +2001-06-03 Theodore Tso + + * debugfs.c (copy_file): Fixed signed vs unsigned bug which causes + read errors to not be noticed. + 2001-06-01 Theodore Tso + * Makefile.in: Move include/asm/types.h.in to + lib/ext2fs/ext2_types.h.in. + * debugfs.c, debugfs.h, logdump.c: Fix various gcc -Wall nitpicks. * logdump.c (read_journal_block): Replace pread with lseek/read