Merge tag 'pci-v4.17-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[linux-2.6-block.git] / include / linux / slub_def.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
81819f0f
CL
2#ifndef _LINUX_SLUB_DEF_H
3#define _LINUX_SLUB_DEF_H
4
5/*
6 * SLUB : A Slab allocator without object queues.
7 *
cde53535 8 * (C) 2007 SGI, Christoph Lameter
81819f0f 9 */
81819f0f
CL
10#include <linux/kobject.h>
11
8ff12cfc
CL
12enum stat_item {
13 ALLOC_FASTPATH, /* Allocation from cpu slab */
14 ALLOC_SLOWPATH, /* Allocation by getting a new cpu slab */
a941f836 15 FREE_FASTPATH, /* Free to cpu slab */
8ff12cfc
CL
16 FREE_SLOWPATH, /* Freeing not to cpu slab */
17 FREE_FROZEN, /* Freeing to frozen slab */
18 FREE_ADD_PARTIAL, /* Freeing moves slab to partial list */
19 FREE_REMOVE_PARTIAL, /* Freeing removes last object */
8028dcea 20 ALLOC_FROM_PARTIAL, /* Cpu slab acquired from node partial list */
8ff12cfc
CL
21 ALLOC_SLAB, /* Cpu slab acquired from page allocator */
22 ALLOC_REFILL, /* Refill cpu slab from slab freelist */
e36a2652 23 ALLOC_NODE_MISMATCH, /* Switching cpu slab */
8ff12cfc
CL
24 FREE_SLAB, /* Slab freed to the page allocator */
25 CPUSLAB_FLUSH, /* Abandoning of the cpu slab */
26 DEACTIVATE_FULL, /* Cpu slab was full when deactivated */
27 DEACTIVATE_EMPTY, /* Cpu slab was empty when deactivated */
28 DEACTIVATE_TO_HEAD, /* Cpu slab was moved to the head of partials */
29 DEACTIVATE_TO_TAIL, /* Cpu slab was moved to the tail of partials */
30 DEACTIVATE_REMOTE_FREES,/* Slab contained remotely freed objects */
03e404af 31 DEACTIVATE_BYPASS, /* Implicit deactivation */
65c3376a 32 ORDER_FALLBACK, /* Number of times fallback was necessary */
4fdccdfb 33 CMPXCHG_DOUBLE_CPU_FAIL,/* Failure of this_cpu_cmpxchg_double */
b789ef51 34 CMPXCHG_DOUBLE_FAIL, /* Number of times that cmpxchg double did not match */
49e22585 35 CPU_PARTIAL_ALLOC, /* Used cpu partial on alloc */
8028dcea
AS
36 CPU_PARTIAL_FREE, /* Refill cpu partial on free */
37 CPU_PARTIAL_NODE, /* Refill cpu partial from node partial */
38 CPU_PARTIAL_DRAIN, /* Drain cpu partial to node partial */
8ff12cfc
CL
39 NR_SLUB_STAT_ITEMS };
40
dfb4f096 41struct kmem_cache_cpu {
8a5ec0ba 42 void **freelist; /* Pointer to next available object */
8a5ec0ba 43 unsigned long tid; /* Globally unique transaction id */
da89b79e 44 struct page *page; /* The slab from which we are allocating */
a93cf07b 45#ifdef CONFIG_SLUB_CPU_PARTIAL
49e22585 46 struct page *partial; /* Partially allocated frozen slabs */
a93cf07b 47#endif
8ff12cfc
CL
48#ifdef CONFIG_SLUB_STATS
49 unsigned stat[NR_SLUB_STAT_ITEMS];
50#endif
4c93c355 51};
dfb4f096 52
a93cf07b
WY
53#ifdef CONFIG_SLUB_CPU_PARTIAL
54#define slub_percpu_partial(c) ((c)->partial)
55
56#define slub_set_percpu_partial(c, p) \
57({ \
58 slub_percpu_partial(c) = (p)->next; \
59})
60
61#define slub_percpu_partial_read_once(c) READ_ONCE(slub_percpu_partial(c))
62#else
63#define slub_percpu_partial(c) NULL
64
65#define slub_set_percpu_partial(c, p)
66
67#define slub_percpu_partial_read_once(c) NULL
68#endif // CONFIG_SLUB_CPU_PARTIAL
69
834f3d11
CL
70/*
71 * Word size structure that can be atomically updated or read and that
72 * contains both the order and the number of objects that a slab of the
73 * given order would contain.
74 */
75struct kmem_cache_order_objects {
19af27af 76 unsigned int x;
834f3d11
CL
77};
78
81819f0f
CL
79/*
80 * Slab cache management.
81 */
82struct kmem_cache {
1b5ad248 83 struct kmem_cache_cpu __percpu *cpu_slab;
81819f0f 84 /* Used for retriving partial slabs etc */
d50112ed 85 slab_flags_t flags;
1a757fe5 86 unsigned long min_partial;
44065b2e 87 unsigned int size; /* The size of an object including meta data */
1b473f29 88 unsigned int object_size;/* The size of an object without meta data */
a5035de2 89 unsigned int offset; /* Free pointer offset. */
e6d0e1dc 90#ifdef CONFIG_SLUB_CPU_PARTIAL
e5d9998f
AD
91 /* Number of per cpu partial objects to keep around */
92 unsigned int cpu_partial;
e6d0e1dc 93#endif
834f3d11 94 struct kmem_cache_order_objects oo;
81819f0f 95
81819f0f 96 /* Allocation and freeing of slabs */
205ab99d 97 struct kmem_cache_order_objects max;
65c3376a 98 struct kmem_cache_order_objects min;
b7a49f0d 99 gfp_t allocflags; /* gfp flags to use on each alloc */
81819f0f 100 int refcount; /* Refcount for slab cache destroy */
51cc5068 101 void (*ctor)(void *);
52ee6d74 102 unsigned int inuse; /* Offset to metadata */
3a3791ec 103 unsigned int align; /* Alignment */
d66e52d1 104 unsigned int reserved; /* Reserved bytes at the end of slabs */
2ca6d39b 105 unsigned int red_left_pad; /* Left redzone padding size */
81819f0f
CL
106 const char *name; /* Name (only for display!) */
107 struct list_head list; /* List of slab caches */
ab4d5ed5 108#ifdef CONFIG_SYSFS
81819f0f 109 struct kobject kobj; /* For sysfs */
3b7b3140 110 struct work_struct kobj_remove_work;
0c710013 111#endif
127424c8 112#ifdef CONFIG_MEMCG
f7ce3190 113 struct memcg_cache_params memcg_params;
56d8ceeb
AD
114 /* for propagation, maximum size of a stored attr */
115 unsigned int max_attr_size;
9a41707b
VD
116#ifdef CONFIG_SYSFS
117 struct kset *memcg_kset;
118#endif
ba6c496e 119#endif
81819f0f 120
2482ddec
KC
121#ifdef CONFIG_SLAB_FREELIST_HARDENED
122 unsigned long random;
123#endif
124
81819f0f 125#ifdef CONFIG_NUMA
9824601e
CL
126 /*
127 * Defragmentation by allocating from a remote node.
128 */
eb7235eb 129 unsigned int remote_node_defrag_ratio;
81819f0f 130#endif
210e7a43
TG
131
132#ifdef CONFIG_SLAB_FREELIST_RANDOM
133 unsigned int *random_seq;
134#endif
135
80a9201a
AP
136#ifdef CONFIG_KASAN
137 struct kasan_cache kasan_info;
138#endif
139
7bbdb81e
AD
140 unsigned int useroffset; /* Usercopy region offset */
141 unsigned int usersize; /* Usercopy region size */
8eb8284b 142
7340cc84 143 struct kmem_cache_node *node[MAX_NUMNODES];
81819f0f
CL
144};
145
e6d0e1dc
WY
146#ifdef CONFIG_SLUB_CPU_PARTIAL
147#define slub_cpu_partial(s) ((s)->cpu_partial)
148#define slub_set_cpu_partial(s, n) \
149({ \
150 slub_cpu_partial(s) = (n); \
151})
152#else
153#define slub_cpu_partial(s) (0)
154#define slub_set_cpu_partial(s, n)
155#endif // CONFIG_SLUB_CPU_PARTIAL
156
41a21285
CL
157#ifdef CONFIG_SYSFS
158#define SLAB_SUPPORTS_SYSFS
bf5eb3de 159void sysfs_slab_release(struct kmem_cache *);
41a21285 160#else
bf5eb3de 161static inline void sysfs_slab_release(struct kmem_cache *s)
41a21285
CL
162{
163}
164#endif
165
75c66def
AR
166void object_err(struct kmem_cache *s, struct page *page,
167 u8 *object, char *reason);
168
c146a2b9
AP
169void *fixup_red_left(struct kmem_cache *s, void *p);
170
7ed2f9e6
AP
171static inline void *nearest_obj(struct kmem_cache *cache, struct page *page,
172 void *x) {
173 void *object = x - (x - page_address(page)) % cache->size;
174 void *last_object = page_address(page) +
175 (page->objects - 1) * cache->size;
c146a2b9
AP
176 void *result = (unlikely(object > last_object)) ? last_object : object;
177
178 result = fixup_red_left(cache, result);
179 return result;
7ed2f9e6
AP
180}
181
81819f0f 182#endif /* _LINUX_SLUB_DEF_H */