Changes in uspace/srv/fs/fat/fat_ops.c [feeac0d:44ecf89] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rfeeac0d r44ecf89 149 149 static int fat_node_fini_by_service_id(service_id_t service_id) 150 150 { 151 fat_node_t *nodep; 151 152 int rc; 152 153 … … 159 160 restart: 160 161 fibril_mutex_lock(&ffn_mutex); 161 list_foreach(ffn_list, ffn_link, fat_node_t, nodep) { 162 list_foreach(ffn_list, lnk) { 163 nodep = list_get_instance(lnk, fat_node_t, ffn_link); 162 164 if (!fibril_mutex_trylock(&nodep->lock)) { 163 165 fibril_mutex_unlock(&ffn_mutex);
Note:
See TracChangeset
for help on using the changeset viewer.