diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-07 20:49:51 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-07 20:49:51 -0700 | 
| commit | 5af43c24ca59a448c9312dd4a4a51d27ec3b9a73 (patch) | |
| tree | 65288caabc91fc04242acace38789a6dd5b86ed4 /fs/btrfs | |
| parent | 9affd6becbfb2c3f0d04e554bb87234761b37aba (diff) | |
| parent | a27bb332c04cec8c4afd7912df0dc7890db27560 (diff) | |
| download | olio-linux-3.10-5af43c24ca59a448c9312dd4a4a51d27ec3b9a73.tar.xz olio-linux-3.10-5af43c24ca59a448c9312dd4a4a51d27ec3b9a73.zip  | |
Merge branch 'akpm' (incoming from Andrew)
Merge more incoming from Andrew Morton:
 - Various fixes which were stalled or which I picked up recently
 - A large rotorooting of the AIO code.  Allegedly to improve
   performance but I don't really have good performance numbers (I might
   have lost the email) and I can't raise Kent today.  I held this out
   of 3.9 and we could give it another cycle if it's all too late/scary.
I ended up taking only the first two thirds of the AIO rotorooting.  I
left the percpu parts and the batch completion for later.  - Linus
* emailed patches from Andrew Morton <akpm@linux-foundation.org>: (33 commits)
  aio: don't include aio.h in sched.h
  aio: kill ki_retry
  aio: kill ki_key
  aio: give shared kioctx fields their own cachelines
  aio: kill struct aio_ring_info
  aio: kill batch allocation
  aio: change reqs_active to include unreaped completions
  aio: use cancellation list lazily
  aio: use flush_dcache_page()
  aio: make aio_read_evt() more efficient, convert to hrtimers
  wait: add wait_event_hrtimeout()
  aio: refcounting cleanup
  aio: make aio_put_req() lockless
  aio: do fget() after aio_get_req()
  aio: dprintk() -> pr_debug()
  aio: move private stuff out of aio.h
  aio: add kiocb_cancel()
  aio: kill return value of aio_complete()
  char: add aio_{read,write} to /dev/{null,zero}
  aio: remove retry-based AIO
  ...
Diffstat (limited to 'fs/btrfs')
| -rw-r--r-- | fs/btrfs/file.c | 1 | ||||
| -rw-r--r-- | fs/btrfs/inode.c | 1 | 
2 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index bb8b7a0e28a..bc4d54c465a 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c @@ -24,6 +24,7 @@  #include <linux/string.h>  #include <linux/backing-dev.h>  #include <linux/mpage.h> +#include <linux/aio.h>  #include <linux/falloc.h>  #include <linux/swap.h>  #include <linux/writeback.h> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 09c58a35b42..898da0a01e0 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -32,6 +32,7 @@  #include <linux/writeback.h>  #include <linux/statfs.h>  #include <linux/compat.h> +#include <linux/aio.h>  #include <linux/bit_spinlock.h>  #include <linux/xattr.h>  #include <linux/posix_acl.h>  |