public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* Ext4 devel interlock meeting minutes (Nov. 17, 2006)
@ 2006-11-17 21:59 Avantika Mathur LTC
  2006-11-21 11:07 ` Suparna Bhattacharya
  0 siblings, 1 reply; 3+ messages in thread
From: Avantika Mathur LTC @ 2006-11-17 21:59 UTC (permalink / raw)
  To: linux-ext4

Sorry they are a little late!  Here are minutes from the interlock call 
on Wednesday.

Thanks,
Avantika
----

Ext4 Developer Interlock Call: 11/15/06 Minutes

Attendees: Dave Kleikamp, Ted Ts'o, Jean-Pierre Dion, Valérie Clément, 
Jean-Noel Cordenner, Mingming Cao, Suparna Bhattacharya, Eric Sandeen, 
Avantika Mathur

- WIKI: Decided that we need to maintain one Wiki for Ext4. Ted will 
request a new wiki on kernel.org.

- Shaggy had sent out an Ext4 roadmap after the last call, but need to 
continue to plan when each feature will be stable and when the disk 
format can be freezed. This should be kept up to date on the Wiki.

- Ted is reviewing extents patches to e2fsprogs. There have been many 
changes to mercurial in the past week.

- Defrag Schemes: Detailed discussion of the different defrag schemes 
being discussed on the mailing list, and what requirements are needed 
for Ext4.  A summary of this discussion is below:


DEFRAG DISCUSSION
=================

(Ted and Eric, this is what I remembered from the discussion, please 
fill in any gaps or correct any mistakes in the summary.)

Trying to establish a clear direction for defrag, there has been a lot 
of discussion on the mailing list.  
The issues discussed were:

-- How the interface to the defrag should be implemented. Current ideas 
are using ioctls, system calls, or implementing as a filesystem.  Using 
ioctls was the method generally favored by Ted and Eric in the discussion.

-- Whether the implementation should be extent based or block based. Ted 
feels that this should be extent based, using indirect blocks if necessary

-- Should the block allocation policy be driven by user space or kernel 
space?

Prefer a user space driven policy, so that files that are accessed 
concurrently during system boot, can be put close together to speed up 
the boot process.  In this design the user space interface can specify 
an inode and logical block sequence to be put in a certain block 
location; if the space is available, the kernel will copy data and inode 
pointers.    
The user space interface will access bitmaps to locate free space.  It 
should also have the interface to specify a certain region to be 
reserved, and that region would be freed on the disk, so user space can 
move other files to that space.

-- Implementation

Ted believes the defrag should be implemented by specifying a region 
space for a file on disk, storing file data in page cache and copying 
the data from the page cache to the new physical blocks.  Then changing 
the mappings from the logical blocks to these new physical blocks.

Eric's approach is to identify the region on disk, generate a secondary 
inode for the file and allocate this space to the secondary inode.  Then 
copy the data from the original file to the new blocks, and replace the 
inode.  All file writes will need to be restricted during this process.
Ted's concerns with this approach is possible inconsistencies in the 
journal if the system crashes during this process, and also the 
inability to defrag files while they are being written to.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Ext4 devel interlock meeting minutes (Nov. 17, 2006)
  2006-11-17 21:59 Ext4 devel interlock meeting minutes (Nov. 17, 2006) Avantika Mathur LTC
@ 2006-11-21 11:07 ` Suparna Bhattacharya
  2006-11-22  0:57   ` Mingming Cao
  0 siblings, 1 reply; 3+ messages in thread
From: Suparna Bhattacharya @ 2006-11-21 11:07 UTC (permalink / raw)
  To: Avantika Mathur LTC; +Cc: linux-ext4, shaggy


For this week's call, could we have a discussion on the API for
persistent preallocation ? Options suggested in the past have
included posix_fallocate, fadvise, fcntl/ioctl, ftruncate. 

Regards
Suparna

On Fri, Nov 17, 2006 at 01:59:24PM -0800, Avantika Mathur LTC wrote:
> Sorry they are a little late!  Here are minutes from the interlock call
> on Wednesday.
> 
> Thanks,
> Avantika
> ----
> 
> Ext4 Developer Interlock Call: 11/15/06 Minutes
> 
> Attendees: Dave Kleikamp, Ted Ts'o, Jean-Pierre Dion, Valirie Climent,
> Jean-Noel Cordenner, Mingming Cao, Suparna Bhattacharya, Eric Sandeen,
> Avantika Mathur
> 
> - WIKI: Decided that we need to maintain one Wiki for Ext4. Ted will
> request a new wiki on kernel.org.
> 
> - Shaggy had sent out an Ext4 roadmap after the last call, but need to
> continue to plan when each feature will be stable and when the disk
> format can be freezed. This should be kept up to date on the Wiki.
> 
> - Ted is reviewing extents patches to e2fsprogs. There have been many
> changes to mercurial in the past week.
> 
> - Defrag Schemes: Detailed discussion of the different defrag schemes
> being discussed on the mailing list, and what requirements are needed
> for Ext4.  A summary of this discussion is below:
> 
> 
> DEFRAG DISCUSSION
> =================
> 
> (Ted and Eric, this is what I remembered from the discussion, please
> fill in any gaps or correct any mistakes in the summary.)
> 
> Trying to establish a clear direction for defrag, there has been a lot
> of discussion on the mailing list.
> The issues discussed were:
> 
> -- How the interface to the defrag should be implemented. Current ideas
> are using ioctls, system calls, or implementing as a filesystem.  Using
> ioctls was the method generally favored by Ted and Eric in the discussion.
> 
> -- Whether the implementation should be extent based or block based. Ted
> feels that this should be extent based, using indirect blocks if necessary
> 
> -- Should the block allocation policy be driven by user space or kernel
> space?
> 
> Prefer a user space driven policy, so that files that are accessed
> concurrently during system boot, can be put close together to speed up
> the boot process.  In this design the user space interface can specify
> an inode and logical block sequence to be put in a certain block
> location; if the space is available, the kernel will copy data and inode
> pointers.
> The user space interface will access bitmaps to locate free space.  It
> should also have the interface to specify a certain region to be
> reserved, and that region would be freed on the disk, so user space can
> move other files to that space.
> 
> -- Implementation
> 
> Ted believes the defrag should be implemented by specifying a region
> space for a file on disk, storing file data in page cache and copying
> the data from the page cache to the new physical blocks.  Then changing
> the mappings from the logical blocks to these new physical blocks.
> 
> Eric's approach is to identify the region on disk, generate a secondary
> inode for the file and allocate this space to the secondary inode.  Then
> copy the data from the original file to the new blocks, and replace the
> inode.  All file writes will need to be restricted during this process.
> Ted's concerns with this approach is possible inconsistencies in the
> journal if the system crashes during this process, and also the
> inability to defrag files while they are being written to.
> 
> 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Suparna Bhattacharya (suparna@in.ibm.com)
Linux Technology Center
IBM Software Lab, India

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Ext4 devel interlock meeting minutes (Nov. 17, 2006)
  2006-11-21 11:07 ` Suparna Bhattacharya
