* [PATCH 0/3] Consolidate cgroup files creation for resource counters
@ 2007-10-03 10:53 Pavel Emelyanov
[not found] ` <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Pavel Emelyanov @ 2007-10-03 10:53 UTC (permalink / raw)
To: Balbir Singh, Paul Menage; +Cc: Linux Containers
Right now we have only one controller in -mm tree - the memory
one - and it initializes all its files manually. After I developed
the kernel memory one it turned out, that the names of resource
counter specific files has changed. In the future, if anything in
the resource counters change, we'll have to rewrite all the
controllers we will have by that time.
To make all the containers working with the resource counters
look similar I propose to create the resource counters specific
files in one place.
Any comments/wishes before I send it to Andrew are welcome.
Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
^ permalink raw reply [flat|nested] 9+ messages in thread[parent not found: <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>]
* [PATCH 1/3] Typedefs the read and write functions in cftype [not found] ` <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> @ 2007-10-03 10:55 ` Pavel Emelyanov 2007-10-03 10:57 ` [PATCH 2/3] Introduce the res_counter_populate() function Pavel Emelyanov ` (2 subsequent siblings) 3 siblings, 0 replies; 9+ messages in thread From: Pavel Emelyanov @ 2007-10-03 10:55 UTC (permalink / raw) To: Balbir Singh, Paul Menage; +Cc: Linux Containers This is just to reduce the code amount in the future. Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> --- diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 8747932..0635004 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h @@ -178,6 +178,15 @@ struct css_set { * - the 'cftype' of the file is file->f_dentry->d_fsdata */ +struct cftype; + +typedef ssize_t (*cft_read) (struct cgroup *cont, struct cftype *cft, + struct file *file, + char __user *buf, size_t nbytes, loff_t *ppos); +typedef ssize_t (*cft_write) (struct cgroup *cont, struct cftype *cft, + struct file *file, + const char __user *buf, size_t nbytes, loff_t *ppos); + #define MAX_CFTYPE_NAME 64 struct cftype { /* By convention, the name should begin with the name of the @@ -185,18 +194,14 @@ struct cftype { char name[MAX_CFTYPE_NAME]; int private; int (*open) (struct inode *inode, struct file *file); - ssize_t (*read) (struct cgroup *cont, struct cftype *cft, - struct file *file, - char __user *buf, size_t nbytes, loff_t *ppos); + cft_read read; /* * read_uint() is a shortcut for the common case of returning a * single integer. Use it in place of read() */ u64 (*read_uint) (struct cgroup *cont, struct cftype *cft); - ssize_t (*write) (struct cgroup *cont, struct cftype *cft, - struct file *file, - const char __user *buf, size_t nbytes, loff_t *ppos); + cft_write write; /* * write_uint() is a shortcut for the common case of accepting * a single integer (as parsed by simple_strtoull) from ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] Introduce the res_counter_populate() function [not found] ` <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> 2007-10-03 10:55 ` [PATCH 1/3] Typedefs the read and write functions in cftype Pavel Emelyanov @ 2007-10-03 10:57 ` Pavel Emelyanov [not found] ` <470375B2.5090100-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> 2007-10-03 10:59 ` [PATCH 3/3] Use the res_counter_populate in memory controller Pavel Emelyanov 2007-10-03 17:59 ` [PATCH 0/3] Consolidate cgroup files creation for resource counters Balbir Singh 3 siblings, 1 reply; 9+ messages in thread From: Pavel Emelyanov @ 2007-10-03 10:57 UTC (permalink / raw) To: Balbir Singh, Paul Menage; +Cc: Linux Containers This one is responsible for initializing the RES_CFT_MAX files properly and register them inside the container. The caller must provide the cgroup, the cgroup_subsys, the RES_CFT_MAX * sizeof(cftype) chunk of uninitialized memory and the read and write callbacks. In the future, if we add more res_counter files, change their names or anything else, no caller will be affected. Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> --- diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h index 61363ce..8ee8316 100644 --- a/include/linux/res_counter.h +++ b/include/linux/res_counter.h @@ -58,6 +58,9 @@ ssize_t res_counter_write(struct res_cou const char __user *buf, size_t nbytes, loff_t *pos, int (*write_strategy)(char *buf, unsigned long long *val)); +int res_counter_populate(struct cgroup_subsys *ss, struct cgroup *cont, + struct cftype files[], cft_read read_fn, cft_write write_fn); + /* * the field descriptors. one for each member of res_counter */ @@ -66,6 +69,8 @@ enum { RES_USAGE, RES_LIMIT, RES_FAILCNT, + + RES_CFT_MAX, }; /* diff --git a/kernel/res_counter.c b/kernel/res_counter.c index d7f43cd..018eb2b 100644 --- a/kernel/res_counter.c +++ b/kernel/res_counter.c @@ -10,9 +10,34 @@ #include <linux/types.h> #include <linux/parser.h> #include <linux/fs.h> +#include <linux/cgroup.h> #include <linux/res_counter.h> #include <linux/uaccess.h> +int res_counter_populate(struct cgroup_subsys *ss, struct cgroup *cont, + struct cftype files[], cft_read read_fn, cft_write write_fn) +{ + /* + * to be on the safe side + */ + memset(files, 0, RES_CFT_MAX * sizeof(struct cftype)); + + strcpy(files[RES_USAGE].name, "usage_in_bytes"); + files[RES_USAGE].private = RES_USAGE; + files[RES_USAGE].read = read_fn; + + strcpy(files[RES_LIMIT].name, "limit_in_bytes"); + files[RES_LIMIT].private = RES_LIMIT; + files[RES_LIMIT].read = read_fn; + files[RES_LIMIT].write = write_fn; + + strcpy(files[RES_FAILCNT].name, "failcnt"); + files[RES_FAILCNT].private = RES_FAILCNT; + files[RES_FAILCNT].read = read_fn; + + return cgroup_add_files(cont, ss, files, RES_CFT_MAX); +} + void res_counter_init(struct res_counter *counter) { spin_lock_init(&counter->lock); ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <470375B2.5090100-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>]
* Re: [PATCH 2/3] Introduce the res_counter_populate() function [not found] ` <470375B2.5090100-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> @ 2007-10-03 16:02 ` Paul Menage [not found] ` <6599ad830710030902h71737aban4e7cf4e4d1e4d4d1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2007-10-03 18:02 ` Balbir Singh 1 sibling, 1 reply; 9+ messages in thread From: Paul Menage @ 2007-10-03 16:02 UTC (permalink / raw) To: Pavel Emelyanov; +Cc: Linux Containers, Balbir Singh On 10/3/07, Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> wrote: > + > + strcpy(files[RES_USAGE].name, "usage_in_bytes"); This prevents the resource counters from being used for anything that doesn't measure its limit/usage in bytes. E.g. number of tasks. I like the idea of having a unified interface, but can't they just be called "usage" and "limit"? Paul ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <6599ad830710030902h71737aban4e7cf4e4d1e4d4d1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH 2/3] Introduce the res_counter_populate() function [not found] ` <6599ad830710030902h71737aban4e7cf4e4d1e4d4d1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2007-10-04 6:40 ` Pavel Emelyanov 0 siblings, 0 replies; 9+ messages in thread From: Pavel Emelyanov @ 2007-10-04 6:40 UTC (permalink / raw) To: Paul Menage, Balbir Singh; +Cc: Linux Containers Paul Menage wrote: > On 10/3/07, Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> wrote: >> + >> + strcpy(files[RES_USAGE].name, "usage_in_bytes"); > > This prevents the resource counters from being used for anything that > doesn't measure its limit/usage in bytes. E.g. number of tasks. > > I like the idea of having a unified interface, but can't they just be > called "usage" and "limit"? I see. OK, I will rework the patches to make them more generic. Moreover, I've just faced one more race in this set :( > Paul > Thanks, Pavel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] Introduce the res_counter_populate() function [not found] ` <470375B2.5090100-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> 2007-10-03 16:02 ` Paul Menage @ 2007-10-03 18:02 ` Balbir Singh 1 sibling, 0 replies; 9+ messages in thread From: Balbir Singh @ 2007-10-03 18:02 UTC (permalink / raw) To: Pavel Emelyanov; +Cc: Linux Containers, Paul Menage Pavel Emelyanov wrote: > > diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h > index 61363ce..8ee8316 100644 > --- a/include/linux/res_counter.h > +++ b/include/linux/res_counter.h > @@ -58,6 +58,9 @@ ssize_t res_counter_write(struct res_cou > const char __user *buf, size_t nbytes, loff_t *pos, > int (*write_strategy)(char *buf, unsigned long long *val)); > > +int res_counter_populate(struct cgroup_subsys *ss, struct cgroup *cont, > + struct cftype files[], cft_read read_fn, cft_write write_fn); > + > /* > * the field descriptors. one for each member of res_counter > */ > @@ -66,6 +69,8 @@ enum { > RES_USAGE, > RES_LIMIT, > RES_FAILCNT, > + > + RES_CFT_MAX, > }; > This is good > /* > diff --git a/kernel/res_counter.c b/kernel/res_counter.c > index d7f43cd..018eb2b 100644 > --- a/kernel/res_counter.c > +++ b/kernel/res_counter.c > @@ -10,9 +10,34 @@ > #include <linux/types.h> > #include <linux/parser.h> > #include <linux/fs.h> > +#include <linux/cgroup.h> > #include <linux/res_counter.h> > #include <linux/uaccess.h> > > +int res_counter_populate(struct cgroup_subsys *ss, struct cgroup *cont, > + struct cftype files[], cft_read read_fn, cft_write write_fn) > +{ > + /* > + * to be on the safe side > + */ > + memset(files, 0, RES_CFT_MAX * sizeof(struct cftype)); > + > + strcpy(files[RES_USAGE].name, "usage_in_bytes"); This needs to be controller pluggable > + files[RES_USAGE].private = RES_USAGE; > + files[RES_USAGE].read = read_fn; > + > + strcpy(files[RES_LIMIT].name, "limit_in_bytes"); This needs to be controller pluggable > + files[RES_LIMIT].private = RES_LIMIT; > + files[RES_LIMIT].read = read_fn; > + files[RES_LIMIT].write = write_fn; > + > + strcpy(files[RES_FAILCNT].name, "failcnt"); > + files[RES_FAILCNT].private = RES_FAILCNT; > + files[RES_FAILCNT].read = read_fn; > + > + return cgroup_add_files(cont, ss, files, RES_CFT_MAX); > +} > + I've been thinking of writing a tool, that will generate all the code necessary to write a controller under cgroups. Another TODO (low priority). > void res_counter_init(struct res_counter *counter) > { > spin_lock_init(&counter->lock); > > _______________________________________________ > Containers mailing list > Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org > https://lists.linux-foundation.org/mailman/listinfo/containers -- Warm Regards, Balbir Singh Linux Technology Center IBM, ISTL ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 3/3] Use the res_counter_populate in memory controller [not found] ` <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> 2007-10-03 10:55 ` [PATCH 1/3] Typedefs the read and write functions in cftype Pavel Emelyanov 2007-10-03 10:57 ` [PATCH 2/3] Introduce the res_counter_populate() function Pavel Emelyanov @ 2007-10-03 10:59 ` Pavel Emelyanov 2007-10-03 17:59 ` [PATCH 0/3] Consolidate cgroup files creation for resource counters Balbir Singh 3 siblings, 0 replies; 9+ messages in thread From: Pavel Emelyanov @ 2007-10-03 10:59 UTC (permalink / raw) To: Balbir Singh, Paul Menage; +Cc: Linux Containers Note, that the controller code dealing with the cftype files for resource counters becomes much shorter and won't have to be changed in the future. Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> --- diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 1b8bf24..d1b43bc 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -519,28 +519,14 @@ static ssize_t mem_control_type_read(str static struct cftype mem_cgroup_files[] = { { - .name = "usage_in_bytes", - .private = RES_USAGE, - .read = mem_cgroup_read, - }, - { - .name = "limit_in_bytes", - .private = RES_LIMIT, - .write = mem_cgroup_write, - .read = mem_cgroup_read, - }, - { - .name = "failcnt", - .private = RES_FAILCNT, - .read = mem_cgroup_read, - }, - { .name = "control_type", .write = mem_control_type_write, .read = mem_control_type_read, }, }; +static struct cftype mem_res_counter_files[RES_CFT_MAX]; + static struct mem_cgroup init_mem_cgroup; static struct cgroup_subsys_state * @@ -574,6 +560,13 @@ static void mem_cgroup_destroy(struct cg static int mem_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) { + int ret; + + ret = res_counter_populate(ss, cont, mem_res_counter_files, + mem_cgroup_read, mem_cgroup_write); + if (ret) + return ret; + return cgroup_add_files(cont, ss, mem_cgroup_files, ARRAY_SIZE(mem_cgroup_files)); } ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 0/3] Consolidate cgroup files creation for resource counters [not found] ` <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> ` (2 preceding siblings ...) 2007-10-03 10:59 ` [PATCH 3/3] Use the res_counter_populate in memory controller Pavel Emelyanov @ 2007-10-03 17:59 ` Balbir Singh 3 siblings, 0 replies; 9+ messages in thread From: Balbir Singh @ 2007-10-03 17:59 UTC (permalink / raw) To: Pavel Emelyanov; +Cc: Linux Containers, Paul Menage Pavel Emelyanov wrote: > Right now we have only one controller in -mm tree - the memory > one - and it initializes all its files manually. After I developed > the kernel memory one it turned out, that the names of resource > counter specific files has changed. In the future, if anything in > the resource counters change, we'll have to rewrite all the > controllers we will have by that time. > > To make all the containers working with the resource counters > look similar I propose to create the resource counters specific > files in one place. > > Any comments/wishes before I send it to Andrew are welcome. > > Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> For memory your changes make sense, but the file names cannot be limit_in_bytes and usage_in_bytes for other controllers (if and when they use res_counters) -- Warm Regards, Balbir Singh Linux Technology Center IBM, ISTL ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 0/3] Consolidate cgroup files creation for resource counters (v2)
@ 2007-10-04 9:18 Pavel Emelyanov
[not found] ` <4704AFC9.4030606-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Pavel Emelyanov @ 2007-10-04 9:18 UTC (permalink / raw)
To: Paul Menage, Balbir Singh; +Cc: Linux Containers
Changes from previous version
* made the names configurable
* fixed race between res_counter_populate and reading
any of these files (memset to zero could spoof the
pointers)
Right now we have only one controller in -mm tree - the memory
one - and it initializes all its files manually. After I developed
the kernel memory one it turned out, that the names of resource
counter specific files has changed. In the future, if anything in
the resource counters change, we'll have to rewrite all the
controllers we will have by that time.
To make all the containers working with the resource counters
look similar I propose to create the resource counters specific
files in one place.
Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
^ permalink raw reply [flat|nested] 9+ messages in thread[parent not found: <4704AFC9.4030606-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>]
* [PATCH 3/3] Use the res_counter_populate in memory controller [not found] ` <4704AFC9.4030606-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> @ 2007-10-04 9:21 ` Pavel Emelyanov 0 siblings, 0 replies; 9+ messages in thread From: Pavel Emelyanov @ 2007-10-04 9:21 UTC (permalink / raw) To: Paul Menage, Balbir Singh; +Cc: Linux Containers Note, that the controller code dealing with the cftype files for resource counters becomes much shorter and won't have to be changed in the future. Signed-off-by: Pavel Emelyanov <xemul-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org> --- diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 1b8bf24..2e62d24 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -519,28 +519,14 @@ static ssize_t mem_control_type_read(str static struct cftype mem_cgroup_files[] = { { - .name = "usage_in_bytes", - .private = RES_USAGE, - .read = mem_cgroup_read, - }, - { - .name = "limit_in_bytes", - .private = RES_LIMIT, - .write = mem_cgroup_write, - .read = mem_cgroup_read, - }, - { - .name = "failcnt", - .private = RES_FAILCNT, - .read = mem_cgroup_read, - }, - { .name = "control_type", .write = mem_control_type_write, .read = mem_control_type_read, }, }; +static struct cftype mem_res_counter_files[RES_CFT_MAX]; + static struct mem_cgroup init_mem_cgroup; static struct cgroup_subsys_state * @@ -574,6 +560,13 @@ static void mem_cgroup_destroy(struct cg static int mem_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) { + int ret; + + ret = res_counter_populate(ss, cont, mem_res_counter_files, + RES_UNITS_BYTES, mem_cgroup_read, mem_cgroup_write); + if (ret) + return ret; + return cgroup_add_files(cont, ss, mem_cgroup_files, ARRAY_SIZE(mem_cgroup_files)); } ^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2007-10-04 9:21 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-03 10:53 [PATCH 0/3] Consolidate cgroup files creation for resource counters Pavel Emelyanov
[not found] ` <470374A7.6030805-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
2007-10-03 10:55 ` [PATCH 1/3] Typedefs the read and write functions in cftype Pavel Emelyanov
2007-10-03 10:57 ` [PATCH 2/3] Introduce the res_counter_populate() function Pavel Emelyanov
[not found] ` <470375B2.5090100-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
2007-10-03 16:02 ` Paul Menage
[not found] ` <6599ad830710030902h71737aban4e7cf4e4d1e4d4d1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-10-04 6:40 ` Pavel Emelyanov
2007-10-03 18:02 ` Balbir Singh
2007-10-03 10:59 ` [PATCH 3/3] Use the res_counter_populate in memory controller Pavel Emelyanov
2007-10-03 17:59 ` [PATCH 0/3] Consolidate cgroup files creation for resource counters Balbir Singh
-- strict thread matches above, loose matches on Subject: below --
2007-10-04 9:18 [PATCH 0/3] Consolidate cgroup files creation for resource counters (v2) Pavel Emelyanov
[not found] ` <4704AFC9.4030606-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
2007-10-04 9:21 ` [PATCH 3/3] Use the res_counter_populate in memory controller Pavel Emelyanov
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.