* [RFC PATCH v1 1/4] cgroup quota: add disk space parse strategy to res_counter
@ 2012-03-09 11:20 Jeff Liu
2012-03-11 11:19 ` Glauber Costa
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Liu @ 2012-03-09 11:20 UTC (permalink / raw)
To: cgroups
Cc: lxc-devel, linux-fsdevel@vger.kernel.org, xfs, tj, Li Zefan,
Daniel Lezcano, Ben Myers, Christoph Hellwig, Chris Mason,
Christopher Jones, Dave Chinner, jack, tytso
Introduce a new disk space parse strategy routine for cgroup quota supports.
disk_space_parse() is simply copied from mmparse() with Petabytes and Terabytes parse.
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
---
include/linux/res_counter.h | 3 ++
kernel/res_counter.c | 58 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+), 0 deletions(-)
diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h
index c9d625c..f8ce315 100644
--- a/include/linux/res_counter.h
+++ b/include/linux/res_counter.h
@@ -79,6 +79,9 @@ typedef int (*write_strategy_fn)(const char *buf, unsigned long long *val);
int res_counter_memparse_write_strategy(const char *buf,
unsigned long long *res);
+int res_counter_diskspace_parse_write_strategy(const char *buf,
+ unsigned long long *res);
+
int res_counter_write(struct res_counter *counter, int member,
const char *buffer, write_strategy_fn write_strategy);
diff --git a/kernel/res_counter.c b/kernel/res_counter.c
index 34683ef..42c1623 100644
--- a/kernel/res_counter.c
+++ b/kernel/res_counter.c
@@ -145,6 +145,64 @@ u64 res_counter_read_u64(struct res_counter *counter, int member)
}
#endif
+/*
+ * Copy from memparse(), add terabytes, petabytes parse support.
+ */
+unsigned long long disk_space_parse(const char *ptr, char **retptr)
+{
+ char *endptr; /* local pointer to end of parsed string */
+ unsigned long long ret = kstrtoull(ptr, &endptr, 0);
+
+ switch (*endptr) {
+ case 'P':
+ case 'p':
+ ret <<= 10;
+ case 'T':
+ case 't':
+ ret <<= 10;
+ case 'G':
+ case 'g':
+ ret <<= 10;
+ case 'M':
+ case 'm':
+ ret <<= 10;
+ case 'K':
+ case 'k':
+ ret <<= 10;
+ endptr++;
+ default:
+ break;
+ }
+
+ if (retptr)
+ *retptr = endptr;
+
+ return ret;
+}
+
+int res_counter_diskspace_parse_write_strategy(const char *buf,
+ unsigned long long *res)
+{
+ char *end;
+
+ /* return RESOURCE_MAX(unlimited) if "-1" is specified */
+ if (*buf == '-') {
+ *res = kstrtoull(buf + 1, &end, 10);
+ if (*res != 1 || *end != '\0')
+ return -EINVAL;
+ *res = RESOURCE_MAX;
+ return 0;
+ }
+
+ /* FIXME - make memparse() take const char* args */
+ *res = disk_space_parse((char *)buf, &end);
+ if (*end != '\0')
+ return -EINVAL;
+
+ /* FIXME - need to return *res as block aligned? */
+ return 0;
+}
+
int res_counter_memparse_write_strategy(const char *buf,
unsigned long long *res)
{
--
1.7.9
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [RFC PATCH v1 1/4] cgroup quota: add disk space parse strategy to res_counter
[not found] ` <4F5C8A3A.7080601-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
@ 2012-03-11 10:52 ` Jeff Liu
0 siblings, 0 replies; 3+ messages in thread
From: Jeff Liu @ 2012-03-11 10:52 UTC (permalink / raw)
To: Glauber Costa
Cc: cgroups-u79uwXL29TY76Z2rM5mHXA,
lxc-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
xfs-VZNHf3L845pBDgjK7y7TUQ, tj-DgEjT+Ai2ygdnm+yROfE0A, Li Zefan,
Daniel Lezcano, Ben Myers, Christoph Hellwig, Chris Mason,
Christopher Jones, Dave Chinner, jack-AlSwsSmVLrQ,
tytso-DPNOqEs/LNQ
On 03/11/2012 07:19 PM, Glauber Costa wrote:
> On 03/09/2012 03:20 PM, Jeff Liu wrote:
>> Introduce a new disk space parse strategy routine for cgroup quota
>> supports.
>> disk_space_parse() is simply copied from mmparse() with Petabytes and
>> Terabytes parse.
>>
>> Signed-off-by: Jie Liu<jeff.liu-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
>> ---
>> include/linux/res_counter.h | 3 ++
>> kernel/res_counter.c | 58
>> +++++++++++++++++++++++++++++++++++++++++++
>> 2 files changed, 61 insertions(+), 0 deletions(-)
>>
>> diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h
>> index c9d625c..f8ce315 100644
>> --- a/include/linux/res_counter.h
>> +++ b/include/linux/res_counter.h
>> @@ -79,6 +79,9 @@ typedef int (*write_strategy_fn)(const char *buf,
>> unsigned long long *val);
>> int res_counter_memparse_write_strategy(const char *buf,
>> unsigned long long *res);
>>
>> +int res_counter_diskspace_parse_write_strategy(const char *buf,
>> + unsigned long long *res);
>> +
>> int res_counter_write(struct res_counter *counter, int member,
>> const char *buffer, write_strategy_fn write_strategy);
>>
>> diff --git a/kernel/res_counter.c b/kernel/res_counter.c
>> index 34683ef..42c1623 100644
>> --- a/kernel/res_counter.c
>> +++ b/kernel/res_counter.c
>> @@ -145,6 +145,64 @@ u64 res_counter_read_u64(struct res_counter
>> *counter, int member)
>> }
>> #endif
>>
>> +/*
>> + * Copy from memparse(), add terabytes, petabytes parse support.
>> + */
> Don't see a reason for that. It is all bytes and such, just add the
> modifiers you want to the normal parse...
ok, I'll take care.
Thanks,
-Jeff
>
>> +unsigned long long disk_space_parse(const char *ptr, char **retptr)
>> +{
>> + char *endptr; /* local pointer to end of parsed string */
>> + unsigned long long ret = kstrtoull(ptr,&endptr, 0);
>> +
>> + switch (*endptr) {
>> + case 'P':
>> + case 'p':
>> + ret<<= 10;
>> + case 'T':
>> + case 't':
>> + ret<<= 10;
>> + case 'G':
>> + case 'g':
>> + ret<<= 10;
>> + case 'M':
>> + case 'm':
>> + ret<<= 10;
>> + case 'K':
>> + case 'k':
>> + ret<<= 10;
>> + endptr++;
>> + default:
>> + break;
>> + }
>> +
>> + if (retptr)
>> + *retptr = endptr;
>> +
>> + return ret;
>> +}
>> +
>> +int res_counter_diskspace_parse_write_strategy(const char *buf,
>> + unsigned long long *res)
>> +{
>> + char *end;
>> +
>> + /* return RESOURCE_MAX(unlimited) if "-1" is specified */
>> + if (*buf == '-') {
>> + *res = kstrtoull(buf + 1,&end, 10);
>> + if (*res != 1 || *end != '\0')
>> + return -EINVAL;
>> + *res = RESOURCE_MAX;
>> + return 0;
>> + }
>> +
>> + /* FIXME - make memparse() take const char* args */
>> + *res = disk_space_parse((char *)buf,&end);
>> + if (*end != '\0')
>> + return -EINVAL;
>> +
>> + /* FIXME - need to return *res as block aligned? */
>> + return 0;
>> +}
>> +
>> int res_counter_memparse_write_strategy(const char *buf,
>> unsigned long long *res)
>> {
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH v1 1/4] cgroup quota: add disk space parse strategy to res_counter
2012-03-09 11:20 [RFC PATCH v1 1/4] cgroup quota: add disk space parse strategy to res_counter Jeff Liu
@ 2012-03-11 11:19 ` Glauber Costa
[not found] ` <4F5C8A3A.7080601-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Glauber Costa @ 2012-03-11 11:19 UTC (permalink / raw)
To: jeff.liu
Cc: cgroups, lxc-devel, linux-fsdevel@vger.kernel.org, xfs, tj,
Li Zefan, Daniel Lezcano, Ben Myers, Christoph Hellwig,
Chris Mason, Christopher Jones, Dave Chinner, jack, tytso
On 03/09/2012 03:20 PM, Jeff Liu wrote:
> Introduce a new disk space parse strategy routine for cgroup quota supports.
> disk_space_parse() is simply copied from mmparse() with Petabytes and Terabytes parse.
>
> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
> ---
> include/linux/res_counter.h | 3 ++
> kernel/res_counter.c | 58 +++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 61 insertions(+), 0 deletions(-)
>
> diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h
> index c9d625c..f8ce315 100644
> --- a/include/linux/res_counter.h
> +++ b/include/linux/res_counter.h
> @@ -79,6 +79,9 @@ typedef int (*write_strategy_fn)(const char *buf, unsigned long long *val);
> int res_counter_memparse_write_strategy(const char *buf,
> unsigned long long *res);
>
> +int res_counter_diskspace_parse_write_strategy(const char *buf,
> + unsigned long long *res);
> +
> int res_counter_write(struct res_counter *counter, int member,
> const char *buffer, write_strategy_fn write_strategy);
>
> diff --git a/kernel/res_counter.c b/kernel/res_counter.c
> index 34683ef..42c1623 100644
> --- a/kernel/res_counter.c
> +++ b/kernel/res_counter.c
> @@ -145,6 +145,64 @@ u64 res_counter_read_u64(struct res_counter *counter, int member)
> }
> #endif
>
> +/*
> + * Copy from memparse(), add terabytes, petabytes parse support.
> + */
Don't see a reason for that. It is all bytes and such, just add the
modifiers you want to the normal parse...
> +unsigned long long disk_space_parse(const char *ptr, char **retptr)
> +{
> + char *endptr; /* local pointer to end of parsed string */
> + unsigned long long ret = kstrtoull(ptr,&endptr, 0);
> +
> + switch (*endptr) {
> + case 'P':
> + case 'p':
> + ret<<= 10;
> + case 'T':
> + case 't':
> + ret<<= 10;
> + case 'G':
> + case 'g':
> + ret<<= 10;
> + case 'M':
> + case 'm':
> + ret<<= 10;
> + case 'K':
> + case 'k':
> + ret<<= 10;
> + endptr++;
> + default:
> + break;
> + }
> +
> + if (retptr)
> + *retptr = endptr;
> +
> + return ret;
> +}
> +
> +int res_counter_diskspace_parse_write_strategy(const char *buf,
> + unsigned long long *res)
> +{
> + char *end;
> +
> + /* return RESOURCE_MAX(unlimited) if "-1" is specified */
> + if (*buf == '-') {
> + *res = kstrtoull(buf + 1,&end, 10);
> + if (*res != 1 || *end != '\0')
> + return -EINVAL;
> + *res = RESOURCE_MAX;
> + return 0;
> + }
> +
> + /* FIXME - make memparse() take const char* args */
> + *res = disk_space_parse((char *)buf,&end);
> + if (*end != '\0')
> + return -EINVAL;
> +
> + /* FIXME - need to return *res as block aligned? */
> + return 0;
> +}
> +
> int res_counter_memparse_write_strategy(const char *buf,
> unsigned long long *res)
> {
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-03-11 11:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-09 11:20 [RFC PATCH v1 1/4] cgroup quota: add disk space parse strategy to res_counter Jeff Liu
2012-03-11 11:19 ` Glauber Costa
[not found] ` <4F5C8A3A.7080601-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2012-03-11 10:52 ` Jeff Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).