Changeset 3e6a98c5 in mainline for uspace/srv/fs
- Timestamp:
- 2012-11-30T19:26:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0fa34dd
- Parents:
- e80d8f8
- Location:
- uspace/srv/fs
- Files:
-
- 14 edited
-
cdfs/cdfs_ops.c (modified) (1 diff)
-
cdfs/cdfs_ops.h (modified) (1 diff)
-
exfat/exfat.h (modified) (1 diff)
-
exfat/exfat_dentry.h (modified) (1 diff)
-
fat/fat.h (modified) (1 diff)
-
fat/fat_dentry.h (modified) (1 diff)
-
locfs/locfs_ops.c (modified) (1 diff)
-
locfs/locfs_ops.h (modified) (1 diff)
-
tmpfs/tmpfs.h (modified) (1 diff)
-
udf/udf.h (modified) (1 diff)
-
udf/udf_cksum.h (modified) (1 diff)
-
udf/udf_idx.c (modified) (1 diff)
-
udf/udf_osta.h (modified) (1 diff)
-
udf/udf_types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs_ops.c
re80d8f8 r3e6a98c5 38 38 39 39 #include "cdfs_ops.h" 40 #include < bool.h>40 #include <stdbool.h> 41 41 #include <adt/hash_table.h> 42 42 #include <adt/hash.h> -
uspace/srv/fs/cdfs/cdfs_ops.h
re80d8f8 r3e6a98c5 34 34 #define CDFS_CDFS_OPS_H_ 35 35 36 #include < bool.h>36 #include <stdbool.h> 37 37 38 38 extern bool cdfs_init(void); -
uspace/srv/fs/exfat/exfat.h
re80d8f8 r3e6a98c5 40 40 #include <atomic.h> 41 41 #include <sys/types.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 #include "../../vfs/vfs.h" 44 44 -
uspace/srv/fs/exfat/exfat_dentry.h
re80d8f8 r3e6a98c5 35 35 36 36 #include <stdint.h> 37 #include < bool.h>37 #include <stdbool.h> 38 38 39 39 #define EXFAT_FILENAME_LEN 255 -
uspace/srv/fs/fat/fat.h
re80d8f8 r3e6a98c5 40 40 #include <atomic.h> 41 41 #include <sys/types.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 #include "../../vfs/vfs.h" 44 44 -
uspace/srv/fs/fat/fat_dentry.h
re80d8f8 r3e6a98c5 36 36 37 37 #include <stdint.h> 38 #include < bool.h>38 #include <stdbool.h> 39 39 40 40 #define IS_D_CHAR(ch) (isalnum(ch) || ch == '_') -
uspace/srv/fs/locfs/locfs_ops.c
re80d8f8 r3e6a98c5 37 37 38 38 #include <macros.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <errno.h> 41 41 #include <malloc.h> -
uspace/srv/fs/locfs/locfs_ops.h
re80d8f8 r3e6a98c5 34 34 #define LOCFS_LOCFS_OPS_H_ 35 35 36 #include < bool.h>36 #include <stdbool.h> 37 37 38 38 extern bool locfs_init(void); -
uspace/srv/fs/tmpfs/tmpfs.h
re80d8f8 r3e6a98c5 37 37 #include <atomic.h> 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <adt/hash_table.h> 41 41 -
uspace/srv/fs/udf/udf.h
re80d8f8 r3e6a98c5 39 39 #include <atomic.h> 40 40 #include <sys/types.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include "../../vfs/vfs.h" 43 43 #include "udf_types.h" -
uspace/srv/fs/udf/udf_cksum.h
re80d8f8 r3e6a98c5 35 35 36 36 #include <sys/types.h> 37 #include < bool.h>37 #include <stdbool.h> 38 38 39 39 #define UDF_TAG_SIZE 16 -
uspace/srv/fs/udf/udf_idx.c
re80d8f8 r3e6a98c5 44 44 #include <adt/hash.h> 45 45 #include <adt/list.h> 46 #include < bool.h>46 #include <stdbool.h> 47 47 #include "udf_idx.h" 48 48 #include "udf.h" -
uspace/srv/fs/udf/udf_osta.h
re80d8f8 r3e6a98c5 41 41 42 42 #include <sys/types.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 #include "udf_types.h" 45 45 -
uspace/srv/fs/udf/udf_types.h
re80d8f8 r3e6a98c5 39 39 40 40 #include <sys/types.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include <byteorder.h> 43 43
Note:
See TracChangeset
for help on using the changeset viewer.
