Changes between Version 5 and Version 6 of Ticket #60


Ignore:
Timestamp:
2010-02-16T09:48:36Z (14 years ago)
Author:
Jakub Jermář
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #60

    • Property Summary Implement ext2 filesystem driverEXT2 filesystem driver
  • Ticket #60 – Description

    v5 v6  
    11Implement a native HelenOS driver for the ext2 file system.
    22
    3   Details::
    4 The new driver should be realized as a standalone server process which plugs itself into the HelenOS VFS framework and implements the VFS and libfs interfaces in the ext2 specific way.
     3 Details::
     4 The new driver should be realized as a standalone server process which plugs itself into the HelenOS VFS framework and implements the VFS and libfs interfaces in the ext2 specific way.
    55
    6 The implementation can proceed in two phases. In the first phase, read-only support should be implemented. The second phase will comprise of adding write support.
     6 The implementation can proceed in two phases. In the first phase, read-only support should be implemented. The second phase will comprise of adding write support.
    77
    8   What Gains and Benefits will this bring?::
    9 The only persistent file system supported by HelenOS so far has been FAT16. This file system has some inconvenient limitations such as the 8.3 file names and, which is more important, does not force VFS to provide interfaces for writing back the superblock. On the other hand, ext2 is a reasonably advanced file system commonly used on the Linux platform and its implementation will lead to adding needed abstractions to the VFS protocol. This will benefit future additions of other persistent file systems.
     8 What Gains and Benefits will this bring?::
     9 The only persistent file system supported by HelenOS so far has been FAT16. This file system has some inconvenient limitations such as the 8.3 file names and, which is more important, does not force VFS to provide interfaces for writing back the superblock. On the other hand, ext2 is a reasonably advanced file system commonly used on the Linux platform and its implementation will lead to adding needed abstractions to the VFS protocol. This will benefit future additions of other persistent file systems.
    1010
    11   Difficulty::
    12 medium
     11 Difficulty::
     12 medium
    1313
    14   Required skills::
    15 A successful applicant will have good skills of programming in the C language and also the ability to program in a multi-server environment, which includes communicating using HelenOS IPC.
     14 Required skills::
     15 A successful applicant will have good skills of programming in the C language and also the ability to program in a multi-server environment, which includes communicating using HelenOS IPC.
    1616
    17   Documentation::
    18 The ext2 file system on-disk format is described in a document linked from the [wiki:DeveloperDocs#FileSystems file system] section of our developer documentation page. The file system framework is described in the [wiki:FSDesign file system design] document and HelenOS IPC is documented in the [wiki:IPC IPC for Dummies] article.
     17 Documentation::
     18 The ext2 file system on-disk format is described in a document linked from the [wiki:DeveloperDocs#FileSystems file system] section of our developer documentation page. The file system framework is described in the [wiki:FSDesign file system design] document and HelenOS IPC is documented in the [wiki:IPC IPC for Dummies] article.