[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B1DED36.8080204@cn.fujitsu.com>
Date: Tue, 08 Dec 2009 14:07:50 +0800
From: Li Zefan <lizf@...fujitsu.com>
To: Ben Blum <bblum@...rew.cmu.edu>
CC: linux-kernel@...r.kernel.org,
containers@...ts.linux-foundation.org, akpm@...ux-foundation.org,
menage@...gle.com, netdev@...r.kernel.org
Subject: Re: [RFC] [PATCH 3/5] cgroups: net_cls as module
> +struct cgroup_subsys net_cls_subsys = {
> + .name = "net_cls",
> + .create = cgrp_create,
> + .destroy = cgrp_destroy,
> + .populate = cgrp_populate,
> +#ifdef CONFIG_NET_CLS_CGROUP
> + .subsys_id = net_cls_subsys_id,
> +#else
> +#define net_cls_subsys_id net_cls_subsys.subsys_id
> +#endif
This looks a bit odd. I think below is the more standard way:
#ifndef MODULES
...
#else
...
#endif
> + .module = THIS_MODULE,
> +};
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists