Blame view

include/linux/slob_def.h 924 Bytes
6193a2ff1   Paul Mundt   slob: initial NUM...
1
2
3
4
  #ifndef __LINUX_SLOB_DEF_H
  #define __LINUX_SLOB_DEF_H
  
  void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
3eae2cb24   Eduard - Gabriel Munteanu   kmemtrace: SLOB h...
5
6
  static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep,
  					      gfp_t flags)
6193a2ff1   Paul Mundt   slob: initial NUM...
7
8
9
10
11
  {
  	return kmem_cache_alloc_node(cachep, flags, -1);
  }
  
  void *__kmalloc_node(size_t size, gfp_t flags, int node);
3eae2cb24   Eduard - Gabriel Munteanu   kmemtrace: SLOB h...
12
  static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
6193a2ff1   Paul Mundt   slob: initial NUM...
13
14
15
16
17
18
19
20
21
22
23
24
  {
  	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.
   */
3eae2cb24   Eduard - Gabriel Munteanu   kmemtrace: SLOB h...
25
  static __always_inline void *kmalloc(size_t size, gfp_t flags)
6193a2ff1   Paul Mundt   slob: initial NUM...
26
27
28
  {
  	return __kmalloc_node(size, flags, -1);
  }
3eae2cb24   Eduard - Gabriel Munteanu   kmemtrace: SLOB h...
29
  static __always_inline void *__kmalloc(size_t size, gfp_t flags)
6193a2ff1   Paul Mundt   slob: initial NUM...
30
31
32
  {
  	return kmalloc(size, flags);
  }
6193a2ff1   Paul Mundt   slob: initial NUM...
33
  #endif /* __LINUX_SLOB_DEF_H */