summaryrefslogtreecommitdiffstats
path: root/mm/slab.c
AgeCommit message (Expand)AuthorFilesLines
2015-10-01mm/slab: fix unexpected index mapping result of kmalloc_size(INDEX_NODE+1)Joonsoo Kim1-3/+10
2015-09-08mm: rename alloc_pages_exact_node() to __alloc_pages_node()Vlastimil Babka1-1/+1
2015-09-04slab: infrastructure for bulk object allocation and freeingChristoph Lameter1-0/+13
2015-08-21mm: make page pfmemalloc check more robustMichal Hocko1-2/+2
2015-06-24slab: correct size_index table before replacing the bootstrap kmem_cache_nodeDaniel Sanders1-0/+1
2015-04-14mm: remove GFP_THISNODEDavid Rientjes1-4/+18
2015-02-12slub: make dead caches discard free slabs immediatelyVladimir Davydov1-2/+2
2015-02-12slab: link memcg caches of the same kind into a listVladimir Davydov1-8/+5
2014-12-13slab: fix cpuset check in fallback_allocVladimir Davydov1-1/+1
2014-12-13memcg: fix possible use-after-free in memcg_kmem_get_cache()Vladimir Davydov1-0/+2
2014-12-11Merge branch 'for-3.19' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/c...Linus Torvalds1-1/+1
2014-12-10slab: improve checking for invalid gfp_flagsAndrew Morton1-1/+4
2014-12-10slab: print slabinfo header in seq showVladimir Davydov1-7/+1
2014-12-10mm: slab/slub: coding style: whitespaces and tabs mixtureLQYMGT1-5/+5
2014-12-03slab: fix nodeid bounds check for non-contiguous node IDsPaul Mackerras1-1/+1
2014-10-27cpuset: simplify cpuset_node_allowed APIVladimir Davydov1-1/+1
2014-10-14mm/slab: fix unaligned access on sparc64Joonsoo Kim1-1/+1
2014-10-09mm/slab.c: use __seq_open_private() instead of seq_open()Rob Jones1-13/+9
2014-10-09mm/slab: use percpu allocator for cpu cacheJoonsoo Kim1-164/+75
2014-10-09mm/slab: support slab mergeJoonsoo Kim1-0/+26
2014-10-09mm/slab: factor out unlikely part of cache_free_alien()Joonsoo Kim1-17/+21
2014-10-09mm/slab: noinline __ac_put_obj()Joonsoo Kim1-2/+2
2014-10-09mm/slab: move cache_flusharray() out of unlikely.text sectionJoonsoo Kim1-1/+1
2014-10-09mm/sl[ao]b: always track caller in kmalloc_(node_)track_caller()Joonsoo Kim1-18/+0
2014-09-27Merge branch 'for-3.17-fixes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-2/+2
2014-09-26mm, slab: initialize object alignment on cache creationDavid Rientjes1-9/+2
2014-09-24cpuset: PF_SPREAD_PAGE and PF_SPREAD_SLAB should be atomic flagsZefan Li1-2/+2
2014-08-08Revert "slab: remove BAD_ALIEN_MAGIC"Joonsoo Kim1-1/+3
2014-08-06mm/slab.c: fix commentsWang Sheng-Hui1-4/+5
2014-08-06slab: change int to size_t for representing allocation sizeJoonsoo Kim1-4/+4
2014-08-06slab: remove BAD_ALIEN_MAGICJoonsoo Kim1-3/+1
2014-08-06slab: remove a useless lockdep annotationJoonsoo Kim1-153/+0
2014-08-06slab: destroy a slab without holding any alien cache lockJoonsoo Kim1-7/+13
2014-08-06slab: use the lock on alien_cache, instead of the lock on array_cacheJoonsoo Kim1-17/+8
2014-08-06slab: introduce alien_cacheJoonsoo Kim1-41/+67
2014-08-06slab: factor out initialization of array cacheJoonsoo Kim1-14/+19
2014-08-06slab: defer slab_destroy in free_block()Joonsoo Kim1-19/+41
2014-08-06slab: move up code to get kmem_cache_node in free_block()Joonsoo Kim1-2/+1
2014-08-06slab: add unlikely macro to help compilerJoonsoo Kim1-1/+1
2014-08-06slab: use get_node() and kmem_cache_node() functionsChristoph Lameter1-93/+80
2014-08-06mm/slab.c: add __init to init_lock_keysFabian Frederick1-2/+2
2014-06-23slab: fix oops when reading /proc/slab_allocatorsJoonsoo Kim1-19/+71
2014-06-04memcg, slab: merge memcg_{bind,release}_pages to memcg_{un}charge_slabVladimir Davydov1-2/+0
2014-06-04slab: get_online_mems for kmem_cache_{create,destroy,shrink}Vladimir Davydov1-24/+2
2014-06-04sl[au]b: charge slabs to kmemcg explicitlyVladimir Davydov1-1/+6
2014-06-04mm, slab: suppress out of memory warning unless debug is enabledDavid Rientjes1-2/+8
2014-05-05slab: Fix off by one in object max number tests.David Miller1-1/+1
2014-05-05slab: fix the type of the index on freelist index accessorJoonsoo Kim1-2/+2
2014-04-13Merge branch 'slab/next' of git://git.kernel.org/pub/scm/linux/kernel/git/pen...Linus Torvalds1-76/+107
2014-04-11mm: slab/slub: use page->list consistently instead of page->lruDave Hansen1-2/+2
2014-04-07mm, mempolicy: remove per-process flagDavid Rientjes1-2/+2
2014-04-07mm, mempolicy: rename slab_node for clarityDavid Rientjes1-2/+2
2014-04-03mm: optimize put_mems_allowed() usageMel Gorman1-2/+2
2014-04-01mm/slab.c: cleanup outdated comments and unify variables namingJianyu Zhan1-34/+32
2014-02-08slab: Make allocations with GFP_ZERO slightly more efficientJoe Perches1-8/+8
2014-02-08slab: make more slab management structure off the slabJoonsoo Kim1-1/+1
2014-02-08slab: introduce byte sized index for the freelist of a slabJoonsoo Kim1-9/+9
2014-02-08slab: restrict the number of objects in a slabJoonsoo Kim1-0/+21
2014-02-08slab: introduce helper functions to get/set free objectJoonsoo Kim1-7/+13
2014-02-08slab: factor out calculate nr objects in cache_estimateJoonsoo Kim1-21/+27
2014-01-31mm: Fix warning on make htmldocs caused by slab.cMasanari Iida1-1/+1
2013-11-22Merge branch 'slab/next' of git://git.kernel.org/pub/scm/linux/kernel/git/pen...Linus Torvalds1-354/+217
2013-11-13memcg, kmem: rename cache_from_memcg to cache_from_memcg_idxQiang Huang1-1/+1
2013-10-30slab: replace non-existing 'struct freelist *' with 'void *'Joonsoo Kim1-5/+5
2013-10-30slab: fix to calm down kmemleak warningJoonsoo Kim1-8/+0
2013-10-24slab: rename slab_bufctl to slab_freelistJoonsoo Kim1-6/+6
2013-10-24slab: remove useless statement for checking pfmemallocJoonsoo Kim1-6/+3
2013-10-24slab: use struct page for slab managementJoonsoo Kim1-163/+143
2013-10-24slab: replace free and inuse in struct slab with newly introduced activeJoonsoo Kim1-29/+25
2013-10-24slab: remove SLAB_LIMITJoonsoo Kim1-7/+0
2013-10-24slab: remove kmem_bufctl_tJoonsoo Kim1-31/+11
2013-10-24slab: change the management method of free objects of the slabJoonsoo Kim1-64/+30
2013-10-24slab: use __GFP_COMP flag for allocating slab pagesJoonsoo Kim1-34/+9
2013-10-24slab: use well-defined macro, virt_to_slab()Joonsoo Kim1-5/+2
2013-10-24slab: overloading the RCU head over the LRU for RCU freeJoonsoo Kim1-38/+30
2013-10-24slab: remove cachep in struct slab_rcuJoonsoo Kim1-3/+1
2013-10-24slab: remove nodeid in struct slabJoonsoo Kim1-7/+4
2013-10-24slab: remove colouroff in struct slabJoonsoo Kim1-2/+0
2013-10-24slab: change return type of kmem_getpages() to struct pageJoonsoo Kim1-30/+30
2013-10-24slab: correct pfmemalloc checkJoonsoo Kim1-3/+5
2013-07-14kernel: delete __cpuinit usage from all core kernel filesPaul Gortmaker1-5/+5
2013-07-14Merge branch 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-28/+23
2013-07-08mm/slab: Give s_next and s_stop slab-specific namesWanpeng Li1-2/+2
2013-07-07slab: fix init_lock_keysChristoph Lameter1-1/+1
2013-07-07mm/slab: Sharing s_next and s_stop between slab and slubWanpeng Li1-10/+0
2013-07-07mm/slab: Fix drain freelist excessivelyWanpeng Li1-3/+9
2013-06-08mm, slab: moved kmem_cache_alloc_node comment to correct placeZhouping Liu1-12/+11
2013-05-07Merge branch 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-456/+334
2013-05-07Merge branch 'slab/next' into slab/for-linusPekka Enberg1-456/+334
2013-05-01mm: slab: Verify the nodeid passed to ____cache_alloc_nodeAaron Tomlin1-0/+1
2013-04-29mm: Convert print_symbol to %pSRJoe Perches1-5/+3
2013-02-06slab: Fixup CONFIG_PAGE_ALLOC/DEBUG_SLAB_LEAK sectionsChristoph Lameter1-14/+15
2013-02-01slab: Common definition for kmem_cache_nodeChristoph Lameter1-17/+0
2013-02-01slab: Rename list3/l3 to nodeChristoph Lameter1-258/+258
2013-02-01slab: Common Kmalloc cache determinationChristoph Lameter1-37/+3
2013-02-01slab: Common function to create the kmalloc arrayChristoph Lameter1-47/+1
2013-02-01slab: Common definition for the array of kmalloc cachesChristoph Lameter1-8/+0
2013-02-01slab: Rename nodelists to nodeChristoph Lameter1-68/+67
2013-02-01slab: Common name for the per node structuresChristoph Lameter1-44/+43
2013-02-01slab: Use common kmalloc_index/kmalloc_size functionsChristoph Lameter1-93/+76
2013-01-21taint: add explicit flag to show whether lock dep is still OK.Rusty Russell1-1/+1
2012-12-18memcg: add comments clarifying aspects of cache attribute propagationGlauber Costa1-0/+1
2012-12-18slab: propagate tunable valuesGlauber Costa1-3/+41
2012-12-18memcg: destroy memcg cachesGlauber Costa1-0/+3
2012-12-18sl[au]b: allocate objects from memcg cacheGlauber Costa1-1/+5
2012-12-18sl[au]b: always get the cache from its page in kmem_cache_free()Glauber Costa1-1/+5
2012-12-18slab: annotate on-slab caches nodelist locksGlauber Costa1-1/+33
2012-12-11mm/sl[aou]b: Common alignment codeChristoph Lameter1-20/+0
2012-12-11slab: Use the new create_boot_cache function to simplify bootstrapChristoph Lameter1-33/+16
2012-12-11mm, sl[au]b: create common functions for boot slab creationChristoph Lameter1-34/+14
2012-12-11slab: Simplify bootstrapChristoph Lameter1-8/+13
2012-11-15mm: fix slab.c kernel-doc warningsRandy Dunlap1-4/+1
2012-10-31slab: Ignore internal flags in cache creationGlauber Costa1-22/+0
2012-10-31mm/sl[aou]b: Move common kmem_cache_size() to slab.hEzequiel Garcia1-6/+0
2012-10-24sl[au]b: Process slabinfo_show in common codeGlauber Costa1-11/+15
2012-10-24mm/sl[au]b: Move print_slabinfo_header to slab_common.cGlauber Costa1-24/+0
2012-10-24mm/sl[au]b: Move slabinfo processing to slab_common.cGlauber Costa1-59/+13
2012-10-07Merge branch 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-205/+143
2012-10-03Merge branch 'slab/tracing' into slab/for-linusPekka Enberg1-1/+1
2012-10-03Merge branch 'slab/common-for-cgroups' into slab/for-linusPekka Enberg1-150/+103
2012-10-03Merge branch 'slab/next' into slab/for-linusPekka Enberg1-55/+40
2012-10-03slab: Fix build failure in __kmem_cache_create()Tetsuo Handa1-2/+3
2012-10-02Merge branch 'for-3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-1/+1
2012-09-29Revert "mm/slab: Fix kmem_cache_alloc_node_trace() declaration"Pekka Enberg1-4/+4
2012-09-25mm/slab: Fix kmem_cache_alloc_node_trace() declarationEzequiel Garcia1-4/+4
2012-09-25mm/slab: Fix typo _RET_IP -> _RET_IP_Ezequiel Garcia1-1/+1
2012-09-25mm, slab: Rename __cache_alloc() -> slab_alloc()Ezequiel Garcia1-7/+7
2012-09-25mm, slab: Match SLAB and SLUB kmem_cache_alloc_xxx_trace() prototypeEzequiel Garcia1-5/+5
2012-09-25mm, slab: Replace 'caller' type, void* -> unsigned longEzequiel Garcia1-26/+24
2012-09-25mm, slab: Remove silly function slab_buffer_size()Ezequiel Garcia1-10/+2
2012-09-19mm, sl[au]b: Taint kernel when we detect a corrupted slabDave Jones1-0/+1
2012-09-19slab: Only define slab_error for DEBUGChristoph Lameter1-0/+2
2012-09-17slab: fix starting index for finding another objectJoonsoo Kim1-1/+1
2012-09-17slab: do ClearSlabPfmemalloc() for all pages of slabMel Gorman1-2/+2
2012-09-11slab: fix the DEADLOCK issue on l3 alien lockMichael Wang1-3/+3
2012-09-05mm/sl[aou]b: Move kmem_cache refcounting to common codeChristoph Lameter1-1/+0
2012-09-05mm/sl[aou]b: Shrink __kmem_cache_create() parameter listsChristoph Lameter1-40/+33
2012-09-05mm/sl[aou]b: Move kmem_cache allocations into common codeChristoph Lameter1-18/+16
2012-09-05mm/sl[aou]b: Get rid of __kmem_cache_destroyChristoph Lameter1-25/+21
2012-09-05mm/sl[aou]b: Move freeing of kmem_cache structure to common codeChristoph Lameter1-1/+0
2012-09-05mm/sl[aou]b: Use "kmem_cache" name for slab cache with kmem_cache structChristoph Lameter1-35/+37
2012-09-05mm/sl[aou]b: Extract a common function for kmem_cache_destroyChristoph Lameter1-42/+3
2012-09-05mm/sl[aou]b: Move list_add() to slab_common.cChristoph Lameter1-2/+5
2012-08-29mm, slab: lock the correct nodelist after reenabling irqsDavid Rientjes1-0/+1
2012-08-21workqueue: make deferrable delayed_work initializer names consistentTejun Heo1-1/+1
2012-08-17mm, slab: remove page_get_cacheDavid Rientjes1-6/+0
2012-08-16slab: do not call compound_head() in page_get_cache()Michel Lespinasse1-1/+0
2012-07-31mm: micro-optimise slab to avoid a function callMel Gorman1-2/+26
2012-07-31mm: introduce __GFP_MEMALLOC to allow access to emergency reservesMel Gorman1-1/+1
2012-07-31mm: sl[au]b: add knowledge of PFMEMALLOC reserve pagesMel Gorman1-18/+174
2012-07-09mm, sl[aou]b: Move kmem_cache_create mutex handling to common codeChristoph Lameter1-51/+1
2012-07-09mm, sl[aou]b: Use a common mutex definitionChristoph Lameter1-57/+51
2012-07-09mm, sl[aou]b: Common definition for boot state of the slab allocatorsChristoph Lameter1-31/+14
2012-07-09mm, sl[aou]b: Extract common code for kmem_cache_create()Christoph Lameter1-15/+9
2012-07-02slab: move FULL state transition to an initcallGlauber Costa1-4/+4
2012-07-02slab: Fix a typo in commit 8c138b "slab: Get rid of obj_size macro"Feng Tang1-1/+1
2012-07-02mm, slab: Build fix for recent kmem_cache changesThierry Reding1-1/+1
2012-07-02slab: rename gfpflags to allocflagsGlauber Costa1-5/+5
2012-06-20slab/mempolicy: always use local policy from interrupt contextAndi Kleen1-2/+2
2012-06-14slab: Get rid of obj_size macroChristoph Lameter1-26/+21
2012-06-14mm, sl[aou]b: Extract common fields from struct kmem_cacheChristoph Lameter1-59/+58
2012-06-14slab: Remove some accessorsChristoph Lameter1-27/+8
2012-06-14slab: Use page struct fields instead of castingChristoph Lameter1-4/+4
2012-03-28Merge branch 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-4/+52
2012-03-21cpuset: mm: reduce large amounts of memory barrier related damage v3Mel Gorman1-5/+8
2012-03-10mm: SLAB Out-of-memory diagnosticsRafael Aquini1-1/+50
2012-01-23slab, cleanup: remove unneeded returnZhao Jin1-3/+2
2012-01-11Merge branch 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-12/+27
2012-01-11Merge branch 'slab/urgent' into slab/for-linusPekka Enberg1-1/+4
2012-01-09tracing/mm: Move include of trace/events/kmem.h out of header into slab.cSteven Rostedt1-0/+2
2011-12-05slab, lockdep: Fix silly bugPeter Zijlstra1-1/+4
2011-11-16slab: add taint flag outputting to debug paths.Dave Jones1-4/+5
2011-11-10slab: introduce slab_max_order kernel parameterDavid Rientjes1-3/+17
2011-11-10slab: rename slab_break_gfp_order to slab_max_orderDavid Rientjes1-5/+5
2011-09-27mm: restrict access to slab files under procfs and sysfsVasiliy Kulikov1-1/+1
2011-09-19Merge branch 'slab/urgent' into slab/nextPekka Enberg1-24/+75
2011-08-04slab, lockdep: Annotate the locks before using themPeter Zijlstra1-3/+3
2011-08-04slab, lockdep: Annotate slab -> rcu -> debug_object -> slabPeter Zijlstra1-18/+68
2011-07-31slab: use print_hex_dumpSebastian Andrzej Siewior1-11/+6
2011-07-31slab: use NUMA_NO_NODEAndrew Morton1-1/+1
2011-07-28slab: remove one NR_CPUS dependencyEric Dumazet1-2/+3
2011-07-22Merge branch 'slab-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-8/+9
2011-07-22slab: fix DEBUG_SLAB warningTetsuo Handa1-1/+2
2011-07-20slab: shrink sizeof(struct kmem_cache)Eric Dumazet1-4/+6
2011-07-18slab: fix DEBUG_SLAB buildHugh Dickins1-4/+2
2011-06-03SLAB: Record actual last user of freed objects.Suleiman Souhlal1-4/+5
2011-05-20sanitize <linux/prefetch.h> usageLinus Torvalds1-0/+1
2011-03-31Fix common misspellingsLucas De Marchi1-2/+2
2011-03-22mm: notifier_from_errno() cleanupPrarit Bhargava1-1/+1
2011-03-11Merge branch 'slab/urgent' into slab/nextPekka Enberg1-4/+4
2011-03-11Merge branch 'slab/rcu' into slab/nextPekka Enberg1-18/+21
2011-03-11slab,rcu: don't assume the size of struct rcu_headLai Jiangshan1-18/+21
2011-02-14Revert "slab: Fix missing DEBUG_SLAB last user"Pekka Enberg1-4/+4
2011-01-23mm: Remove support for kmem_cache_name()Christoph Lameter1-8/+0
2011-01-15mm/slab.c: make local symbols staticH Hartley Sweeten1-3/+3
2011-01-10Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/pen...Linus Torvalds1-15/+23
2011-01-07Merge branch 'for-2.6.38' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...Linus Torvalds1-3/+3
2011-01-07Merge branch 'for-2.6.38' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-1/+1
2011-01-07kernel: kmem_ptr_validate considered harmfulNick Piggin1-31/+1
2010-12-17core: Replace __get_cpu_var with __this_cpu_read if not used for an address.Christoph Lameter1-3/+3