Changes in uspace/srv/vfs/vfs_register.c [feeac0d:3e6a98c5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_register.c
rfeeac0d r3e6a98c5 260 260 fibril_mutex_lock(&fs_list_lock); 261 261 262 list_foreach(fs_list, fs_link, fs_info_t, fs) { 262 list_foreach(fs_list, cur) { 263 fs_info_t *fs = list_get_instance(cur, fs_info_t, fs_link); 264 263 265 if (fs->fs_handle == handle) { 264 266 fibril_mutex_unlock(&fs_list_lock); … … 303 305 fibril_mutex_lock(&fs_list_lock); 304 306 305 list_foreach(fs_list, fs_link, fs_info_t, fs) { 307 list_foreach(fs_list, cur) { 308 fs_info_t *fs = list_get_instance(cur, fs_info_t, fs_link); 306 309 if (str_cmp(fs->vfs_info.name, name) == 0 && 307 310 instance == fs->vfs_info.instance) { … … 329 332 330 333 fibril_mutex_lock(&fs_list_lock); 331 list_foreach(fs_list, fs_link, fs_info_t, fs) { 334 list_foreach(fs_list, cur) { 335 fs_info_t *fs = list_get_instance(cur, fs_info_t, fs_link); 332 336 if (fs->fs_handle == handle) { 333 337 info = &fs->vfs_info;
Note:
See TracChangeset
for help on using the changeset viewer.