Creating mkfs for my custom filesystem

2013-03-29 Thread Sankar P
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

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Tobias Boege
On Fri, 29 Mar 2013, Sankar P 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

Fwd: Creating mkfs for my custom filesystem

2013-03-29 Thread Pranay Srivastava
-- Forwarded message -- From: Pranay Srivastava pran...@gmail.com Date: Fri, 29 Mar 2013 15:53:21 +0530 Subject: Re: Creating mkfs for my custom filesystem To: Sankar P sankar.curios...@gmail.com On 3/29/13, Sankar P sankar.curios...@gmail.com wrote: Hi, I am trying to write

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Sankar P
On Fri, Mar 29, 2013 at 3:56 PM, Pranay Srivastava pran...@gmail.com wrote: -- Forwarded message -- From: Pranay Srivastava pran...@gmail.com Date: Fri, 29 Mar 2013 15:53:21 +0530 Subject: Re: Creating mkfs for my custom filesystem To: Sankar P sankar.curios...@gmail.com

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Madper
On 03/29/2013 06:48 PM, Sankar P wrote: On Fri, Mar 29, 2013 at 3:56 PM, Pranay Srivastava pran...@gmail.com wrote: -- Forwarded message -- From: Pranay Srivastava pran...@gmail.com Date: Fri, 29 Mar 2013 15:53:21 +0530 Subject: Re: Creating mkfs for my custom filesystem

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Valdis . Kletnieks
On Fri, 29 Mar 2013 15:44:49 +0530, Sankar P said: 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

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Tobias Boege
On Fri, 29 Mar 2013, Sankar P wrote: On Fri, Mar 29, 2013 at 3:28 PM, Tobias Boege tob...@gambas-buch.de wrote: On Fri, 29 Mar 2013, Sankar P 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

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Manish Katiyar
On Fri, Mar 29, 2013 at 1:27 AM, Sankar P sankar.curios...@gmail.comwrote: 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

Re: Creating mkfs for my custom filesystem

2013-03-29 Thread Sankar P
On Fri, Mar 29, 2013 at 10:57 PM, Manish Katiyar mkati...@gmail.com wrote: On Fri, Mar 29, 2013 at 1:27 AM, Sankar P sankar.curios...@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