blob: 8cb1ecd420a9db3e8d2f0f142f0952a98d196ec8 [file] [log] [blame]
Pavel Emelianove552b662008-02-07 00:13:49 -08001#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 */
13
14#include <linux/cgroup.h>
15
16/*
17 * The core object. the cgroup that wishes to account for some
18 * resource may include this counter into its structures and use
19 * the helpers described beyond
20 */
21
22struct res_counter {
23 /*
24 * the current resource consumption level
25 */
Balbir Singh0eea1032008-02-07 00:13:57 -080026 unsigned long long usage;
Pavel Emelianove552b662008-02-07 00:13:49 -080027 /*
28 * the limit that usage cannot exceed
29 */
Balbir Singh0eea1032008-02-07 00:13:57 -080030 unsigned long long limit;
Pavel Emelianove552b662008-02-07 00:13:49 -080031 /*
32 * the number of unsuccessful attempts to consume the resource
33 */
Balbir Singh0eea1032008-02-07 00:13:57 -080034 unsigned long long failcnt;
Pavel Emelianove552b662008-02-07 00:13:49 -080035 /*
36 * the lock to protect all of the above.
37 * the routines below consider this to be IRQ-safe
38 */
39 spinlock_t lock;
40};
41
Paul Menage2c7eabf2008-04-29 00:59:58 -070042/**
Pavel Emelianove552b662008-02-07 00:13:49 -080043 * Helpers to interact with userspace
Paul Menage2c7eabf2008-04-29 00:59:58 -070044 * res_counter_read_u64() - returns the value of the specified member.
Pavel Emelianove552b662008-02-07 00:13:49 -080045 * res_counter_read/_write - put/get the specified fields from the
46 * res_counter struct to/from the user
47 *
48 * @counter: the counter in question
49 * @member: the field to work with (see RES_xxx below)
50 * @buf: the buffer to opeate on,...
51 * @nbytes: its size...
52 * @pos: and the offset.
53 */
54
Paul Menage2c7eabf2008-04-29 00:59:58 -070055u64 res_counter_read_u64(struct res_counter *counter, int member);
56
Pavel Emelianove552b662008-02-07 00:13:49 -080057ssize_t res_counter_read(struct res_counter *counter, int member,
Balbir Singh0eea1032008-02-07 00:13:57 -080058 const char __user *buf, size_t nbytes, loff_t *pos,
59 int (*read_strategy)(unsigned long long val, char *s));
Pavel Emelianove552b662008-02-07 00:13:49 -080060ssize_t res_counter_write(struct res_counter *counter, int member,
Balbir Singh0eea1032008-02-07 00:13:57 -080061 const char __user *buf, size_t nbytes, loff_t *pos,
62 int (*write_strategy)(char *buf, unsigned long long *val));
Pavel Emelianove552b662008-02-07 00:13:49 -080063
64/*
65 * the field descriptors. one for each member of res_counter
66 */
67
68enum {
69 RES_USAGE,
70 RES_LIMIT,
71 RES_FAILCNT,
72};
73
74/*
75 * helpers for accounting
76 */
77
78void res_counter_init(struct res_counter *counter);
79
80/*
81 * charge - try to consume more resource.
82 *
83 * @counter: the counter
84 * @val: the amount of the resource. each controller defines its own
85 * units, e.g. numbers, bytes, Kbytes, etc
86 *
87 * returns 0 on success and <0 if the counter->usage will exceed the
88 * counter->limit _locked call expects the counter->lock to be taken
89 */
90
91int res_counter_charge_locked(struct res_counter *counter, unsigned long val);
92int res_counter_charge(struct res_counter *counter, unsigned long val);
93
94/*
95 * uncharge - tell that some portion of the resource is released
96 *
97 * @counter: the counter
98 * @val: the amount of the resource
99 *
100 * these calls check for usage underflow and show a warning on the console
101 * _locked call expects the counter->lock to be taken
102 */
103
104void res_counter_uncharge_locked(struct res_counter *counter, unsigned long val);
105void res_counter_uncharge(struct res_counter *counter, unsigned long val);
106
Balbir Singh66e17072008-02-07 00:13:56 -0800107static inline bool res_counter_limit_check_locked(struct res_counter *cnt)
108{
109 if (cnt->usage < cnt->limit)
110 return true;
111
112 return false;
113}
114
115/*
116 * Helper function to detect if the cgroup is within it's limit or
117 * not. It's currently called from cgroup_rss_prepare()
118 */
119static inline bool res_counter_check_under_limit(struct res_counter *cnt)
120{
121 bool ret;
122 unsigned long flags;
123
124 spin_lock_irqsave(&cnt->lock, flags);
125 ret = res_counter_limit_check_locked(cnt);
126 spin_unlock_irqrestore(&cnt->lock, flags);
127 return ret;
128}
129
Pavel Emelianove552b662008-02-07 00:13:49 -0800130#endif