cregit-Linux how code gets into the kernel

Release 4.16 tools/testing/radix-tree/linux/slab.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef SLAB_H

#define SLAB_H

#include <linux/types.h>
#include <linux/gfp.h>


#define SLAB_HWCACHE_ALIGN 1

#define SLAB_PANIC 2

#define SLAB_RECLAIM_ACCOUNT    0x00020000UL            
/* Objects are reclaimable */

void *kmalloc(size_t size, gfp_t);
void kfree(void *);


static inline void *kzalloc(size_t size, gfp_t gfp) { return kmalloc(size, gfp | __GFP_ZERO); }

Contributors

PersonTokensPropCommitsCommitProp
Matthew Wilcox24100.00%1100.00%
Total24100.00%1100.00%

void *kmem_cache_alloc(struct kmem_cache *cachep, int flags); void kmem_cache_free(struct kmem_cache *cachep, void *objp); struct kmem_cache * kmem_cache_create(const char *name, size_t size, size_t offset, unsigned long flags, void (*ctor)(void *)); #endif /* SLAB_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Matthew Wilcox12699.21%375.00%
Greg Kroah-Hartman10.79%125.00%
Total127100.00%4100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.