Changeset 8dc72b64 in mainline for uspace/srv/vfs/vfs_register.c


Ignore:
Timestamp:
2009-03-02T17:37:19Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
16da5f8e
Parents:
6519d6f
Message:

support for pending (blocking) mounts (waiting for the presence of the filesystem implementation)
the mount point and filesystem type arguments of VFS_MOUNT were swapped, the IPC_M_PING was eliminated
small cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_register.c

    r6519d6f r8dc72b64  
    2929/** @addtogroup fs
    3030 * @{
    31  */ 
     31 */
    3232
    3333/**
    34  * @file        vfs_register.c
     34 * @file vfs_register.c
    3535 * @brief
    3636 */
     
    279279        dprintf("\"%.*s\" filesystem successfully registered, handle=%d.\n",
    280280            FS_NAME_MAXLEN, fs_info->vfs_info.name, fs_info->fs_handle);
     281       
     282        /* Process pending mount requests possibly waiting
     283         * for this filesystem implementation.
     284         */
     285        vfs_process_pending_mount();
    281286}
    282287
Note: See TracChangeset for help on using the changeset viewer.