Skip to content

Commit

Permalink
fs/exec.c:acct_arg_size(): ptl is no longer needed for add_mm_counter()
Browse files Browse the repository at this point in the history
acct_arg_size() takes ->page_table_lock around add_mm_counter() if
!SPLIT_RSS_COUNTING.  This is not needed after commit 172703b ("mm:
delete non-atomic mm counter implementation").

Signed-off-by: Oleg Nesterov <[email protected]>
Reviewed-by: Matt Fleming <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: KAMEZAWA Hiroyuki <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
oleg-nesterov authored and torvalds committed Jul 26, 2011
1 parent b4edf8b commit 32e107f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions fs/exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,7 @@ static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
return;

bprm->vma_pages = pages;

#ifdef SPLIT_RSS_COUNTING
add_mm_counter(mm, MM_ANONPAGES, diff);
#else
spin_lock(&mm->page_table_lock);
add_mm_counter(mm, MM_ANONPAGES, diff);
spin_unlock(&mm->page_table_lock);
#endif
}

static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
Expand Down

0 comments on commit 32e107f

Please sign in to comment.