login
Header Space

 
 

[00/17] Large Blocksize Support V3

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <linux-kernel@...>
Cc: Mel Gorman <mel@...>, William Lee Irwin III <wli@...>, David Chinner <dgc@...>, Jens Axboe <jens.axboe@...>, Badari Pulavarty <pbadari@...>, Maxim Levitsky <maximlevitsky@...>
Date: Tuesday, April 24, 2007 - 6:21 pm

V2->V3
- More restructuring
- It actually works!
- Add XFS support
- Fix up UP support
- Work out the direct I/O issues
- Add CONFIG_LARGE_BLOCKSIZE. Off by default which makes the inlines revert
  back to constants. Disabled for 32bit and HIGHMEM configurations.
  This also allows a gradual migration to the new page cache
  inline functions. LARGE_BLOCKSIZE capabilities can be
  added gradually and if there is a problem then we can disable
  a subsystem.

V1->V2
- Some ext2 support
- Some block layer, fs layer support etc.
- Better page cache macros
- Use macros to clean up code.

This patchset modifies the Linux kernel so that larger block sizes than
page size can be supported. Larger block sizes are handled by using
compound pages of an arbitrary order for the page cache instead of
single pages with order 0.

Rationales:

1. We have problems supporting devices with a higher blocksize than
   page size. This is for example important to support CD and DVDs that
   can only read and write 32k or 64k blocks. We currently have a shim
   layer in there to deal with this situation which limits the speed
   of I/O. The developers are currently looking for ways to completely
   bypass the page cache because of this deficiency.

2. 32/64k blocksize is also used in flash devices. Same issues.

3. Future harddisks will support bigger block sizes that Linux cannot
   support since we are limited to PAGE_SIZE. Ok the on board cache
   may buffer this for us but what is the point of handling smaller
   page sizes than what the drive supports?

4. Reduce fsck times. Larger block sizes mean faster file system checking.

5. Performance. If we look at IA64 vs. x86_64 then it seems that the
   faster interrupt handling on x86_64 compensate for the speed loss due to
   a smaller page size (4k vs 16k on IA64). Supporting larger block sizes
   sizes on all allows a significant reduction in I/O overhead and increases
   the size of I/O that can be performed by hardware in a single request
   since the number of scatter gather entries are typically limited for
   one request. This is going to become increasingly important to support
   the ever growing memory sizes since we may have to handle excessively
   large amounts of 4k requests for data sizes that may become common
   soon. For example to write a 1 terabyte file the kernel would have to
   handle 256 million 4k chunks.

6. Cross arch compatibility: It is currently not possible to mount
   an 16k blocksize ext2 filesystem created on IA64 on an x86_64 system.
   With this patch this becoems possible.

The support here is currently only for buffered I/O. Modifications for
three filesystems are included:

A. XFS
B. Ext2
C. ramfs

Unsupported
- Mmapping blocks larger than page size

Issues:
- There are numerous places where the kernel can no longer assume that the
  page cache consists of PAGE_SIZE pages that have not been fixed yet.
- Defrag warning: The patch set can fragment memory very fast.
  It is likely that Mel Gorman's anti-frag patches and some more
  work by him on defragmentation may be needed if one wants to use
  super sized pages.
  If you run a 2.6.21 kernel with this patch and start a kernel compile
  on a 4k volume with a concurrent copy operation to a 64k volume on
  a system with only 1 Gig then you will go boom (ummm no ... OOM) fast.
  How well Mel's antifrag/defrag methods address this issue still has to
  be seen.

Future:
- Mmap support could be done in a way that makes the mmap page size
  independent from the page cache order. It is okay to map a 4k section
  of a larger page cache page via a pte. 4k mmap semantics can be completely
  preserved even for larger page sizes.
- Maybe people could perform benchmarks to see how much of a difference
  there is between 4k size I/O and 64k? Andrew surely would like to know.
- If there is a chance for inclusion then I will diff this against mm,
  do a complete scan over the kernel to find all page cache == PAGE_SIZE
  assumptions and then try to get it upstream for 2.6.23.

