All of lore.kernel.org
 help / color / mirror / Atom feed
From: Glauber Costa <glommer@parallels.com>
To: Michal Hocko <mhocko@suse.cz>
Cc: Tejun Heo <tj@kernel.org>, Li Zefan <lizefan@huawei.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	linux-mm@kvack.org, cgroups@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] memcg: fix memcg_cache_name() to use cgroup_name()
Date: Thu, 28 Mar 2013 11:22:27 +0400	[thread overview]
Message-ID: <5153EFB3.5070002@parallels.com> (raw)
In-Reply-To: <20130327162707.GO16579@dhcp22.suse.cz>

On 03/27/2013 08:27 PM, Michal Hocko wrote:
> On Wed 27-03-13 09:21:02, Tejun Heo wrote:
>> On Wed, Mar 27, 2013 at 9:19 AM, Michal Hocko <mhocko@suse.cz> wrote:
>>>> Maybe the name could signify it's part of memcg?
>>>
>>> kmem_ prefix is used for all CONFIG_MEMCG_KMEM functions. I understand
>>> it clashes with sl?b naming but this is out of scope of this patch IMO.
>>
>> Oh, it's not using kmemcg? I see. Maybe we can rename later.
> 
> Some parts use memcg_kmem_* other kmem_. A cleanup would be nice.
> Glauber?
> 
I have been using kmem_ only in functions that will deal directly with
the slab caches and with the single purpose of operating them.

kmem_cache_destroy_work_func => worker interface to kmem_cache_destroy
kmem_cache_destroy_memcg_children => cache destructor iterator
kmem_cache_dup => interface to kmem_cache_create

All the other functions start with memcg_
Analogously, all slab-side functions that deal with memcg *ends* with
_memcg. except the functions that are only there to operate memcg data
structures:

memcg_update_all_caches.

In general, those functions could very well live in the other file (slab
or memcg), but they need to take locks or manipulate data structures
that are internal to slab/memcg.

I believe this is a sound convention.

WARNING: multiple messages have this Message-ID (diff)
From: Glauber Costa <glommer@parallels.com>
To: Michal Hocko <mhocko@suse.cz>
Cc: Tejun Heo <tj@kernel.org>, Li Zefan <lizefan@huawei.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	linux-mm@kvack.org, cgroups@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] memcg: fix memcg_cache_name() to use cgroup_name()
Date: Thu, 28 Mar 2013 11:22:27 +0400	[thread overview]
Message-ID: <5153EFB3.5070002@parallels.com> (raw)
In-Reply-To: <20130327162707.GO16579@dhcp22.suse.cz>

On 03/27/2013 08:27 PM, Michal Hocko wrote:
> On Wed 27-03-13 09:21:02, Tejun Heo wrote:
>> On Wed, Mar 27, 2013 at 9:19 AM, Michal Hocko <mhocko@suse.cz> wrote:
>>>> Maybe the name could signify it's part of memcg?
>>>
>>> kmem_ prefix is used for all CONFIG_MEMCG_KMEM functions. I understand
>>> it clashes with sl?b naming but this is out of scope of this patch IMO.
>>
>> Oh, it's not using kmemcg? I see. Maybe we can rename later.
> 
> Some parts use memcg_kmem_* other kmem_. A cleanup would be nice.
> Glauber?
> 
I have been using kmem_ only in functions that will deal directly with
the slab caches and with the single purpose of operating them.

kmem_cache_destroy_work_func => worker interface to kmem_cache_destroy
kmem_cache_destroy_memcg_children => cache destructor iterator
kmem_cache_dup => interface to kmem_cache_create

All the other functions start with memcg_
Analogously, all slab-side functions that deal with memcg *ends* with
_memcg. except the functions that are only there to operate memcg data
structures:

memcg_update_all_caches.

In general, those functions could very well live in the other file (slab
or memcg), but they need to take locks or manipulate data structures
that are internal to slab/memcg.

I believe this is a sound convention.

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Glauber Costa <glommer@parallels.com>
To: Michal Hocko <mhocko@suse.cz>
Cc: Tejun Heo <tj@kernel.org>, Li Zefan <lizefan@huawei.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Johannes Weiner <hannes@cmpxchg.org>, <linux-mm@kvack.org>,
	<cgroups@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] memcg: fix memcg_cache_name() to use cgroup_name()
Date: Thu, 28 Mar 2013 11:22:27 +0400	[thread overview]
Message-ID: <5153EFB3.5070002@parallels.com> (raw)
In-Reply-To: <20130327162707.GO16579@dhcp22.suse.cz>

