summaryrefslogtreecommitdiffstats
path: root/mm/percpu.c
Commit message (Expand)AuthorAgeFilesLines
* treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 428Thomas Gleixner2019-06-051-2/+1
* Merge branch 'for-5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/denni...Linus Torvalds2019-05-131-162/+387
|\
| * percpu: remove spurious lock dependency between percpu and schedJohn Sperbeck2019-05-081-1/+5
| * percpu: use chunk scan_hint to skip some scanningDennis Zhou2019-03-131-9/+27
| * percpu: convert chunk hints to be based on pcpu_block_mdDennis Zhou2019-03-131-67/+53
| * percpu: make pcpu_block_md genericDennis Zhou2019-03-131-7/+13
| * percpu: use block scan_hint to only scan forwardDennis Zhou2019-03-131-6/+17
| * percpu: remember largest area skipped during allocationDennis Zhou2019-03-131-2/+99
| * percpu: add block level scan_hintDennis Zhou2019-03-131-7/+94
| * percpu: set PCPU_BITMAP_BLOCK_SIZE to PAGE_SIZEDennis Zhou2019-03-131-66/+44
| * percpu: relegate chunks unusable when failing small allocationsDennis Zhou2019-03-131-9/+26
| * percpu: manage chunks based on contig_bits instead of free_bytesDennis Zhou2019-03-131-1/+1
| * percpu: introduce helper to determine if two regions overlapDennis Zhou2019-03-131-4/+24
| * percpu: do not search past bitmap when allocating an areaDennis Zhou2019-03-131-1/+2
| * percpu: update free path with correct new free regionDennis Zhou2019-03-131-1/+1
* | percpu: stop printing kernel addressesMatteo Croce2019-03-181-4/+4
|/
* memblock: drop memblock_alloc_*_nopanic() variantsMike Rapoport2019-03-121-7/+4
* mm/percpu: add checks for the return value of memblock_alloc*()Mike Rapoport2019-03-121-17/+56
* percpu: use nr_groups as check conditionPeng Fan2019-02-231-1/+1
* Merge branch 'for-4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/denn...Linus Torvalds2018-11-011-1/+1
|\
| * mm: percpu: remove unnecessary unlikely()Igor Stoppa2018-09-121-1/+1
* | memblock: stop using implicit alignment to SMP_CACHE_BYTESMike Rapoport2018-10-311-18/+20
* | mm: remove include/linux/bootmem.hMike Rapoport2018-10-311-1/+1
* | memblock: remove _virt from APIs returning virtual addressMike Rapoport2018-10-311-14/+14
* | percpu: stop leaking bitmap metadata blocksMike Rapoport2018-10-071-0/+1
|/
* /proc/meminfo: add percpu populated pages countDennis Zhou (Facebook)2018-08-221-0/+29
* Merge tag 'arch-removal' of git://git.kernel.org/pub/scm/linux/kernel/git/arn...Linus Torvalds2018-04-021-4/+0
|\
| * treewide: simplify Kconfig dependencies for removed archsArnd Bergmann2018-03-261-4/+0
* | mm: Allow to kill tasks doing pcpu_alloc() and waiting for pcpu_balance_workfn()Kirill Tkhai2018-03-191-2/+11
* | percpu: include linux/sched.h for cond_resched()Tejun Heo2018-03-191-0/+1
* | percpu: add a schedule point in pcpu_balance_workfn()Eric Dumazet2018-02-231-0/+1
* | percpu: allow select gfp to be passed to underlying allocatorsDennis Zhou2018-02-181-9/+7
* | percpu: add __GFP_NORETRY semantics to the percpu balancing pathDennis Zhou2018-02-181-17/+27
* | percpu: match chunk allocator declarations with definitionsDennis Zhou2018-02-181-2/+4
|/
* percpu: hack to let the CRIS architecture to boot until they clean upNicolas Pitre2017-11-271-0/+4
* Merge branch 'for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/p...Linus Torvalds2017-11-151-1/+2
|\
| * percpu: don't forget to free the temporary struct pcpu_alloc_infoNicolas Pitre2017-10-041-1/+2
* | mm, percpu: add support for __GFP_NOWARN flagDaniel Borkmann2017-10-191-5/+10
|/
* percpu: fix iteration to prevent skipping over blockDennis Zhou2017-09-281-0/+4
* percpu: update header to contain bitmap allocator explanation.Dennis Zhou (Facebook)2017-07-261-14/+18
* percpu: update pcpu_find_block_fit to use an iteratorDennis Zhou (Facebook)2017-07-261-20/+92
* percpu: use metadata blocks to update the chunk contig hintDennis Zhou (Facebook)2017-07-261-10/+70
* percpu: update free path to take advantage of contig hintsDennis Zhou (Facebook)2017-07-261-3/+65
* percpu: update alloc path to only scan if contig hints are brokenDennis Zhou (Facebook)2017-07-261-3/+56
* percpu: keep track of the best offset for contig hintsDennis Zhou (Facebook)2017-07-261-1/+12
* percpu: skip chunks if the alloc does not fit in the contig hintDennis Zhou (Facebook)2017-07-261-2/+16
* percpu: add first_bit to keep track of the first free in the bitmapDennis Zhou (Facebook)2017-07-261-2/+15
* percpu: introduce bitmap metadata blocksDennis Zhou (Facebook)2017-07-261-12/+216
* percpu: replace area map allocator with bitmapDennis Zhou (Facebook)2017-07-261-456/+273
* percpu: generalize bitmap (un)populated iteratorsDennis Zhou (Facebook)2017-07-261-24/+25