From: Tejun Heo <tj@kernel.org>
To: Aristeu Rozanski <aris@redhat.com>
Cc: linux-kernel@vger.kernel.org, Li Zefan <lizefan@huawei.com>,
Hugh Dickins <hughd@google.com>, Hillf Danton <dhillf@gmail.com>
Subject: Re: [PATCH v3 2/3] cgroup: revise how we re-populate root directory
Date: Tue, 17 Jul 2012 11:38:51 -0700 [thread overview]
Message-ID: <20120717183851.GA24336@google.com> (raw)
In-Reply-To: <20120710192721.GB19791@redhat.com>
Hello,
Sorry about the delay.
On Tue, Jul 10, 2012 at 03:27:22PM -0400, Aristeu Rozanski wrote:
> Index: xattr/include/linux/cgroup.h
> ===================================================================
> --- xattr.orig/include/linux/cgroup.h 2012-07-03 15:43:43.404334484 -0400
> +++ xattr/include/linux/cgroup.h 2012-07-10 13:17:32.285119770 -0400
> @@ -306,6 +306,9 @@
> */
> size_t max_write_len;
>
> + /* The subsystem this cgroup file belongs to */
> + struct cgroup_subsys *subsys;
I couldn't find how this is used. How is it used?
> Index: xattr/kernel/cgroup.c
> ===================================================================
> --- xattr.orig/kernel/cgroup.c 2012-07-03 15:43:43.404334484 -0400
> +++ xattr/kernel/cgroup.c 2012-07-10 13:28:18.424657727 -0400
> @@ -825,6 +825,7 @@
> static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
> static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
> static int cgroup_populate_dir(struct cgroup *cgrp);
> +static int cgroup_repopulate_dir(struct cgroup *cgrp, unsigned long added_bits);
> static const struct inode_operations cgroup_dir_inode_operations;
> static const struct file_operations proc_cgroupstats_operations;
>
> @@ -973,12 +974,23 @@
> return -ENOENT;
> }
>
> -static void cgroup_clear_directory(struct dentry *dir)
> +static void cgroup_clear_directory(struct dentry *dir, bool remove_all,
> + unsigned long removed_bits)
Maybe @subsys_mask is better? Also, why is @remove_all a separate
argument? Can't we define, say, CGRP_ALL_SUBSYS and pass it in as
@subsys_mask?
> {
> struct cgroup *cgrp = __d_cgrp(dir);
> + struct cgroup_subsys *ss;
>
> - while (!list_empty(&cgrp->files))
> - cgroup_rm_file(cgrp, NULL);
> + for_each_subsys(cgrp->root, ss) {
> + struct cftype_set *set;
> + if (!remove_all && !test_bit(ss->subsys_id, &removed_bits))
> + continue;
> + list_for_each_entry(set, &ss->cftsets, node)
> + cgroup_rm_file(cgrp, set->cfts);
> + }
> + if (remove_all) {
> + while (!list_empty(&cgrp->files))
> + cgroup_rm_file(cgrp, NULL);
> + }
Ah, I see. We don't have a bit for the base files. I think it's a
bit confusing that there are two params controlling subsys file
removal. Maybe reserve a bit for NULL subsys or use
@remove_base_files argument instead?
> +static int cgroup_populate_dir(struct cgroup *cgrp)
> +{
> + int err;
> +
> + err = cgroup_addrm_files(cgrp, NULL, files, true);
> + if (err < 0)
> + return err;
> +
> + return __cgroup_populate_dir(cgrp, cgrp->root->subsys_bits);
> +}
I think it would be best to keep the clear and populate interface more
or less symmetrical so that both have @subsys_mask (and maybe
@base_files).
Thanks.
--
tejun
next prev parent reply other threads:[~2012-07-17 18:38 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-02 14:29 [PATCH v3 0/3] cgroup: add xattr support Aristeu Rozanski
2012-07-02 14:29 ` [PATCH v3 1/3] xattr: extract simple_xattr code from tmpfs Aristeu Rozanski
2012-07-03 16:53 ` [PATCH v4 " Aristeu Rozanski
2012-07-02 14:29 ` [PATCH v3 2/3] cgroup: revise how we re-populate root directory Aristeu Rozanski
2012-07-09 17:17 ` Tejun Heo
2012-07-09 17:22 ` Tejun Heo
2012-07-09 17:28 ` Tejun Heo
2012-07-10 19:27 ` Aristeu Rozanski
2012-07-17 13:56 ` Aristeu Rozanski
2012-07-17 18:38 ` Tejun Heo [this message]
2012-07-17 21:29 ` Aristeu Rozanski
2012-07-17 21:40 ` Tejun Heo
2012-07-18 14:16 ` Aristeu Rozanski
2012-07-18 16:32 ` Tejun Heo
2012-07-02 14:29 ` [PATCH v3 3/3] cgroup: add xattr support Aristeu Rozanski
2012-07-17 20:41 ` [PATCH v3 0/3] " Tejun Heo
2012-07-18 20:02 ` Hugh Dickins
2012-07-18 22:10 ` Tejun Heo
2012-07-19 1:11 ` Hugh Dickins
2012-07-20 17:59 ` Aristeu Rozanski
2012-07-20 18:04 ` Tejun Heo
2012-08-07 15:22 ` Aristeu Rozanski
2012-07-22 19:12 ` Hugh Dickins
2012-07-23 18:12 ` Aristeu Rozanski
2012-07-24 18:28 ` Tejun Heo
2012-07-24 21:44 ` Aristeu Rozanski
2012-07-20 18:10 ` Tejun Heo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120717183851.GA24336@google.com \
--to=tj@kernel.org \
--cc=aris@redhat.com \
--cc=dhillf@gmail.com \
--cc=hughd@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lizefan@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).