March 29, 2013
5:27 p.m.
On Fri, Mar 29, 2013 at 1:27 AM, Sankar P <sankar.curiosity@gmail.com>wrote:
Hi,
I am trying to write a simple filesystem to learn the basics of it.
I have decided on a simple layout for my filesystem where the first block will be the super block and will contain the version information etc. The second block will contain the list of inodes. Third block onwards will be data blocks. Each file can grow only up to a single block size. Thrid block will represent the first file, fourth block for the second file and so on. Directories will not be supported.
You can have a look at https://github.com/mkatiyar/testfs/blob/master/READMEwhich has a similar layout. -- Thanks - Manish