Changes in uspace/srv/vfs/vfs.h [e2ab36f1:76a67ce] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.h

    re2ab36f1 r76a67ce  
    150150extern list_t fs_list;          /**< List of registered file systems. */
    151151
     152extern fibril_mutex_t fs_mntlist_lock;
     153extern list_t fs_mntlist;       /**< List of mounted file systems. */
     154
    152155extern vfs_pair_t rootfs;       /**< Root file system. */
    153156
     
    163166extern list_t plb_entries;      /**< List of active PLB entries. */
    164167
    165 #define MAX_MNTOPTS_LEN         256
    166 
    167168/** Holding this rwlock prevents changes in file system namespace. */
    168169extern fibril_rwlock_t namespace_rwlock;
     
    171172extern void vfs_exchange_release(async_exch_t *);
    172173
    173 extern fs_handle_t fs_name_to_handle(char *, bool);
     174extern fs_handle_t fs_name_to_handle(unsigned int instance, char *, bool);
    174175extern vfs_info_t *fs_handle_to_info(fs_handle_t);
    175176
     
    219220extern void vfs_rename(ipc_callid_t, ipc_call_t *);
    220221extern void vfs_wait_handle(ipc_callid_t, ipc_call_t *);
     222extern void vfs_get_mtab(ipc_callid_t, ipc_call_t *);
    221223
    222224#endif
Note: See TracChangeset for help on using the changeset viewer.