mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
b9663a6ff8
Turn kmem_cache_alloc() into a wrapper around kmem_cache_alloc_lru().
Fixes: 9bbdc0f324
("xarray: use kmem_cache_alloc_lru to allocate xa_node")
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reported-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Reported-by: Li Wang <liwang@redhat.com>
45 lines
1.0 KiB
C
45 lines
1.0 KiB
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);
|
|
}
|
|
|
|
struct list_lru;
|
|
|
|
void *kmem_cache_alloc_lru(struct kmem_cache *cachep, struct list_lru *, int flags);
|
|
static inline void *kmem_cache_alloc(struct kmem_cache *cachep, int flags)
|
|
{
|
|
return kmem_cache_alloc_lru(cachep, NULL, 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 */
|