Re: [PATCH 4/7][TAKE5] support new modes in fallocate

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Christoph Hellwig <hch@...>, Amit K. Arora <aarora@...>, <linux-fsdevel@...>, <linux-kernel@...>, <linux-ext4@...>, David Chinner <dgc@...>, <suparna@...>, <cmm@...>, <xfs@...>
Date: Saturday, June 30, 2007 - 12:52 pm

On Jun 30, 2007  11:21 +0100, Christoph Hellwig wrote:

I definitely agree that the behaviour should be specified part of
the interface.  The current behaviour of both ext4 and XFS is that the
successful part of the unallocated extent is left in place when returning
ENOSPC so we considered this the "consistent" behaviour.  This is the same
as e.g. sys_write() which does not remove the part of the write that was
successful if ENOSPC is hit.  I think this also makes sense for some usa
cases, because application like PVR may want to preallocate approximately
30min of space, but if it gets only 25min worth then it can at least start
using this while it also begins looking for and/or freeing old files.

If the space is always freed on ENOSPC, then there may be a significant
amount of work done and undone while the application is iterating over
possible sizes until one works.   It is easy for the application to
use fstat() to see the blocks/size actually preallocated on failure, and
explicitly request unallocation of this space if the outcome is undesirable.

If you think that applications have a strong preference for both kinds
of behaviour (e.g. database which requires the full allocation to succeed,
unlike PVR application above) then this could be encoded into a @mode flag.


I agree that we shouldn't need FA_ZERO_SPACE.  If an application wants
explicit zeros written to disk it can just do this with O_DIRECT writes
or similar.


I don't think the current @mode flags introduce any significant complexity
in the implementation, and in fact one of the reasons these came up in the
first place was because David pointed out the XFS behaviour did NOT match
with posix_fallocate() and we started getting strange semantics enforced
by monolithic modes.  IMHO, coding for and understanding the semantics of
the monolithic modes is much more complex and less useful than the explicit
flags.

The @mode flags that are currently under consideration are (AFAIK):

FA_FL_DEALLOC	0x01 /* deallocate unwritten extent (default allocate) */
FA_FL_KEEP_SIZE	0x02 /* keep size for EOF {pre,de}alloc (default change size) */
FA_FL_DEL_DATA	0x04 /* delete existing data in alloc range (default keep) */

Your concern about leaking space would imply:

FA_FL_ERR_FREE	0x08 /* free preallocation on error (default keep prealloc) */