How to make this work:

1. Apply this patchset to 2.6.21-rc7
2. Configure LARGE_BLOCKSIZE Support
3. compile kernel

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

Messages in current thread:
[00/17] Large Blocksize Support V3, , (Tue Apr 24, 6:21 pm)
Re: [00/17] Large Blocksize Support V3, Maxim Levitsky, (Sat Apr 28, 12:39 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Mon Apr 30, 1:23 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Thu Apr 26, 10:04 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Thu Apr 26, 10:27 pm)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Thu Apr 26, 10:53 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 12:20 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 1:15 am)
Re: [00/17] Large Blocksize Support V3, Theodore Tso, (Fri Apr 27, 12:55 pm)
Re: [00/17] Large Blocksize Support V3, Nicholas Miell, (Fri Apr 27, 1:32 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 2:12 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 2:09 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 3:04 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 4:03 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Fri May 4, 9:31 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Mon May 7, 12:58 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Mon May 7, 2:56 am)
RE: [00/17] Large Blocksize Support V3, Weigert, Daniel, (Mon May 7, 11:17 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri May 4, 12:11 pm)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 4:48 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Fri May 4, 8:57 am)
Re: [00/17] Large Blocksize Support V3, Theodore Tso, (Fri Apr 27, 12:45 pm)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Fri May 4, 9:33 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Mon May 7, 12:29 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Mon May 7, 12:48 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Mon May 7, 1:27 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Mon May 7, 2:43 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Mon May 7, 12:06 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Mon May 7, 1:29 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Mon May 7, 2:49 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Mon May 7, 3:06 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Tue May 8, 4:49 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 1:49 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 2:55 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 9:44 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 3:15 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 10:21 pm)
Re: [00/17] Large Blocksize Support V3, Paul Mackerras, (Fri Apr 27, 7:05 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 7:58 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 7:41 am)
Re: [00/17] Large Blocksize Support V3, Paul Mackerras, (Fri Apr 27, 8:14 am)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Fri Apr 27, 9:42 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 8:36 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 8:12 am)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Fri Apr 27, 9:37 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 8:25 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 12:48 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Fri Apr 27, 9:39 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 10:27 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Sat Apr 28, 4:16 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 10:39 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 10:50 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 11:16 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 3:22 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 3:29 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 3:35 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 3:43 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 3:19 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 3:26 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 12:36 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 1:34 pm)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Fri Apr 27, 3:11 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 11:17 pm)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 12:56 am)
Re: [00/17] Large Blocksize Support V3, Alan Cox, (Sat Apr 28, 5:43 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 5:58 am)
Re: [00/17] Large Blocksize Support V3, Alan Cox, (Sat Apr 28, 6:21 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 6:25 am)
Re: [00/17] Large Blocksize Support V3, Alan Cox, (Sat Apr 28, 7:29 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Sat Apr 28, 10:37 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Sat Apr 28, 1:08 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 1:36 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Sat Apr 28, 2:24 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 2:52 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Mon Apr 30, 1:30 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 11:49 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 9:43 pm)
Re: [00/17] Large Blocksize Support V3, Peter Zijlstra, (Sat Apr 28, 4:04 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 4:22 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Sat Apr 28, 10:09 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 2:26 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Sat Apr 28, 3:19 pm)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 5:28 pm)
Re: [00/17] Large Blocksize Support V3, Peter Zijlstra, (Sat Apr 28, 4:32 am)
Re: [00/17] Large Blocksize Support V3, Andrew Morton, (Sat Apr 28, 4:55 am)
Re: [00/17] Large Blocksize Support V3, Peter Zijlstra, (Sat Apr 28, 5:36 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Fri Apr 27, 8:01 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Fri Apr 27, 4:37 am)
Re: [00/17] Large Blocksize Support V3 (mmap conceptual disc..., Christoph Lameter, (Thu Apr 26, 11:47 pm)
Re: [00/17] Large Blocksize Support V3, Maxim Levitsky, (Thu Apr 26, 2:50 pm)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 12:51 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 1:05 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 1:44 am)
Re: [00/17] Large Blocksize Support V3, Pierre Ossman, (Sat Apr 28, 6:55 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Sat Apr 28, 11:39 am)
Re: [00/17] Large Blocksize Support V3, Alan Cox, (Thu Apr 26, 9:28 am)
Re: [00/17] Large Blocksize Support V3, Matt Mackall, (Sun Apr 29, 10:12 am)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 9:30 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:37 am)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 5:16 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 2:38 am)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Thu Apr 26, 11:58 am)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 12:05 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Thu Apr 26, 12:16 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:46 am)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 6:06 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 10:47 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 2:57 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 1:37 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:40 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 2:53 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 3:07 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 3:15 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 3:22 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 10:49 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 3:42 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:13 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 6:15 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 10:53 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 2:21 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 8:32 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 6:22 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 8:58 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 9:06 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Fri Apr 27, 10:49 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:16 pm)
Re: [00/17] Large Blocksize Support V3, Andy Whitcroft, (Thu Apr 26, 8:37 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 11:08 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Thu Apr 26, 11:28 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 11:19 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Thu Apr 26, 10:18 am)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 6:48 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Thu Apr 26, 3:04 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 3:07 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 3:11 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 3:17 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 3:28 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 3:45 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:10 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 6:08 am)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Thu Apr 26, 2:38 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 6:10 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:07 pm)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 2:45 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:59 pm)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 3:21 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Thu Apr 26, 9:50 am)
Re: [00/17] Large Blocksize Support V3, Jeremy Higdon, (Thu Apr 26, 8:19 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 11:38 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 11:58 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 5:46 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 10:40 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 2:50 am)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Thu Apr 26, 12:11 pm)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 6:38 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 1:49 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:03 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 2:03 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Thu Apr 26, 2:09 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 2:12 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:28 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 2:29 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 2:35 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 2:39 pm)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 4:22 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Fri Apr 27, 1:16 am)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Thu Apr 26, 8:21 pm)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 3:35 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 3:42 pm)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Fri Apr 27, 12:05 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Fri Apr 27, 6:26 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Fri Apr 27, 9:51 am)
Re: [00/17] Large Blocksize Support V3, Christoph Hellwig, (Thu Apr 26, 2:24 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 2:24 pm)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 4:40 am)
Re: [00/17] Large Blocksize Support V3, Nick Piggin, (Thu Apr 26, 4:55 am)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 6:30 am)
Re: [00/17] Large Blocksize Support V3, Eric W. Biederman, (Thu Apr 26, 6:54 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Thu Apr 26, 1:58 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Thu Apr 26, 2:02 pm)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Thu Apr 26, 8:23 am)
Re: [00/17] Large Blocksize Support V3, H. Peter Anvin, (Tue Apr 24, 8:47 pm)
Re: [00/17] Large Blocksize Support V3, Mel Gorman, (Wed Apr 25, 9:28 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Wed Apr 25, 11:23 am)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Wed Apr 25, 7:35 am)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Wed Apr 25, 11:36 am)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Wed Apr 25, 1:53 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Wed Apr 25, 2:03 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Wed Apr 25, 2:05 pm)
Re: [00/17] Large Blocksize Support V3, Christoph Lameter, (Wed Apr 25, 2:14 pm)
Re: [00/17] Large Blocksize Support V3, Jens Axboe, (Wed Apr 25, 2:16 pm)
Re: [00/17] Large Blocksize Support V3, William Lee Irwin III, (Tue Apr 24, 11:11 pm)
Re: [00/17] Large Blocksize Support V3, Jörn, (Tue Apr 24, 8:46 pm)
Re: [00/17] Large Blocksize Support V3, Badari Pulavarty, (Wed Apr 25, 6:46 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Wed Apr 25, 9:14 pm)
Re: [00/17] Large Blocksize Support V3, David Chinner, (Wed Apr 25, 9:17 pm)
speck-geostationary