mm: memcontrol: simplify move precharge function
authorJohannes Weiner <[email protected]>
Wed, 6 Aug 2014 23:05:55 +0000 (16:05 -0700)
committerLinus Torvalds <[email protected]>
Thu, 7 Aug 2014 01:01:17 +0000 (18:01 -0700)
commit9476db974d9e18885123fcebc09f4596bb922e5f
tree70701f82e65c98a0ee5314d0eb3da9863e0f2091
parent0029e19ebf84dcd70b226820daa7747b28d5956d
mm: memcontrol: simplify move precharge function

The move precharge function does some baroque things: it tries raw
res_counter charging of the entire amount first, and then falls back to
a loop of one-by-one charges, with checks for pending signals and
cond_resched() batching.

Just use mem_cgroup_try_charge() without __GFP_WAIT for the first bulk
charge attempt.  In the one-by-one loop, remove the signal check (this
is already checked in try_charge), and simply call cond_resched() after
every charge - it's not that expensive.

Signed-off-by: Johannes Weiner <[email protected]>
Acked-by: Michal Hocko <[email protected]>
Cc: Hugh Dickins <[email protected]>
Cc: Tejun Heo <[email protected]>
Cc: Vladimir Davydov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/memcontrol.c