Changeset feeac0d in mainline for uspace/srv/fs/fat/fat_ops.c
- Timestamp:
- 2013-09-10T16:32:35Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4982d87
- Parents:
- e8d6ce2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
re8d6ce2 rfeeac0d 149 149 static int fat_node_fini_by_service_id(service_id_t service_id) 150 150 { 151 fat_node_t *nodep;152 151 int rc; 153 152 … … 160 159 restart: 161 160 fibril_mutex_lock(&ffn_mutex); 162 list_foreach(ffn_list, lnk) { 163 nodep = list_get_instance(lnk, fat_node_t, ffn_link); 161 list_foreach(ffn_list, ffn_link, fat_node_t, nodep) { 164 162 if (!fibril_mutex_trylock(&nodep->lock)) { 165 163 fibril_mutex_unlock(&ffn_mutex);
Note:
See TracChangeset
for help on using the changeset viewer.