1. 20 Mar, 2014 1 commit
  2. 06 Mar, 2014 2 commits
  3. 04 Mar, 2014 1 commit
  4. 04 Jan, 2014 1 commit
    • Bernhard Rosenkränzer's avatar
      Add files that would normally be generated by the e2fsprogs build system · 18a1444b
      Bernhard Rosenkränzer authored
      
      Android doesn't run ./configure and friends, so it has to rely on
      pre-populated versions of the autogenerated files.
      
      This is somewhat bogus (e.g. hardcoded little-endian reference in
      lib/ext2fs/ext2_types.h) and should at some point be fixed, but it's
      what Android has always done, not a regression from the 1.41.14 branch.
      
      Also, don't #include config.h which we don't generate (we pass what it
      usually contains as -D parameters from Android.mk) anywhere.
      
      Add a new Android.mk file for the quota library.
      
      Change-Id: I162c6327fee5bd06261d9cdcc34bda10f04a6f21
      Signed-off-by: default avatarBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
      18a1444b
  5. 15 Dec, 2011 1 commit
  6. 18 Sep, 2011 1 commit
    • Theodore Ts'o's avatar
      Shorten compile commands run by the build system · d1154eb4
      Theodore Ts'o authored
      
      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: default avatar"Theodore Ts'o" <tytso@mit.edu>
      d1154eb4
  7. 13 Jun, 2010 1 commit
  8. 18 May, 2010 1 commit
  9. 06 May, 2010 1 commit
  10. 04 Mar, 2009 2 commits
  11. 18 Dec, 2008 1 commit
  12. 28 Aug, 2008 1 commit
  13. 17 Apr, 2008 1 commit
  14. 10 Feb, 2008 1 commit
  15. 07 Dec, 2003 1 commit
  16. 06 Jul, 2003 1 commit
  17. 14 May, 2001 1 commit
    • Theodore Ts'o's avatar
      Many files: · 9f8046fc
      Theodore Ts'o authored
        alloc.c, alloc_tables.c, badblocks.c, bb_compat.c, bb_inode.c,
        	bitmaps.c, bitops.c, block.c, bmap.c, bmove.c, brel_ma.c,
        	check_desc.c, closefs.c, cmp_bitmaps.c, dblist.c, dblist_dir.c,
        	dir_iterate.c, dirblock.c, dupfs.c, expanddir.c, ext2_fs.h, fileio.c,
        	finddev.c, flushb.c, freefs.c, get_pathname.c, getsize.c, icount.c,
        	imager.c, initialize.c, inline.c, inode.c, irel_ma.c, ismounted.c,
        	link.c, lookup.c, mkdir.c, mkjournal.c, namei.c, native.c, newdir.c,
        	nt_io.c, openfs.c, read_bb.c, read_bb_file.c, rs_bitmap.c,
        	rw_bitmaps.c, swapfs.c, test_io.c, tst_badblocks.c, tst_byteswap.c,
        	tst_getsize.c, tst_iscan.c, unix_io.c, unlink.c, valid_blk.c,
        	version.c, write_bb_file.c, ext2_fs.h: Moved file from include/linux.
        	Adjust all files in this directroy to include this file.
      9f8046fc
  18. 16 Jun, 1998 1 commit
  19. 10 Jun, 1998 1 commit
    • Theodore Ts'o's avatar
      Many files: · 03673dbb
      Theodore Ts'o authored
        alloc_tables.c (ext2fs_allocate_group_table): Fix bug so that if the
        	stride length hits a bad value, we retry the block allocation starting
        	at the beginning of the block group.
        ext2fs.h, bb_inode.c, block.c, bmove.c, dir_iterate.c, expanddir.c,
        	ext2fsP.h, read_bb.c: Change blkcnt_t to be e2_blkcnt_t to avoid
        	collision with LFS API.
      03673dbb
  20. 24 Mar, 1998 1 commit
    • Theodore Ts'o's avatar
      Many files: · 36a43d67
      Theodore Ts'o authored
        block.c (ext2fs_block_iterate3): Make the ref_offset field contain the
        	offset into the inode.i_blocks array when ref_block is zero.  Since we
        	haven't done a formal release of e2fsprogs since block_iterate2 was
        	first introduced, I removed block_iterate2, and renamed block_iterate3
        	to be block_iterate2.
        bb_inode.c, bmove.c, dblist_dir.c, dir_iterate.c, expanddir.c,
        	ext2fs.h, ext2fsP.h, read_bb.c: Change use of block_iterate and
        	block_iterate2 to block_iterate2 with the new prototype for the
        	interator function.  (using blkcnt_t forr blockcount)
      ChangeLog, debugfs.c, ls.c, lsdel.c:
        debugfs.c, ls.c, lsdel.c: Add support for large files.  (The high 32
        	bits share space with the i_dir_acl field.)
      36a43d67
  21. 19 Jan, 1998 1 commit
    • Theodore Ts'o's avatar
      Many files: · b5abe6fa
      Theodore Ts'o authored
        inode.c (ext2fs_open_inode_scan): Initialize the group variables
        	so that we don't need to call get_next_blockgroup() the first
        	time around.  Saves a bit of time, and prevents us from
        	needing to assign -1 to current_group (which is an unsigned
        	value).
        icount.c (insert_icount_el): Cast the estimated number of inodes
        	from a float to an ino_t.
        alloc.c, alloc_tables.c, badlbocks.c, bb_compat.c, bb_inode.c,
        	bitmaps.c, bitops.c, block.c, bmap.c, bmove.c, brel_ma.c,
        	check_desc.c, closefs.c, cmp_bitmaps.c, dblist.c,
        	dblist_dir.c, dir_iterate.c, dirblock.c, dupfs.c, expanddir.c,
        	ext2fs.h, fileio.c, freefs.c, get_pathname.c, getsize.c,
        	icount.c, initialize.c, inline.c, inode.c, irel_ma.c,
        	ismounted.c, link.c, lookup.c, mkdir.c, namei.c, native.c,
        	newdir.c, openfs.c, read_bb.c, read_bb_file.c, rs_bitmap.c,
        	rw_bitmaps.c, swapfs.c, test_io.c, tst_badblocks.c,
        	tst_getsize.c, tst_iscan.c, unix_io.c, unlink.c, valid_blk.c,
        	version.c: If EXT2_FLAT_INCLUDES is defined, then assume all
        	of the ext2-specific header files are in a flat directory.
        block.c, bmove.c, dirblock.c, fileio.c: Explicitly cast
        	all assignments from void * to be compatible with C++.
        closefs.c (ext2fs_flush): Add a call to io_channel_flush() to
        	make sure the contents of the disk are flushed to disk.
        dblist.c (ext2fs_add_dir_block): Change new to be new_entry to
        	avoid C++ namespace clash.
        bitmaps.c (ext2fs_copy_bitmap): Change new to be new_map to
        	avoid C++ namespace clash.
        ext2fs.h, bb_inode.c, block.c, bmove.c, brel.h, brel_ma.c,
        	irel.h, irel_ma.c, dblist.c, dblist_dir.c, dir_iterate.c,
        	ext2fsP.h, expanddir.c, get_pathname.c, inode.c, link.c,
        	unlink.c: Change private to be priv_data (to avoid C++
        	namespace clash)
      b5abe6fa
  22. 01 Dec, 1997 1 commit
    • Theodore Ts'o's avatar
      Many files: · 5be8dc21
      Theodore Ts'o authored
        dblist.c (ext2fs_get_num_dirs): Make ext2fs_get_num_dirs more paranoid
        	about validating the directory counts from the block group
        	information.
        all files: Don't include stdlib.h anymore; include it in ext2_fs.h,
        	since that file requires stdlib.h
      ChangeLog, Makefile.in, dirinfo.c:
        dirinfo.c (e2fsck_add_dir_info): Use ext2fs_get_num_dirs instead of
        	e2fsck_get_num_dirs, which has been removed.
        Makefile.in (PROGS): Remove @EXTRA_PROGS@, since we don't want to
        	compile and install flushb.
      ChangeLog, configure.in:
        Remove @EXTRA_PROGS@, since we aren't using it in 2fsck/Makefile.in anymore
      ChangeLog, Makefile.in:
        Install debugfs in /sbin, instead of /usr/sbin.
      libext2fs.texinfo:
        Update version string to be 1.12
      Makefile.in:
        Fix bug in find script which made the exclusion list, where a '-' was
        missing from an -name option.
      5be8dc21
  23. 19 Oct, 1997 1 commit
    • Theodore Ts'o's avatar
      Many files: · 1d2ff46a
      Theodore Ts'o authored
        Add #ifdef's for HAVE_SYS_STAT_H and HAVE_SYS_TYPES_H
      1d2ff46a
  24. 11 Aug, 1997 1 commit
    • Theodore Ts'o's avatar
      Many files: · 3cb6c502
      Theodore Ts'o authored
        dosio.c: New file to do DOS/BIOS disk accesses.
        namei.c (open_namei): Make pathlen be of type size_t.
        llseek.c: Always #include stdlib.h since it's need to define
        	size_t.
        io.h: Use errcode_t for magic numbers.
        icount.c (get_icount_el), dupfs.c (ext2fs_dup_handle), dblist.c
        	(dir_block_cmp): Use size_t where appropriate.
        read_bb.c (ext2fs_read_bb_inode), cmp_bitmaps.c
        	(ext2fs_compare_inode_bitmap): Use blk_t, ino_t and size_t
        	where appropriate.
        closefs.c (ext2fs_flush): Use dgrp_t instead of int where
        	appropriate.
        openfs.c (ext2fs_open), check_desc.c (ext2fs_check_desc): Use blk_t
        	instead of int where 	appropriate.
        rw_bitmaps.c (read_bitmaps), irel_ma.c, inode.c (ext2fs_write_inode),
        	initialize.c (ext2fs_initialize): brel_ma.c: Fix to make be
        	16-bit safe.
        link.c (ext2fs_link), unlink.c (ext2fs_unlink), lookup.c (lookup_proc),
        	ismounted.c (ext2fs_check_if_mounted), block.c (xlate_func):
        	Add #pragma argsused for Turbo C.
      3cb6c502
  25. 10 Aug, 1997 1 commit
    • Theodore Ts'o's avatar
      Many files: · 4cbe8af4
      Theodore Ts'o authored
        block.c (ext2fs_block_iterate2): Use retval which is a errcode_t type.
        bitmaps.c (make_bitmap): Use size_t instead of int where appropriate.
        bb_inode.c (set_bad_block_proc): Add #pragma argsused for Turbo C.
        alloc.c (ext2fs_new_inode): Use ino_t instead of int for the group number.
        get_pathname.c: Use ino_t instead of int where appropriate.
        ext2fs.h: Make the magic structure element be errcode_t instead of int.
        alloc.c alloc_tables.c badblocks.c bb_compat.c bb_inode.c
        	bitmaps.c block.c bmove.c brel_ma.c check_desc.c closefs.c
        	cmp_bitmaps.c dblist.c dblist_dir.c dir_iterate.c dirblock.c
        	dupfs.c expanddir.c freefs.c get_pathname.c icount.c
        	initialize.c inline.c inode.c irel_ma.c link.c llseek.c
        	lookup.c mkdir.c namei.c newdir.c read_bb.c read_bb_file.c
        	rs_bitmap.c rw_bitmaps.c swapfs.c test_io.c tst_badblocks.c
        	tst_iscan.c unix_io.c unlink.c valid_blk.c version.c: Add an
        	#ifdef for HAVE_UNISTD_H
      4cbe8af4
  26. 29 Apr, 1997 1 commit
  27. 26 Apr, 1997 2 commits