diff options
| author | Wei Yang <[email protected]> | 2019-09-23 22:36:27 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2019-09-24 22:54:09 +0000 |
| commit | c1cbc3eebf7a9ae46473a66710c0859aaafc1607 (patch) | |
| tree | 701fabe4c243c8c44d3f5ab0bfd9a09fd607d0b6 /mm/sparse.c | |
| parent | mm/sparse.c: fix ALIGN() without power of 2 in sparse_buffer_alloc() (diff) | |
| download | kernel-c1cbc3eebf7a9ae46473a66710c0859aaafc1607.tar.gz kernel-c1cbc3eebf7a9ae46473a66710c0859aaafc1607.zip | |
mm/sparse.c: use __nr_to_section(section_nr) to get mem_section
__pfn_to_section is defined as __nr_to_section(pfn_to_section_nr(pfn)).
Since we already get section_nr, it is not necessary to get mem_section
from start_pfn. By doing so, we reduce one redundant operation.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Wei Yang <[email protected]>
Reviewed-by: Anshuman Khandual <[email protected]>
Tested-by: Anshuman Khandual <[email protected]>
Cc: Oscar Salvador <[email protected]>
Cc: Pavel Tatashin <[email protected]>
Cc: Michal Hocko <[email protected]>
Cc: David Hildenbrand <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'mm/sparse.c')
| -rw-r--r-- | mm/sparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/sparse.c b/mm/sparse.c index 79355a86064f..a1679024ab5c 100644 --- a/mm/sparse.c +++ b/mm/sparse.c @@ -877,7 +877,7 @@ int __meminit sparse_add_section(int nid, unsigned long start_pfn, */ page_init_poison(pfn_to_page(start_pfn), sizeof(struct page) * nr_pages); - ms = __pfn_to_section(start_pfn); + ms = __nr_to_section(section_nr); set_section_nid(section_nr, nid); section_mark_present(ms); |
