Changeset e584623 in mainline
- Timestamp:
- 2011-07-14T07:04:39Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c223ee2
- Parents:
- 9f98578
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat.h
r9f98578 re584623 52 52 #define BPS(bs) (1 << (bs->bytes_per_sector)) 53 53 #define SPC(bs) (1 << (bs->sec_per_cluster)) 54 #define VOL_ ST(bs) uint64_t_le2host(bs->volume_start)54 #define VOL_FS(bs) uint64_t_le2host(bs->volume_start) 55 55 #define VOL_CNT(bs) uint64_t_le2host(bs->volume_count) 56 #define FAT_ ST(bs) uint32_t_le2host(bs->fat_sector_start)56 #define FAT_FS(bs) uint32_t_le2host(bs->fat_sector_start) 57 57 #define FAT_CNT(bs) uint32_t_le2host(bs->fat_sector_count) 58 #define DATA_ ST(bs) uint32_t_le2host(bs->data_start_sector)58 #define DATA_FS(bs) uint32_t_le2host(bs->data_start_sector) 59 59 #define DATA_CNT(bs) uint32_t_le2host(bs->data_clusters) 60 #define ROOT_ ST(bs) uint32_t_le2host(bs->rootdir_cluster)60 #define ROOT_FC(bs) uint32_t_le2host(bs->rootdir_cluster) 61 61 #define VOL_FLAGS(bs) uint16_t_le2host(bs->volume_flags) 62 62 … … 98 98 99 99 struct exfat_node; 100 struct exfat_idx_t; 100 101 101 102 typedef struct { … … 108 109 devmap_handle_t devmap_handle; 109 110 fs_index_t index; 111 112 /* Does parent node fragmented or not? */ 113 bool parent_fragmented; 110 114 /** 111 115 * Parent node's first cluster.
Note:
See TracChangeset
for help on using the changeset viewer.