Re: [RFC][PATCH 4/6] memcg : swap cgroup

From: KAMEZAWA Hiroyuki
Date: Thu Nov 06 2008 - 07:44:35 EST


Daisuke Nishimura said:
> On Wed, 5 Nov 2008 17:21:41 +0900, KAMEZAWA Hiroyuki
> <kamezawa.hiroyu@xxxxxxxxxxxxxx> wrote:
>> Note1: In this, we use pointer to record information and this means
>> 8bytes per swap entry. I think we can reduce this when we
>> create "id of cgroup" in the range of 0-65535 or 0-255.
>>
>> Note2: array of swap_cgroup is allocated from HIGHMEM. maybe good for
>> x86-32.
>>
>> Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx>
>>
>> include/linux/page_cgroup.h | 35 +++++++
>> mm/page_cgroup.c | 201
>> ++++++++++++++++++++++++++++++++++++++++++++
>> mm/swapfile.c | 8 +
>> 3 files changed, 244 insertions(+)
>>
> Is there any reason why they are defined not in memcontrol.[ch]
> but in page_cgroup.[ch]?
>
no strong reason. just because this is not core logic for acccounting.
do you want to see this in memcontrol.c ?

>> +void swap_cgroup_swapoff(int type)
>> +{
>> + int i;
>> + struct swap_cgroup_ctrl *ctrl;
>> +
>> + if (!do_swap_account)
>> + return;
>> +
>> + mutex_lock(&swap_cgroup_mutex);
>> + if (ctrl->map) {
>> + ctrl = &swap_cgroup_ctrl[type];
> This line should be before "if (ctrl->map)"(otherwise "ctrl" will be
> undefined!).
>
Oh....maybe refresh mis...brame me.

Thanks,
-Kame


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/