diff options
Diffstat (limited to 'include/linux/res_counter.h')
-rw-r--r-- | include/linux/res_counter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h index 61363ce896d5..8cb1ecd420a9 100644 --- a/include/linux/res_counter.h +++ b/include/linux/res_counter.h | |||
@@ -39,8 +39,9 @@ struct res_counter { | |||
39 | spinlock_t lock; | 39 | spinlock_t lock; |
40 | }; | 40 | }; |
41 | 41 | ||
42 | /* | 42 | /** |
43 | * Helpers to interact with userspace | 43 | * Helpers to interact with userspace |
44 | * res_counter_read_u64() - returns the value of the specified member. | ||
44 | * res_counter_read/_write - put/get the specified fields from the | 45 | * res_counter_read/_write - put/get the specified fields from the |
45 | * res_counter struct to/from the user | 46 | * res_counter struct to/from the user |
46 | * | 47 | * |
@@ -51,6 +52,8 @@ struct res_counter { | |||
51 | * @pos: and the offset. | 52 | * @pos: and the offset. |
52 | */ | 53 | */ |
53 | 54 | ||
55 | u64 res_counter_read_u64(struct res_counter *counter, int member); | ||
56 | |||
54 | ssize_t res_counter_read(struct res_counter *counter, int member, | 57 | ssize_t res_counter_read(struct res_counter *counter, int member, |
55 | const char __user *buf, size_t nbytes, loff_t *pos, | 58 | const char __user *buf, size_t nbytes, loff_t *pos, |
56 | int (*read_strategy)(unsigned long long val, char *s)); | 59 | int (*read_strategy)(unsigned long long val, char *s)); |