login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
June
»
26
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Amit K. Arora
Subject:
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
Date: Tuesday, June 26, 2007 - 12:12 pm
On Tue, Jun 26, 2007 at 11:42:50AM -0400, Andreas Dilger wrote:
quoted text
> On Jun 26, 2007 16:15 +0530, Amit K. Arora wrote: > > On Mon, Jun 25, 2007 at 03:52:39PM -0600, Andreas Dilger wrote: > > > In XFS one of the (many) ALLOC modes is to zero existing data on allocate. > > > For ext4 all this would mean is calling ext4_ext_mark_uninitialized() on > > > each extent. For some workloads this would be much faster than truncate > > > and reallocate of all the blocks in a file. > > > > In ext4, we already mark each extent having preallocated blocks as > > uninitialized. This is done as part of following code (which is part of > > patch 5/7) in ext4_ext_get_blocks() : > > What I meant is that with XFS_IOC_ALLOCSP the previously-written data > is ZEROED OUT, unlike with fallocate() which leaves previously-written > data alone and only allocates in holes. > > In order to specify this for allocation, FA_FL_DEL_DATA would need to make > sense for allocations (as well as the deallocation). This is farily easy > to do - just mark all of the existing extents as unallocated, and their > data disappears.
Ok, agreed. Will add the FA_ZERO_SPACE mode too. Thanks! -- Regards, Amit Arora -
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
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, 11:34 am)
Re: [RFC] Heads up on sys_fallocate()
, Eric Sandeen
, (Thu Mar 1, 12:15 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jeff Garzik
, (Thu Mar 1, 1:23 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jeremy Allison
, (Thu Mar 1, 1:31 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jeremy Fitzhardinge
, (Thu Mar 1, 2:14 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jeremy Fitzhardinge
, (Thu Mar 1, 3:05 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jeremy Fitzhardinge
, (Thu Mar 1, 3:15 pm)
Re: [RFC] Heads up on sys_fallocate()
, Andrew Morton
, (Thu Mar 1, 3:25 pm)
Re: [RFC] Heads up on sys_fallocate()
, Eric Sandeen
, (Thu Mar 1, 3:39 pm)
Re: [RFC] Heads up on sys_fallocate()
, Nathan Scott
, (Thu Mar 1, 3:40 pm)
Re: [RFC] Heads up on sys_fallocate()
, Anton Blanchard
, (Thu Mar 1, 3:41 pm)
Re: [RFC] Heads up on sys_fallocate()
, Dave Kleikamp
, (Thu Mar 1, 3:44 pm)
Re: [RFC] Heads up on sys_fallocate()
, Andrew Morton
, (Thu Mar 1, 3:52 pm)
Re: [RFC] Heads up on sys_fallocate()
, Alan
, (Thu Mar 1, 3:58 pm)
Re: [RFC] Heads up on sys_fallocate()
, Andrew Morton
, (Thu Mar 1, 3:59 pm)
Re: [RFC] Heads up on sys_fallocate()
, Dave Kleikamp
, (Thu Mar 1, 4:09 pm)
Re: [RFC] Heads up on sys_fallocate()
, Alan
, (Thu Mar 1, 4:11 pm)
Re: [RFC] Heads up on sys_fallocate()
, Eric Sandeen
, (Thu Mar 1, 4:29 pm)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Thu Mar 1, 4:36 pm)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Thu Mar 1, 4:38 pm)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Thu Mar 1, 4:51 pm)
Re: [RFC] Heads up on sys_fallocate()
, Ulrich Drepper
, (Fri Mar 2, 12:09 am)
Re: [RFC] Heads up on sys_fallocate()
, Andreas Dilger
, (Fri Mar 2, 3:45 am)
Re: [RFC] Heads up on sys_fallocate()
, Dave Kleikamp
, (Fri Mar 2, 6:17 am)
Re: [RFC] Heads up on sys_fallocate()
, Jan Engelhardt
, (Fri Mar 2, 6:41 am)
Re: [RFC] Heads up on sys_fallocate()
, Mingming Cao
, (Fri Mar 2, 11:09 am)
Re: [RFC] Heads up on sys_fallocate()
, Mingming Cao
, (Fri Mar 2, 11:28 am)
Re: [RFC] Heads up on sys_fallocate()
, Arnd Bergmann
, (Sat Mar 3, 3:45 pm)
Re: [RFC] Heads up on sys_fallocate()
, Anton Altaparmakov
, (Sun Mar 4, 1:11 pm)
Re: [RFC] Heads up on sys_fallocate()
, Arnd Bergmann
, (Sun Mar 4, 1:53 pm)
Re: [RFC] Heads up on sys_fallocate()
, Ulrich Drepper
, (Sun Mar 4, 3:38 pm)
Re: [RFC] Heads up on sys_fallocate()
, Anton Altaparmakov
, (Sun Mar 4, 4:22 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jörn
, (Sun Mar 4, 5:16 pm)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Sun Mar 4, 9:23 pm)
Re: [RFC] Heads up on sys_fallocate()
, Jan Kara
, (Mon Mar 5, 5:27 am)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Mon Mar 5, 6:18 am)
Re: [RFC] Heads up on sys_fallocate()
, Theodore Tso
, (Mon Mar 5, 7:37 am)
Re: [RFC] Heads up on sys_fallocate()
, Anton Altaparmakov
, (Mon Mar 5, 8:07 am)
Re: [RFC] Heads up on sys_fallocate()
, Ulrich Drepper
, (Mon Mar 5, 8:15 am)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Mon Mar 5, 8:35 am)
Re: [RFC] Heads up on sys_fallocate()
, Theodore Tso
, (Mon Mar 5, 9:01 am)
Re: [RFC] Heads up on sys_fallocate()
, Ulrich Drepper
, (Mon Mar 5, 9:07 am)
Re: [RFC] Heads up on sys_fallocate()
, Mingming Cao
, (Mon Mar 5, 1:02 pm)
Re: [RFC] Heads up on sys_fallocate()
, Eric Sandeen
, (Mon Mar 5, 2:41 pm)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Tue Mar 6, 12:28 am)
Re: [RFC] Heads up on sys_fallocate()
, Ulrich Drepper
, (Tue Mar 6, 7:36 am)
Re: [RFC] Heads up on sys_fallocate()
, Christoph Hellwig
, (Tue Mar 6, 7:47 am)
Re: [RFC] Heads up on sys_fallocate()
, Jan Kara
, (Tue Mar 6, 7:50 am)
Re: [RFC] Heads up on sys_fallocate()
, Eric Sandeen
, (Tue Mar 6, 9:46 am)
Re: [RFC] Heads up on sys_fallocate()
, Eric Sandeen
, (Tue Mar 6, 11:23 am)
Re: [RFC] Heads up on sys_fallocate()
, Jan Kara
, (Wed Mar 7, 1:51 am)
Re: [RFC] Heads up on sys_fallocate()
, Jörn
, (Wed Mar 7, 4:30 am)
Re: [RFC] Heads up on sys_fallocate()
, David Chinner
, (Tue Mar 13, 4:46 pm)
[RFC][PATCH] sys_fallocate() system call
, Amit K. Arora
, (Fri Mar 16, 7:31 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Heiko Carstens
, (Fri Mar 16, 8:21 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Heiko Carstens
, (Fri Mar 16, 9:17 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Stephen Rothwell
, (Fri Mar 16, 10:33 pm)
Re: [RFC][PATCH] sys_fallocate() system call
, Paul Mackerras
, (Sat Mar 17, 2:59 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Matthew Wilcox
, (Sat Mar 17, 4:07 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Matthew Wilcox
, (Sat Mar 17, 4:10 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Heiko Carstens
, (Sat Mar 17, 7:30 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Stephen Rothwell
, (Sat Mar 17, 7:38 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Stephen Rothwell
, (Sat Mar 17, 7:42 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Russell King
, (Sat Mar 17, 7:53 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Amit K. Arora
, (Mon Mar 19, 2:24 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Amit K. Arora
, (Mon Mar 19, 2:30 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Heiko Carstens
, (Mon Mar 19, 4:23 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Amit K. Arora
, (Wed Mar 21, 5:04 am)
Re: [RFC][PATCH] sys_fallocate() system call
, Chris Wedgwood
, (Wed Mar 21, 2:35 pm)
Interface for the new fallocate() system call
, Amit K. Arora
, (Thu Mar 29, 4:51 am)
Re: Interface for the new fallocate() system call
, Chris Wedgwood
, (Thu Mar 29, 9:35 am)
Re: Interface for the new fallocate() system call
, Jan Engelhardt
, (Thu Mar 29, 10:01 am)
Re: Interface for the new fallocate() system call
, Andrew Morton
, (Thu Mar 29, 10:10 am)
Re: Interface for the new fallocate() system call
, linux-os (Dick Johnson)
, (Thu Mar 29, 10:18 am)
Re: Interface for the new fallocate() system call
, Jan Engelhardt
, (Thu Mar 29, 11:05 am)
Re: Interface for the new fallocate() system call
, Linus Torvalds
, (Thu Mar 29, 11:37 am)
Re: Interface for the new fallocate() system call
, Heiko Carstens
, (Fri Mar 30, 12:00 am)
Re: Interface for the new fallocate() system call
, Jakub Jelinek
, (Fri Mar 30, 12:14 am)
Re: Interface for the new fallocate() system call
, Heiko Carstens
, (Fri Mar 30, 12:19 am)
Re: Interface for the new fallocate() system call
, Heiko Carstens
, (Fri Mar 30, 1:39 am)
Re: Interface for the new fallocate() system call
, Paul Mackerras
, (Fri Mar 30, 2:15 am)
Re: Interface for the new fallocate() system call
, Paul Mackerras
, (Fri Mar 30, 2:15 am)
Re: Interface for the new fallocate() system call
, Jörn
, (Fri Mar 30, 3:44 am)
Re: Interface for the new fallocate() system call
, Heiko Carstens
, (Fri Mar 30, 5:55 am)
Re: Interface for the new fallocate() system call
, Amit K. Arora
, (Thu Apr 5, 4:26 am)
Re: Interface for the new fallocate() system call
, Amit K. Arora
, (Thu Apr 5, 4:44 am)
Re: Interface for the new fallocate() system call
, Randy Dunlap
, (Thu Apr 5, 8:50 am)
Re: Interface for the new fallocate() system call
, Andreas Dilger
, (Fri Apr 6, 2:58 am)
Re: Interface for the new fallocate() system call
, Paul Mackerras
, (Mon Apr 9, 6:01 am)
Re: Interface for the new fallocate() system call
, Jörn
, (Mon Apr 9, 9:34 am)
Re: Interface for the new fallocate() system call
, Amit K. Arora
, (Tue Apr 17, 5:55 am)
Re: Interface for the new fallocate() system call
, Andreas Dilger
, (Wed Apr 18, 6:06 am)
Re: Interface for the new fallocate() system call
, Amit K. Arora
, (Fri Apr 20, 6:51 am)
Re: Interface for the new fallocate() system call
, Jakub Jelinek
, (Fri Apr 20, 7:59 am)
Re: Interface for the new fallocate() system call
, Amit K. Arora
, (Tue Apr 24, 5:16 am)
[PATCH 0/5] fallocate system call
, Amit K. Arora
, (Thu Apr 26, 10:50 am)
[PATCH 1/5] fallocate() implementation in i86, x86_64 and ...
, Amit K. Arora
, (Thu Apr 26, 11:03 am)
[PATCH 2/5] fallocate() on s390
, Amit K. Arora
, (Thu Apr 26, 11:07 am)
[PATCH 3/5] ext4: Extent overlap bugfix
, Amit K. Arora
, (Thu Apr 26, 11:11 am)
[PATCH 4/5] ext4: fallocate support in ext4
, Amit K. Arora
, (Thu Apr 26, 11:13 am)
[PATCH 5/5] ext4: write support for preallocated blocks/ex ...
, Amit K. Arora
, (Thu Apr 26, 11:16 am)
Re: [PATCH 0/5] fallocate system call
, Heiko Carstens
, (Fri Apr 27, 5:10 am)
Re: [PATCH 0/5] fallocate system call
, Jörn
, (Fri Apr 27, 7:43 am)
Re: [PATCH 0/5] fallocate system call
, Heiko Carstens
, (Fri Apr 27, 10:46 am)
Re: [PATCH 0/5] fallocate system call
, Chris Wedgwood
, (Fri Apr 27, 1:42 pm)
Re: [PATCH 0/5] fallocate system call
, David Chinner
, (Sun Apr 29, 5:47 pm)
[PATCH] ia64 fallocate syscall
, David Chinner
, (Sun Apr 29, 8:09 pm)
[PATCH] XFS ->fallocate() support
, David Chinner
, (Sun Apr 29, 8:11 pm)
[PATCH] Add preallocation beyond EOF to fallocate
, David Chinner
, (Sun Apr 29, 8:14 pm)
Re: [PATCH 0/5] fallocate system call
, Chris Wedgwood
, (Sun Apr 29, 10:25 pm)
Re: [PATCH 0/5] fallocate system call
, David Chinner
, (Sun Apr 29, 10:56 pm)
Re: [PATCH 0/5] fallocate system call
, Chris Wedgwood
, (Sun Apr 29, 11:01 pm)
Re: [PATCH 0/5] fallocate system call
, Amit K. Arora
, (Wed May 2, 5:53 am)
Re: [PATCH 0/5] fallocate system call
, Andreas Dilger
, (Thu May 3, 3:34 am)
Re: [PATCH 0/5] fallocate system call
, Miquel van Smoorenburg
, (Thu May 3, 4:22 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Andrew Morton
, (Thu May 3, 9:29 pm)
Re: [PATCH 3/5] ext4: Extent overlap bugfix
, Andrew Morton
, (Thu May 3, 9:30 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andrew Morton
, (Thu May 3, 9:31 pm)
Re: [PATCH 5/5] ext4: write support for preallocated block ...
, Andrew Morton
, (Thu May 3, 9:32 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Paul Mackerras
, (Thu May 3, 9:41 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Andrew Morton
, (Thu May 3, 9:55 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Thu May 3, 11:07 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Andrew Morton
, (Thu May 3, 11:28 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Jakub Jelinek
, (Thu May 3, 11:56 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Fri May 4, 12:27 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Amit K. Arora
, (Mon May 7, 4:03 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Amit K. Arora
, (Mon May 7, 4:10 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andreas Dilger
, (Mon May 7, 4:37 am)
Re: [PATCH 3/5] ext4: Extent overlap bugfix
, Amit K. Arora
, (Mon May 7, 4:46 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Amit K. Arora
, (Mon May 7, 5:07 am)
Re: [PATCH 5/5] ext4: write support for preallocated block ...
, Amit K. Arora
, (Mon May 7, 5:11 am)
Re: [PATCH 5/5] ext4: write support for preallocated block ...
, Pekka Enberg
, (Mon May 7, 5:40 am)
Re: [PATCH 5/5] ext4: write support for preallocated block ...
, Amit K. Arora
, (Mon May 7, 6:04 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Ulrich Drepper
, (Mon May 7, 6:08 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Dave Kleikamp
, (Mon May 7, 8:24 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andrew Morton
, (Mon May 7, 1:58 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andreas Dilger
, (Mon May 7, 3:21 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andrew Morton
, (Mon May 7, 3:38 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Jeff Garzik
, (Mon May 7, 4:02 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Theodore Tso
, (Mon May 7, 4:14 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andrew Morton
, (Mon May 7, 4:31 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Theodore Tso
, (Mon May 7, 4:36 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Mingming Cao
, (Mon May 7, 5:00 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andrew Morton
, (Mon May 7, 5:15 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Mingming Cao
, (Mon May 7, 5:30 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Mingming Cao
, (Mon May 7, 5:41 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andreas Dilger
, (Mon May 7, 6:07 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Jeff Garzik
, (Mon May 7, 6:25 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Theodore Tso
, (Mon May 7, 6:43 pm)
Re: [PATCH 0/5] fallocate system call
, David Chinner
, (Mon May 7, 7:26 pm)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Amit K. Arora
, (Tue May 8, 3:52 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Dave Kleikamp
, (Tue May 8, 7:47 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Andreas Dilger
, (Tue May 8, 9:52 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Mingming Cao
, (Tue May 8, 10:46 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Suparna Bhattacharya
, (Wed May 9, 3:15 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Paul Mackerras
, (Wed May 9, 3:50 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Suparna Bhattacharya
, (Wed May 9, 4:10 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Paul Mackerras
, (Wed May 9, 4:37 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Martin Schwidefsky
, (Wed May 9, 5:00 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Amit K. Arora
, (Wed May 9, 5:05 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Amit K. Arora
, (Wed May 9, 9:01 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Andreas Dilger
, (Wed May 9, 9:54 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Mingming Cao
, (Wed May 9, 10:07 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Wed May 9, 5:59 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Amit K. Arora
, (Thu May 10, 4:56 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Thu May 10, 3:39 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Suparna Bhattacharya
, (Fri May 11, 4:03 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Sat May 12, 1:01 am)
[PATCH 0/5][TAKE2] fallocate system call
, Amit K. Arora
, (Mon May 14, 6:29 am)
Re: [PATCH 4/5] ext4: fallocate support in ext4
, Jan Kara
, (Mon May 14, 6:34 am)
Re: [PATCH 0/5][TAKE2] fallocate system call
, Andreas Dilger
, (Mon May 14, 11:31 pm)
Re: [PATCH 0/5][TAKE2] fallocate system call
, Amit K. Arora
, (Tue May 15, 5:40 am)
[PATCH 0/5][TAKE3] fallocate system call
, Amit K. Arora
, (Tue May 15, 12:37 pm)
Re: [PATCH 0/5][TAKE3] fallocate system call
, Mingming Cao
, (Tue May 15, 4:52 pm)
[PATCH 0/6][TAKE4] fallocate system call
, Amit K. Arora
, (Thu May 17, 7:11 am)
Re: [PATCH 0/6][TAKE4] fallocate system call
, Andrew Morton
, (Fri May 18, 11:44 pm)
Re: [PATCH 0/6][TAKE4] fallocate system call
, Mingming Cao
, (Sun May 20, 10:24 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Amit K. Arora
, (Mon Jun 11, 11:16 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Tue Jun 12, 1:11 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Wed Jun 13, 4:52 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Andreas Dilger
, (Thu Jun 14, 2:14 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, David Chinner
, (Thu Jun 14, 5:04 am)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Andreas Dilger
, (Thu Jun 14, 12:33 pm)
[PATCH 0/6][TAKE5] fallocate system call
, Amit K. Arora
, (Mon Jun 25, 6:28 am)
[PATCH 1/7][TAKE5] fallocate() implementation on i386, x86 ...
, Amit K. Arora
, (Mon Jun 25, 6:40 am)
[PATCH 2/7][TAKE5] fallocate() on s390(x)
, Amit K. Arora
, (Mon Jun 25, 6:42 am)
[PATCH 3/7][TAKE5] fallocate() on ia64
, Amit K. Arora
, (Mon Jun 25, 6:43 am)
[PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Mon Jun 25, 6:45 am)
[PATCH 5/7][TAKE5] ext4: fallocate support in ext4
, Amit K. Arora
, (Mon Jun 25, 6:48 am)
[PATCH 6/7][TAKE5] ext4: write support for preallocated blocks
, Amit K. Arora
, (Mon Jun 25, 6:49 am)
[PATCH 7/7][TAKE5] ext4: support new modes
, Amit K. Arora
, (Mon Jun 25, 6:50 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Mon Jun 25, 8:03 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Andreas Dilger
, (Mon Jun 25, 2:46 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Andreas Dilger
, (Mon Jun 25, 2:52 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes
, Andreas Dilger
, (Mon Jun 25, 2:56 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Tue Jun 26, 3:32 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Tue Jun 26, 3:45 am)
Re: [PATCH 7/7][TAKE5] ext4: support new modes
, Amit K. Arora
, (Tue Jun 26, 5:07 am)
Re: [PATCH 2/7][TAKE5] fallocate() on s390(x)
, Heiko Carstens
, (Tue Jun 26, 8:15 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Andreas Dilger
, (Tue Jun 26, 8:34 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Andreas Dilger
, (Tue Jun 26, 8:42 am)
Re: [PATCH 7/7][TAKE5] ext4: support new modes
, Andreas Dilger
, (Tue Jun 26, 9:14 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Tue Jun 26, 12:09 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Tue Jun 26, 12:12 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes
, Amit K. Arora
, (Tue Jun 26, 12:29 pm)
Re: [PATCH 1/7][TAKE5] fallocate() implementation on i386, ...
, Heiko Carstens
, (Tue Jun 26, 12:38 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Tue Jun 26, 4:14 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call
, David Chinner
, (Tue Jun 26, 4:15 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Tue Jun 26, 4:18 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Tue Jun 26, 4:26 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Tue Jun 26, 4:32 pm)
Re: [PATCH 7/7][TAKE5] ext4: support new modes
, David Chinner
, (Tue Jun 26, 5:04 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Andrew Morton
, (Thu Jun 28, 2:55 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Mingming Cao
, (Thu Jun 28, 10:36 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Amit K. Arora
, (Thu Jun 28, 10:57 am)
Re: [PATCH 7/7][TAKE5] ext4: support new modes
, Amit K. Arora
, (Thu Jun 28, 11:07 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Thu Jun 28, 11:19 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Andrew Morton
, (Thu Jun 28, 11:33 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Dave Kleikamp
, (Thu Jun 28, 11:45 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Jeff Garzik
, (Thu Jun 28, 11:57 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Andreas Dilger
, (Thu Jun 28, 1:34 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Nathan Scott
, (Thu Jun 28, 4:39 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Thu Jun 28, 6:03 pm)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Christoph Hellwig
, (Fri Jun 29, 12:20 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Theodore Tso
, (Fri Jun 29, 6:56 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Jeff Garzik
, (Fri Jun 29, 7:29 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Mingming Caoc
, (Fri Jun 29, 8:50 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Theodore Tso
, (Fri Jun 29, 10:42 am)
Re: [PATCH 0/6][TAKE5] fallocate system call
, Andrew Morton
, (Fri Jun 29, 1:57 pm)
Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 ...
, Christoph Hellwig
, (Sat Jun 30, 3:14 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Christoph Hellwig
, (Sat Jun 30, 3:21 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Andreas Dilger
, (Sat Jun 30, 9:52 am)
Ext4 patches for 2.6.22-rc6
, Mingming Cao
, (Sun Jul 1, 12:35 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Sun Jul 1, 3:55 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Mon Jul 2, 4:47 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Tue Jul 3, 3:08 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Christoph Hellwig
, (Tue Jul 3, 3:31 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Tue Jul 3, 4:46 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Timothy Shimmin
, (Tue Jul 3, 10:37 pm)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Christoph Hellwig
, (Wed Jul 11, 2:03 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Christoph Hellwig
, (Wed Jul 11, 2:04 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Christoph Hellwig
, (Wed Jul 11, 2:05 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Suparna Bhattacharya
, (Thu Jul 12, 12:28 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Thu Jul 12, 1:26 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, David Chinner
, (Thu Jul 12, 6:13 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Amit K. Arora
, (Thu Jul 12, 7:15 am)
Re: [PATCH 4/7][TAKE5] support new modes in fallocate
, Andreas Dilger
, (Thu Jul 12, 7:40 am)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
monstr
[PATCH 46/56] microblaze_v2: headers files entry.h current.h mman.h registers.h se...
Jan Engelhardt
Re: Linux Security *Module* Framework (Was: LSM conversion to static interface)
Dave Jones
Re: Why do so many machines need "noapic"?
Michael Moore
Re: underage models, pre teen models, lolita porn, young preteens, little lolitas
Lars-Peter Clausen
[PATCH v4] MMC: Add JZ4740 mmc driver
git
:
Andy Parkins
git-fetch fails with error code 128
Eli Zaretskii
Re: Switching from CVS to GIT
Jan Harkes
Re: git-svn and huge data and modifying the git-svn-HEAD branch directly
Dan Chokola
Re: how do you "force a pull"?
Johan Herland
Re: Comment on weak refs
git-commits-head
:
Linux Kernel Mailing List
No need to do lock_super() for exclusion in generic_shutdown_super()
Linux Kernel Mailing List
x86, msr: Export the register-setting MSR functions via /dev/*/msr
Linux Kernel Mailing List
MIPS: SMTC: Fix lockup in smtc_distribute_timer
Linux Kernel Mailing List
Input: gpio-keys - add support for disabling gpios through sysfs
Linux Kernel Mailing List
sh-sci: update receive error handling for muxed irqs
linux-netdev
:
Patrick McHardy
Re: no reassembly for outgoing packets on RAW socket
Ilpo Järvinen
net-next/unix: BUG: using smp_processor_id() in preemptible
Herbert Xu
Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
Evgeniy Polyakov
Re: virt-manager broken by bind(0) in net-next.
Eric Dumazet
Re: [PATCH] conntrack: use SLAB_DESTROY_BY_RCU for nf_conn structs
openbsd-misc
:
elitdostlar
Seks partneri arayan bayanlar bu adreste - 8878xs706x6438
Marcus Andree
Re: This is what Linus Torvalds calls openBSD crowd
Lars D. Noodén
Re: sshd.config and AllowUsers
Henning Brauer
Re: Sun Blade 1000?
Laurens Vets
Re: OT: opinions on IDS / IPS solutions
Colocation donated by:
Syndicate