inode version updates

2007-06-13 Thread Mingming Cao
On Tue, 2007-06-12 at 09:56 -0700, Avantika Mathur wrote: > Ext4 Developer Interlock Call: Jun 11, 2007 Meeting Minutes > i_version: > - Kalpak will be separating i_version code from his expand-inode-size > patch, and merging with the other i_version patches > I took out the i_version code from

Re: [PATCH] JBD2: fix debug config option

2007-06-13 Thread Mingming Cao
On Wed, 2007-06-13 at 16:22 -0700, Mingming Cao wrote: > On Thu, 2007-06-07 at 23:45 -0500, Jose R. Santos wrote: > > When the JBD code was forked to create the new JBD2 code base, the > > references to CONFIG_JBD_DEBUG where never changed to > > CONFIG_JBD2_DEBUG. This patch fixes that. > > >

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-06-13 Thread David Chinner
On Tue, Jun 12, 2007 at 11:46:52AM +0530, Amit K. Arora wrote: > Did you get time to write the above man page ? It will help to push > further patches in time (eg. for FA_PREALLOCATE mode). First pass is attached. `nroff -man fallocate.2 | less` to view. Cheers, Dave. -- Dave Chinner Principal

Re: + fs-introduce-write_begin-write_end-and-perform_write-aops.patch added to -mm tree

2007-06-13 Thread Nick Piggin
On Wed, Jun 13, 2007 at 04:07:01PM -0700, Badari Pulavarty wrote: > On Wed, 2007-06-13 at 13:43 +0200, Nick Piggin wrote: > .. > > > > > 5) ext3_write_end: > > > Before write_begin/write_end patch set we have folowing locking > > > order: > > > stop_journal(handle); > > >

Re: [PATCH] JBD2: fix debug config option

2007-06-13 Thread Mingming Cao
On Thu, 2007-06-07 at 23:45 -0500, Jose R. Santos wrote: > When the JBD code was forked to create the new JBD2 code base, the > references to CONFIG_JBD_DEBUG where never changed to > CONFIG_JBD2_DEBUG. This patch fixes that. > We need to fix ext4 to reference CONFIG_JBD2_DEBUG as well. The ext

Re: + fs-introduce-write_begin-write_end-and-perform_write-aops.patch added to -mm tree

2007-06-13 Thread Badari Pulavarty
On Wed, 2007-06-13 at 13:43 +0200, Nick Piggin wrote: .. > > > 5) ext3_write_end: > > Before write_begin/write_end patch set we have folowing locking > > order: > > stop_journal(handle); > > unlock_page(page); > > But now order is oposite: > > unlo

ext4 patch queue updated

2007-06-13 Thread Mingming Cao
Just updated the ext4 patch queue http://repo.or.cz/w/ext4-patch-queue Changes: Added these three patches from Jose Santos: ext4_set_jbd2_64bit_feature.patch jbd2_config_jbd2_debug_fix.patch jbd2_move_jbd2_debug_to_debugfs.patch Reordered the series, move jbd-stats-through-procfs and ext4_remo

Re: + fs-introduce-write_begin-write_end-and-perform_write-aops.patch added to -mm tree

2007-06-13 Thread Dmitriy Monakhov
On 13:43 Срд 13 Июн , Nick Piggin wrote: > On Wed, Jun 13, 2007 at 05:40:05PM +0400, Dmitriy Monakhov wrote: > > On 14:19 ?? 29 ?? , [EMAIL PROTECTED] wrote: > > > > > > The patch titled > > > fs: introduce write_begin, write_end, and perform_write aops > > > has been added to

Re: [patch] new aop loop fix

2007-06-13 Thread Hugh Dickins
On Wed, 13 Jun 2007, Dmitriy Monakhov wrote: > Btw: Nick's patches broke LO_CRYPT_XOR mode, It would help him if you could describe how. > but it is ok because > this feature was absolete and not used by anyone, am i right here? I know nothing of this; but so long as its code remains in the dri

Re: [patch] new aop loop fix

2007-06-13 Thread Dmitriy Monakhov
On 14:36 Срд 13 Июн , Hugh Dickins wrote: > On Wed, 13 Jun 2007, Dmitriy Monakhov wrote: > > > loop.c code itself is not perfect. In fact before Nick's patch > > partial write was't possible. Assumption what write chunks are > > always page aligned is realy weird ( see "index++" li

Re: [patch] new aop loop fix

2007-06-13 Thread Hugh Dickins
On Wed, 13 Jun 2007, Dmitriy Monakhov wrote: > loop.c code itself is not perfect. In fact before Nick's patch > partial write was't possible. Assumption what write chunks are > always page aligned is realy weird ( see "index++" line). > > Signed-off-by: Dmitriy Monakhov <[EMAIL

Re: + fs-introduce-write_begin-write_end-and-perform_write-aops.patch added to -mm tree

2007-06-13 Thread Nick Piggin
On Wed, Jun 13, 2007 at 05:40:05PM +0400, Dmitriy Monakhov wrote: > On 14:19 ?? 29 ?? , [EMAIL PROTECTED] wrote: > > > > The patch titled > > fs: introduce write_begin, write_end, and perform_write aops > > has been added to the -mm tree. Its filename is > > fs-introduce-wri

Re: Patch to support LUKS UUIDs in libblkid

2007-06-13 Thread Karsten Hopp
Theodore Tso schrieb: On Mon, Jun 11, 2007 at 01:51:24PM +0200, Karsten Hopp wrote: +static int probe_luks(struct blkid_probe *probe, + struct blkid_magic *id __BLKID_ATTR((unused)), + unsigned char *buf) +{ + unsigned char *p_buf = buf; + unsigned char uuid[40]; +

iov_iter_fault_in_readable fix

2007-06-13 Thread Dmitriy Monakhov
Function prerform check for signgle region, with out respect to segment nature of iovec, For example writev no longer works :) /* TESTCASE BEGIN */ #include #include #include #include #include #include #define SI

[patch] new aop loop fix

2007-06-13 Thread Dmitriy Monakhov
loop.c code itself is not perfect. In fact before Nick's patch partial write was't possible. Assumption what write chunks are always page aligned is realy weird ( see "index++" line). Signed-off-by: Dmitriy Monakhov <[EMAIL PROTECTED]> diff --git a/drivers/block/loop.c b/d

Re: + fs-introduce-write_begin-write_end-and-perform_write-aops.patch added to -mm tree

2007-06-13 Thread Dmitriy Monakhov
On 14:19 Втр 29 Май , [EMAIL PROTECTED] wrote: > > The patch titled > fs: introduce write_begin, write_end, and perform_write aops > has been added to the -mm tree. Its filename is > fs-introduce-write_begin-write_end-and-perform_write-aops.patch > > *** Remember to use Documentati