The other possible flags that were proposed, to avoid confusing backup and
HSM applications when preallocated space is added or removed from a file
(you don't want a backup app to re-backup a file that was migrated via HSM):

FA_FL_NO_MTIME	0x10 /* keep same mtime (default change on size, data change) */
FA_FL_NO_CTIME	0x20 /* keep same ctime (default change on size, data change) */

Cheers, Andreas
--
Andreas Dilger
Principal Software Engineer
Cluster File Systems, Inc.

-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[RFC] Heads up on sys_fallocate(), Amit K. Arora, (Thu Mar 1, 2:34 pm)
[RFC][PATCH] sys_fallocate() system call, Amit K. Arora, (Fri Mar 16, 10:31 am)
Re: [RFC][PATCH] sys_fallocate() system call, Russell King, (Sat Mar 17, 10:53 am)
Re: [RFC][PATCH] sys_fallocate() system call, Stephen Rothwell, (Sat Mar 17, 1:33 am)
Re: [RFC][PATCH] sys_fallocate() system call, Amit K. Arora, (Mon Mar 19, 5:30 am)
Re: [RFC][PATCH] sys_fallocate() system call, Heiko Carstens, (Fri Mar 16, 12:17 pm)
Re: [RFC][PATCH] sys_fallocate() system call, Matthew Wilcox, (Sat Mar 17, 7:10 am)
Re: [RFC][PATCH] sys_fallocate() system call, Amit K. Arora, (Wed Mar 21, 8:04 am)
Interface for the new fallocate() system call, Amit K. Arora, (Thu Mar 29, 7:51 am)
Re: Interface for the new fallocate() system call, Andrew Morton, (Thu Mar 29, 1:10 pm)
Re: Interface for the new fallocate() system call, Heiko Carstens, (Fri Mar 30, 3:19 am)
Re: Interface for the new fallocate() system call, Paul Mackerras, (Fri Mar 30, 5:15 am)
Re: Interface for the new fallocate() system call, Paul Mackerras, (Mon Apr 9, 9:01 am)
Re: Interface for the new fallocate() system call, Heiko Carstens, (Fri Mar 30, 8:55 am)
Re: Interface for the new fallocate() system call, Jakub Jelinek, (Fri Mar 30, 3:14 am)
Re: Interface for the new fallocate() system call, Amit K. Arora, (Tue Apr 17, 8:55 am)
Re: Interface for the new fallocate() system call, Andreas Dilger, (Wed Apr 18, 9:06 am)
Re: Interface for the new fallocate() system call, Amit K. Arora, (Fri Apr 20, 9:51 am)
Re: Interface for the new fallocate() system call, Jakub Jelinek, (Fri Apr 20, 10:59 am)
Re: Interface for the new fallocate() system call, Amit K. Arora, (Tue Apr 24, 8:16 am)
[PATCH 0/5] fallocate system call, Amit K. Arora, (Thu Apr 26, 1:50 pm)
[PATCH 0/6][TAKE4] fallocate system call, Amit K. Arora, (Thu May 17, 10:11 am)
Re: [PATCH 0/6][TAKE4] fallocate system call, Andrew Morton, (Sat May 19, 2:44 am)
Re: [PATCH 0/6][TAKE4] fallocate system call, Mingming Cao, (Mon May 21, 1:24 am)
[PATCH 0/5][TAKE3] fallocate system call, Amit K. Arora, (Tue May 15, 3:37 pm)
Re: [PATCH 0/5][TAKE3] fallocate system call, Mingming Cao, (Tue May 15, 7:52 pm)
[PATCH 0/5][TAKE2] fallocate system call, Amit K. Arora, (Mon May 14, 9:29 am)
Re: [PATCH 0/5][TAKE2] fallocate system call, Andreas Dilger, (Tue May 15, 2:31 am)
Re: [PATCH 0/5][TAKE2] fallocate system call, Amit K. Arora, (Tue May 15, 8:40 am)
Re: [PATCH 0/5] fallocate system call, David Chinner, (Sun Apr 29, 8:47 pm)
Re: [PATCH 0/5] fallocate system call, Chris Wedgwood, (Mon Apr 30, 1:25 am)
Re: [PATCH 0/5] fallocate system call, Amit K. Arora, (Wed May 2, 8:53 am)
Re: [PATCH 0/5] fallocate system call, Andreas Dilger, (Thu May 3, 6:34 am)
Re: [PATCH 0/5] fallocate system call, Miquel van Smoorenburg, (Thu May 3, 7:22 am)
Re: [PATCH 0/5] fallocate system call, David Chinner, (Mon May 7, 10:26 pm)
Re: [PATCH 0/5] fallocate system call, David Chinner, (Mon Apr 30, 1:56 am)
Re: [PATCH 0/5] fallocate system call, Chris Wedgwood, (Mon Apr 30, 2:01 am)
[PATCH] Add preallocation beyond EOF to fallocate, David Chinner, (Sun Apr 29, 11:14 pm)
[PATCH] XFS -&gt;fallocate() support, David Chinner, (Sun Apr 29, 11:11 pm)
[PATCH] ia64 fallocate syscall, David Chinner, (Sun Apr 29, 11:09 pm)
Re: [PATCH 0/5] fallocate system call, Heiko Carstens, (Fri Apr 27, 8:10 am)
Re: [PATCH 0/5] fallocate system call, Jörn, (Fri Apr 27, 10:43 am)
Re: [PATCH 0/5] fallocate system call, Heiko Carstens, (Fri Apr 27, 1:46 pm)
Re: [PATCH 0/5] fallocate system call, Chris Wedgwood, (Fri Apr 27, 4:42 pm)
[PATCH 4/5] ext4: fallocate support in ext4, Amit K. Arora, (Thu Apr 26, 2:13 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andrew Morton, (Fri May 4, 12:31 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andreas Dilger, (Mon May 7, 7:37 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andrew Morton, (Mon May 7, 4:58 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Jan Kara, (Mon May 14, 9:34 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Mingming Cao, (Mon May 7, 8:00 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andrew Morton, (Mon May 7, 8:15 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Mingming Cao, (Mon May 7, 8:41 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Theodore Tso, (Mon May 7, 9:43 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Mingming Cao, (Tue May 8, 1:46 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andreas Dilger, (Tue May 8, 12:52 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andreas Dilger, (Mon May 7, 6:21 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Jeff Garzik, (Mon May 7, 7:02 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andreas Dilger, (Mon May 7, 9:07 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Jeff Garzik, (Mon May 7, 9:25 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Theodore Tso, (Mon May 7, 7:36 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andrew Morton, (Mon May 7, 6:38 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Theodore Tso, (Mon May 7, 7:14 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Andrew Morton, (Mon May 7, 7:31 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Mingming Cao, (Mon May 7, 8:30 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Amit K. Arora, (Mon May 7, 8:07 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Dave Kleikamp, (Mon May 7, 11:24 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Amit K. Arora, (Tue May 8, 6:52 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4, Dave Kleikamp, (Tue May 8, 10:47 am)
[PATCH 3/5] ext4: Extent overlap bugfix, Amit K. Arora, (Thu Apr 26, 2:11 pm)
Re: [PATCH 3/5] ext4: Extent overlap bugfix, Andrew Morton, (Fri May 4, 12:30 am)
Re: [PATCH 3/5] ext4: Extent overlap bugfix, Amit K. Arora, (Mon May 7, 7:46 am)
[PATCH 2/5] fallocate() on s390, Amit K. Arora, (Thu Apr 26, 2:07 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 an..., Suparna Bhattacharya, (Fri May 11, 7:03 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 an..., Christoph Hellwig, (Sat Jun 30, 6:14 am)
[PATCH 0/6][TAKE5] fallocate system call, Amit K. Arora, (Mon Jun 25, 9:28 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Andrew Morton, (Thu Jun 28, 5:55 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Amit K. Arora, (Thu Jun 28, 1:57 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, Andreas Dilger, (Thu Jun 28, 4:34 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, Andrew Morton, (Thu Jun 28, 2:33 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, Theodore Tso, (Fri Jun 29, 9:56 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Mingming Caoc, (Fri Jun 29, 11:50 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Andrew Morton, (Fri Jun 29, 4:57 pm)
Ext4 patches for 2.6.22-rc6, Mingming Cao, (Sun Jul 1, 3:35 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Jeff Garzik, (Fri Jun 29, 10:29 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Theodore Tso, (Fri Jun 29, 1:42 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, Christoph Hellwig, (Fri Jun 29, 3:20 am)
Re: [PATCH 0/6][TAKE5] fallocate system call, Jeff Garzik, (Thu Jun 28, 2:57 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, Dave Kleikamp, (Thu Jun 28, 2:45 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, Mingming Cao, (Thu Jun 28, 1:36 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call, David Chinner, (Tue Jun 26, 7:15 pm)
[PATCH 7/7][TAKE5] ext4: support new modes, Amit K. Arora, (Mon Jun 25, 9:50 am)
Re: [PATCH 7/7][TAKE5] ext4: support new modes, Andreas Dilger, (Mon Jun 25, 5:56 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes, Amit K. Arora, (Tue Jun 26, 8:07 am)
Re: [PATCH 7/7][TAKE5] ext4: support new modes, Andreas Dilger, (Tue Jun 26, 12:14 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes, Amit K. Arora, (Tue Jun 26, 3:29 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes, David Chinner, (Tue Jun 26, 8:04 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes, Amit K. Arora, (Thu Jun 28, 2:07 pm)
[PATCH 5/7][TAKE5] ext4: fallocate support in ext4, Amit K. Arora, (Mon Jun 25, 9:48 am)
[PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Mon Jun 25, 9:45 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Andreas Dilger, (Mon Jun 25, 5:52 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Tue Jun 26, 7:26 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Tue Jun 26, 6:45 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Andreas Dilger, (Tue Jun 26, 11:42 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Tue Jun 26, 7:32 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Tue Jun 26, 3:12 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Mon Jun 25, 11:03 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Andreas Dilger, (Mon Jun 25, 5:46 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Tue Jun 26, 7:14 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Tue Jun 26, 6:32 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Christoph Hellwig, (Sat Jun 30, 6:21 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Sun Jul 1, 6:55 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Christoph Hellwig, (Wed Jul 11, 5:05 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Mon Jul 2, 7:47 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Andreas Dilger, (Sat Jun 30, 12:52 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Tue Jul 3, 6:08 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Christoph Hellwig, (Tue Jul 3, 6:31 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Tue Jul 3, 7:46 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Christoph Hellwig, (Wed Jul 11, 5:03 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Suparna Bhattacharya, (Thu Jul 12, 3:28 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Thu Jul 12, 9:13 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Thu Jul 12, 10:15 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Thu Jul 12, 4:26 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Andreas Dilger, (Thu Jul 12, 10:40 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Timothy Shimmin, (Wed Jul 4, 1:37 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Christoph Hellwig, (Wed Jul 11, 5:04 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Andreas Dilger, (Tue Jun 26, 11:34 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Tue Jun 26, 7:18 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Thu Jun 28, 2:19 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Thu Jun 28, 9:03 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Nathan Scott, (Thu Jun 28, 7:39 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Amit K. Arora, (Tue Jun 26, 3:09 pm)
[PATCH 3/7][TAKE5] fallocate() on ia64, Amit K. Arora, (Mon Jun 25, 9:43 am)
[PATCH 2/7][TAKE5] fallocate() on s390(x), Amit K. Arora, (Mon Jun 25, 9:42 am)
Re: [PATCH 2/7][TAKE5] fallocate() on s390(x), Heiko Carstens, (Tue Jun 26, 11:15 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 an..., Suparna Bhattacharya, (Wed May 9, 6:15 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 an..., Suparna Bhattacharya, (Wed May 9, 7:10 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 an..., Martin Schwidefsky, (Wed May 9, 8:00 am)
Re: Interface for the new fallocate() system call, Amit K. Arora, (Thu Apr 5, 7:26 am)
Re: Interface for the new fallocate() system call, Andreas Dilger, (Fri Apr 6, 5:58 am)
Re: Interface for the new fallocate() system call, Randy Dunlap, (Thu Apr 5, 11:50 am)
Re: Interface for the new fallocate() system call, Amit K. Arora, (Thu Apr 5, 7:44 am)
Re: Interface for the new fallocate() system call, Paul Mackerras, (Fri Mar 30, 5:15 am)
Re: Interface for the new fallocate() system call, Heiko Carstens, (Fri Mar 30, 4:39 am)
Re: Interface for the new fallocate() system call, Jan Engelhardt, (Thu Mar 29, 1:01 pm)
Re: Interface for the new fallocate() system call, Heiko Carstens, (Fri Mar 30, 3:00 am)
Re: Interface for the new fallocate() system call, linux-os (Dick Johnson), (Thu Mar 29, 1:18 pm)
Re: Interface for the new fallocate() system call, Jan Engelhardt, (Thu Mar 29, 2:05 pm)
Re: Interface for the new fallocate() system call, Linus Torvalds, (Thu Mar 29, 2:37 pm)
Re: Interface for the new fallocate() system call, Chris Wedgwood, (Thu Mar 29, 12:35 pm)
Re: [RFC][PATCH] sys_fallocate() system call, Chris Wedgwood, (Wed Mar 21, 5:35 pm)
Re: [RFC][PATCH] sys_fallocate() system call, Paul Mackerras, (Sat Mar 17, 5:59 am)
Re: [RFC][PATCH] sys_fallocate() system call, Matthew Wilcox, (Sat Mar 17, 7:07 am)
Re: [RFC][PATCH] sys_fallocate() system call, Heiko Carstens, (Sat Mar 17, 10:30 am)
Re: [RFC][PATCH] sys_fallocate() system call, Stephen Rothwell, (Sat Mar 17, 10:38 am)
Re: [RFC][PATCH] sys_fallocate() system call, Stephen Rothwell, (Sat Mar 17, 10:42 am)
Re: [RFC][PATCH] sys_fallocate() system call, Heiko Carstens, (Fri Mar 16, 11:21 am)
Re: [RFC][PATCH] sys_fallocate() system call, Amit K. Arora, (Mon Mar 19, 5:24 am)
Re: [RFC][PATCH] sys_fallocate() system call, Heiko Carstens, (Mon Mar 19, 7:23 am)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Thu Mar 1, 7:36 pm)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Thu Mar 1, 7:29 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Thu Mar 1, 7:51 pm)
Re: [RFC] Heads up on sys_fallocate(), Jeremy Fitzhardinge, (Thu Mar 1, 5:14 pm)
Re: [RFC] Heads up on sys_fallocate(), Alan, (Thu Mar 1, 6:58 pm)
Re: [RFC] Heads up on sys_fallocate(), Jeremy Fitzhardinge, (Thu Mar 1, 6:05 pm)
Re: [RFC] Heads up on sys_fallocate(), Alan, (Thu Mar 1, 7:11 pm)
Re: [RFC] Heads up on sys_fallocate(), Jeremy Fitzhardinge, (Thu Mar 1, 6:15 pm)
Re: [RFC] Heads up on sys_fallocate(), Jeff Garzik, (Thu Mar 1, 4:23 pm)
Re: [RFC] Heads up on sys_fallocate(), Jeremy Allison, (Thu Mar 1, 4:31 pm)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Thu Mar 1, 3:15 pm)
Re: [RFC] Heads up on sys_fallocate(), Andreas Dilger, (Fri Mar 2, 6:45 am)
Re: [RFC] Heads up on sys_fallocate(), Dave Kleikamp, (Fri Mar 2, 9:17 am)
Re: [RFC] Heads up on sys_fallocate(), Andrew Morton, (Thu Mar 1, 6:25 pm)
Re: [RFC] Heads up on sys_fallocate(), Anton Blanchard, (Thu Mar 1, 6:41 pm)
Re: [RFC] Heads up on sys_fallocate(), Dave Kleikamp, (Thu Mar 1, 6:44 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Thu Mar 1, 7:38 pm)
Re: [RFC] Heads up on sys_fallocate(), Arnd Bergmann, (Sat Mar 3, 6:45 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Mon Mar 5, 9:18 am)
Re: [RFC] Heads up on sys_fallocate(), Anton Altaparmakov, (Sun Mar 4, 4:11 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Mon Mar 5, 12:23 am)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Sun Mar 4, 6:38 pm)
Re: [RFC] Heads up on sys_fallocate(), Jörn, (Sun Mar 4, 8:16 pm)
Re: [RFC] Heads up on sys_fallocate(), Anton Altaparmakov, (Sun Mar 4, 7:22 pm)
Re: [RFC] Heads up on sys_fallocate(), Theodore Tso, (Mon Mar 5, 10:37 am)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Mon Mar 5, 11:15 am)
Re: [RFC] Heads up on sys_fallocate(), Theodore Tso, (Mon Mar 5, 12:01 pm)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Mon Mar 5, 12:07 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Mon Mar 5, 11:35 am)
Re: [RFC] Heads up on sys_fallocate(), Anton Altaparmakov, (Mon Mar 5, 11:07 am)
Re: [RFC] Heads up on sys_fallocate(), Arnd Bergmann, (Sun Mar 4, 4:53 pm)
Re: [RFC] Heads up on sys_fallocate(), Andrew Morton, (Thu Mar 1, 6:59 pm)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Fri Mar 2, 3:09 am)
Re: [RFC] Heads up on sys_fallocate(), Dave Kleikamp, (Thu Mar 1, 7:09 pm)
Re: [RFC] Heads up on sys_fallocate(), Mingming Cao, (Fri Mar 2, 2:09 pm)
Re: [RFC] Heads up on sys_fallocate(), Jan Engelhardt, (Fri Mar 2, 9:41 am)
Re: [RFC] Heads up on sys_fallocate(), Nathan Scott, (Thu Mar 1, 6:40 pm)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Thu Mar 1, 6:39 pm)
Re: [RFC] Heads up on sys_fallocate(), Andrew Morton, (Thu Mar 1, 6:52 pm)
Re: [RFC] Heads up on sys_fallocate(), Mingming Cao, (Fri Mar 2, 2:28 pm)
Re: [RFC] Heads up on sys_fallocate(), Jan Kara, (Mon Mar 5, 8:27 am)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Mon Mar 5, 5:41 pm)
Re: [RFC] Heads up on sys_fallocate(), Mingming Cao, (Mon Mar 5, 4:02 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Tue Mar 6, 3:28 am)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Tue Mar 6, 10:36 am)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Tue Mar 6, 12:46 pm)
Re: [RFC] Heads up on sys_fallocate(), David Chinner, (Tue Mar 13, 7:46 pm)
Re: [RFC] Heads up on sys_fallocate(), Christoph Hellwig, (Tue Mar 6, 10:47 am)
Re: [RFC] Heads up on sys_fallocate(), Jan Kara, (Tue Mar 6, 10:50 am)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Tue Mar 6, 2:23 pm)
Re: [RFC] Heads up on sys_fallocate(), Jan Kara, (Wed Mar 7, 4:51 am)
Re: [RFC] Heads up on sys_fallocate(), Jörn, (Wed Mar 7, 7:30 am)