All of lore.kernel.org
 help / color / mirror / Atom feed
From: Li Zefan <lizf@cn.fujitsu.com>
To: Ben Blum <bblum@andrew.cmu.edu>
Cc: linux-kernel@vger.kernel.org,
	containers@lists.linux-foundation.org, akpm@linux-foundation.org,
	Paul Menage <menage@google.com>
Subject: Re: [PATCH 2/4] cgroups: subsystem module loading interface
Date: Mon, 28 Dec 2009 14:32:20 +0800	[thread overview]
Message-ID: <4B3850F4.4090203@cn.fujitsu.com> (raw)
In-Reply-To: <20091221203613.GC5683@andrew.cmu.edu>

> Add interface between cgroups subsystem management and module loading
> 
> From: Ben Blum <bblum@andrew.cmu.edu>
> 
> This patch implements rudimentary module-loading support for cgroups - namely,
> a cgroup_load_subsys (similar to cgroup_init_subsys) for use as a module
> initcall, and a struct module pointer in struct cgroup_subsys.
> 
> Several functions that might be wanted by modules have had EXPORT_SYMBOL added
> to them, but it's unclear exactly which functions want it and which won't.
> 
> Signed-off-by: Ben Blum <bblum@andrew.cmu.edu>

Acked-by: Li Zefan <lizf@cn.fujitsu.com>

Some small nitpicks:

> --- a/kernel/cgroup.c
> +++ b/kernel/cgroup.c
> @@ -2477,6 +2477,7 @@ int cgroup_add_file(struct cgroup *cgrp,
>  		error = PTR_ERR(dentry);
>  	return error;
>  }
> +EXPORT_SYMBOL_GPL(cgroup_add_file);

I got compile errors, because you forgot to include <linux/module.h>

...
> +	write_lock(&css_set_lock);
> +	for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
> +		struct css_set *cg;
> +		struct hlist_node *node, *tmp;
> +		struct hlist_head *bucket = &css_set_table[i], *new_bucket;

Please add a blank line between variable declaration and other code.

And elsewhere in this patchset.

> +		hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
> +			/* skip entries that we already rehashed */
> +			if (cg->subsys[ss->subsys_id])
> +				continue;
> +			/* remove existing entry */
> +			hlist_del(&cg->hlist);
> +			/* set new value */
> +			cg->subsys[ss->subsys_id] = css;
> +			/* recompute hash and restore entry */
> +			new_bucket = css_set_hash(cg->subsys);
> +			hlist_add_head(&cg->hlist, new_bucket);
> +		}
> +	}
> +	write_unlock(&css_set_lock);



  parent reply	other threads:[~2009-12-28  6:32 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-21 20:32 [PATCH 0/4] cgroups: support for module-loadable subsystems Ben Blum
2009-12-21 20:35 ` [PATCH 1/4] cgroups: revamp subsys array Ben Blum
     [not found]   ` <20091221203515.GB5683-OM76b2Iv3yLQjUSlxSEPGw@public.gmane.org>
2009-12-28  6:29     ` Li Zefan
2009-12-28  6:29       ` Li Zefan
2009-12-21 20:36 ` [PATCH 2/4] cgroups: subsystem module loading interface Ben Blum
     [not found]   ` <20091221203613.GC5683-OM76b2Iv3yLQjUSlxSEPGw@public.gmane.org>
2009-12-28  6:32     ` Li Zefan
2009-12-28  6:32   ` Li Zefan [this message]
2009-12-28 12:40     ` Ben Blum
     [not found]       ` <20091228124029.GB4824-OM76b2Iv3yLQjUSlxSEPGw@public.gmane.org>
2009-12-29  1:03         ` Li Zefan
2009-12-29  1:03       ` Li Zefan
     [not found]     ` <4B3850F4.4090203-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2009-12-28 12:40       ` Ben Blum
2009-12-21 20:37 ` [PATCH 3/4] cgroups: net_cls as module Ben Blum
     [not found]   ` <20091221203704.GD5683-OM76b2Iv3yLQjUSlxSEPGw@public.gmane.org>
2009-12-28  6:34     ` Li Zefan
2009-12-28  6:34   ` Li Zefan
2009-12-28 12:37     ` Ben Blum
     [not found]     ` <4B385164.9070704-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2009-12-28 12:37       ` Ben Blum
     [not found] ` <20091221203253.GA5683-OM76b2Iv3yLQjUSlxSEPGw@public.gmane.org>
2009-12-21 20:35   ` [PATCH 1/4] cgroups: revamp subsys array Ben Blum
2009-12-21 20:36   ` [PATCH 2/4] cgroups: subsystem module loading interface Ben Blum
2009-12-21 20:37   ` [PATCH 3/4] cgroups: net_cls as module Ben Blum
2009-12-21 20:38   ` [PATCH 4/4] cgroups: subsystem module unloading Ben Blum
2009-12-21 20:38 ` Ben Blum
2009-12-28  6:36   ` Li Zefan
     [not found]   ` <20091221203800.GE5683-OM76b2Iv3yLQjUSlxSEPGw@public.gmane.org>
2009-12-28  6:36     ` Li Zefan

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=4B3850F4.4090203@cn.fujitsu.com \
    --to=lizf@cn.fujitsu.com \
    --cc=akpm@linux-foundation.org \
    --cc=bblum@andrew.cmu.edu \
    --cc=containers@lists.linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=menage@google.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 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.