mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
Add basic project files, together with local stubs of required headers. Update tools/include/slab.h to include definitions used by memblock. Signed-off-by: Karolina Drobnik <karolinadrobnik@gmail.com> Signed-off-by: Mike Rapoport <rppt@kernel.org> Link: https://lore.kernel.org/r/d296fceb023a04b316a31fbff9acf1e76ac684e4.1643796665.git.karolinadrobnik@gmail.com
38 lines
854 B
C
38 lines
854 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _TOOLS_SLAB_H
|
|
#define _TOOLS_SLAB_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/gfp.h>
|
|
|
|
#define SLAB_PANIC 2
|
|
#define SLAB_RECLAIM_ACCOUNT 0x00020000UL /* Objects are reclaimable */
|
|
|
|
#define kzalloc_node(size, flags, node) kmalloc(size, flags)
|
|
|
|
void *kmalloc(size_t size, gfp_t gfp);
|
|
void kfree(void *p);
|
|
|
|
bool slab_is_available(void);
|
|
|
|
enum slab_state {
|
|
DOWN,
|
|
PARTIAL,
|
|
PARTIAL_NODE,
|
|
UP,
|
|
FULL
|
|
};
|
|
|
|
static inline void *kzalloc(size_t size, gfp_t gfp)
|
|
{
|
|
return kmalloc(size, gfp | __GFP_ZERO);
|
|
}
|
|
|
|
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, unsigned int size,
|
|
unsigned int align, unsigned int flags,
|
|
void (*ctor)(void *));
|
|
|
|
#endif /* _TOOLS_SLAB_H */
|