- 21 Nov, 2014 1 commit
-
-
JP Abgrall authored
This allows getting all of tune2fs as a static library. The entry point is int tune2fs_main(int argc, char **argv). It requires passing argv[0]="tune2fs" to get tune2fs behavior. Bug: 18430740 Change-Id: I7bf8d96c53066a4da37778c0d67383b0b820e2ff
-
- 30 Jun, 2014 2 commits
-
-
JP Abgrall authored
* commit '24c386ed': lib/uuid: make a static library also (fix build)
-
JP Abgrall authored
Change-Id: Idb36204f2d8cadb9564db445d5301f705ce4d043 Signed-off-by:
JP Abgrall <jpa@google.com> (cherry picked from commit a9e24fde)
-
- 25 Jun, 2014 3 commits
-
-
JP Abgrall authored
* commit '721f3bc5': lib/uuid: make a static library also
-
JP Abgrall authored
-
JP Abgrall authored
Change-Id: Idb36204f2d8cadb9564db445d5301f705ce4d043 Signed-off-by:
JP Abgrall <jpa@google.com>
-
- 12 Jun, 2014 1 commit
-
-
JP Abgrall authored
Change-Id: Idb36204f2d8cadb9564db445d5301f705ce4d043 Signed-off-by:
JP Abgrall <jpa@google.com>
-
- 22 May, 2014 2 commits
-
-
The Android Automerger authored
-
The Android Automerger authored
-
- 21 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 20 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 19 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 18 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 17 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 15 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 14 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 13 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 12 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 11 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 10 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 08 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 07 May, 2014 2 commits
-
-
The Android Automerger authored
-
The Android Automerger authored
-
- 06 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 05 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 04 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 03 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 01 May, 2014 1 commit
-
-
The Android Automerger authored
-
- 30 Apr, 2014 1 commit
-
-
The Android Automerger authored
-
- 29 Apr, 2014 1 commit
-
-
The Android Automerger authored
-
- 28 Apr, 2014 1 commit
-
-
The Android Automerger authored
-
- 27 Apr, 2014 1 commit
-
-
The Android Automerger authored
-
- 26 Apr, 2014 1 commit
-
-
The Android Automerger authored
-
- 24 Apr, 2014 1 commit
-
-
The Android Automerger authored
-
- 24 Mar, 2014 2 commits
-
-
JP Abgrall authored
* commit '78374f04': llseek: setup the correct seek for ext2fs_llseek
-
JP Abgrall authored
-
- 22 Mar, 2014 1 commit
-
-
The Android Automerger authored
-
- 20 Mar, 2014 3 commits
-
-
JP Abgrall authored
Or else ...: In file included from e2fsck/pass5.c:21: e2fsck/problem.h:13: error: redefinition of typedef ‘__u32’ lib/ext2fs/ext2_types.h:56: error: previous declaration of ‘__u32’ was here e2fsck/problem.h:14: error: redefinition of typedef ‘errcode_t’ lib/et/com_err.h:22: error: previous declaration of ‘errcode_t’ was here Change-Id: I0a1ff3b2455bfbaf1e3d0940034a7dbcc231a0f7 Signed-off-by:
JP Abgrall <jpa@google.com>
-
JP Abgrall authored
After http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/lib/ext2fs/llseek.c?id=274d46e1d35af423d0292d63c4d0ad7a03be82ba with __linux__ defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) SIZEOF_OFF_T >= SIZEOF_LONG_LONG it leads to ext2fs_llseek() doing a "return lseek(fd, offset, origin);" Which fails for offsets > 32bit. Also, with __linux__ !(defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE)) defined(HAVE_LLSEEK) SIZEOF_OFF_T == SIZEOF_LONG_LONG my_llseek is not defined at all. And there is no need to define llseek as lseek, as llseek is never used. Luckily ext2fs_llseek() then does "return lseek(...);" It would seem that my_llseek should be used in both places. Bug: 13340735 Change-Id: Ie7330300c9c1ca103eaaef97536dcf10adbbba02 Signed-off-by:
JP Abgrall <jpa@google.com>
-
JP Abgrall authored
After http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/lib/ext2fs/llseek.c?id=274d46e1d35af423d0292d63c4d0ad7a03be82ba with __linux__ defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) SIZEOF_OFF_T >= SIZEOF_LONG_LONG it leads to ext2fs_llseek() doing a "return lseek(fd, offset, origin);" Which fails for offsets > 32bit. Also, with __linux__ !(defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE)) defined(HAVE_LLSEEK) SIZEOF_OFF_T == SIZEOF_LONG_LONG my_llseek is not defined at all. And there is no need to define llseek as lseek, as llseek is never used. Luckily ext2fs_llseek() then does "return lseek(...);" It would seem that my_llseek should be used in both places. Bug: 13340735 Change-Id: Ie7330300c9c1ca103eaaef97536dcf10adbbba02 Signed-off-by:
JP Abgrall <jpa@google.com>
-