Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320776
b: refs/heads/master
c: 8e6ac7f
h: refs/heads/master
v: v3
  • Loading branch information
Aneesh Kumar K.V authored and Linus Torvalds committed Aug 1, 2012
1 parent 1db36bc commit 75b5ed6
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: abb8206cb07734d0b7bf033c715995d6371a94c3
refs/heads/master: 8e6ac7fab374816de9a8b0a8fbb02ef761a30ff4
8 changes: 8 additions & 0 deletions trunk/include/linux/hugetlb_cgroup.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ extern void hugetlb_cgroup_uncharge_page(int idx, unsigned long nr_pages,
extern void hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages,
struct hugetlb_cgroup *h_cg);
extern int hugetlb_cgroup_file_init(int idx) __init;
extern void hugetlb_cgroup_migrate(struct page *oldhpage,
struct page *newhpage);

#else
static inline struct hugetlb_cgroup *hugetlb_cgroup_from_page(struct page *page)
Expand Down Expand Up @@ -114,5 +116,11 @@ static inline int __init hugetlb_cgroup_file_init(int idx)
return 0;
}

static inline void hugetlb_cgroup_migrate(struct page *oldhpage,
struct page *newhpage)
{
return;
}

#endif /* CONFIG_MEM_RES_CTLR_HUGETLB */
#endif
20 changes: 20 additions & 0 deletions trunk/mm/hugetlb_cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,26 @@ int __init hugetlb_cgroup_file_init(int idx)
return 0;
}

void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage)
{
struct hugetlb_cgroup *h_cg;

if (hugetlb_cgroup_disabled())
return;

VM_BUG_ON(!PageHuge(oldhpage));
spin_lock(&hugetlb_lock);
h_cg = hugetlb_cgroup_from_page(oldhpage);
set_hugetlb_cgroup(oldhpage, NULL);
cgroup_exclude_rmdir(&h_cg->css);

/* move the h_cg details to new cgroup */
set_hugetlb_cgroup(newhpage, h_cg);
spin_unlock(&hugetlb_lock);
cgroup_release_and_wakeup_rmdir(&h_cg->css);
return;
}

struct cgroup_subsys hugetlb_subsys = {
.name = "hugetlb",
.create = hugetlb_cgroup_create,
Expand Down
5 changes: 5 additions & 0 deletions trunk/mm/migrate.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include <linux/memcontrol.h>
#include <linux/syscalls.h>
#include <linux/hugetlb.h>
#include <linux/hugetlb_cgroup.h>
#include <linux/gfp.h>

#include <asm/tlbflush.h>
Expand Down Expand Up @@ -931,6 +932,10 @@ static int unmap_and_move_huge_page(new_page_t get_new_page,

if (anon_vma)
put_anon_vma(anon_vma);

if (!rc)
hugetlb_cgroup_migrate(hpage, new_hpage);

unlock_page(hpage);
out:
put_page(new_hpage);
Expand Down

0 comments on commit 75b5ed6

Please sign in to comment.