Skip to content

Commit

Permalink
memcg: reduce function dereference
Browse files Browse the repository at this point in the history
This function dereferences res far too often, so optimize it.

Signed-off-by: Sha Zhengju <[email protected]>
Signed-off-by: Qiang Huang <[email protected]>
Acked-by: Michal Hocko <[email protected]>
Cc: Daisuke Nishimura <[email protected]>
Cc: Jeff Liu <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Sha Zhengju authored and torvalds committed Sep 12, 2013
1 parent 3af3351 commit 1a36e59
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions kernel/res_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,27 +178,30 @@ u64 res_counter_read_u64(struct res_counter *counter, int member)
#endif

int res_counter_memparse_write_strategy(const char *buf,
unsigned long long *res)
unsigned long long *resp)
{
char *end;
unsigned long long res;

/* return RES_COUNTER_MAX(unlimited) if "-1" is specified */
if (*buf == '-') {
*res = simple_strtoull(buf + 1, &end, 10);
if (*res != 1 || *end != '\0')
res = simple_strtoull(buf + 1, &end, 10);
if (res != 1 || *end != '\0')
return -EINVAL;
*res = RES_COUNTER_MAX;
*resp = RES_COUNTER_MAX;
return 0;
}

*res = memparse(buf, &end);
res = memparse(buf, &end);
if (*end != '\0')
return -EINVAL;

if (PAGE_ALIGN(*res) >= *res)
*res = PAGE_ALIGN(*res);
if (PAGE_ALIGN(res) >= res)
res = PAGE_ALIGN(res);
else
*res = RES_COUNTER_MAX;
res = RES_COUNTER_MAX;

*resp = res;

return 0;
}

0 comments on commit 1a36e59

Please sign in to comment.