Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208528
b: refs/heads/master
c: 00918b6
h: refs/heads/master
v: v3
  • Loading branch information
KOSAKI Motohiro authored and Linus Torvalds committed Aug 11, 2010
1 parent a532cbd commit 65c28cd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 14fec79680f7cc4617d6ba69324e63d4a732986c
refs/heads/master: 00918b6ab89df8984ca06397cb77994dabd73f9b
5 changes: 2 additions & 3 deletions trunk/include/linux/memcontrol.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ static inline bool mem_cgroup_disabled(void)

void mem_cgroup_update_file_mapped(struct page *page, int val);
unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
gfp_t gfp_mask, int nid,
int zid);
gfp_t gfp_mask);
u64 mem_cgroup_get_limit(struct mem_cgroup *mem);

#else /* CONFIG_CGROUP_MEM_RES_CTLR */
Expand Down Expand Up @@ -301,7 +300,7 @@ static inline void mem_cgroup_update_file_mapped(struct page *page,

static inline
unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
gfp_t gfp_mask, int nid, int zid)
gfp_t gfp_mask)
{
return 0;
}
Expand Down
5 changes: 2 additions & 3 deletions trunk/mm/memcontrol.c
Original file line number Diff line number Diff line change
Expand Up @@ -2865,8 +2865,7 @@ static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg,
}

unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
gfp_t gfp_mask, int nid,
int zid)
gfp_t gfp_mask)
{
unsigned long nr_reclaimed = 0;
struct mem_cgroup_per_zone *mz, *next_mz = NULL;
Expand All @@ -2878,7 +2877,7 @@ unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
if (order > 0)
return 0;

mctz = soft_limit_tree_node_zone(nid, zid);
mctz = soft_limit_tree_node_zone(zone_to_nid(zone), zone_idx(zone));
/*
* This loop can run a while, specially if mem_cgroup's continuously
* keep exceeding their soft limit and putting the system under
Expand Down
7 changes: 2 additions & 5 deletions trunk/mm/vmscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -2168,7 +2168,6 @@ static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
for (i = 0; i <= end_zone; i++) {
struct zone *zone = pgdat->node_zones + i;
int nr_slab;
int nid, zid;

if (!populated_zone(zone))
continue;
Expand All @@ -2178,14 +2177,12 @@ static unsigned long balance_pgdat(pg_data_t *pgdat, int order)

sc.nr_scanned = 0;

nid = pgdat->node_id;
zid = zone_idx(zone);
/*
* Call soft limit reclaim before calling shrink_zone.
* For now we ignore the return value
*/
mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask,
nid, zid);
mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask);

/*
* We put equal pressure on every zone, unless one
* zone has way too many pages free already.
Expand Down

0 comments on commit 65c28cd

Please sign in to comment.