On 03/27/2013 08:27 PM, Michal Hocko wrote:
> On Wed 27-03-13 09:21:02, Tejun Heo wrote:
>> On Wed, Mar 27, 2013 at 9:19 AM, Michal Hocko <mhocko@suse.cz> wrote:
>>>> Maybe the name could signify it's part of memcg?
>>>
>>> kmem_ prefix is used for all CONFIG_MEMCG_KMEM functions. I understand
>>> it clashes with sl?b naming but this is out of scope of this patch IMO.
>>
>> Oh, it's not using kmemcg? I see. Maybe we can rename later.
> 
> Some parts use memcg_kmem_* other kmem_. A cleanup would be nice.
> Glauber?
> 
I have been using kmem_ only in functions that will deal directly with
the slab caches and with the single purpose of operating them.

kmem_cache_destroy_work_func => worker interface to kmem_cache_destroy
kmem_cache_destroy_memcg_children => cache destructor iterator
kmem_cache_dup => interface to kmem_cache_create

All the other functions start with memcg_
Analogously, all slab-side functions that deal with memcg *ends* with
_memcg. except the functions that are only there to operate memcg data
structures:

memcg_update_all_caches.

In general, those functions could very well live in the other file (slab
or memcg), but they need to take locks or manipulate data structures
that are internal to slab/memcg.

I believe this is a sound convention.

  reply	other threads:[~2013-03-28  7:22 UTC|newest]

Thread overview: 110+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-27  8:36 [PATCH] memcg: fix memcg_cache_name() to use cgroup_name() Michal Hocko
2013-03-27  8:36 ` Michal Hocko
2013-03-27  8:36 ` Michal Hocko
2013-03-27 14:58 ` Johannes Weiner
2013-03-27 14:58   ` Johannes Weiner
     [not found]   ` <20130327145727.GD29052-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2013-03-27 15:11     ` Michal Hocko
2013-03-27 15:11       ` Michal Hocko
2013-03-27 15:11       ` Michal Hocko
     [not found]       ` <20130327151104.GK16579-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-27 15:19         ` Glauber Costa
2013-03-27 15:19           ` Glauber Costa
2013-03-27 15:19           ` Glauber Costa
2013-03-27 15:32           ` Michal Hocko
2013-03-27 15:32             ` Michal Hocko
     [not found]             ` <20130327153220.GL16579-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-27 17:32               ` Michal Hocko
2013-03-27 17:32                 ` Michal Hocko
2013-03-27 17:32                 ` Michal Hocko
     [not found]                 ` <20130327173223.GQ16579-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-28  7:48                   ` Michal Hocko
2013-03-28  7:48                     ` Michal Hocko
2013-03-28  7:48                     ` Michal Hocko
2013-04-02  8:26                     ` Michal Hocko
2013-04-02  8:26                       ` Michal Hocko
     [not found]                       ` <20130402082648.GB24345-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-04-03 21:33                         ` Tejun Heo
2013-04-03 21:33                           ` Tejun Heo
2013-04-03 21:33                           ` Tejun Heo
2013-04-04  7:06                           ` Michal Hocko
2013-04-04  7:06                             ` Michal Hocko
2013-03-27 15:32       ` Johannes Weiner
2013-03-27 15:32         ` Johannes Weiner
2013-03-27 15:47         ` Michal Hocko
2013-03-27 15:47           ` Michal Hocko
     [not found] ` <1364373399-17397-1-git-send-email-mhocko-AlSwsSmVLrQ@public.gmane.org>
2013-03-27 16:15   ` Tejun Heo
2013-03-27 16:15     ` Tejun Heo
2013-03-27 16:15     ` Tejun Heo
2013-03-27 16:19     ` Michal Hocko
2013-03-27 16:19       ` Michal Hocko
     [not found]       ` <20130327161905.GN16579-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-27 16:21         ` Tejun Heo
2013-03-27 16:21           ` Tejun Heo
2013-03-27 16:21           ` Tejun Heo
     [not found]           ` <CAOS58YPsrZNU9qDeMgJG3-Hkn0cBaigz16eTS5M57G95E8fxUQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-03-27 16:27             ` Michal Hocko
2013-03-27 16:27               ` Michal Hocko
2013-03-27 16:27               ` Michal Hocko
2013-03-28  7:22               ` Glauber Costa [this message]
2013-03-28  7:22                 ` Glauber Costa
2013-03-28  7:22                 ` Glauber Costa
  -- strict thread matches above, loose matches on Subject: below --
2013-03-21  1:22 Li Zefan
2013-03-21  1:22 ` Li Zefan
2013-03-21  9:08 ` Michal Hocko
2013-03-21  9:08   ` Michal Hocko
     [not found]   ` <20130321090849.GF6094-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-21 10:22     ` Michal Hocko
