writeback: send work item to queue_io, move_expired_inodes
[linux-2.6-block.git] / include / linux / slob_def.h
CommitLineData
6193a2ff
PM
1#ifndef __LINUX_SLOB_DEF_H
2#define __LINUX_SLOB_DEF_H
3
4void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
5
3eae2cb2
EGM
6static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep,
7 gfp_t flags)
6193a2ff
PM
8{
9 return kmem_cache_alloc_node(cachep, flags, -1);
10}
11
12void *__kmalloc_node(size_t size, gfp_t flags, int node);
13
3eae2cb2 14static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
6193a2ff
PM
15{
16 return __kmalloc_node(size, flags, node);
17}
18
19/**
20 * kmalloc - allocate memory
21 * @size: how many bytes of memory are required.
22 * @flags: the type of memory to allocate (see kcalloc).
23 *
24 * kmalloc is the normal method of allocating memory
25 * in the kernel.
26 */
3eae2cb2 27static __always_inline void *kmalloc(size_t size, gfp_t flags)
6193a2ff
PM
28{
29 return __kmalloc_node(size, flags, -1);
30}
31
3eae2cb2 32static __always_inline void *__kmalloc(size_t size, gfp_t flags)
6193a2ff
PM
33{
34 return kmalloc(size, flags);
35}
36
6193a2ff 37#endif /* __LINUX_SLOB_DEF_H */