cregit-Linux how code gets into the kernel

Release 4.10 tools/testing/radix-tree/linux/mempool.h

#include <linux/slab.h>


typedef void *(mempool_alloc_t)(int gfp_mask, void *pool_data);

typedef void (mempool_free_t)(void *element, void *pool_data);

typedef struct {
	
mempool_alloc_t *alloc;
	
mempool_free_t *free;
	
void *data;
} 
mempool_t;

void *mempool_alloc(mempool_t *pool, int gfp_mask);
void mempool_free(void *element, mempool_t *pool);
mempool_t *mempool_create(int min_nr, mempool_alloc_t *alloc_fn,
			mempool_free_t *free_fn, void *pool_data);

Overall Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox95100.00%1100.00%
Total95100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.