summaryrefslogtreecommitdiff
path: root/ext2ed
Commit message (Collapse)AuthorAge
* Merge branch 'maint' into nextTheodore Ts'o2017-10-15
|\
| * Fix typos in code comments and developer docsSebastian Rasmussen2017-10-15
| | | | | | | | | | | | Signed-off-by: Sebastian Rasmussen <sebras@gmail.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Andreas Dilger <adilger@dilger.ca>
| * Fix typos in error messages and documentationSebastian Rasmussen2017-10-15
| | | | | | | | | | | | Signed-off-by: Sebastian Rasmussen <sebras@gmail.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Andreas Dilger <adilger@dilger.ca>
* | Merge branch 'maint' into nextTheodore Ts'o2017-08-04
|\|
| * Remove spaces at the end of man pagesTheodore Ts'o2017-08-04
| | | | | | | | | | | | Addresses-Debian-Bug: #865584 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* | e2fsprogs: supersede i_dir_acl with i_size_high for all casesArtem Blagodarenko2017-04-13
|/ | | | | | | | | | This patch removes i_dir_acl macros and macros users. Now stucture field can be accessed as i_size_high. This field is useful for largedir feature. Signed-off-by: Alexey Lyashkov <alexey.lyashkov@seagate.com> Signed-off-by: Artem Blagodarenko <artem.blagodarenko@seagate.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* misc: create better-packaged static analysis reportsDarrick J. Wong2014-05-11
| | | | | | | | Fix some minor bugs relating to passing CFLAGS to cppcheck, and package the cppcheck output into nicer looking reports. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* all: Introduce cppcheck static checking for make C=1Darrick J. Wong2014-03-14
| | | | | | | Introduce more static checking via cppcheck. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Add coverage testing using gcovTheodore Ts'o2014-02-23
| | | | | | | | | | | | | To check the coverage of e2fsprogs's regression test, do the following: configure --enable-gcov make -j8 ; make -j8 check ; make coverage.txt The coverage information will be the coverage.txt and *.gcov files in the build directories. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* e2fsprogs: add (optional) sparse checking to the buildDarrick J. Wong2013-10-11
| | | | | | | | | | Run sparse against source files when building e2fsprogs with 'make C=1'. If instead C=2, it configures basic ext2 types for bitwise checking with sparse, which can help find the (many many) spots where conversion errors are (possibly) happening. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Shorten compile commands run by the build systemTheodore Ts'o2011-09-18
| | | | | | | | | | | | | | | The DEFS line in MCONFIG had gotten so long that it exceeded 4k, and this was starting to cause some tools heartburn. It also made "make V=1" almost useless, since trying to following the individual commands run by make was lost in the noise of all of the defines. So fix this by putting the configure-generated defines in lib/config.h and the directory pathnames to lib/dirpaths.h. In addition, clean up some vestigal defines in configure.in and in the Makefiles to further shorten the cc command lines. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Merge branch 'maint' into nextTheodore Ts'o2011-02-27
|\ | | | | | | | | Conflicts: lib/ext2fs/initialize.c
| * e2fsprogs: reserving code points for new ext4 quota featureAditya Kali2011-02-25
| | | | | | | | | | | | | | | | | | This patch adds support for detecting the new 'quota' feature in ext4. The patch reserves code points for usr and group quota inodes and also for the feature flag EXT4_FEATURE_RO_COMPAT_QUOTA. Signed-off-by: Aditya Kali <adityakali@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* | Convert uses of super->s_*_blocks_count to ext2fs_*_blocks_count()Valerie Aurora Henson2009-09-07
|/ | | | | | | Signed-off-by: Valerie Aurora Henson <vaurora@redhat.com> Signed-off-by: Nick Dokos <nicholas.dokos@hp.com> Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Remove trailing whitespace for the entire source treeTheodore Ts'o2008-08-27
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* ext2ed: Remove masix supportManish Katiyar2008-08-23
| | | | | Signed-off-by: Manish Katiyar <mkatiyar@gmail.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* document: remove masix from data structureColy Li2007-11-01
| | | | | | This patch remove masix union from data structure in ext2ed-design.sgml. Signed-off-by: Coly Li <coyli@suse.de>
* Remove Changelog files since they're not used after the git migrationTheodore Ts'o2007-07-08
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Update Release Notes, Changelogs, version.h, etc. for 1.40 releaseTheodore Ts'o2007-06-24
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Fix potential 2**32-1 overflow problems by ext2fs_div_ceil()Theodore Ts'o2006-08-30
| | | | | | | | | | | | | Add a new function, ext2fs_div_ceil(), which correctly calculates a division of two unsigned integer where the result is always rounded up the next largest integer. This is used everywhere where we might have previously caused an overflow when the number of blocks or inodes is too close to 2**32-1. Based on patches from Eric Sandeen, but generalized to use this new function Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Eric Sandeen <esandeen@redhat.com>
* Fix bogus spaces before '!' and '?' characters in unused programs.Theodore Ts'o2005-12-09
| | | | | | | | | | | | | | | | | | | | On Mon, Oct 31, 2005 at 01:23:53PM +0000, Martin Michlmayr wrote: > Package: e2fsprogs > Version: 1.38-2 > Severity: minor > > e2fsprogs isn't consistent in its use of spaces before an exclamation > mark. The patch below fixed this by removing some spaces. > (Interestingly, I couldn't find the error message in the sources where > I noticed this inconsistency, namely "group descriptors corrupted !"). Patch applied, but none of the source files you touched are actually compiled in e2fsprogs, and most of them weren't written by me. :-) Addresses Debian Bug #336604 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Update for e2fsprogs 1.38 release.Theodore Ts'o2005-06-30
|
* Update for the e2fsprogs 1.37 release.Theodore Ts'o2005-03-21
|
* Update for release of e2fsprogs 1.36.Theodore Ts'o2005-02-05
|
* ext2ed.h: Use the ext2_fs.h header file from libext2fs, insteadTheodore Ts'o2004-04-03
| | | | | from the kernel header files.
* Refine the build process to avoid re-running subst all the time on Theodore Ts'o2004-04-03
| | | | | | | some generated files, by having subst update the modtime on these files even when the generated file hasn't changed. We do this with generated files that do not have any downstream dependencies.
* Update version number for e2fsprogs 1.35 release.Theodore Ts'o2004-02-28
|
* Update for 1.34 release.Theodore Ts'o2003-07-26
|
* Update for 1.33 release.Theodore Ts'o2003-04-21
| | | | | | | | | Fix typo's in README.subset Change debian control file so it doesn't bomb out if the EVMS FSIM is not there, since it is not built on the Hurd. Resolves Debian bug #189687.
* Update files for 1.32 release.Theodore Ts'o2002-11-09
|
* Update files for 1.31 release.Theodore Ts'o2002-11-08
|
* Update files for 1.30 release.Theodore Ts'o2002-11-01
|
* In ext2ed, if there is a directory entry of length 0, Theodore Ts'o2002-09-30
| | | | | go to the next block, so we don't end up looping forever.
* Update for 1.29 release.Theodore Ts'o2002-09-24
|
* Update changelogs for 1.28 releaseTheodore Ts'o2002-08-31
|
* Fixed up some grammar problems with the ext2ed README, added someTheodore Ts'o2002-07-09
| | | | | | clarifications.
* Fix up ncurses interface so that it handles resizes correctly.Theodore Ts'o2002-05-13
| | | | | | | | | | | Removed the readline library (still available using if HAVE_READLINE is defined) since it really doesn't play well with ncurses. The only real feature it added was command completion, and it didn't really handle it completely correctly anyway. (If readline printed a completion list, it completely screwed up the screen.) We now use the wgetch ncurses interface to get input; this allows the PGDN and PGUP keys to work correctly, and also helped fix up the resizing logic.
* Update ext2ed with newer superblock descriptions, and add directory indexingTheodore Ts'o2002-05-12
| | | | | | | structure. Add support for displaying and setting character fields. Add make depend logic and use e2fsprogs version strings.
* Integrate ext2ed into the e2fsprogs build system, and make minimal changes soTheodore Ts'o2002-05-11
| | | | | | | | | | | | | | | that it will compile on modern systems. The top-level makefile does not recurse into the ext2ed directory for now, pending determination of whether the original author is still maintaining ext2ed. The documentation files have been renamed to remove the version from the filename. In addition, the SGML files have been converted from LinuxDoc to DocBook. The way root_bindir, root_sbindir, and root_libdir have been changed so that if root_prefix is not set, the values set by the configure command-line options to set the directory names using --bindir, --sbindir, --libdir will affect the root_bindir, et.al Makefile variables.
* Checked in changes from ext2ed version 0.2.Theodore Ts'o2002-05-11
|
* Check in ext2ed version 0.1Theodore Ts'o2002-05-11