]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/linux/res_counter.h
cgroups: add res counter common ancestor searching
[karo-tx-linux.git] / include / linux / res_counter.h
1 #ifndef __RES_COUNTER_H__
2 #define __RES_COUNTER_H__
3
4 /*
5  * Resource Counters
6  * Contain common data types and routines for resource accounting
7  *
8  * Copyright 2007 OpenVZ SWsoft Inc
9  *
10  * Author: Pavel Emelianov <xemul@openvz.org>
11  *
12  * See Documentation/cgroups/resource_counter.txt for more
13  * info about what this counter is.
14  */
15
16 #include <linux/cgroup.h>
17
18 /*
19  * The core object. the cgroup that wishes to account for some
20  * resource may include this counter into its structures and use
21  * the helpers described beyond
22  */
23
24 struct res_counter {
25         /*
26          * the current resource consumption level
27          */
28         unsigned long long usage;
29         /*
30          * the maximal value of the usage from the counter creation
31          */
32         unsigned long long max_usage;
33         /*
34          * the limit that usage cannot exceed
35          */
36         unsigned long long limit;
37         /*
38          * the limit that usage can be exceed
39          */
40         unsigned long long soft_limit;
41         /*
42          * the number of unsuccessful attempts to consume the resource
43          */
44         unsigned long long failcnt;
45         /*
46          * the lock to protect all of the above.
47          * the routines below consider this to be IRQ-safe
48          */
49         spinlock_t lock;
50         /*
51          * Parent counter, used for hierarchial resource accounting
52          */
53         struct res_counter *parent;
54 };
55
56 #define RESOURCE_MAX (unsigned long long)LLONG_MAX
57
58 /**
59  * Helpers to interact with userspace
60  * res_counter_read_u64() - returns the value of the specified member.
61  * res_counter_read/_write - put/get the specified fields from the
62  * res_counter struct to/from the user
63  *
64  * @counter:     the counter in question
65  * @member:  the field to work with (see RES_xxx below)
66  * @buf:     the buffer to opeate on,...
67  * @nbytes:  its size...
68  * @pos:     and the offset.
69  */
70
71 u64 res_counter_read_u64(struct res_counter *counter, int member);
72
73 ssize_t res_counter_read(struct res_counter *counter, int member,
74                 const char __user *buf, size_t nbytes, loff_t *pos,
75                 int (*read_strategy)(unsigned long long val, char *s));
76
77 typedef int (*write_strategy_fn)(const char *buf, unsigned long long *val);
78
79 int res_counter_memparse_write_strategy(const char *buf,
80                                         unsigned long long *res);
81
82 int res_counter_write(struct res_counter *counter, int member,
83                       const char *buffer, write_strategy_fn write_strategy);
84
85 void res_counter_write_u64(struct res_counter *counter, int member, u64 val);
86
87 void res_counter_inherit(struct res_counter *counter, int member);
88
89 /*
90  * the field descriptors. one for each member of res_counter
91  */
92
93 enum {
94         RES_USAGE,
95         RES_MAX_USAGE,
96         RES_LIMIT,
97         RES_FAILCNT,
98         RES_SOFT_LIMIT,
99 };
100
101 /*
102  * helpers for accounting
103  */
104
105 void res_counter_init(struct res_counter *counter, struct res_counter *parent);
106
107 /*
108  * charge - try to consume more resource.
109  *
110  * @counter: the counter
111  * @val: the amount of the resource. each controller defines its own
112  *       units, e.g. numbers, bytes, Kbytes, etc
113  *
114  * returns 0 on success and <0 if the counter->usage will exceed the
115  * counter->limit _locked call expects the counter->lock to be taken
116  */
117
118 int __must_check res_counter_charge_locked(struct res_counter *counter,
119                 unsigned long val);
120 int __must_check res_counter_charge_until(struct res_counter *counter,
121                                           struct res_counter *limit,
122                                           unsigned long val,
123                                           struct res_counter **limit_fail_at);
124 static inline int __must_check
125 res_counter_charge(struct res_counter *counter, unsigned long val,
126                    struct res_counter **limit_fail_at)
127 {
128         return res_counter_charge_until(counter, NULL, val, limit_fail_at);
129 }
130
131 /*
132  * uncharge - tell that some portion of the resource is released
133  *
134  * @counter: the counter
135  * @val: the amount of the resource
136  *
137  * these calls check for usage underflow and show a warning on the console
138  * _locked call expects the counter->lock to be taken
139  */
140
141 void res_counter_uncharge_locked(struct res_counter *counter, unsigned long val);
142 void res_counter_uncharge_until(struct res_counter *counter,
143                                 struct res_counter *limit, unsigned long val);
144 static inline void res_counter_uncharge(struct res_counter *counter,
145                                         unsigned long val)
146 {
147         res_counter_uncharge_until(counter, NULL, val);
148 }
149
150 struct res_counter *res_counter_common_ancestor(struct res_counter *l,
151                                                 struct res_counter *r);
152
153 /**
154  * res_counter_margin - calculate chargeable space of a counter
155  * @cnt: the counter
156  *
157  * Returns the difference between the hard limit and the current usage
158  * of resource counter @cnt.
159  */
160 static inline unsigned long long res_counter_margin(struct res_counter *cnt)
161 {
162         unsigned long long margin;
163         unsigned long flags;
164
165         spin_lock_irqsave(&cnt->lock, flags);
166         margin = cnt->limit - cnt->usage;
167         spin_unlock_irqrestore(&cnt->lock, flags);
168         return margin;
169 }
170
171 /**
172  * Get the difference between the usage and the soft limit
173  * @cnt: The counter
174  *
175  * Returns 0 if usage is less than or equal to soft limit
176  * The difference between usage and soft limit, otherwise.
177  */
178 static inline unsigned long long
179 res_counter_soft_limit_excess(struct res_counter *cnt)
180 {
181         unsigned long long excess;
182         unsigned long flags;
183
184         spin_lock_irqsave(&cnt->lock, flags);
185         if (cnt->usage <= cnt->soft_limit)
186                 excess = 0;
187         else
188                 excess = cnt->usage - cnt->soft_limit;
189         spin_unlock_irqrestore(&cnt->lock, flags);
190         return excess;
191 }
192
193 static inline void res_counter_reset_max(struct res_counter *cnt)
194 {
195         unsigned long flags;
196
197         spin_lock_irqsave(&cnt->lock, flags);
198         cnt->max_usage = cnt->usage;
199         spin_unlock_irqrestore(&cnt->lock, flags);
200 }
201
202 static inline void res_counter_reset_failcnt(struct res_counter *cnt)
203 {
204         unsigned long flags;
205
206         spin_lock_irqsave(&cnt->lock, flags);
207         cnt->failcnt = 0;
208         spin_unlock_irqrestore(&cnt->lock, flags);
209 }
210
211 static inline int res_counter_set_limit(struct res_counter *cnt,
212                 unsigned long long limit)
213 {
214         unsigned long flags;
215         int ret = -EBUSY;
216
217         spin_lock_irqsave(&cnt->lock, flags);
218         if (cnt->usage <= limit) {
219                 cnt->limit = limit;
220                 ret = 0;
221         }
222         spin_unlock_irqrestore(&cnt->lock, flags);
223         return ret;
224 }
225
226 static inline int
227 res_counter_set_soft_limit(struct res_counter *cnt,
228                                 unsigned long long soft_limit)
229 {
230         unsigned long flags;
231
232         spin_lock_irqsave(&cnt->lock, flags);
233         cnt->soft_limit = soft_limit;
234         spin_unlock_irqrestore(&cnt->lock, flags);
235         return 0;
236 }
237
238 #endif