diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-11 21:57:19 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-11 21:57:19 -0500 |
commit | 2756d373a3f45a3a9ebf4ac389f9e0e02bd35a93 (patch) | |
tree | e248c5adccb3045f96b3cfe0a1ffeb37bb81e4cb /mm/page_alloc.c | |
parent | 4e8790f77f051d4cc745a57b48a73052521e8dfc (diff) | |
parent | eeecbd1971517103e06f11750dd1a9a1dc37e4e6 (diff) |
Merge branch 'for-3.19' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup
Pull cgroup update from Tejun Heo:
"cpuset got simplified a bit. cgroup core got a fix on unified
hierarchy and grew some effective css related interfaces which will be
used for blkio support for writeback IO traffic which is currently
being worked on"
* 'for-3.19' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup:
cgroup: implement cgroup_get_e_css()
cgroup: add cgroup_subsys->css_e_css_changed()
cgroup: add cgroup_subsys->css_released()
cgroup: fix the async css offline wait logic in cgroup_subtree_control_write()
cgroup: restructure child_subsys_mask handling in cgroup_subtree_control_write()
cgroup: separate out cgroup_calc_child_subsys_mask() from cgroup_refresh_child_subsys_mask()
cpuset: lock vs unlock typo
cpuset: simplify cpuset_node_allowed API
cpuset: convert callback_mutex to a spinlock
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index a7198c065999..df542feaac3b 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -1990,7 +1990,7 @@ zonelist_scan: | |||
1990 | 1990 | ||
1991 | /* | 1991 | /* |
1992 | * Scan zonelist, looking for a zone with enough free. | 1992 | * Scan zonelist, looking for a zone with enough free. |
1993 | * See also __cpuset_node_allowed_softwall() comment in kernel/cpuset.c. | 1993 | * See also __cpuset_node_allowed() comment in kernel/cpuset.c. |
1994 | */ | 1994 | */ |
1995 | for_each_zone_zonelist_nodemask(zone, z, zonelist, | 1995 | for_each_zone_zonelist_nodemask(zone, z, zonelist, |
1996 | high_zoneidx, nodemask) { | 1996 | high_zoneidx, nodemask) { |
@@ -2001,7 +2001,7 @@ zonelist_scan: | |||
2001 | continue; | 2001 | continue; |
2002 | if (cpusets_enabled() && | 2002 | if (cpusets_enabled() && |
2003 | (alloc_flags & ALLOC_CPUSET) && | 2003 | (alloc_flags & ALLOC_CPUSET) && |
2004 | !cpuset_zone_allowed_softwall(zone, gfp_mask)) | 2004 | !cpuset_zone_allowed(zone, gfp_mask)) |
2005 | continue; | 2005 | continue; |
2006 | /* | 2006 | /* |
2007 | * Distribute pages in proportion to the individual | 2007 | * Distribute pages in proportion to the individual |
@@ -2529,7 +2529,7 @@ gfp_to_alloc_flags(gfp_t gfp_mask) | |||
2529 | alloc_flags |= ALLOC_HARDER; | 2529 | alloc_flags |= ALLOC_HARDER; |
2530 | /* | 2530 | /* |
2531 | * Ignore cpuset mems for GFP_ATOMIC rather than fail, see the | 2531 | * Ignore cpuset mems for GFP_ATOMIC rather than fail, see the |
2532 | * comment for __cpuset_node_allowed_softwall(). | 2532 | * comment for __cpuset_node_allowed(). |
2533 | */ | 2533 | */ |
2534 | alloc_flags &= ~ALLOC_CPUSET; | 2534 | alloc_flags &= ~ALLOC_CPUSET; |
2535 | } else if (unlikely(rt_task(current)) && !in_interrupt()) | 2535 | } else if (unlikely(rt_task(current)) && !in_interrupt()) |