index
:
platform_external_jemalloc_new
android10-c2f2-release
android10-c2f2-s1-release
android10-c2f2-s2-release
android10-d4-release
android10-d4-s1-release
android10-dev
android10-gsi
android10-mainline-a-release
android10-mainline-media-release
android10-mainline-networking-release
android10-mainline-release
android10-mainline-resolv-release
android10-mainline-tzdata-release
android10-qpr1-b-release
android10-qpr1-b-s1-release
android10-qpr1-c-release
android10-qpr1-c-s1-release
android10-qpr1-d-release
android10-qpr1-mainline-release
android10-qpr1-release
android10-qpr2-release
android10-qpr2-s1-release
android10-qpr2-s2-release
android10-qpr2-s3-release
android10-qpr2-s4-release
android10-qpr3-release
android10-qpr3-s1-release
android10-release
android10-s1-release
android10-s2-release
android10-s3-release
android10-security-release
android10-tests-release
android11-dev
android11-gsi
android11-mainline-release
android11-release
android11-tests-release
master
master-cuttlefish-testing-release
master-plus-llvm
ndk-sysroot-r21
sdk-release
simpleperf-release
upstream-dev
upstream-jemalloc
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
base.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add UNUSED to avoid compiler warnings.
Qi Wang
2018-04-16
1
-7
/
+7
*
Add opt.thp which allows explicit hugepage usage.
Qi Wang
2018-03-08
1
-1
/
+2
*
Fix base allocator THP auto mode locking and stats.
Qi Wang
2017-11-09
1
-21
/
+16
*
Use hugepage alignment for base allocator.
Qi Wang
2017-11-03
1
-2
/
+2
*
metadata_thp: auto mode adjustment for a0.
Qi Wang
2017-11-01
1
-19
/
+22
*
Enable a0 metadata thp on the 3rd base block.
Qi Wang
2017-10-05
1
-21
/
+64
*
Add stats for metadata_thp.
Qi Wang
2017-08-30
1
-8
/
+43
*
Change opt.metadata_thp to [disabled,auto,always].
Qi Wang
2017-08-30
1
-13
/
+33
*
Implement opt.metadata_thp
Qi Wang
2017-08-11
1
-14
/
+29
*
Check arena in current context in pre_reentrancy.
Qi Wang
2017-06-23
1
-6
/
+7
*
Set reentrancy when invoking customized extent hooks.
Qi Wang
2017-06-23
1
-15
/
+24
*
Header refactoring: Pull size helpers out of jemalloc module.
David Goldblatt
2017-05-31
1
-7
/
+8
*
Header refactoring: unify and de-catchall extent_mmap module.
David Goldblatt
2017-05-31
1
-0
/
+1
*
Header refactoring: unify and de-catchall mutex module
David Goldblatt
2017-05-24
1
-0
/
+1
*
Do not hold the base mutex while calling extent hooks.
Jason Evans
2017-05-23
1
-0
/
+6
*
Allow mutexes to take a lock ordering enum at construction.
David Goldblatt
2017-05-19
1
-1
/
+2
*
Header refactoring: move assert.h out of the catch-all
David Goldblatt
2017-04-18
1
-0
/
+2
*
Track extent structure serial number (esn) in extent_t.
Jason Evans
2017-04-17
1
-28
/
+43
*
Allocate increasingly large base blocks.
Jason Evans
2017-04-17
1
-26
/
+36
*
Update base_unmap() to match extent_dalloc_wrapper().
Jason Evans
2017-04-17
1
-10
/
+10
*
Header refactoring: Split up jemalloc_internal.h
David Goldblatt
2017-04-11
1
-1
/
+2
*
Make base_t's extent_hooks field C11-atomic
David Goldblatt
2017-04-05
1
-10
/
+4
*
Convert extent_t's usize to szind.
Jason Evans
2017-03-22
1
-4
/
+5
*
Disentangle arena and extent locking.
Jason Evans
2017-02-01
1
-2
/
+3
*
Replace tabs following #define with spaces.
Jason Evans
2017-01-20
1
-1
/
+1
*
Remove extraneous parens around return arguments.
Jason Evans
2017-01-20
1
-14
/
+14
*
Update brace style.
Jason Evans
2017-01-20
1
-52
/
+47
*
Remove leading blank lines from function bodies.
Jason Evans
2017-01-13
1
-9
/
+0
*
Implement per arena base allocators.
Jason Evans
2016-12-26
1
-119
/
+288
*
Add extent serial numbers.
Jason Evans
2016-11-15
1
-1
/
+11
*
Remove all vestiges of chunks.
Jason Evans
2016-10-12
1
-6
/
+6
*
Rename most remaining *chunk* APIs to *extent*.
Jason Evans
2016-06-05
1
-4
/
+4
*
Move slabs out of chunks.
Jason Evans
2016-06-05
1
-2
/
+1
*
Use huge size class infrastructure for large size classes.
Jason Evans
2016-06-05
1
-1
/
+2
*
Allow chunks to not be naturally aligned.
Jason Evans
2016-06-03
1
-1
/
+1
*
Add extent_dirty_[gs]et().
Jason Evans
2016-06-03
1
-1
/
+1
*
Merge chunk_alloc_base() into its only caller.
Jason Evans
2016-06-03
1
-1
/
+9
*
Replace extent_tree_szad_* with extent_heap_*.
Jason Evans
2016-06-03
1
-12
/
+23
*
Replace extent_achunk_[gs]et() with extent_slab_[gs]et().
Jason Evans
2016-06-03
1
-2
/
+2
*
Add extent_active_[gs]et().
Jason Evans
2016-06-03
1
-2
/
+2
*
Rename extent_node_t to extent_t.
Jason Evans
2016-05-16
1
-37
/
+37
*
Remove Valgrind support.
Jason Evans
2016-05-13
1
-3
/
+0
*
Resolve bootstrapping issues when embedded in FreeBSD libc.
Jason Evans
2016-05-10
1
-22
/
+23
*
Convert base_mtx locking protocol comments to assertions.
Jason Evans
2016-04-17
1
-10
/
+12
*
Add witness, a simple online locking validator.
Jason Evans
2016-04-14
1
-13
/
+13
*
Implement chunk hook support for page run commit/decommit.
Jason Evans
2015-08-07
1
-1
/
+1
*
Generalize chunk management hooks.
Jason Evans
2015-08-03
1
-2
/
+2
*
Fix two valgrind integration regressions.
Jason Evans
2015-06-22
1
-1
/
+1
*
Clarify relationship between stats.resident and stats.mapped.
Jason Evans
2015-05-29
1
-0
/
+2
*
Add the "stats.allocated" mallctl.
Jason Evans
2015-03-23
1
-8
/
+21
[next]