diff options
author | Arun KS <arunks@codeaurora.org> | 2018-12-28 03:34:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-12-28 15:11:47 -0500 |
commit | ca79b0c211af63fa3276f0e3fd7dd9ada2439839 (patch) | |
tree | a9198e85582744619903c85349583bb453fe36cb /mm/util.c | |
parent | 9705bea5f833f4fc21d5bef5fce7348427f76ea4 (diff) |
mm: convert totalram_pages and totalhigh_pages variables to atomic
totalram_pages and totalhigh_pages are made static inline function.
Main motivation was that managed_page_count_lock handling was complicating
things. It was discussed in length here,
https://lore.kernel.org/patchwork/patch/995739/#1181785 So it seemes
better to remove the lock and convert variables to atomic, with preventing
poteintial store-to-read tearing as a bonus.
[akpm@linux-foundation.org: coding style fixes]
Link: http://lkml.kernel.org/r/1542090790-21750-4-git-send-email-arunks@codeaurora.org
Signed-off-by: Arun KS <arunks@codeaurora.org>
Suggested-by: Michal Hocko <mhocko@suse.com>
Suggested-by: Vlastimil Babka <vbabka@suse.cz>
Reviewed-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Reviewed-by: Pavel Tatashin <pasha.tatashin@soleen.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Cc: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/util.c')
-rw-r--r-- | mm/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -593,7 +593,7 @@ unsigned long vm_commit_limit(void) | |||
593 | if (sysctl_overcommit_kbytes) | 593 | if (sysctl_overcommit_kbytes) |
594 | allowed = sysctl_overcommit_kbytes >> (PAGE_SHIFT - 10); | 594 | allowed = sysctl_overcommit_kbytes >> (PAGE_SHIFT - 10); |
595 | else | 595 | else |
596 | allowed = ((totalram_pages - hugetlb_total_pages()) | 596 | allowed = ((totalram_pages() - hugetlb_total_pages()) |
597 | * sysctl_overcommit_ratio / 100); | 597 | * sysctl_overcommit_ratio / 100); |
598 | allowed += total_swap_pages; | 598 | allowed += total_swap_pages; |
599 | 599 | ||