Changeset 81dd2ed in mainline for uspace/lib/ext4
- Timestamp:
- 2017-05-10T19:47:31Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 71fe4723
- Parents:
- fcb0d76
- Location:
- uspace/lib/ext4
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/Makefile
rfcb0d76 r81dd2ed 29 29 USPACE_PREFIX = ../.. 30 30 LIBRARY = libext4 31 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBCRYPTO_PREFIX) -Iinclude 31 EXTRA_CFLAGS = \ 32 -I$(LIBBLOCK_PREFIX) \ 33 -I$(LIBCRYPTO_PREFIX) \ 34 -I$(LIBFS_PREFIX) \ 35 -Iinclude 32 36 33 37 SOURCES = \ … … 42 46 src/ialloc.c \ 43 47 src/inode.c \ 48 src/ops.c \ 44 49 src/superblock.c 45 50 -
uspace/lib/ext4/include/ext4/ops.h
rfcb0d76 r81dd2ed 27 27 */ 28 28 29 /** @addtogroup fs29 /** @addtogroup libext4 30 30 * @{ 31 31 */ 32 32 33 #ifndef EXT4FS_EXT4FS_H_34 #define EXT4FS_EXT4FS_H_33 #ifndef LIBEXT4_OPS_H_ 34 #define LIBEXT4_OPS_H_ 35 35 36 36 #include <libfs.h> -
uspace/lib/ext4/src/ops.c
rfcb0d76 r81dd2ed 28 28 */ 29 29 30 /** @addtogroup fs30 /** @addtogroup libext4 31 31 * @{ 32 32 */ 33 33 /** 34 34 * @file ext4fs_ops.c 35 * @brief VFS operations for ext4 filesystem.35 * @brief Operations for ext4 filesystem. 36 36 */ 37 37 … … 45 45 #include <adt/hash.h> 46 46 #include <ipc/loc.h> 47 #include "ext4 fs.h"48 #include "../../vfs/vfs.h"47 #include "ext4/ops.h" 48 //#include "../../vfs/vfs.h" 49 49 50 50 #define EXT4FS_NODE(node) \
Note:
See TracChangeset
for help on using the changeset viewer.