Changes between Version 5 and Version 6 of Ticket #54


Ignore:
Timestamp:
2010-02-22T13:19:31Z (14 years ago)
Author:
Jakub Jermář
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54 – Description

    v5 v6  
    1 Implement a connector between the HelenOS VFS service and FUSE (libfuse).
     1Implement a connector between the HelenOS VFS server and FUSE.
    22
    33 Details::
    4  
     4 The VFS-to-FUSE connector should act as an endpoint file system server task which plugs itself into the HelenOS VFS framework and implements the VFS output protocol, and also interface with or mimic the libfuse library. The individual FUSE file system implementation can either directly link to the connector or run as a separate server task.
     5
    56 What Gains and Benefits will this bring?::
    67 This should allow us to add a lot of file system implementations just by porting them from other systems with FUSE support.
     
    1314
    1415 Documentation::
    15  The file system framework is described in the [wiki:FSDesign Implementation and design of the file system layer] knowledge article and HelenOS IPC is documented in the [wiki:IPC IPC for Dummies] knowledge article.
     16   - [wiki:IPC IPC for Dummies]
     17   - [wiki:FSDesign Implementation and design of the file system layer]
     18   - [http://fuse.sourceforge.net/ FUSE: Filesystem in Userspace]