aboutsummaryrefslogtreecommitdiff
path: root/mm/page_alloc.c
AgeCommit message (Expand)AuthorFilesLines
2017-02-22mm, page_alloc: don't convert pfn to idx when mergingGravatar Vlastimil Babka 1-17/+14
2017-02-22mm: throttle show_mem() from warn_alloc()Gravatar Michal Hocko 1-11/+18
2017-01-24mm, page_alloc: fix premature OOM when racing with cpuset mems updateGravatar Vlastimil Babka 1-11/+24
2017-01-24mm, page_alloc: move cpuset seqcount checking to slowpathGravatar Vlastimil Babka 1-21/+26
2017-01-24mm, page_alloc: fix fast-path race with cpuset update or removalGravatar Vlastimil Babka 1-1/+9
2017-01-24mm, page_alloc: fix check for NULL preferred_zoneGravatar Vlastimil Babka 1-1/+1
2017-01-24mm: alloc_contig: re-allow CMA to compact FS pagesGravatar Lucas Stach 1-0/+1
2017-01-10mm: rename __page_frag functions to __page_frag_cache, drop order from drainGravatar Alexander Duyck 1-6/+7
2017-01-10mm: rename __alloc_page_frag to page_frag_alloc and __free_page_frag to page_...Gravatar Alexander Duyck 1-5/+5
2017-01-10mm: don't dereference struct page fields of invalid pagesGravatar Ard Biesheuvel 1-3/+3
2017-01-10mm: get rid of __GFP_OTHER_NODEGravatar Michal Hocko 1-3/+2
2017-01-10mm: fix remote numa hits statisticsGravatar Michal Hocko 1-11/+4
2016-12-14mm: add support for releasing multiple instances of a pageGravatar Alexander Duyck 1-0/+14
2016-12-12Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-19/+56
2016-12-12Merge branch 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Gravatar Linus Torvalds 1-24/+25
2016-12-12mm, page_alloc: keep pcp count and list contents in sync if struct page is co...Gravatar Mel Gorman 1-2/+10
2016-12-12mm: make unreserve highatomic functions reliableGravatar Minchan Kim 1-7/+17
2016-12-12mm: try to exhaust highatomic reserve before the OOMGravatar Minchan Kim 1-5/+10
2016-12-12mm: prevent double decrease of nr_reserved_highatomicGravatar Minchan Kim 1-6/+18
2016-12-12mm: don't steal highatomic pageblockGravatar Minchan Kim 1-2/+4
2016-11-17Merge branch 'x86/cpufeature' into x86/asm, to pick up dependencyGravatar Ingo Molnar 1-2/+2
2016-11-11mm: remove extra newline from allocation stall warningGravatar Tetsuo Handa 1-1/+1
2016-11-09mm/page_alloc: Convert to hotplug state machineGravatar Sebastian Andrzej Siewior 1-24/+25
2016-11-01Merge tag 'gcc-plugins-v4.9-rc4' of git://git.kernel.org/pub/scm/linux/kernel...Gravatar Linus Torvalds 1-1/+1
2016-11-01Merge branch 'linus' into x86/asm, to pick up fixesGravatar Ingo Molnar 1-120/+11
2016-10-31latent_entropy: Fix wrong gcc code generation with 64 bit variablesGravatar Kees Cook 1-1/+1
2016-10-27mm: page_alloc: use KERN_CONT where appropriateGravatar Joe Perches 1-7/+9
2016-10-27mm: remove per-zone hashtable of bitlock waitqueuesGravatar Linus Torvalds 1-113/+2
2016-10-25mm/page_alloc: Remove kernel address exposure in free_reserved_area()Gravatar Josh Poimboeuf 1-2/+2
2016-10-15Merge tag 'gcc-plugins-v4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Gravatar Linus Torvalds 1-0/+5
2016-10-10latent_entropy: Mark functions with __latent_entropyGravatar Emese Revfy 1-1/+1
2016-10-10gcc-plugins: Add latent_entropy pluginGravatar Emese Revfy 1-0/+5
2016-10-07mm: warn about allocations which stall for too longGravatar Michal Hocko 1-0/+10
2016-10-07mm: consolidate warn_alloc_failed usersGravatar Michal Hocko 1-15/+12
2016-10-07mm, page_alloc: pull no_progress_loops update to should_reclaim_retry()Gravatar Vlastimil Babka 1-14/+14
2016-10-07mm, compaction: restrict full priority to non-costly ordersGravatar Vlastimil Babka 1-1/+4
2016-10-07mm, compaction: more reliably increase direct compaction priorityGravatar Vlastimil Babka 1-14/+19
2016-10-07Revert "mm, oom: prevent premature OOM killer invocation for high order request"Gravatar Vlastimil Babka 1-2/+49
2016-10-07mm: introduce arch_reserved_kernel_pages()Gravatar Srikar Dronamraju 1-0/+12
2016-10-07mm: use zonelist name instead of using hardcoded indexGravatar Aneesh Kumar K.V 1-4/+4
2016-10-07mm/page_ext: support extra space allocation by page_ext userGravatar Joonsoo Kim 1-1/+1
2016-10-07mm/debug_pagealloc.c: don't allocate page_ext if we don't use guard pageGravatar Joonsoo Kim 1-1/+7
2016-10-07mm/debug_pagealloc.c: clean-up guard page handling codeGravatar Joonsoo Kim 1-16/+18
2016-10-07mm: fix set pageblock migratetype in deferred struct page initGravatar Xishi Qiu 1-7/+13
2016-10-07mem-hotplug: fix node spanned pages when we have a movable nodeGravatar Xishi Qiu 1-31/+23
2016-10-07mm, compaction: require only min watermarks for non-costly ordersGravatar Vlastimil Babka 1-2/+7
2016-10-07mm, compaction: use proper alloc_flags in __compaction_suitable()Gravatar Vlastimil Babka 1-1/+1
2016-09-01mm, vmscan: only allocate and reclaim from zones with pages managed by the bu...Gravatar Mel Gorman 1-2/+2
2016-09-01mm, oom: prevent premature OOM killer invocation for high order requestGravatar Michal Hocko 1-49/+2
2016-08-11proc, meminfo: use correct helpers for calculating LRU sizes in meminfoGravatar Mel Gorman 1-1/+1