@ 2006-11-22  0:57   ` Mingming Cao
  0 siblings, 0 replies; 3+ messages in thread
From: Mingming Cao @ 2006-11-22  0:57 UTC (permalink / raw)
  To: suparna; +Cc: Avantika Mathur LTC, linux-ext4, shaggy

On Tue, 2006-11-21 at 16:37 +0530, Suparna Bhattacharya wrote:
> For this week's call, could we have a discussion on the API for
> persistent preallocation ? Options suggested in the past have
> included posix_fallocate, fadvise, fcntl/ioctl, ftruncate.
> 
> Regards
> Suparna
> 

Sure thing. I have add this topic on this week's agenda, but it might be
a short meeting with less attendees tomorrow, as it's close to the
holiday.

Mingming
> On Fri, Nov 17, 2006 at 01:59:24PM -0800, Avantika Mathur LTC wrote:
> > Sorry they are a little late!  Here are minutes from the interlock call
> > on Wednesday.
> >
> > Thanks,
> > Avantika
> > ----
> >
> > Ext4 Developer Interlock Call: 11/15/06 Minutes
> >
> > Attendees: Dave Kleikamp, Ted Ts'o, Jean-Pierre Dion, Valirie Climent,
> > Jean-Noel Cordenner, Mingming Cao, Suparna Bhattacharya, Eric Sandeen,
> > Avantika Mathur
> >
> > - WIKI: Decided that we need to maintain one Wiki for Ext4. Ted will
> > request a new wiki on kernel.org.
> >
> > - Shaggy had sent out an Ext4 roadmap after the last call, but need to
> > continue to plan when each feature will be stable and when the disk
> > format can be freezed. This should be kept up to date on the Wiki.
> >
> > - Ted is reviewing extents patches to e2fsprogs. There have been many
> > changes to mercurial in the past week.
> >
> > - Defrag Schemes: Detailed discussion of the different defrag schemes
> > being discussed on the mailing list, and what requirements are needed
> > for Ext4.  A summary of this discussion is below:
> >
> >
> > DEFRAG DISCUSSION
> > =================
> >
> > (Ted and Eric, this is what I remembered from the discussion, please
> > fill in any gaps or correct any mistakes in the summary.)
> >
> > Trying to establish a clear direction for defrag, there has been a lot
> > of discussion on the mailing list.
> > The issues discussed were:
> >
> > -- How the interface to the defrag should be implemented. Current ideas
> > are using ioctls, system calls, or implementing as a filesystem.  Using
> > ioctls was the method generally favored by Ted and Eric in the discussion.
> >
> > -- Whether the implementation should be extent based or block based. Ted
> > feels that this should be extent based, using indirect blocks if necessary
> >
> > -- Should the block allocation policy be driven by user space or kernel
> > space?
> >
> > Prefer a user space driven policy, so that files that are accessed
> > concurrently during system boot, can be put close together to speed up
> > the boot process.  In this design the user space interface can specify
> > an inode and logical block sequence to be put in a certain block
> > location; if the space is available, the kernel will copy data and inode
> > pointers.
> > The user space interface will access bitmaps to locate free space.  It
> > should also have the interface to specify a certain region to be
> > reserved, and that region would be freed on the disk, so user space can
> > move other files to that space.
> >
> > -- Implementation
> >
> > Ted believes the defrag should be implemented by specifying a region
> > space for a file on disk, storing file data in page cache and copying
> > the data from the page cache to the new physical blocks.  Then changing
> > the mappings from the logical blocks to these new physical blocks.
> >
> > Eric's approach is to identify the region on disk, generate a secondary
> > inode for the file and allocate this space to the secondary inode.  Then
> > copy the data from the original file to the new blocks, and replace the
> > inode.  All file writes will need to be restricted during this process.
> > Ted's concerns with this approach is possible inconsistencies in the
> > journal if the system crashes during this process, and also the
> > inability to defrag files while they are being written to.
> >
> >
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> Suparna Bhattacharya (suparna@in.ibm.com)
> Linux Technology Center
> IBM Software Lab, India
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-11-22  0:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-17 21:59 Ext4 devel interlock meeting minutes (Nov. 17, 2006) Avantika Mathur LTC
2006-11-21 11:07 ` Suparna Bhattacharya
2006-11-22  0:57   ` Mingming Cao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox