Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1422829
| From | Ganesh Mahendran <opensource.ganesh@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] mm/page_alloc: remove unnecessary order check in __alloc_pages_direct_compact |
| Date | 2016-06-15 11:40 +0200 |
| Message-ID | <rKfsK-Lj-25@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
In the callee try_to_compact_pages(), the (order == 0) is checked, so remove check in __alloc_pages_direct_compact. Signed-off-by: Ganesh Mahendran <opensource.ganesh@gmail.com> --- v2: remove the check in __alloc_pages_direct_compact - Anshuman Khandual --- mm/page_alloc.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index b9ea618..2f5a82a 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -3173,9 +3173,6 @@ __alloc_pages_direct_compact(gfp_t gfp_mask, unsigned int order, struct page *page; int contended_compaction; - if (!order) - return NULL; - current->flags |= PF_MEMALLOC; *compact_result = try_to_compact_pages(gfp_mask, order, alloc_flags, ac, mode, &contended_compaction); -- 1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2] mm/page_alloc: remove unnecessary order check in __alloc_pages_direct_compact Ganesh Mahendran <opensource.ganesh@gmail.com> - 2016-06-15 11:40 +0200
Re: [PATCH v2] mm/page_alloc: remove unnecessary order check in __alloc_pages_direct_compact Balbir Singh <bsingharora@gmail.com> - 2016-06-15 11:50 +0200
Re: [PATCH v2] mm/page_alloc: remove unnecessary order check in __alloc_pages_direct_compact Vlastimil Babka <vbabka@suse.cz> - 2016-06-15 12:00 +0200
Re: [PATCH v2] mm/page_alloc: remove unnecessary order check in __alloc_pages_direct_compact Michal Nazarewicz <mina86@mina86.com> - 2016-06-15 18:50 +0200
csiph-web