Files
linux-apfs/include/linux/slob_def.h
T

38 lines
924 B
C
Raw Normal View History

2007-07-15 23:38:22 -07:00
#ifndef __LINUX_SLOB_DEF_H
#define __LINUX_SLOB_DEF_H
void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
2008-08-10 20:14:07 +03:00
static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep,
gfp_t flags)
2007-07-15 23:38:22 -07:00
{
return kmem_cache_alloc_node(cachep, flags, -1);
}
void *__kmalloc_node(size_t size, gfp_t flags, int node);
2008-08-10 20:14:07 +03:00
static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
2007-07-15 23:38:22 -07:00
{
return __kmalloc_node(size, flags, node);
}
/**
* kmalloc - allocate memory
* @size: how many bytes of memory are required.
* @flags: the type of memory to allocate (see kcalloc).
*
* kmalloc is the normal method of allocating memory
* in the kernel.
*/
2008-08-10 20:14:07 +03:00
static __always_inline void *kmalloc(size_t size, gfp_t flags)
2007-07-15 23:38:22 -07:00
{
return __kmalloc_node(size, flags, -1);
}
2008-08-10 20:14:07 +03:00
static __always_inline void *__kmalloc(size_t size, gfp_t flags)
2007-07-15 23:38:22 -07:00
{
return kmalloc(size, flags);
}
#endif /* __LINUX_SLOB_DEF_H */