Re: [RFC] [PATCH 3/3] Recursive mtime for ext3

2007-11-08 Thread Jan Kara
On Wed 07-11-07 19:20:38, Theodore Tso wrote: > On Wed, Nov 07, 2007 at 03:36:05PM +0100, Jan Kara wrote: > > > What if more than one application wants to use this facility? > > > > That should be fine - let's see: Each application keeps somewhere a time > > when > > it started a scan of a subtr

Re: [RFC] [PATCH 3/3] Recursive mtime for ext3

2007-11-08 Thread Theodore Tso
Ah, OK, so the two things that I didn't get from your patch description are: 1) the rtime flag and rtime field are only set on directories 2) the intended use is not trackerd and its ilk, but rsync and updatedb, so it is desirable that scan/queries be persistent across reboots But then the maj

Re: [RFC] [PATCH 3/3] Recursive mtime for ext3

2007-11-08 Thread Jan Kara
On Thu 08-11-07 09:37:59, Theodore Tso wrote: > Ah, OK, so the two things that I didn't get from your patch > description are: > > 1) the rtime flag and rtime field are only set on directories > 2) the intended use is not trackerd and its ilk, but rsync and updatedb, >so it is desirable that s

Re: delalloc space accounting problem.

2007-11-08 Thread Alex Tomas
because new delalloc patch doesn't have reservation integrated. I'm going to implement this after data=order support. thanks, Alex Eric Sandeen wrote: It appears that delalloc lets me copy 50M of data onto a 30M filesystem; at least I never get ENOSPC back, although I wind up with several files

delalloc space accounting problem.

2007-11-08 Thread Eric Sandeen
It appears that delalloc lets me copy 50M of data onto a 30M filesystem; at least I never get ENOSPC back, although I wind up with several files that have 1M length but 0 blocks. I've filed a bug in the kernel bug tracker, I think we could use a central place to track issues: http://bugzilla.kern

Re: [Bugme-new] [Bug 9329] New: ext4: delalloc space accounting problem drops data

2007-11-08 Thread Andrew Morton
> On Thu, 8 Nov 2007 09:42:10 -0800 (PST) [EMAIL PROTECTED] wrote: > http://bugzilla.kernel.org/show_bug.cgi?id=9329 > >Summary: ext4: delalloc space accounting problem drops data >Product: File System >Version: 2.5 > KernelVersion: 2.6.24-rc1 >

[PATCH] fix check_mntent_file() to pass mode for open(O_CREAT)

2007-11-08 Thread Andreas Dilger
On my FC8 install, ismounted.c fails to build because open(O_CREAT) is used without passing a mode. The following trivial patch fixes it. Signed-off-by: Andreas Dilger <[EMAIL PROTECTED]> Index: e2fsprogs-1.40.2/lib/ext2fs/ismounted.c =

Re: [PATCH] fix check_mntent_file() to pass mode for open(O_CREAT)

2007-11-08 Thread Eric Sandeen
Andreas Dilger wrote: > On my FC8 install, ismounted.c fails to build because open(O_CREAT) is > used without passing a mode. The following trivial patch fixes it. You can add: Acked-by: Eric Sandeen <[EMAIL PROTECTED]> 'cause it's an awful lot like the patch I sent for the same issue back on 8