- 20 Mar, 2014 1 commit
-
-
JP Abgrall authored
Revert "Revert changes that moved from 1.41.14 to 1.42.9" This reverts commit 65f0aab9.
-
- 06 Mar, 2014 2 commits
-
-
JP Abgrall authored
Revert "e2fsck: Don't use e2fsck_global_ctx unless HAVE_SIGNAL_H" commit e80e74c4. Revert "Merge remote-tracking branch 'linaro/linaro-1.42.9' into aosp_master" This reverts commit e97b2b6f, reversing changes made to 7e2fb9d0. Revert "Prepare for upstream 1.42.9" This reverts commit 7e2fb9d0 . Bug: 13340735 Change-Id: If48b153a95ef5f69f7cdccb00e23524abff3c5a8 Signed-off-by:
JP Abgrall <jpa@google.com>
-
JP Abgrall authored
Revert "e2fsck: Don't use e2fsck_global_ctx unless HAVE_SIGNAL_H" commit e80e74c4. Revert "Merge remote-tracking branch 'linaro/linaro-1.42.9' into aosp_master" This reverts commit e97b2b6f, reversing changes made to 7e2fb9d0. Revert "Prepare for upstream 1.42.9" This reverts commit 7e2fb9d0 . Bug: 13340735 Change-Id: If48b153a95ef5f69f7cdccb00e23524abff3c5a8 Signed-off-by:
JP Abgrall <jpa@google.com>
-
- 04 Mar, 2014 1 commit
-
-
JP Abgrall authored
Remove everything. Change-Id: I6ef4c9bc888a245744d7ec4d193857b357472392 Signed-off-by:
JP Abgrall <jpa@google.com>
-
- 04 Jan, 2014 1 commit
-
-
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:
Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
-
- 15 Dec, 2011 1 commit
-
-
Ken Sumrall authored
Change-Id: Ia1ae1df03ba5ae95f9437686285a6f5119c5aa9b
-
- 18 Sep, 2011 1 commit
-
-
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:
"Theodore Ts'o" <tytso@mit.edu>
-
- 07 Jul, 2011 1 commit
-
-
Theodore Ts'o authored
Change ext2fs_block_alloc_stats2() so that when a cluster is allocated, the free blocks counter in the superblock is appropriately decremented by the cluster size. Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 18 May, 2010 1 commit
-
-
Theodore Ts'o authored
The top-level COPYING file states that the e2p and ext2fs libraries are available under the LGPLv2. The files were incorrectly labelled. Alex Thomas/Luster has been consulted wrt to the ext3_extents.h file; the rest of the files were primarily authored by Theodore Ts'o. Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 06 May, 2010 1 commit
-
-
Dmitry Shmidt authored
Change-Id: Ie9b7d1fdfcc2374d292c75d6ea38d073f8d85ac6 Signed-off-by:
Dmitry Shmidt <dimitrysh@google.com>
-
- 26 Oct, 2009 2 commits
-
-
Valerie Aurora Henson authored
Convert direct accesses to use the following block group accessor functions: ext2fs_block_bitmap_loc(), ext2fs_inode_bitmap_loc(), ext2fs_inode_table_loc(), ext2fs_bg_itable_unused(), ext2fs_block_bitmap_loc_set(), ext2fs_inode_bitmap_loc_set(), ext2fs_inode_table_loc_set(), ext2fs_bg_free_inodes_count(), ext2fs_ext2fs_bg_used_dirs_count(), ext2fs_bg_free_inodes_count_set(), ext2fs_bg_free_blocks_count_set(), ext2fs_bg_used_dirs_count_set() Signed-off-by:
Valerie Aurora Henson <vaurora@redhat.com> Signed-off-by:
Nick Dokos <nicholas.dokos@hp.com> Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
Eric Sandeen authored
The ext2fs_bg_flag* functions were confusing. Currently we have this: void ext2fs_bg_flags_set(ext2_filsys fs, dgrp_t group, __u16 bg_flags); void ext2fs_bg_flags_clear(ext2_filsys fs, dgrp_t group,__u16 bg_flags); (_set (unused) sets exactly bg_flags; _clear clears all and ignores bg_flags) and these, which can twiddle individual bits in bg_flags: void ext2fs_bg_flag_set(ext2_filsys fs, dgrp_t group, __u16 bg_flag); void ext2fs_bg_flag_clear(ext2_filsys fs, dgrp_t group, __u16 bg_flag); A better interface, after the patch below, is just: ext2fs_bg_flags_zap(fs, group) /* zeros bg_flags */ ext2fs_bg_flags_set(fs, group, flags) /* adds flags to bg_flags */ ext2fs_bg_flags_clear(fs, group, flags) /* clears flags in bg_flags */ and remove the original ext2fs_bg_flags_set / ext2fs_bg_flags_clear. Signed-off-by:
Eric Sandeen <sandeen@redhat.com> Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 08 Sep, 2009 2 commits
-
-
Valerie Aurora Henson authored
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>
-
Theodore Ts'o authored
Signed-off-by:
Valerie Aurora Henson <vaurora@redhat.com> Signed-off-by:
Eric Sandeen <sandeen@redhat.com> Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 05 Aug, 2009 1 commit
-
-
Valerie Aurora Henson authored
(Includes fixes from Nick Dokos) Signed-off-by:
Valerie Aurora Henson <vaurora@redhat.com> Signed-off-by:
Nick Dokos <nicholas.dokos@hp.com> Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 01 Jun, 2009 1 commit
-
-
Jose R. Santos authored
Add new ext2fs_block_alloc_stats2() routine that takes blk64_t as an input. Signed-off-by:
Jose R. Santos <jrs@us.ibm.com> Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 22 Apr, 2009 1 commit
-
-
Theodore Ts'o authored
Fix gcc warnings caused by wrong types passed com_err() in ext2fs_inode_alloc_stats2 and in ext2fs_block_alloc_stats(). Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 04 Mar, 2009 2 commits
-
-
The Android Open Source Project authored
-
The Android Open Source Project authored
-
- 22 Jan, 2009 1 commit
-
-
Theodore Ts'o authored
If ext2fs_inode_alloc_stats2() or ext2fs_block_alloc_stats() is passed an insanely large inode or block number, it's possible for these functions to overrun an array boundary and cause the calling program to crash with a memory error. Detect this case, and since these functions don't return an error code, print a warning message, much like we do in ext2fs_warn_bitmap2(). Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 18 Dec, 2008 1 commit
-
-
The Android Open Source Project authored
-
- 28 Aug, 2008 1 commit
-
-
Theodore Ts'o authored
Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 02 Jun, 2008 1 commit
-
-
Theodore Ts'o authored
Add callback functions for ext2fs_alloc_block() and ext2fs_block_alloc_stats(). This is needed so e2fsck can be informed when the extent_set_bmap() function needs to allocate or deallocate blocks. Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 21 Apr, 2008 1 commit
-
-
Theodore Ts'o authored
Mke2fs used to have special case, ugly code in setup_lazy_bg/setup_uninit_bg flag which set the flags based on all sorts of special cases. Change it so that it is done in libext2fs, and fix mke2fs to use alloc_stats functions which will take care of clearing the *_UNINIT flags automatically as needed. This is preparatory work to make the flex_bg allocation patch much cleaner. Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 20 Mar, 2008 1 commit
-
-
Jose R. Santos authored
Signed-off-by:
Jose R. Santos <jrs@us.ibm.com> Signed-off-by:
Andreas Dilger <adilger@clusterfs.com> Signed-off-by:
"Theodore Ts'o" <tytso@mit.edu>
-
- 03 Feb, 2002 1 commit
-
-
Theodore Ts'o authored
directories in use in a bloock group.
-
- 03 Jan, 2002 1 commit
-
-
Theodore Ts'o authored
Add support for a new flag, DIRENT_FLAG_INCLUDE_REMOVED, which will return deleted directory entries. ext2fs_dir_iterate2 takes a new callback function which is identical with the one used by ext2fs_dblist_dir_iterate(). If the directory entry is deleted, the callback function will be called with the entry paraemter set to DIRENT_DELETED_FILE. Makefile.in, alloc_stats.c (ext2fs_inode_alloc_stats, ext2fs_block_alloc_stats): New functions which update block/inode allocation statistics in the bitmaps, block group descriptors, and superblock. mkjournal.c (mkjournal_proc), mkdir.c (ext2fs_mkdir), expanddir.c (expand_dir_proc), bb_inode.c (clear_bad_block_proc, set_bad_block_proc, ext2fs_update_bb_inode), alloc.c (ext2fs_alloc_block): Update to use new block/inode allocation statistics.
-