From: Michal Hocko <mhocko@suse.cz>
To: Bob Liu <lliubbo@gmail.com>
Cc: linux-mm@kvack.org, akpm@linux-foundation.org,
kamezawa.hiroyu@jp.fujitsu.com, jweiner@redhat.com,
bsingharora@gmail.com
Subject: Re: [PATCH] page_cgroup: add helper function to get swap_cgroup
Date: Fri, 2 Dec 2011 10:56:46 +0100 [thread overview]
Message-ID: <20111202095646.GA21070@tiehlicka.suse.cz> (raw)
In-Reply-To: <1322818931-2674-1-git-send-email-lliubbo@gmail.com>
On Fri 02-12-11 17:42:11, Bob Liu wrote:
> There are multi places need to get swap_cgroup, so add a helper
> function:
> static struct swap_cgroup *swap_cgroup_getsc(swp_entry_t ent);
> to simple the code.
I like the cleanup but I guess we can do a little bit better ;)
[...]
> +static struct swap_cgroup *swap_cgroup_getsc(swp_entry_t ent)
Add struct swap_cgroup_ctrl ** ctrl parameter
> +{
> + int type = swp_type(ent);
> + unsigned long offset = swp_offset(ent);
> + unsigned long idx = offset / SC_PER_PAGE;
> + unsigned long pos = offset & SC_POS_MASK;
> + struct swap_cgroup_ctrl *ctrl;
> + struct page *mappage;
> + struct swap_cgroup *sc;
> +
> + ctrl = &swap_cgroup_ctrl[type];
if (ctrl)
*ctrl = &swap_cgroup_ctrl[type]
[...]
> @@ -375,20 +393,14 @@ unsigned short swap_cgroup_cmpxchg(swp_entry_t ent,
> unsigned short old, unsigned short new)
> {
> int type = swp_type(ent);
> - unsigned long offset = swp_offset(ent);
> - unsigned long idx = offset / SC_PER_PAGE;
> - unsigned long pos = offset & SC_POS_MASK;
> struct swap_cgroup_ctrl *ctrl;
> - struct page *mappage;
> struct swap_cgroup *sc;
> unsigned long flags;
> unsigned short retval;
>
> ctrl = &swap_cgroup_ctrl[type];
> + sc = swap_cgroup_getsc(ent);
sc = swap_cgroup_getsc(ent, &ctrl);
[...]
> @@ -410,20 +422,14 @@ unsigned short swap_cgroup_cmpxchg(swp_entry_t ent,
> unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)
> {
> int type = swp_type(ent);
> - unsigned long offset = swp_offset(ent);
> - unsigned long idx = offset / SC_PER_PAGE;
> - unsigned long pos = offset & SC_POS_MASK;
> struct swap_cgroup_ctrl *ctrl;
> - struct page *mappage;
> struct swap_cgroup *sc;
> unsigned short old;
> unsigned long flags;
>
> ctrl = &swap_cgroup_ctrl[type];
> + sc = swap_cgroup_getsc(ent);
Same here
[...]
> @@ -440,21 +446,10 @@ unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)
> */
> unsigned short lookup_swap_cgroup(swp_entry_t ent)
> {
> - int type = swp_type(ent);
> - unsigned long offset = swp_offset(ent);
> - unsigned long idx = offset / SC_PER_PAGE;
> - unsigned long pos = offset & SC_POS_MASK;
> - struct swap_cgroup_ctrl *ctrl;
> - struct page *mappage;
> struct swap_cgroup *sc;
> - unsigned short ret;
>
> - ctrl = &swap_cgroup_ctrl[type];
> - mappage = ctrl->map[idx];
> - sc = page_address(mappage);
> - sc += pos;
> - ret = sc->id;
> - return ret;
> + sc = swap_cgroup_getsc(ent);
> + return sc->id;
return swap_cgroup_getsc(ent, NULL)->id;
What do you think?
--
Michal Hocko
SUSE Labs
SUSE LINUX s.r.o.
Lihovarska 1060/12
190 00 Praha 9
Czech Republic
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2011-12-02 9:56 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-02 9:42 Bob Liu
2011-12-02 9:56 ` Michal Hocko [this message]
2011-12-02 10:40 ` Bob Liu
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=20111202095646.GA21070@tiehlicka.suse.cz \
--to=mhocko@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=bsingharora@gmail.com \
--cc=jweiner@redhat.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-mm@kvack.org \
--cc=lliubbo@gmail.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