aboutsummaryrefslogtreecommitdiffstats
BranchCommit messageAuthorAge
5.4-EXT-RESSwitch to HRTIMER_MODE_ABS_PINNED_HARDleochanj1055 years
EXT-RESBUG FIXESztong5 years
WIPUpdateztong3 years
budgetingfixes for RTSSztong4 years
forbidden-zonesFixed Occasional Deadlock when schedulingZelin Tong5 years
omlpAdded final step of priority inheritance.Tanya Amert5 years
update_litmus_2019omlp_fz_police bug fixztong5 years
 
NUMA support' href='/cgit/cgit.cgi/litmus-rt-budgetable-locks.git/.git/commit/include/linux/slob_def.h?h=update_litmus_2019&id=6193a2ff180920f84ee06977165ebf32431fc2d2'>6193a2ff1809
3eae2cb24a96
6193a2ff1809











3eae2cb24a96
6193a2ff1809



3eae2cb24a96
6193a2ff1809



6193a2ff1809
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37




                                                                        

                                                                        





                                                         
                                                                             











                                                        
                                                              



                                               
                                                                



                                    
                               
#ifndef __LINUX_SLOB_DEF_H
#define __LINUX_SLOB_DEF_H

void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);

static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep,
					      gfp_t flags)
{
	return kmem_cache_alloc_node(cachep, flags, -1);
}

void *__kmalloc_node(size_t size, gfp_t flags, int node);

static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
{
	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.
 */
static __always_inline void *kmalloc(size_t size, gfp_t flags)
{
	return __kmalloc_node(size, flags, -1);
}

static __always_inline void *__kmalloc(size_t size, gfp_t flags)
{
	return kmalloc(size, flags);
}

#endif /* __LINUX_SLOB_DEF_H */