2013-03-21 10:22       ` Michal Hocko
2013-03-21 10:22       ` Michal Hocko
2013-03-22  1:22       ` Li Zefan
2013-03-22  1:22         ` Li Zefan
     [not found]         ` <514BB23E.70908-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2013-03-22  8:07           ` Michal Hocko
2013-03-22  8:07             ` Michal Hocko
2013-03-22  8:07             ` Michal Hocko
     [not found]             ` <20130322080749.GB31457-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-22  8:17               ` Li Zefan
2013-03-22  8:17                 ` Li Zefan
2013-03-22  8:17                 ` Li Zefan
     [not found]                 ` <514C1388.6090909-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2013-03-22  8:22                   ` Glauber Costa
2013-03-22  8:22                     ` Glauber Costa
2013-03-22  8:22                     ` Glauber Costa
2013-03-22  9:31                     ` Michal Hocko
2013-03-22  9:31                       ` Michal Hocko
2013-03-22  9:31                       ` Michal Hocko
2013-03-22  9:41                       ` Glauber Costa
2013-03-22  9:41                         ` Glauber Costa
     [not found]                         ` <514C2754.4080701-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2013-03-22  9:48                           ` Michal Hocko
2013-03-22  9:48                             ` Michal Hocko
2013-03-22  9:48                             ` Michal Hocko
     [not found]                             ` <20130322094832.GG31457-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-22 10:03                               ` Glauber Costa
2013-03-22 10:03                                 ` Glauber Costa
2013-03-22 10:03                                 ` Glauber Costa
2013-03-22 10:06                                 ` Michal Hocko
2013-03-22 10:06                                   ` Michal Hocko
     [not found]                                   ` <20130322100609.GI31457-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-22 10:25                                     ` Glauber Costa
2013-03-22 10:25                                       ` Glauber Costa
2013-03-22 10:25                                       ` Glauber Costa
     [not found]                                       ` <514C3193.9010609-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2013-03-22 10:56                                         ` Michal Hocko
2013-03-22 10:56                                           ` Michal Hocko
2013-03-22 10:56                                           ` Michal Hocko
2013-03-24  7:34                                           ` Li Zefan
2013-03-24  7:34                                             ` Li Zefan
2013-03-25  8:20                                             ` Michal Hocko
2013-03-25  8:20                                               ` Michal Hocko
2013-03-24  7:33                       ` Li Zefan
2013-03-24  7:33                         ` Li Zefan
     [not found]                         ` <514EAC41.5050700-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2013-03-25  9:06                           ` Michal Hocko
2013-03-25  9:06                             ` Michal Hocko
2013-03-25  9:06                             ` Michal Hocko
     [not found]                             ` <20130325090629.GN2154-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-26  7:52                               ` Li Zefan
2013-03-26  7:52                                 ` Li Zefan
2013-03-26  7:52                                 ` Li Zefan
     [not found]                                 ` <515153C0.5070908-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2013-03-26  8:10                                   ` Michal Hocko
2013-03-26  8:10                                     ` Michal Hocko
2013-03-26  8:10                                     ` Michal Hocko
2013-03-26  8:35                             ` Glauber Costa
2013-03-26  8:35                               ` Glauber Costa
2013-03-26  8:35                               ` Glauber Costa
     [not found]                               ` <51515DEE.70105-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2013-03-26  8:43                                 ` Michal Hocko
2013-03-26  8:43                                   ` Michal Hocko
2013-03-26  8:43                                   ` Michal Hocko
     [not found]                                   ` <20130326084348.GJ2295-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-03-26  9:02                                     ` Glauber Costa
2013-03-26  9:02                                       ` Glauber Costa
2013-03-26  9:02                                       ` Glauber Costa
     [not found]                                       ` <51516410.2000007-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2013-03-27  1:15                                         ` Li Zefan
2013-03-27  1:15                                           ` Li Zefan
2013-03-27  1:15                                           ` Li Zefan
2013-03-27  8:37                                           ` Michal Hocko
2013-03-27  8:37                                             ` Michal Hocko

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=5153EFB3.5070002@parallels.com \
    --to=glommer@parallels.com \
    --cc=cgroups@vger.kernel.org \
    --cc=hannes@cmpxchg.org \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=lizefan@huawei.com \
    --cc=mhocko@suse.cz \
    --cc=tj@kernel.org \
    /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.