block, cfq: kill cic->key
[deliverable/linux.git] / include / linux / iocontext.h
1 #ifndef IOCONTEXT_H
2 #define IOCONTEXT_H
3
4 #include <linux/radix-tree.h>
5 #include <linux/rcupdate.h>
6 #include <linux/workqueue.h>
7
8 struct cfq_queue;
9 struct cfq_ttime {
10 unsigned long last_end_request;
11
12 unsigned long ttime_total;
13 unsigned long ttime_samples;
14 unsigned long ttime_mean;
15 };
16
17 enum {
18 CIC_IOPRIO_CHANGED,
19 CIC_CGROUP_CHANGED,
20 };
21
22 struct cfq_io_context {
23 struct request_queue *q;
24
25 struct cfq_queue *cfqq[2];
26
27 struct io_context *ioc;
28
29 struct cfq_ttime ttime;
30
31 struct list_head queue_list;
32 struct hlist_node cic_list;
33
34 unsigned long changed;
35
36 void (*exit)(struct cfq_io_context *);
37 void (*release)(struct cfq_io_context *);
38
39 struct rcu_head rcu_head;
40 };
41
42 /*
43 * I/O subsystem state of the associated processes. It is refcounted
44 * and kmalloc'ed. These could be shared between processes.
45 */
46 struct io_context {
47 atomic_long_t refcount;
48 atomic_t nr_tasks;
49
50 /* all the fields below are protected by this lock */
51 spinlock_t lock;
52
53 unsigned short ioprio;
54
55 /*
56 * For request batching
57 */
58 int nr_batch_requests; /* Number of requests left in the batch */
59 unsigned long last_waited; /* Time last woken after wait for request */
60
61 struct radix_tree_root radix_root;
62 struct hlist_head cic_list;
63 void __rcu *ioc_data;
64
65 struct work_struct release_work;
66 };
67
68 static inline struct io_context *ioc_task_link(struct io_context *ioc)
69 {
70 /*
71 * if ref count is zero, don't allow sharing (ioc is going away, it's
72 * a race).
73 */
74 if (ioc && atomic_long_inc_not_zero(&ioc->refcount)) {
75 atomic_inc(&ioc->nr_tasks);
76 return ioc;
77 }
78
79 return NULL;
80 }
81
82 struct task_struct;
83 #ifdef CONFIG_BLOCK
84 void put_io_context(struct io_context *ioc, struct request_queue *locked_q);
85 void exit_io_context(struct task_struct *task);
86 struct io_context *get_task_io_context(struct task_struct *task,
87 gfp_t gfp_flags, int node);
88 void ioc_ioprio_changed(struct io_context *ioc, int ioprio);
89 void ioc_cgroup_changed(struct io_context *ioc);
90 #else
91 struct io_context;
92 static inline void put_io_context(struct io_context *ioc,
93 struct request_queue *locked_q) { }
94 static inline void exit_io_context(struct task_struct *task) { }
95 #endif
96
97 #endif
This page took 0.0364 seconds and 6 git commands to generate.