login
Header Space

 
 

Re: [PATCH 4/5] ext4: fallocate support in ext4

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Amit K. Arora <aarora@...>
Cc: <torvalds@...>, <linux-fsdevel@...>, <linux-kernel@...>, <linux-ext4@...>, <xfs@...>, <suparna@...>, <cmm@...>
Date: Friday, May 4, 2007 - 12:31 am

On Thu, 26 Apr 2007 23:43:32 +0530 "Amit K. Arora" <aarora@linux.vnet.ibm.com> wrote:


Please always format multiline comments like this:

		/*
		 * ext4_can_extents_be_merged should have checked that either
		 * both extents are uninitialized, or both aren't. Thus we
		 * need to check only one of them here.
		 */


This description is rather thin.  What is the filesystem's actual behaviour
here?  If the file is using extents then the implementation will do
<something>.  If the file is using bitmaps then we will do <something else>.

But what?   Here is where it should be described.


So we don't implement fallocate on bitmap-based files!  Well that's huge
news.  The changelog would be an appropriate place to communicate this,
along with reasons why, or a description of the plan to fix it.

Also, posix says nothing about fallocate() returning ENOTTY.


Now I'm mystified.  Given that we're allocating an arbitrary amount of disk
space, and that this disk space will require an arbitrary amount of
metadata, how can we work out how much journal space we'll be needing
without at least looking at `len'?


Please always put spaces around "="


And around "+"


BUG_ON is vicious.  Is it really justified here?  Possibly a WARN_ON and
ext4_error() would be safer and more useful here.


Use buffer_new() here.   A separate patch which fixes the three existing
instances of open-coded BH_foo usage would be appreciated.


Check for wrap though the sign bit and through zero please.


Fix comment layout.


Both the lhs and the rhs here are signed.  Please review for possible
overflows through the sign bit and through zero.  Perhaps a comment
explaining why it's correct would be appropriate.



The above two comments should be indented one additional tabstop.


Maybe a comment describing what this does?  Probably it's obvious enough.

I think it could use the standard ALIGN macro.

Is blkbits sufficiently parenthesised here?  Even if it is, adding the
parens would be better practice.


Please convert all newly-added multiline comments to the preferred layout.


argh.  And feel free to give these args some useful names.


inlined C functions are preferred, and I think these could be implemented
that way.
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, 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, 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, Andreas Dilger, (Tue Jun 26, 11:49 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Wed Jun 27, 9:36 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Christoph Hellwig, (Sat Jun 30, 6:26 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Nathan Scott, (Wed Jun 27, 7:28 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, David Chinner, (Wed Jun 27, 8:39 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate, Nathan Scott, (Wed Jun 27, 8:53 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(), 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(), Christoph Hellwig, (Thu Mar 1, 7:36 pm)
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(), 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(), Jörn, (Sun Mar 4, 8:16 pm)
Re: [RFC] Heads up on sys_fallocate(), Anton Altaparmakov, (Sun Mar 4, 8:32 pm)
Re: [RFC] Heads up on sys_fallocate(), Jörn, (Mon Mar 5, 7:49 am)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Mon Mar 5, 11:09 am)
Re: [RFC] Heads up on sys_fallocate(), Anton Altaparmakov, (Sun Mar 4, 8:35 pm)
Re: [RFC] Heads up on sys_fallocate(), Arnd Bergmann, (Sun Mar 4, 8:44 pm)
Re: [RFC] Heads up on sys_fallocate(), Arnd Bergmann, (Sun Mar 4, 8:36 pm)
Re: [RFC] Heads up on sys_fallocate(), Jörn, (Mon Mar 5, 7:41 am)
Re: [RFC] Heads up on sys_fallocate(), Eric Sandeen, (Mon Mar 5, 6:00 pm)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Mon Mar 5, 11:08 am)
Re: [RFC] Heads up on sys_fallocate(), Jörn, (Mon Mar 5, 11:33 am)
Re: [RFC] Heads up on sys_fallocate(), Ulrich Drepper, (Mon Mar 5, 11:48 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(), Jan Engelhardt, (Fri Mar 2, 9:41 am)
Re: [RFC] Heads up on sys_fallocate(), Mingming Cao, (Fri Mar 2, 2:09 pm)
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)