]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/aio.c
block: get rid of the WRITE_ODIRECT flag
[net-next-2.6.git] / fs / aio.c
CommitLineData
1da177e4
LT
1/*
2 * An async IO implementation for Linux
3 * Written by Benjamin LaHaise <bcrl@kvack.org>
4 *
5 * Implements an efficient asynchronous io interface.
6 *
7 * Copyright 2000, 2001, 2002 Red Hat, Inc. All Rights Reserved.
8 *
9 * See ../COPYING for licensing terms.
10 */
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/errno.h>
14#include <linux/time.h>
15#include <linux/aio_abi.h>
16#include <linux/module.h>
17#include <linux/syscalls.h>
027445c3 18#include <linux/uio.h>
1da177e4
LT
19
20#define DEBUG 0
21
22#include <linux/sched.h>
23#include <linux/fs.h>
24#include <linux/file.h>
25#include <linux/mm.h>
26#include <linux/mman.h>
3d2d827f 27#include <linux/mmu_context.h>
1da177e4
LT
28#include <linux/slab.h>
29#include <linux/timer.h>
30#include <linux/aio.h>
31#include <linux/highmem.h>
32#include <linux/workqueue.h>
33#include <linux/security.h>
9c3060be 34#include <linux/eventfd.h>
1da177e4
LT
35
36#include <asm/kmap_types.h>
37#include <asm/uaccess.h>
1da177e4
LT
38
39#if DEBUG > 1
40#define dprintk printk
41#else
42#define dprintk(x...) do { ; } while (0)
43#endif
44
1da177e4 45/*------ sysctl variables----*/
d55b5fda
ZB
46static DEFINE_SPINLOCK(aio_nr_lock);
47unsigned long aio_nr; /* current system wide number of aio requests */
48unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
1da177e4
LT
49/*----end sysctl variables---*/
50
e18b890b
CL
51static struct kmem_cache *kiocb_cachep;
52static struct kmem_cache *kioctx_cachep;
1da177e4
LT
53
54static struct workqueue_struct *aio_wq;
55
56/* Used for rare fput completion. */
65f27f38
DH
57static void aio_fput_routine(struct work_struct *);
58static DECLARE_WORK(fput_work, aio_fput_routine);
1da177e4
LT
59
60static DEFINE_SPINLOCK(fput_lock);
25ee7e38 61static LIST_HEAD(fput_head);
1da177e4 62
65f27f38 63static void aio_kick_handler(struct work_struct *);