cregit-Linux how code gets into the kernel

Release 4.7 tools/testing/radix-tree/linux.c

#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include <unistd.h>
#include <assert.h>

#include <linux/mempool.h>
#include <linux/slab.h>
#include <urcu/uatomic.h>


int nr_allocated;


void *mempool_alloc(mempool_t *pool, int gfp_mask) { return pool->alloc(gfp_mask, pool->data); }

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox25100.00%1100.00%
Total25100.00%1100.00%


void mempool_free(void *element, mempool_t *pool) { pool->free(element, pool->data); }

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox24100.00%1100.00%
Total24100.00%1100.00%


mempool_t *mempool_create(int min_nr, mempool_alloc_t *alloc_fn, mempool_free_t *free_fn, void *pool_data) { mempool_t *ret = malloc(sizeof(*ret)); ret->alloc = alloc_fn; ret->free = free_fn; ret->data = pool_data; return ret; }

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox55100.00%1100.00%
Total55100.00%1100.00%


void *kmem_cache_alloc(struct kmem_cache *cachep, int flags) { void *ret = malloc(cachep->size); if (cachep->ctor) cachep->ctor(ret); uatomic_inc(&nr_allocated); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox47100.00%1100.00%
Total47100.00%1100.00%


void kmem_cache_free(struct kmem_cache *cachep, void *objp) { assert(objp); uatomic_dec(&nr_allocated); memset(objp, 0, cachep->size); free(objp); }

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox41100.00%1100.00%
Total41100.00%1100.00%


struct kmem_cache * kmem_cache_create(const char *name, size_t size, size_t offset, unsigned long flags, void (*ctor)(void *)) { struct kmem_cache *ret = malloc(sizeof(*ret)); ret->size = size; ret->ctor = ctor; return ret; }

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox61100.00%1100.00%
Total61100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox280100.00%1100.00%
Total280100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}