Changeset 3b2e387 in mainline for uspace/srv/fs/fat/fat_idx.c
- Timestamp:
- 2011-06-21T19:36:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3a6c45
- Parents:
- 40f606b (diff), 022d9f67 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_idx.c
r40f606b r3b2e387 59 59 typedef struct { 60 60 link_t link; 61 devmap_handle_t 61 devmap_handle_t devmap_handle; 62 62 63 63 /** Next unassigned index. */ 64 fs_index_t 64 fs_index_t next; 65 65 /** Number of remaining unassigned indices. */ 66 uint64_t 66 uint64_t remaining; 67 67 68 68 /** Sorted list of intervals of freed indices. */ 69 list_t 69 list_t freed_list; 70 70 } unused_t; 71 71 … … 97 97 return u; 98 98 } 99 99 100 100 if (lock) 101 101 fibril_mutex_unlock(&unused_lock);
Note:
See TracChangeset
for help on using the changeset viewer.