Subversion Repositories HelenOS

Rev

Rev 4518 | Rev 4551 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4518 Rev 4539
Line 266... Line 266...
266
     * system a global file system handle.
266
     * system a global file system handle.
267
     */
267
     */
268
    fs_info->fs_handle = (fs_handle_t) atomic_postinc(&fs_handle_next);
268
    fs_info->fs_handle = (fs_handle_t) atomic_postinc(&fs_handle_next);
269
    ipc_answer_1(rid, EOK, (ipcarg_t) fs_info->fs_handle);
269
    ipc_answer_1(rid, EOK, (ipcarg_t) fs_info->fs_handle);
270
   
270
   
-
 
271
    pending_new_fs = true;
-
 
272
    fibril_condvar_signal(&pending_cv);
271
    fibril_mutex_unlock(&fs_head_lock);
273
    fibril_mutex_unlock(&fs_head_lock);
272
   
274
   
273
    dprintf("\"%.*s\" filesystem successfully registered, handle=%d.\n",
275
    dprintf("\"%.*s\" filesystem successfully registered, handle=%d.\n",
274
        FS_NAME_MAXLEN, fs_info->vfs_info.name, fs_info->fs_handle);
276
        FS_NAME_MAXLEN, fs_info->vfs_info.name, fs_info->fs_handle);
275
}
277
}