aboutsummaryrefslogtreecommitdiffstats
path: root/mm/percpu.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2020-01-20bitmap: genericize percpu bitmap region iteratorsDennis Zhou1-45/+16
2019-09-04percpu: Use struct_size() helperGustavo A. R. Silva1-1/+1
2019-07-23percpu: fix typo in pcpu_setup_first_chunk() commentChristophe JAILLET1-1/+1
2019-07-04percpu: Make pcpu_setup_first_chunk() void functionKefeng Wang1-12/+7
2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 428Thomas Gleixner1-2/+1
2019-05-13Merge branch 'for-5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpuLinus Torvalds1-162/+387
2019-05-08percpu: remove spurious lock dependency between percpu and schedJohn Sperbeck1-1/+5
2019-03-18percpu: stop printing kernel addressesMatteo Croce1-4/+4
2019-03-13percpu: use chunk scan_hint to skip some scanningDennis Zhou1-9/+27
2019-03-13percpu: convert chunk hints to be based on pcpu_block_mdDennis Zhou1-67/+53
2019-03-13percpu: make pcpu_block_md genericDennis Zhou1-7/+13
2019-03-13percpu: use block scan_hint to only scan forwardDennis Zhou1-6/+17
2019-03-13percpu: remember largest area skipped during allocationDennis Zhou1-2/+99
2019-03-13percpu: add block level scan_hintDennis Zhou1-7/+94
2019-03-13percpu: set PCPU_BITMAP_BLOCK_SIZE to PAGE_SIZEDennis Zhou1-66/+44
2019-03-13percpu: relegate chunks unusable when failing small allocationsDennis Zhou1-9/+26
2019-03-13percpu: manage chunks based on contig_bits instead of free_bytesDennis Zhou1-1/+1
2019-03-13percpu: introduce helper to determine if two regions overlapDennis Zhou1-4/+24
2019-03-13percpu: do not search past bitmap when allocating an areaDennis Zhou1-1/+2
2019-03-13percpu: update free path with correct new free regionDennis Zhou1-1/+1
2019-03-12memblock: drop memblock_alloc_*_nopanic() variantsMike Rapoport1-7/+4
2019-03-12mm/percpu: add checks for the return value of memblock_alloc*()Mike Rapoport1-17/+56
2019-02-23percpu: use nr_groups as check conditionPeng Fan1-1/+1
2018-11-01Merge branch 'for-4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpuLinus Torvalds1-1/+1
2018-10-31memblock: stop using implicit alignment to SMP_CACHE_BYTESMike Rapoport1-18/+20
2018-10-31mm: remove include/linux/bootmem.hMike Rapoport1-1/+1
2018-10-31memblock: remove _virt from APIs returning virtual addressMike Rapoport1-14/+14
2018-10-07percpu: stop leaking bitmap metadata blocksMike Rapoport1-0/+1
2018-09-12mm: percpu: remove unnecessary unlikely()Igor Stoppa1-1/+1
2018-08-22/proc/meminfo: add percpu populated pages countDennis Zhou (Facebook)1-0/+29
2018-04-02Merge tag 'arch-removal' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-genericLinus Torvalds1-4/+0
2018-03-26treewide: simplify Kconfig dependencies for removed archsArnd Bergmann1-4/+0
2018-03-19mm: Allow to kill tasks doing pcpu_alloc() and waiting for pcpu_balance_workfn()Kirill Tkhai1-2/+11
2018-03-19percpu: include linux/sched.h for cond_resched()Tejun Heo1-0/+1
2018-02-23percpu: add a schedule point in pcpu_balance_workfn()Eric Dumazet1-0/+1
2018-02-18percpu: allow select gfp to be passed to underlying allocatorsDennis Zhou1-9/+7
2018-02-18percpu: add __GFP_NORETRY semantics to the percpu balancing pathDennis Zhou1-17/+27
2018-02-18percpu: match chunk allocator declarations with definitionsDennis Zhou1-2/+4
2017-11-27percpu: hack to let the CRIS architecture to boot until they clean upNicolas Pitre1-0/+4
2017-11-15Merge branch 'for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpuLinus Torvalds1-1/+2
2017-10-19mm, percpu: add support for __GFP_NOWARN flagDaniel Borkmann1-5/+10
2017-10-04percpu: don't forget to free the temporary struct pcpu_alloc_infoNicolas Pitre1-1/+2
2017-09-28percpu: fix iteration to prevent skipping over blockDennis Zhou1-0/+4
2017-07-26percpu: update header to contain bitmap allocator explanation.Dennis Zhou (Facebook)1-14/+18
2017-07-26percpu: update pcpu_find_block_fit to use an iteratorDennis Zhou (Facebook)1-20/+92
2017-07-26percpu: use metadata blocks to update the chunk contig hintDennis Zhou (Facebook)1-10/+70
2017-07-26percpu: update free path to take advantage of contig hintsDennis Zhou (Facebook)1-3/+65
2017-07-26percpu: update alloc path to only scan if contig hints are brokenDennis Zhou (Facebook)1-3/+56
2017-07-26percpu: keep track of the best offset for contig hintsDennis Zhou (Facebook)1-1/+12
2017-07-26percpu: skip chunks if the alloc does not fit in the contig hintDennis Zhou (Facebook)1-2/+16