xref: /linux-6.15/include/linux/xarray.h (revision 0e9446c3)
1f6bb2a2cSMatthew Wilcox /* SPDX-License-Identifier: GPL-2.0+ */
2f6bb2a2cSMatthew Wilcox #ifndef _LINUX_XARRAY_H
3f6bb2a2cSMatthew Wilcox #define _LINUX_XARRAY_H
4f6bb2a2cSMatthew Wilcox /*
5f6bb2a2cSMatthew Wilcox  * eXtensible Arrays
6f6bb2a2cSMatthew Wilcox  * Copyright (c) 2017 Microsoft Corporation
73d0186bbSMatthew Wilcox  * Author: Matthew Wilcox <[email protected]>
83159f943SMatthew Wilcox  *
93159f943SMatthew Wilcox  * See Documentation/core-api/xarray.rst for how to use the XArray.
10f6bb2a2cSMatthew Wilcox  */
11f6bb2a2cSMatthew Wilcox 
123159f943SMatthew Wilcox #include <linux/bug.h>
13f8d5d0ccSMatthew Wilcox #include <linux/compiler.h>
149b89a035SMatthew Wilcox #include <linux/gfp.h>
15f8d5d0ccSMatthew Wilcox #include <linux/kconfig.h>
16ad3d6c72SMatthew Wilcox #include <linux/kernel.h>
17ad3d6c72SMatthew Wilcox #include <linux/rcupdate.h>
18f6bb2a2cSMatthew Wilcox #include <linux/spinlock.h>
193159f943SMatthew Wilcox #include <linux/types.h>
203159f943SMatthew Wilcox 
213159f943SMatthew Wilcox /*
223159f943SMatthew Wilcox  * The bottom two bits of the entry determine how the XArray interprets
233159f943SMatthew Wilcox  * the contents:
243159f943SMatthew Wilcox  *
253159f943SMatthew Wilcox  * 00: Pointer entry
263159f943SMatthew Wilcox  * 10: Internal entry
273159f943SMatthew Wilcox  * x1: Value entry or tagged pointer
283159f943SMatthew Wilcox  *
293159f943SMatthew Wilcox  * Attempting to store internal entries in the XArray is a bug.
3002c02bf1SMatthew Wilcox  *
3102c02bf1SMatthew Wilcox  * Most internal entries are pointers to the next node in the tree.
3202c02bf1SMatthew Wilcox  * The following internal entries have a special meaning:
3302c02bf1SMatthew Wilcox  *
3402c02bf1SMatthew Wilcox  * 0-62: Sibling entries
359f14d4f1SMatthew Wilcox  * 256: Zero entry
369f14d4f1SMatthew Wilcox  * 257: Retry entry
37ad3d6c72SMatthew Wilcox  *
38ad3d6c72SMatthew Wilcox  * Errors are also represented as internal entries, but use the negative
39ad3d6c72SMatthew Wilcox  * space (-4094 to -2).  They're never stored in the slots array; only
40ad3d6c72SMatthew Wilcox  * returned by the normal API.
413159f943SMatthew Wilcox  */
423159f943SMatthew Wilcox 
433159f943SMatthew Wilcox #define BITS_PER_XA_VALUE	(BITS_PER_LONG - 1)
443159f943SMatthew Wilcox 
453159f943SMatthew Wilcox /**
463159f943SMatthew Wilcox  * xa_mk_value() - Create an XArray entry from an integer.
473159f943SMatthew Wilcox  * @v: Value to store in XArray.
483159f943SMatthew Wilcox  *
493159f943SMatthew Wilcox  * Context: Any context.
503159f943SMatthew Wilcox  * Return: An entry suitable for storing in the XArray.
513159f943SMatthew Wilcox  */
523159f943SMatthew Wilcox static inline void *xa_mk_value(unsigned long v)
533159f943SMatthew Wilcox {
543159f943SMatthew Wilcox 	WARN_ON((long)v < 0);
553159f943SMatthew Wilcox 	return (void *)((v << 1) | 1);
563159f943SMatthew Wilcox }
573159f943SMatthew Wilcox 
583159f943SMatthew Wilcox /**
593159f943SMatthew Wilcox  * xa_to_value() - Get value stored in an XArray entry.
603159f943SMatthew Wilcox  * @entry: XArray entry.
613159f943SMatthew Wilcox  *
623159f943SMatthew Wilcox  * Context: Any context.
633159f943SMatthew Wilcox  * Return: The value stored in the XArray entry.
643159f943SMatthew Wilcox  */
653159f943SMatthew Wilcox static inline unsigned long xa_to_value(const void *entry)
663159f943SMatthew Wilcox {
673159f943SMatthew Wilcox 	return (unsigned long)entry >> 1;
683159f943SMatthew Wilcox }
693159f943SMatthew Wilcox 
703159f943SMatthew Wilcox /**
713159f943SMatthew Wilcox  * xa_is_value() - Determine if an entry is a value.
723159f943SMatthew Wilcox  * @entry: XArray entry.
733159f943SMatthew Wilcox  *
743159f943SMatthew Wilcox  * Context: Any context.
753159f943SMatthew Wilcox  * Return: True if the entry is a value, false if it is a pointer.
763159f943SMatthew Wilcox  */
773159f943SMatthew Wilcox static inline bool xa_is_value(const void *entry)
783159f943SMatthew Wilcox {
793159f943SMatthew Wilcox 	return (unsigned long)entry & 1;
803159f943SMatthew Wilcox }
813159f943SMatthew Wilcox 
823159f943SMatthew Wilcox /**
833159f943SMatthew Wilcox  * xa_tag_pointer() - Create an XArray entry for a tagged pointer.
843159f943SMatthew Wilcox  * @p: Plain pointer.
853159f943SMatthew Wilcox  * @tag: Tag value (0, 1 or 3).
863159f943SMatthew Wilcox  *
873159f943SMatthew Wilcox  * If the user of the XArray prefers, they can tag their pointers instead
883159f943SMatthew Wilcox  * of storing value entries.  Three tags are available (0, 1 and 3).
893159f943SMatthew Wilcox  * These are distinct from the xa_mark_t as they are not replicated up
903159f943SMatthew Wilcox  * through the array and cannot be searched for.
913159f943SMatthew Wilcox  *
923159f943SMatthew Wilcox  * Context: Any context.
933159f943SMatthew Wilcox  * Return: An XArray entry.
943159f943SMatthew Wilcox  */
953159f943SMatthew Wilcox static inline void *xa_tag_pointer(void *p, unsigned long tag)
963159f943SMatthew Wilcox {
973159f943SMatthew Wilcox 	return (void *)((unsigned long)p | tag);
983159f943SMatthew Wilcox }
993159f943SMatthew Wilcox 
1003159f943SMatthew Wilcox /**
1013159f943SMatthew Wilcox  * xa_untag_pointer() - Turn an XArray entry into a plain pointer.
1023159f943SMatthew Wilcox  * @entry: XArray entry.
1033159f943SMatthew Wilcox  *
1043159f943SMatthew Wilcox  * If you have stored a tagged pointer in the XArray, call this function
1053159f943SMatthew Wilcox  * to get the untagged version of the pointer.
1063159f943SMatthew Wilcox  *
1073159f943SMatthew Wilcox  * Context: Any context.
1083159f943SMatthew Wilcox  * Return: A pointer.
1093159f943SMatthew Wilcox  */
1103159f943SMatthew Wilcox static inline void *xa_untag_pointer(void *entry)
1113159f943SMatthew Wilcox {
1123159f943SMatthew Wilcox 	return (void *)((unsigned long)entry & ~3UL);
1133159f943SMatthew Wilcox }
1143159f943SMatthew Wilcox 
1153159f943SMatthew Wilcox /**
1163159f943SMatthew Wilcox  * xa_pointer_tag() - Get the tag stored in an XArray entry.
1173159f943SMatthew Wilcox  * @entry: XArray entry.
1183159f943SMatthew Wilcox  *
1193159f943SMatthew Wilcox  * If you have stored a tagged pointer in the XArray, call this function
1203159f943SMatthew Wilcox  * to get the tag of that pointer.
1213159f943SMatthew Wilcox  *
1223159f943SMatthew Wilcox  * Context: Any context.
1233159f943SMatthew Wilcox  * Return: A tag.
1243159f943SMatthew Wilcox  */
1253159f943SMatthew Wilcox static inline unsigned int xa_pointer_tag(void *entry)
1263159f943SMatthew Wilcox {
1273159f943SMatthew Wilcox 	return (unsigned long)entry & 3UL;
1283159f943SMatthew Wilcox }
129f6bb2a2cSMatthew Wilcox 
13002c02bf1SMatthew Wilcox /*
13102c02bf1SMatthew Wilcox  * xa_mk_internal() - Create an internal entry.
13202c02bf1SMatthew Wilcox  * @v: Value to turn into an internal entry.
13302c02bf1SMatthew Wilcox  *
13402c02bf1SMatthew Wilcox  * Context: Any context.
13502c02bf1SMatthew Wilcox  * Return: An XArray internal entry corresponding to this value.
13602c02bf1SMatthew Wilcox  */
13702c02bf1SMatthew Wilcox static inline void *xa_mk_internal(unsigned long v)
13802c02bf1SMatthew Wilcox {
13902c02bf1SMatthew Wilcox 	return (void *)((v << 2) | 2);
14002c02bf1SMatthew Wilcox }
14102c02bf1SMatthew Wilcox 
14202c02bf1SMatthew Wilcox /*
14302c02bf1SMatthew Wilcox  * xa_to_internal() - Extract the value from an internal entry.
14402c02bf1SMatthew Wilcox  * @entry: XArray entry.
14502c02bf1SMatthew Wilcox  *
14602c02bf1SMatthew Wilcox  * Context: Any context.
14702c02bf1SMatthew Wilcox  * Return: The value which was stored in the internal entry.
14802c02bf1SMatthew Wilcox  */
14902c02bf1SMatthew Wilcox static inline unsigned long xa_to_internal(const void *entry)
15002c02bf1SMatthew Wilcox {
15102c02bf1SMatthew Wilcox 	return (unsigned long)entry >> 2;
15202c02bf1SMatthew Wilcox }
15302c02bf1SMatthew Wilcox 
15402c02bf1SMatthew Wilcox /*
15502c02bf1SMatthew Wilcox  * xa_is_internal() - Is the entry an internal entry?
15602c02bf1SMatthew Wilcox  * @entry: XArray entry.
15702c02bf1SMatthew Wilcox  *
15802c02bf1SMatthew Wilcox  * Context: Any context.
15902c02bf1SMatthew Wilcox  * Return: %true if the entry is an internal entry.
16002c02bf1SMatthew Wilcox  */
16102c02bf1SMatthew Wilcox static inline bool xa_is_internal(const void *entry)
16202c02bf1SMatthew Wilcox {
16302c02bf1SMatthew Wilcox 	return ((unsigned long)entry & 3) == 2;
16402c02bf1SMatthew Wilcox }
16502c02bf1SMatthew Wilcox 
166f8d5d0ccSMatthew Wilcox /**
167ad3d6c72SMatthew Wilcox  * xa_is_err() - Report whether an XArray operation returned an error
168ad3d6c72SMatthew Wilcox  * @entry: Result from calling an XArray function
169ad3d6c72SMatthew Wilcox  *
170ad3d6c72SMatthew Wilcox  * If an XArray operation cannot complete an operation, it will return
171ad3d6c72SMatthew Wilcox  * a special value indicating an error.  This function tells you
172ad3d6c72SMatthew Wilcox  * whether an error occurred; xa_err() tells you which error occurred.
173ad3d6c72SMatthew Wilcox  *
174ad3d6c72SMatthew Wilcox  * Context: Any context.
175ad3d6c72SMatthew Wilcox  * Return: %true if the entry indicates an error.
176ad3d6c72SMatthew Wilcox  */
177ad3d6c72SMatthew Wilcox static inline bool xa_is_err(const void *entry)
178ad3d6c72SMatthew Wilcox {
179ad3d6c72SMatthew Wilcox 	return unlikely(xa_is_internal(entry));
180ad3d6c72SMatthew Wilcox }
181ad3d6c72SMatthew Wilcox 
182ad3d6c72SMatthew Wilcox /**
183ad3d6c72SMatthew Wilcox  * xa_err() - Turn an XArray result into an errno.
184ad3d6c72SMatthew Wilcox  * @entry: Result from calling an XArray function.
185ad3d6c72SMatthew Wilcox  *
186ad3d6c72SMatthew Wilcox  * If an XArray operation cannot complete an operation, it will return
187ad3d6c72SMatthew Wilcox  * a special pointer value which encodes an errno.  This function extracts
188ad3d6c72SMatthew Wilcox  * the errno from the pointer value, or returns 0 if the pointer does not
189ad3d6c72SMatthew Wilcox  * represent an errno.
190ad3d6c72SMatthew Wilcox  *
191ad3d6c72SMatthew Wilcox  * Context: Any context.
192ad3d6c72SMatthew Wilcox  * Return: A negative errno or 0.
193ad3d6c72SMatthew Wilcox  */
194ad3d6c72SMatthew Wilcox static inline int xa_err(void *entry)
195ad3d6c72SMatthew Wilcox {
196ad3d6c72SMatthew Wilcox 	/* xa_to_internal() would not do sign extension. */
197ad3d6c72SMatthew Wilcox 	if (xa_is_err(entry))
198ad3d6c72SMatthew Wilcox 		return (long)entry >> 2;
199ad3d6c72SMatthew Wilcox 	return 0;
200ad3d6c72SMatthew Wilcox }
201ad3d6c72SMatthew Wilcox 
2029b89a035SMatthew Wilcox typedef unsigned __bitwise xa_mark_t;
2039b89a035SMatthew Wilcox #define XA_MARK_0		((__force xa_mark_t)0U)
2049b89a035SMatthew Wilcox #define XA_MARK_1		((__force xa_mark_t)1U)
2059b89a035SMatthew Wilcox #define XA_MARK_2		((__force xa_mark_t)2U)
2069b89a035SMatthew Wilcox #define XA_PRESENT		((__force xa_mark_t)8U)
2079b89a035SMatthew Wilcox #define XA_MARK_MAX		XA_MARK_2
208371c752dSMatthew Wilcox #define XA_FREE_MARK		XA_MARK_0
2099b89a035SMatthew Wilcox 
21058d6ea30SMatthew Wilcox enum xa_lock_type {
21158d6ea30SMatthew Wilcox 	XA_LOCK_IRQ = 1,
21258d6ea30SMatthew Wilcox 	XA_LOCK_BH = 2,
21358d6ea30SMatthew Wilcox };
21458d6ea30SMatthew Wilcox 
2159b89a035SMatthew Wilcox /*
2169b89a035SMatthew Wilcox  * Values for xa_flags.  The radix tree stores its GFP flags in the xa_flags,
2179b89a035SMatthew Wilcox  * and we remain compatible with that.
2189b89a035SMatthew Wilcox  */
21958d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_IRQ	((__force gfp_t)XA_LOCK_IRQ)
22058d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_BH	((__force gfp_t)XA_LOCK_BH)
221371c752dSMatthew Wilcox #define XA_FLAGS_TRACK_FREE	((__force gfp_t)4U)
2229b89a035SMatthew Wilcox #define XA_FLAGS_MARK(mark)	((__force gfp_t)((1U << __GFP_BITS_SHIFT) << \
2239b89a035SMatthew Wilcox 						(__force unsigned)(mark)))
2249b89a035SMatthew Wilcox 
225371c752dSMatthew Wilcox #define XA_FLAGS_ALLOC	(XA_FLAGS_TRACK_FREE | XA_FLAGS_MARK(XA_FREE_MARK))
226371c752dSMatthew Wilcox 
227ad3d6c72SMatthew Wilcox /**
228f8d5d0ccSMatthew Wilcox  * struct xarray - The anchor of the XArray.
229f8d5d0ccSMatthew Wilcox  * @xa_lock: Lock that protects the contents of the XArray.
230f8d5d0ccSMatthew Wilcox  *
231f8d5d0ccSMatthew Wilcox  * To use the xarray, define it statically or embed it in your data structure.
232f8d5d0ccSMatthew Wilcox  * It is a very small data structure, so it does not usually make sense to
233f8d5d0ccSMatthew Wilcox  * allocate it separately and keep a pointer to it in your data structure.
234f8d5d0ccSMatthew Wilcox  *
235f8d5d0ccSMatthew Wilcox  * You may use the xa_lock to protect your own data structures as well.
236f8d5d0ccSMatthew Wilcox  */
237f8d5d0ccSMatthew Wilcox /*
238f8d5d0ccSMatthew Wilcox  * If all of the entries in the array are NULL, @xa_head is a NULL pointer.
239f8d5d0ccSMatthew Wilcox  * If the only non-NULL entry in the array is at index 0, @xa_head is that
240f8d5d0ccSMatthew Wilcox  * entry.  If any other entry in the array is non-NULL, @xa_head points
241f8d5d0ccSMatthew Wilcox  * to an @xa_node.
242f8d5d0ccSMatthew Wilcox  */
243f8d5d0ccSMatthew Wilcox struct xarray {
244f8d5d0ccSMatthew Wilcox 	spinlock_t	xa_lock;
245f8d5d0ccSMatthew Wilcox /* private: The rest of the data structure is not to be used directly. */
246f8d5d0ccSMatthew Wilcox 	gfp_t		xa_flags;
247f8d5d0ccSMatthew Wilcox 	void __rcu *	xa_head;
248f8d5d0ccSMatthew Wilcox };
249f8d5d0ccSMatthew Wilcox 
250f8d5d0ccSMatthew Wilcox #define XARRAY_INIT(name, flags) {				\
251f8d5d0ccSMatthew Wilcox 	.xa_lock = __SPIN_LOCK_UNLOCKED(name.xa_lock),		\
252f8d5d0ccSMatthew Wilcox 	.xa_flags = flags,					\
253f8d5d0ccSMatthew Wilcox 	.xa_head = NULL,					\
254f8d5d0ccSMatthew Wilcox }
255f8d5d0ccSMatthew Wilcox 
256f8d5d0ccSMatthew Wilcox /**
257f8d5d0ccSMatthew Wilcox  * DEFINE_XARRAY_FLAGS() - Define an XArray with custom flags.
258f8d5d0ccSMatthew Wilcox  * @name: A string that names your XArray.
259f8d5d0ccSMatthew Wilcox  * @flags: XA_FLAG values.
260f8d5d0ccSMatthew Wilcox  *
261f8d5d0ccSMatthew Wilcox  * This is intended for file scope definitions of XArrays.  It declares
262f8d5d0ccSMatthew Wilcox  * and initialises an empty XArray with the chosen name and flags.  It is
263f8d5d0ccSMatthew Wilcox  * equivalent to calling xa_init_flags() on the array, but it does the
264f8d5d0ccSMatthew Wilcox  * initialisation at compiletime instead of runtime.
265f8d5d0ccSMatthew Wilcox  */
266f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY_FLAGS(name, flags)				\
267f8d5d0ccSMatthew Wilcox 	struct xarray name = XARRAY_INIT(name, flags)
268f8d5d0ccSMatthew Wilcox 
269f8d5d0ccSMatthew Wilcox /**
270f8d5d0ccSMatthew Wilcox  * DEFINE_XARRAY() - Define an XArray.
271f8d5d0ccSMatthew Wilcox  * @name: A string that names your XArray.
272f8d5d0ccSMatthew Wilcox  *
273f8d5d0ccSMatthew Wilcox  * This is intended for file scope definitions of XArrays.  It declares
274f8d5d0ccSMatthew Wilcox  * and initialises an empty XArray with the chosen name.  It is equivalent
275f8d5d0ccSMatthew Wilcox  * to calling xa_init() on the array, but it does the initialisation at
276f8d5d0ccSMatthew Wilcox  * compiletime instead of runtime.
277f8d5d0ccSMatthew Wilcox  */
278f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY(name) DEFINE_XARRAY_FLAGS(name, 0)
279f8d5d0ccSMatthew Wilcox 
280371c752dSMatthew Wilcox /**
281371c752dSMatthew Wilcox  * DEFINE_XARRAY_ALLOC() - Define an XArray which can allocate IDs.
282371c752dSMatthew Wilcox  * @name: A string that names your XArray.
283371c752dSMatthew Wilcox  *
284371c752dSMatthew Wilcox  * This is intended for file scope definitions of allocating XArrays.
285371c752dSMatthew Wilcox  * See also DEFINE_XARRAY().
286371c752dSMatthew Wilcox  */
287371c752dSMatthew Wilcox #define DEFINE_XARRAY_ALLOC(name) DEFINE_XARRAY_FLAGS(name, XA_FLAGS_ALLOC)
288371c752dSMatthew Wilcox 
289f8d5d0ccSMatthew Wilcox void xa_init_flags(struct xarray *, gfp_t flags);
290ad3d6c72SMatthew Wilcox void *xa_load(struct xarray *, unsigned long index);
29158d6ea30SMatthew Wilcox void *xa_store(struct xarray *, unsigned long index, void *entry, gfp_t);
29241aec91fSMatthew Wilcox void *xa_cmpxchg(struct xarray *, unsigned long index,
29341aec91fSMatthew Wilcox 			void *old, void *entry, gfp_t);
2949f14d4f1SMatthew Wilcox int xa_reserve(struct xarray *, unsigned long index, gfp_t);
295*0e9446c3SMatthew Wilcox void *xa_store_range(struct xarray *, unsigned long first, unsigned long last,
296*0e9446c3SMatthew Wilcox 			void *entry, gfp_t);
2979b89a035SMatthew Wilcox bool xa_get_mark(struct xarray *, unsigned long index, xa_mark_t);
2989b89a035SMatthew Wilcox void xa_set_mark(struct xarray *, unsigned long index, xa_mark_t);
2999b89a035SMatthew Wilcox void xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t);
300b803b428SMatthew Wilcox void *xa_find(struct xarray *xa, unsigned long *index,
301b803b428SMatthew Wilcox 		unsigned long max, xa_mark_t) __attribute__((nonnull(2)));
302b803b428SMatthew Wilcox void *xa_find_after(struct xarray *xa, unsigned long *index,
303b803b428SMatthew Wilcox 		unsigned long max, xa_mark_t) __attribute__((nonnull(2)));
30480a0a1a9SMatthew Wilcox unsigned int xa_extract(struct xarray *, void **dst, unsigned long start,
30580a0a1a9SMatthew Wilcox 		unsigned long max, unsigned int n, xa_mark_t);
306687149fcSMatthew Wilcox void xa_destroy(struct xarray *);
307f8d5d0ccSMatthew Wilcox 
308f8d5d0ccSMatthew Wilcox /**
309f8d5d0ccSMatthew Wilcox  * xa_init() - Initialise an empty XArray.
310f8d5d0ccSMatthew Wilcox  * @xa: XArray.
311f8d5d0ccSMatthew Wilcox  *
312f8d5d0ccSMatthew Wilcox  * An empty XArray is full of NULL entries.
313f8d5d0ccSMatthew Wilcox  *
314f8d5d0ccSMatthew Wilcox  * Context: Any context.
315f8d5d0ccSMatthew Wilcox  */
316f8d5d0ccSMatthew Wilcox static inline void xa_init(struct xarray *xa)
317f8d5d0ccSMatthew Wilcox {
318f8d5d0ccSMatthew Wilcox 	xa_init_flags(xa, 0);
319f8d5d0ccSMatthew Wilcox }
320f8d5d0ccSMatthew Wilcox 
321ad3d6c72SMatthew Wilcox /**
322ad3d6c72SMatthew Wilcox  * xa_empty() - Determine if an array has any present entries.
323ad3d6c72SMatthew Wilcox  * @xa: XArray.
324ad3d6c72SMatthew Wilcox  *
325ad3d6c72SMatthew Wilcox  * Context: Any context.
326ad3d6c72SMatthew Wilcox  * Return: %true if the array contains only NULL pointers.
327ad3d6c72SMatthew Wilcox  */
328ad3d6c72SMatthew Wilcox static inline bool xa_empty(const struct xarray *xa)
329ad3d6c72SMatthew Wilcox {
330ad3d6c72SMatthew Wilcox 	return xa->xa_head == NULL;
331ad3d6c72SMatthew Wilcox }
332ad3d6c72SMatthew Wilcox 
3339b89a035SMatthew Wilcox /**
3349b89a035SMatthew Wilcox  * xa_marked() - Inquire whether any entry in this array has a mark set
3359b89a035SMatthew Wilcox  * @xa: Array
3369b89a035SMatthew Wilcox  * @mark: Mark value
3379b89a035SMatthew Wilcox  *
3389b89a035SMatthew Wilcox  * Context: Any context.
3399b89a035SMatthew Wilcox  * Return: %true if any entry has this mark set.
3409b89a035SMatthew Wilcox  */
3419b89a035SMatthew Wilcox static inline bool xa_marked(const struct xarray *xa, xa_mark_t mark)
3429b89a035SMatthew Wilcox {
3439b89a035SMatthew Wilcox 	return xa->xa_flags & XA_FLAGS_MARK(mark);
3449b89a035SMatthew Wilcox }
3459b89a035SMatthew Wilcox 
34658d6ea30SMatthew Wilcox /**
34758d6ea30SMatthew Wilcox  * xa_erase() - Erase this entry from the XArray.
34858d6ea30SMatthew Wilcox  * @xa: XArray.
34958d6ea30SMatthew Wilcox  * @index: Index of entry.
35058d6ea30SMatthew Wilcox  *
35158d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
35258d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
35358d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
35458d6ea30SMatthew Wilcox  *
35558d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.
35658d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
35758d6ea30SMatthew Wilcox  */
35858d6ea30SMatthew Wilcox static inline void *xa_erase(struct xarray *xa, unsigned long index)
35958d6ea30SMatthew Wilcox {
36058d6ea30SMatthew Wilcox 	return xa_store(xa, index, NULL, 0);
36158d6ea30SMatthew Wilcox }
36258d6ea30SMatthew Wilcox 
36341aec91fSMatthew Wilcox /**
36441aec91fSMatthew Wilcox  * xa_insert() - Store this entry in the XArray unless another entry is
36541aec91fSMatthew Wilcox  *			already present.
36641aec91fSMatthew Wilcox  * @xa: XArray.
36741aec91fSMatthew Wilcox  * @index: Index into array.
36841aec91fSMatthew Wilcox  * @entry: New entry.
36941aec91fSMatthew Wilcox  * @gfp: Memory allocation flags.
37041aec91fSMatthew Wilcox  *
37141aec91fSMatthew Wilcox  * If you would rather see the existing entry in the array, use xa_cmpxchg().
37241aec91fSMatthew Wilcox  * This function is for users who don't care what the entry is, only that
37341aec91fSMatthew Wilcox  * one is present.
37441aec91fSMatthew Wilcox  *
37541aec91fSMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.
37641aec91fSMatthew Wilcox  *	    May sleep if the @gfp flags permit.
37741aec91fSMatthew Wilcox  * Return: 0 if the store succeeded.  -EEXIST if another entry was present.
37841aec91fSMatthew Wilcox  * -ENOMEM if memory could not be allocated.
37941aec91fSMatthew Wilcox  */
38041aec91fSMatthew Wilcox static inline int xa_insert(struct xarray *xa, unsigned long index,
38141aec91fSMatthew Wilcox 		void *entry, gfp_t gfp)
38241aec91fSMatthew Wilcox {
38341aec91fSMatthew Wilcox 	void *curr = xa_cmpxchg(xa, index, NULL, entry, gfp);
38441aec91fSMatthew Wilcox 	if (!curr)
38541aec91fSMatthew Wilcox 		return 0;
38641aec91fSMatthew Wilcox 	if (xa_is_err(curr))
38741aec91fSMatthew Wilcox 		return xa_err(curr);
38841aec91fSMatthew Wilcox 	return -EEXIST;
38941aec91fSMatthew Wilcox }
39041aec91fSMatthew Wilcox 
391b803b428SMatthew Wilcox /**
3929f14d4f1SMatthew Wilcox  * xa_release() - Release a reserved entry.
3939f14d4f1SMatthew Wilcox  * @xa: XArray.
3949f14d4f1SMatthew Wilcox  * @index: Index of entry.
3959f14d4f1SMatthew Wilcox  *
3969f14d4f1SMatthew Wilcox  * After calling xa_reserve(), you can call this function to release the
3979f14d4f1SMatthew Wilcox  * reservation.  If the entry at @index has been stored to, this function
3989f14d4f1SMatthew Wilcox  * will do nothing.
3999f14d4f1SMatthew Wilcox  */
4009f14d4f1SMatthew Wilcox static inline void xa_release(struct xarray *xa, unsigned long index)
4019f14d4f1SMatthew Wilcox {
4029f14d4f1SMatthew Wilcox 	xa_cmpxchg(xa, index, NULL, NULL, 0);
4039f14d4f1SMatthew Wilcox }
4049f14d4f1SMatthew Wilcox 
4059f14d4f1SMatthew Wilcox /**
406b803b428SMatthew Wilcox  * xa_for_each() - Iterate over a portion of an XArray.
407b803b428SMatthew Wilcox  * @xa: XArray.
408b803b428SMatthew Wilcox  * @entry: Entry retrieved from array.
409b803b428SMatthew Wilcox  * @index: Index of @entry.
410b803b428SMatthew Wilcox  * @max: Maximum index to retrieve from array.
411b803b428SMatthew Wilcox  * @filter: Selection criterion.
412b803b428SMatthew Wilcox  *
413b803b428SMatthew Wilcox  * Initialise @index to the lowest index you want to retrieve from the
414b803b428SMatthew Wilcox  * array.  During the iteration, @entry will have the value of the entry
415b803b428SMatthew Wilcox  * stored in @xa at @index.  The iteration will skip all entries in the
416b803b428SMatthew Wilcox  * array which do not match @filter.  You may modify @index during the
417b803b428SMatthew Wilcox  * iteration if you want to skip or reprocess indices.  It is safe to modify
418b803b428SMatthew Wilcox  * the array during the iteration.  At the end of the iteration, @entry will
419b803b428SMatthew Wilcox  * be set to NULL and @index will have a value less than or equal to max.
420b803b428SMatthew Wilcox  *
421b803b428SMatthew Wilcox  * xa_for_each() is O(n.log(n)) while xas_for_each() is O(n).  You have
422b803b428SMatthew Wilcox  * to handle your own locking with xas_for_each(), and if you have to unlock
423b803b428SMatthew Wilcox  * after each iteration, it will also end up being O(n.log(n)).  xa_for_each()
424b803b428SMatthew Wilcox  * will spin if it hits a retry entry; if you intend to see retry entries,
425b803b428SMatthew Wilcox  * you should use the xas_for_each() iterator instead.  The xas_for_each()
426b803b428SMatthew Wilcox  * iterator will expand into more inline code than xa_for_each().
427b803b428SMatthew Wilcox  *
428b803b428SMatthew Wilcox  * Context: Any context.  Takes and releases the RCU lock.
429b803b428SMatthew Wilcox  */
430b803b428SMatthew Wilcox #define xa_for_each(xa, entry, index, max, filter) \
431b803b428SMatthew Wilcox 	for (entry = xa_find(xa, &index, max, filter); entry; \
432b803b428SMatthew Wilcox 	     entry = xa_find_after(xa, &index, max, filter))
433b803b428SMatthew Wilcox 
434f6bb2a2cSMatthew Wilcox #define xa_trylock(xa)		spin_trylock(&(xa)->xa_lock)
435f6bb2a2cSMatthew Wilcox #define xa_lock(xa)		spin_lock(&(xa)->xa_lock)
436f6bb2a2cSMatthew Wilcox #define xa_unlock(xa)		spin_unlock(&(xa)->xa_lock)
437f6bb2a2cSMatthew Wilcox #define xa_lock_bh(xa)		spin_lock_bh(&(xa)->xa_lock)
438f6bb2a2cSMatthew Wilcox #define xa_unlock_bh(xa)	spin_unlock_bh(&(xa)->xa_lock)
439f6bb2a2cSMatthew Wilcox #define xa_lock_irq(xa)		spin_lock_irq(&(xa)->xa_lock)
440f6bb2a2cSMatthew Wilcox #define xa_unlock_irq(xa)	spin_unlock_irq(&(xa)->xa_lock)
441f6bb2a2cSMatthew Wilcox #define xa_lock_irqsave(xa, flags) \
442f6bb2a2cSMatthew Wilcox 				spin_lock_irqsave(&(xa)->xa_lock, flags)
443f6bb2a2cSMatthew Wilcox #define xa_unlock_irqrestore(xa, flags) \
444f6bb2a2cSMatthew Wilcox 				spin_unlock_irqrestore(&(xa)->xa_lock, flags)
445f6bb2a2cSMatthew Wilcox 
4469b89a035SMatthew Wilcox /*
44758d6ea30SMatthew Wilcox  * Versions of the normal API which require the caller to hold the
44858d6ea30SMatthew Wilcox  * xa_lock.  If the GFP flags allow it, they will drop the lock to
44958d6ea30SMatthew Wilcox  * allocate memory, then reacquire it afterwards.  These functions
45058d6ea30SMatthew Wilcox  * may also re-enable interrupts if the XArray flags indicate the
45158d6ea30SMatthew Wilcox  * locking should be interrupt safe.
4529b89a035SMatthew Wilcox  */
45358d6ea30SMatthew Wilcox void *__xa_erase(struct xarray *, unsigned long index);
45458d6ea30SMatthew Wilcox void *__xa_store(struct xarray *, unsigned long index, void *entry, gfp_t);
45541aec91fSMatthew Wilcox void *__xa_cmpxchg(struct xarray *, unsigned long index, void *old,
45641aec91fSMatthew Wilcox 		void *entry, gfp_t);
457371c752dSMatthew Wilcox int __xa_alloc(struct xarray *, u32 *id, u32 max, void *entry, gfp_t);
4589b89a035SMatthew Wilcox void __xa_set_mark(struct xarray *, unsigned long index, xa_mark_t);
4599b89a035SMatthew Wilcox void __xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t);
4609b89a035SMatthew Wilcox 
46158d6ea30SMatthew Wilcox /**
46241aec91fSMatthew Wilcox  * __xa_insert() - Store this entry in the XArray unless another entry is
46341aec91fSMatthew Wilcox  *			already present.
46441aec91fSMatthew Wilcox  * @xa: XArray.
46541aec91fSMatthew Wilcox  * @index: Index into array.
46641aec91fSMatthew Wilcox  * @entry: New entry.
46741aec91fSMatthew Wilcox  * @gfp: Memory allocation flags.
46841aec91fSMatthew Wilcox  *
46941aec91fSMatthew Wilcox  * If you would rather see the existing entry in the array, use __xa_cmpxchg().
47041aec91fSMatthew Wilcox  * This function is for users who don't care what the entry is, only that
47141aec91fSMatthew Wilcox  * one is present.
47241aec91fSMatthew Wilcox  *
47341aec91fSMatthew Wilcox  * Context: Any context.  Expects xa_lock to be held on entry.  May
47441aec91fSMatthew Wilcox  *	    release and reacquire xa_lock if the @gfp flags permit.
47541aec91fSMatthew Wilcox  * Return: 0 if the store succeeded.  -EEXIST if another entry was present.
47641aec91fSMatthew Wilcox  * -ENOMEM if memory could not be allocated.
47741aec91fSMatthew Wilcox  */
47841aec91fSMatthew Wilcox static inline int __xa_insert(struct xarray *xa, unsigned long index,
47941aec91fSMatthew Wilcox 		void *entry, gfp_t gfp)
48041aec91fSMatthew Wilcox {
48141aec91fSMatthew Wilcox 	void *curr = __xa_cmpxchg(xa, index, NULL, entry, gfp);
48241aec91fSMatthew Wilcox 	if (!curr)
48341aec91fSMatthew Wilcox 		return 0;
48441aec91fSMatthew Wilcox 	if (xa_is_err(curr))
48541aec91fSMatthew Wilcox 		return xa_err(curr);
48641aec91fSMatthew Wilcox 	return -EEXIST;
48741aec91fSMatthew Wilcox }
48841aec91fSMatthew Wilcox 
48941aec91fSMatthew Wilcox /**
49058d6ea30SMatthew Wilcox  * xa_erase_bh() - Erase this entry from the XArray.
49158d6ea30SMatthew Wilcox  * @xa: XArray.
49258d6ea30SMatthew Wilcox  * @index: Index of entry.
49358d6ea30SMatthew Wilcox  *
49458d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
49558d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
49658d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
49758d6ea30SMatthew Wilcox  *
49858d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
49958d6ea30SMatthew Wilcox  * disabling softirqs.
50058d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
50158d6ea30SMatthew Wilcox  */
50258d6ea30SMatthew Wilcox static inline void *xa_erase_bh(struct xarray *xa, unsigned long index)
50358d6ea30SMatthew Wilcox {
50458d6ea30SMatthew Wilcox 	void *entry;
50558d6ea30SMatthew Wilcox 
50658d6ea30SMatthew Wilcox 	xa_lock_bh(xa);
50758d6ea30SMatthew Wilcox 	entry = __xa_erase(xa, index);
50858d6ea30SMatthew Wilcox 	xa_unlock_bh(xa);
50958d6ea30SMatthew Wilcox 
51058d6ea30SMatthew Wilcox 	return entry;
51158d6ea30SMatthew Wilcox }
51258d6ea30SMatthew Wilcox 
51358d6ea30SMatthew Wilcox /**
51458d6ea30SMatthew Wilcox  * xa_erase_irq() - Erase this entry from the XArray.
51558d6ea30SMatthew Wilcox  * @xa: XArray.
51658d6ea30SMatthew Wilcox  * @index: Index of entry.
51758d6ea30SMatthew Wilcox  *
51858d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
51958d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
52058d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
52158d6ea30SMatthew Wilcox  *
52258d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
52358d6ea30SMatthew Wilcox  * disabling interrupts.
52458d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
52558d6ea30SMatthew Wilcox  */
52658d6ea30SMatthew Wilcox static inline void *xa_erase_irq(struct xarray *xa, unsigned long index)
52758d6ea30SMatthew Wilcox {
52858d6ea30SMatthew Wilcox 	void *entry;
52958d6ea30SMatthew Wilcox 
53058d6ea30SMatthew Wilcox 	xa_lock_irq(xa);
53158d6ea30SMatthew Wilcox 	entry = __xa_erase(xa, index);
53258d6ea30SMatthew Wilcox 	xa_unlock_irq(xa);
53358d6ea30SMatthew Wilcox 
53458d6ea30SMatthew Wilcox 	return entry;
53558d6ea30SMatthew Wilcox }
53658d6ea30SMatthew Wilcox 
537371c752dSMatthew Wilcox /**
538371c752dSMatthew Wilcox  * xa_alloc() - Find somewhere to store this entry in the XArray.
539371c752dSMatthew Wilcox  * @xa: XArray.
540371c752dSMatthew Wilcox  * @id: Pointer to ID.
541371c752dSMatthew Wilcox  * @max: Maximum ID to allocate (inclusive).
542371c752dSMatthew Wilcox  * @entry: New entry.
543371c752dSMatthew Wilcox  * @gfp: Memory allocation flags.
544371c752dSMatthew Wilcox  *
545371c752dSMatthew Wilcox  * Allocates an unused ID in the range specified by @id and @max.
546371c752dSMatthew Wilcox  * Updates the @id pointer with the index, then stores the entry at that
547371c752dSMatthew Wilcox  * index.  A concurrent lookup will not see an uninitialised @id.
548371c752dSMatthew Wilcox  *
549371c752dSMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.  May sleep if
550371c752dSMatthew Wilcox  * the @gfp flags permit.
551371c752dSMatthew Wilcox  * Return: 0 on success, -ENOMEM if memory allocation fails or -ENOSPC if
552371c752dSMatthew Wilcox  * there is no more space in the XArray.
553371c752dSMatthew Wilcox  */
554371c752dSMatthew Wilcox static inline int xa_alloc(struct xarray *xa, u32 *id, u32 max, void *entry,
555371c752dSMatthew Wilcox 		gfp_t gfp)
556371c752dSMatthew Wilcox {
557371c752dSMatthew Wilcox 	int err;
558371c752dSMatthew Wilcox 
559371c752dSMatthew Wilcox 	xa_lock(xa);
560371c752dSMatthew Wilcox 	err = __xa_alloc(xa, id, max, entry, gfp);
561371c752dSMatthew Wilcox 	xa_unlock(xa);
562371c752dSMatthew Wilcox 
563371c752dSMatthew Wilcox 	return err;
564371c752dSMatthew Wilcox }
565371c752dSMatthew Wilcox 
566371c752dSMatthew Wilcox /**
567371c752dSMatthew Wilcox  * xa_alloc_bh() - Find somewhere to store this entry in the XArray.
568371c752dSMatthew Wilcox  * @xa: XArray.
569371c752dSMatthew Wilcox  * @id: Pointer to ID.
570371c752dSMatthew Wilcox  * @max: Maximum ID to allocate (inclusive).
571371c752dSMatthew Wilcox  * @entry: New entry.
572371c752dSMatthew Wilcox  * @gfp: Memory allocation flags.
573371c752dSMatthew Wilcox  *
574371c752dSMatthew Wilcox  * Allocates an unused ID in the range specified by @id and @max.
575371c752dSMatthew Wilcox  * Updates the @id pointer with the index, then stores the entry at that
576371c752dSMatthew Wilcox  * index.  A concurrent lookup will not see an uninitialised @id.
577371c752dSMatthew Wilcox  *
578371c752dSMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
579371c752dSMatthew Wilcox  * disabling softirqs.  May sleep if the @gfp flags permit.
580371c752dSMatthew Wilcox  * Return: 0 on success, -ENOMEM if memory allocation fails or -ENOSPC if
581371c752dSMatthew Wilcox  * there is no more space in the XArray.
582371c752dSMatthew Wilcox  */
583371c752dSMatthew Wilcox static inline int xa_alloc_bh(struct xarray *xa, u32 *id, u32 max, void *entry,
584371c752dSMatthew Wilcox 		gfp_t gfp)
585371c752dSMatthew Wilcox {
586371c752dSMatthew Wilcox 	int err;
587371c752dSMatthew Wilcox 
588371c752dSMatthew Wilcox 	xa_lock_bh(xa);
589371c752dSMatthew Wilcox 	err = __xa_alloc(xa, id, max, entry, gfp);
590371c752dSMatthew Wilcox 	xa_unlock_bh(xa);
591371c752dSMatthew Wilcox 
592371c752dSMatthew Wilcox 	return err;
593371c752dSMatthew Wilcox }
594371c752dSMatthew Wilcox 
595371c752dSMatthew Wilcox /**
596371c752dSMatthew Wilcox  * xa_alloc_irq() - Find somewhere to store this entry in the XArray.
597371c752dSMatthew Wilcox  * @xa: XArray.
598371c752dSMatthew Wilcox  * @id: Pointer to ID.
599371c752dSMatthew Wilcox  * @max: Maximum ID to allocate (inclusive).
600371c752dSMatthew Wilcox  * @entry: New entry.
601371c752dSMatthew Wilcox  * @gfp: Memory allocation flags.
602371c752dSMatthew Wilcox  *
603371c752dSMatthew Wilcox  * Allocates an unused ID in the range specified by @id and @max.
604371c752dSMatthew Wilcox  * Updates the @id pointer with the index, then stores the entry at that
605371c752dSMatthew Wilcox  * index.  A concurrent lookup will not see an uninitialised @id.
606371c752dSMatthew Wilcox  *
607371c752dSMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
608371c752dSMatthew Wilcox  * disabling interrupts.  May sleep if the @gfp flags permit.
609371c752dSMatthew Wilcox  * Return: 0 on success, -ENOMEM if memory allocation fails or -ENOSPC if
610371c752dSMatthew Wilcox  * there is no more space in the XArray.
611371c752dSMatthew Wilcox  */
612371c752dSMatthew Wilcox static inline int xa_alloc_irq(struct xarray *xa, u32 *id, u32 max, void *entry,
613371c752dSMatthew Wilcox 		gfp_t gfp)
614371c752dSMatthew Wilcox {
615371c752dSMatthew Wilcox 	int err;
616371c752dSMatthew Wilcox 
617371c752dSMatthew Wilcox 	xa_lock_irq(xa);
618371c752dSMatthew Wilcox 	err = __xa_alloc(xa, id, max, entry, gfp);
619371c752dSMatthew Wilcox 	xa_unlock_irq(xa);
620371c752dSMatthew Wilcox 
621371c752dSMatthew Wilcox 	return err;
622371c752dSMatthew Wilcox }
623371c752dSMatthew Wilcox 
62402c02bf1SMatthew Wilcox /* Everything below here is the Advanced API.  Proceed with caution. */
62502c02bf1SMatthew Wilcox 
62602c02bf1SMatthew Wilcox /*
62702c02bf1SMatthew Wilcox  * The xarray is constructed out of a set of 'chunks' of pointers.  Choosing
62802c02bf1SMatthew Wilcox  * the best chunk size requires some tradeoffs.  A power of two recommends
62902c02bf1SMatthew Wilcox  * itself so that we can walk the tree based purely on shifts and masks.
63002c02bf1SMatthew Wilcox  * Generally, the larger the better; as the number of slots per level of the
63102c02bf1SMatthew Wilcox  * tree increases, the less tall the tree needs to be.  But that needs to be
63202c02bf1SMatthew Wilcox  * balanced against the memory consumption of each node.  On a 64-bit system,
63302c02bf1SMatthew Wilcox  * xa_node is currently 576 bytes, and we get 7 of them per 4kB page.  If we
63402c02bf1SMatthew Wilcox  * doubled the number of slots per node, we'd get only 3 nodes per 4kB page.
63502c02bf1SMatthew Wilcox  */
63602c02bf1SMatthew Wilcox #ifndef XA_CHUNK_SHIFT
63702c02bf1SMatthew Wilcox #define XA_CHUNK_SHIFT		(CONFIG_BASE_SMALL ? 4 : 6)
63802c02bf1SMatthew Wilcox #endif
63902c02bf1SMatthew Wilcox #define XA_CHUNK_SIZE		(1UL << XA_CHUNK_SHIFT)
64002c02bf1SMatthew Wilcox #define XA_CHUNK_MASK		(XA_CHUNK_SIZE - 1)
64101959dfeSMatthew Wilcox #define XA_MAX_MARKS		3
64201959dfeSMatthew Wilcox #define XA_MARK_LONGS		DIV_ROUND_UP(XA_CHUNK_SIZE, BITS_PER_LONG)
64301959dfeSMatthew Wilcox 
64401959dfeSMatthew Wilcox /*
64501959dfeSMatthew Wilcox  * @count is the count of every non-NULL element in the ->slots array
64601959dfeSMatthew Wilcox  * whether that is a value entry, a retry entry, a user pointer,
64701959dfeSMatthew Wilcox  * a sibling entry or a pointer to the next level of the tree.
64801959dfeSMatthew Wilcox  * @nr_values is the count of every element in ->slots which is
64901959dfeSMatthew Wilcox  * either a value entry or a sibling of a value entry.
65001959dfeSMatthew Wilcox  */
65101959dfeSMatthew Wilcox struct xa_node {
65201959dfeSMatthew Wilcox 	unsigned char	shift;		/* Bits remaining in each slot */
65301959dfeSMatthew Wilcox 	unsigned char	offset;		/* Slot offset in parent */
65401959dfeSMatthew Wilcox 	unsigned char	count;		/* Total entry count */
65501959dfeSMatthew Wilcox 	unsigned char	nr_values;	/* Value entry count */
65601959dfeSMatthew Wilcox 	struct xa_node __rcu *parent;	/* NULL at top of tree */
65701959dfeSMatthew Wilcox 	struct xarray	*array;		/* The array we belong to */
65801959dfeSMatthew Wilcox 	union {
65901959dfeSMatthew Wilcox 		struct list_head private_list;	/* For tree user */
66001959dfeSMatthew Wilcox 		struct rcu_head	rcu_head;	/* Used when freeing node */
66101959dfeSMatthew Wilcox 	};
66201959dfeSMatthew Wilcox 	void __rcu	*slots[XA_CHUNK_SIZE];
66301959dfeSMatthew Wilcox 	union {
66401959dfeSMatthew Wilcox 		unsigned long	tags[XA_MAX_MARKS][XA_MARK_LONGS];
66501959dfeSMatthew Wilcox 		unsigned long	marks[XA_MAX_MARKS][XA_MARK_LONGS];
66601959dfeSMatthew Wilcox 	};
66701959dfeSMatthew Wilcox };
66802c02bf1SMatthew Wilcox 
669ad3d6c72SMatthew Wilcox void xa_dump(const struct xarray *);
670ad3d6c72SMatthew Wilcox void xa_dump_node(const struct xa_node *);
671ad3d6c72SMatthew Wilcox 
672ad3d6c72SMatthew Wilcox #ifdef XA_DEBUG
673ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do {					\
674ad3d6c72SMatthew Wilcox 		if (x) {					\
675ad3d6c72SMatthew Wilcox 			xa_dump(xa);				\
676ad3d6c72SMatthew Wilcox 			BUG();					\
677ad3d6c72SMatthew Wilcox 		}						\
678ad3d6c72SMatthew Wilcox 	} while (0)
679ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do {				\
680ad3d6c72SMatthew Wilcox 		if (x) {					\
681ad3d6c72SMatthew Wilcox 			if (node) xa_dump_node(node);		\
682ad3d6c72SMatthew Wilcox 			BUG();					\
683ad3d6c72SMatthew Wilcox 		}						\
684ad3d6c72SMatthew Wilcox 	} while (0)
685ad3d6c72SMatthew Wilcox #else
686ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x)	do { } while (0)
687ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x)	do { } while (0)
688ad3d6c72SMatthew Wilcox #endif
689ad3d6c72SMatthew Wilcox 
690ad3d6c72SMatthew Wilcox /* Private */
691ad3d6c72SMatthew Wilcox static inline void *xa_head(const struct xarray *xa)
692ad3d6c72SMatthew Wilcox {
693ad3d6c72SMatthew Wilcox 	return rcu_dereference_check(xa->xa_head,
694ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
695ad3d6c72SMatthew Wilcox }
696ad3d6c72SMatthew Wilcox 
697ad3d6c72SMatthew Wilcox /* Private */
698ad3d6c72SMatthew Wilcox static inline void *xa_head_locked(const struct xarray *xa)
699ad3d6c72SMatthew Wilcox {
700ad3d6c72SMatthew Wilcox 	return rcu_dereference_protected(xa->xa_head,
701ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
702ad3d6c72SMatthew Wilcox }
703ad3d6c72SMatthew Wilcox 
704ad3d6c72SMatthew Wilcox /* Private */
705ad3d6c72SMatthew Wilcox static inline void *xa_entry(const struct xarray *xa,
706ad3d6c72SMatthew Wilcox 				const struct xa_node *node, unsigned int offset)
707ad3d6c72SMatthew Wilcox {
708ad3d6c72SMatthew Wilcox 	XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE);
709ad3d6c72SMatthew Wilcox 	return rcu_dereference_check(node->slots[offset],
710ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
711ad3d6c72SMatthew Wilcox }
712ad3d6c72SMatthew Wilcox 
713ad3d6c72SMatthew Wilcox /* Private */
714ad3d6c72SMatthew Wilcox static inline void *xa_entry_locked(const struct xarray *xa,
715ad3d6c72SMatthew Wilcox 				const struct xa_node *node, unsigned int offset)
716ad3d6c72SMatthew Wilcox {
717ad3d6c72SMatthew Wilcox 	XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE);
718ad3d6c72SMatthew Wilcox 	return rcu_dereference_protected(node->slots[offset],
719ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
720ad3d6c72SMatthew Wilcox }
721ad3d6c72SMatthew Wilcox 
722ad3d6c72SMatthew Wilcox /* Private */
7239b89a035SMatthew Wilcox static inline struct xa_node *xa_parent(const struct xarray *xa,
7249b89a035SMatthew Wilcox 					const struct xa_node *node)
7259b89a035SMatthew Wilcox {
7269b89a035SMatthew Wilcox 	return rcu_dereference_check(node->parent,
7279b89a035SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
7289b89a035SMatthew Wilcox }
7299b89a035SMatthew Wilcox 
7309b89a035SMatthew Wilcox /* Private */
7319b89a035SMatthew Wilcox static inline struct xa_node *xa_parent_locked(const struct xarray *xa,
7329b89a035SMatthew Wilcox 					const struct xa_node *node)
7339b89a035SMatthew Wilcox {
7349b89a035SMatthew Wilcox 	return rcu_dereference_protected(node->parent,
7359b89a035SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
7369b89a035SMatthew Wilcox }
7379b89a035SMatthew Wilcox 
7389b89a035SMatthew Wilcox /* Private */
73958d6ea30SMatthew Wilcox static inline void *xa_mk_node(const struct xa_node *node)
74058d6ea30SMatthew Wilcox {
74158d6ea30SMatthew Wilcox 	return (void *)((unsigned long)node | 2);
74258d6ea30SMatthew Wilcox }
74358d6ea30SMatthew Wilcox 
74458d6ea30SMatthew Wilcox /* Private */
745ad3d6c72SMatthew Wilcox static inline struct xa_node *xa_to_node(const void *entry)
746ad3d6c72SMatthew Wilcox {
747ad3d6c72SMatthew Wilcox 	return (struct xa_node *)((unsigned long)entry - 2);
748ad3d6c72SMatthew Wilcox }
749ad3d6c72SMatthew Wilcox 
75002c02bf1SMatthew Wilcox /* Private */
75102c02bf1SMatthew Wilcox static inline bool xa_is_node(const void *entry)
75202c02bf1SMatthew Wilcox {
75302c02bf1SMatthew Wilcox 	return xa_is_internal(entry) && (unsigned long)entry > 4096;
75402c02bf1SMatthew Wilcox }
75502c02bf1SMatthew Wilcox 
75602c02bf1SMatthew Wilcox /* Private */
75702c02bf1SMatthew Wilcox static inline void *xa_mk_sibling(unsigned int offset)
75802c02bf1SMatthew Wilcox {
75902c02bf1SMatthew Wilcox 	return xa_mk_internal(offset);
76002c02bf1SMatthew Wilcox }
76102c02bf1SMatthew Wilcox 
76202c02bf1SMatthew Wilcox /* Private */
76302c02bf1SMatthew Wilcox static inline unsigned long xa_to_sibling(const void *entry)
76402c02bf1SMatthew Wilcox {
76502c02bf1SMatthew Wilcox 	return xa_to_internal(entry);
76602c02bf1SMatthew Wilcox }
76702c02bf1SMatthew Wilcox 
76802c02bf1SMatthew Wilcox /**
76902c02bf1SMatthew Wilcox  * xa_is_sibling() - Is the entry a sibling entry?
77002c02bf1SMatthew Wilcox  * @entry: Entry retrieved from the XArray
77102c02bf1SMatthew Wilcox  *
77202c02bf1SMatthew Wilcox  * Return: %true if the entry is a sibling entry.
77302c02bf1SMatthew Wilcox  */
77402c02bf1SMatthew Wilcox static inline bool xa_is_sibling(const void *entry)
77502c02bf1SMatthew Wilcox {
77602c02bf1SMatthew Wilcox 	return IS_ENABLED(CONFIG_XARRAY_MULTI) && xa_is_internal(entry) &&
77702c02bf1SMatthew Wilcox 		(entry < xa_mk_sibling(XA_CHUNK_SIZE - 1));
77802c02bf1SMatthew Wilcox }
77902c02bf1SMatthew Wilcox 
7809f14d4f1SMatthew Wilcox #define XA_ZERO_ENTRY		xa_mk_internal(256)
7819f14d4f1SMatthew Wilcox #define XA_RETRY_ENTRY		xa_mk_internal(257)
7829f14d4f1SMatthew Wilcox 
7839f14d4f1SMatthew Wilcox /**
7849f14d4f1SMatthew Wilcox  * xa_is_zero() - Is the entry a zero entry?
7859f14d4f1SMatthew Wilcox  * @entry: Entry retrieved from the XArray
7869f14d4f1SMatthew Wilcox  *
7879f14d4f1SMatthew Wilcox  * Return: %true if the entry is a zero entry.
7889f14d4f1SMatthew Wilcox  */
7899f14d4f1SMatthew Wilcox static inline bool xa_is_zero(const void *entry)
7909f14d4f1SMatthew Wilcox {
7919f14d4f1SMatthew Wilcox 	return unlikely(entry == XA_ZERO_ENTRY);
7929f14d4f1SMatthew Wilcox }
79302c02bf1SMatthew Wilcox 
794ad3d6c72SMatthew Wilcox /**
795ad3d6c72SMatthew Wilcox  * xa_is_retry() - Is the entry a retry entry?
796ad3d6c72SMatthew Wilcox  * @entry: Entry retrieved from the XArray
797ad3d6c72SMatthew Wilcox  *
798ad3d6c72SMatthew Wilcox  * Return: %true if the entry is a retry entry.
799ad3d6c72SMatthew Wilcox  */
800ad3d6c72SMatthew Wilcox static inline bool xa_is_retry(const void *entry)
801ad3d6c72SMatthew Wilcox {
802ad3d6c72SMatthew Wilcox 	return unlikely(entry == XA_RETRY_ENTRY);
803ad3d6c72SMatthew Wilcox }
804ad3d6c72SMatthew Wilcox 
805ad3d6c72SMatthew Wilcox /**
806ad3d6c72SMatthew Wilcox  * typedef xa_update_node_t - A callback function from the XArray.
807ad3d6c72SMatthew Wilcox  * @node: The node which is being processed
808ad3d6c72SMatthew Wilcox  *
809ad3d6c72SMatthew Wilcox  * This function is called every time the XArray updates the count of
810ad3d6c72SMatthew Wilcox  * present and value entries in a node.  It allows advanced users to
811ad3d6c72SMatthew Wilcox  * maintain the private_list in the node.
812ad3d6c72SMatthew Wilcox  *
813ad3d6c72SMatthew Wilcox  * Context: The xa_lock is held and interrupts may be disabled.
814ad3d6c72SMatthew Wilcox  *	    Implementations should not drop the xa_lock, nor re-enable
815ad3d6c72SMatthew Wilcox  *	    interrupts.
816ad3d6c72SMatthew Wilcox  */
817ad3d6c72SMatthew Wilcox typedef void (*xa_update_node_t)(struct xa_node *node);
818ad3d6c72SMatthew Wilcox 
819ad3d6c72SMatthew Wilcox /*
820ad3d6c72SMatthew Wilcox  * The xa_state is opaque to its users.  It contains various different pieces
821ad3d6c72SMatthew Wilcox  * of state involved in the current operation on the XArray.  It should be
822ad3d6c72SMatthew Wilcox  * declared on the stack and passed between the various internal routines.
823ad3d6c72SMatthew Wilcox  * The various elements in it should not be accessed directly, but only
824ad3d6c72SMatthew Wilcox  * through the provided accessor functions.  The below documentation is for
825ad3d6c72SMatthew Wilcox  * the benefit of those working on the code, not for users of the XArray.
826ad3d6c72SMatthew Wilcox  *
827ad3d6c72SMatthew Wilcox  * @xa_node usually points to the xa_node containing the slot we're operating
828ad3d6c72SMatthew Wilcox  * on (and @xa_offset is the offset in the slots array).  If there is a
829ad3d6c72SMatthew Wilcox  * single entry in the array at index 0, there are no allocated xa_nodes to
830ad3d6c72SMatthew Wilcox  * point to, and so we store %NULL in @xa_node.  @xa_node is set to
831ad3d6c72SMatthew Wilcox  * the value %XAS_RESTART if the xa_state is not walked to the correct
832ad3d6c72SMatthew Wilcox  * position in the tree of nodes for this operation.  If an error occurs
833ad3d6c72SMatthew Wilcox  * during an operation, it is set to an %XAS_ERROR value.  If we run off the
834ad3d6c72SMatthew Wilcox  * end of the allocated nodes, it is set to %XAS_BOUNDS.
835ad3d6c72SMatthew Wilcox  */
836ad3d6c72SMatthew Wilcox struct xa_state {
837ad3d6c72SMatthew Wilcox 	struct xarray *xa;
838ad3d6c72SMatthew Wilcox 	unsigned long xa_index;
839ad3d6c72SMatthew Wilcox 	unsigned char xa_shift;
840ad3d6c72SMatthew Wilcox 	unsigned char xa_sibs;
841ad3d6c72SMatthew Wilcox 	unsigned char xa_offset;
842ad3d6c72SMatthew Wilcox 	unsigned char xa_pad;		/* Helps gcc generate better code */
843ad3d6c72SMatthew Wilcox 	struct xa_node *xa_node;
844ad3d6c72SMatthew Wilcox 	struct xa_node *xa_alloc;
845ad3d6c72SMatthew Wilcox 	xa_update_node_t xa_update;
846ad3d6c72SMatthew Wilcox };
847ad3d6c72SMatthew Wilcox 
848ad3d6c72SMatthew Wilcox /*
849ad3d6c72SMatthew Wilcox  * We encode errnos in the xas->xa_node.  If an error has happened, we need to
850ad3d6c72SMatthew Wilcox  * drop the lock to fix it, and once we've done so the xa_state is invalid.
851ad3d6c72SMatthew Wilcox  */
852ad3d6c72SMatthew Wilcox #define XA_ERROR(errno) ((struct xa_node *)(((unsigned long)errno << 2) | 2UL))
853ad3d6c72SMatthew Wilcox #define XAS_BOUNDS	((struct xa_node *)1UL)
854ad3d6c72SMatthew Wilcox #define XAS_RESTART	((struct xa_node *)3UL)
855ad3d6c72SMatthew Wilcox 
856ad3d6c72SMatthew Wilcox #define __XA_STATE(array, index, shift, sibs)  {	\
857ad3d6c72SMatthew Wilcox 	.xa = array,					\
858ad3d6c72SMatthew Wilcox 	.xa_index = index,				\
859ad3d6c72SMatthew Wilcox 	.xa_shift = shift,				\
860ad3d6c72SMatthew Wilcox 	.xa_sibs = sibs,				\
861ad3d6c72SMatthew Wilcox 	.xa_offset = 0,					\
862ad3d6c72SMatthew Wilcox 	.xa_pad = 0,					\
863ad3d6c72SMatthew Wilcox 	.xa_node = XAS_RESTART,				\
864ad3d6c72SMatthew Wilcox 	.xa_alloc = NULL,				\
865ad3d6c72SMatthew Wilcox 	.xa_update = NULL				\
866ad3d6c72SMatthew Wilcox }
867ad3d6c72SMatthew Wilcox 
868ad3d6c72SMatthew Wilcox /**
869ad3d6c72SMatthew Wilcox  * XA_STATE() - Declare an XArray operation state.
870ad3d6c72SMatthew Wilcox  * @name: Name of this operation state (usually xas).
871ad3d6c72SMatthew Wilcox  * @array: Array to operate on.
872ad3d6c72SMatthew Wilcox  * @index: Initial index of interest.
873ad3d6c72SMatthew Wilcox  *
874ad3d6c72SMatthew Wilcox  * Declare and initialise an xa_state on the stack.
875ad3d6c72SMatthew Wilcox  */
876ad3d6c72SMatthew Wilcox #define XA_STATE(name, array, index)				\
877ad3d6c72SMatthew Wilcox 	struct xa_state name = __XA_STATE(array, index, 0, 0)
878ad3d6c72SMatthew Wilcox 
879ad3d6c72SMatthew Wilcox /**
880ad3d6c72SMatthew Wilcox  * XA_STATE_ORDER() - Declare an XArray operation state.
881ad3d6c72SMatthew Wilcox  * @name: Name of this operation state (usually xas).
882ad3d6c72SMatthew Wilcox  * @array: Array to operate on.
883ad3d6c72SMatthew Wilcox  * @index: Initial index of interest.
884ad3d6c72SMatthew Wilcox  * @order: Order of entry.
885ad3d6c72SMatthew Wilcox  *
886ad3d6c72SMatthew Wilcox  * Declare and initialise an xa_state on the stack.  This variant of
887ad3d6c72SMatthew Wilcox  * XA_STATE() allows you to specify the 'order' of the element you
888ad3d6c72SMatthew Wilcox  * want to operate on.`
889ad3d6c72SMatthew Wilcox  */
890ad3d6c72SMatthew Wilcox #define XA_STATE_ORDER(name, array, index, order)		\
891ad3d6c72SMatthew Wilcox 	struct xa_state name = __XA_STATE(array,		\
892ad3d6c72SMatthew Wilcox 			(index >> order) << order,		\
893ad3d6c72SMatthew Wilcox 			order - (order % XA_CHUNK_SHIFT),	\
894ad3d6c72SMatthew Wilcox 			(1U << (order % XA_CHUNK_SHIFT)) - 1)
895ad3d6c72SMatthew Wilcox 
896ad3d6c72SMatthew Wilcox #define xas_marked(xas, mark)	xa_marked((xas)->xa, (mark))
897ad3d6c72SMatthew Wilcox #define xas_trylock(xas)	xa_trylock((xas)->xa)
898ad3d6c72SMatthew Wilcox #define xas_lock(xas)		xa_lock((xas)->xa)
899ad3d6c72SMatthew Wilcox #define xas_unlock(xas)		xa_unlock((xas)->xa)
900ad3d6c72SMatthew Wilcox #define xas_lock_bh(xas)	xa_lock_bh((xas)->xa)
901ad3d6c72SMatthew Wilcox #define xas_unlock_bh(xas)	xa_unlock_bh((xas)->xa)
902ad3d6c72SMatthew Wilcox #define xas_lock_irq(xas)	xa_lock_irq((xas)->xa)
903ad3d6c72SMatthew Wilcox #define xas_unlock_irq(xas)	xa_unlock_irq((xas)->xa)
904ad3d6c72SMatthew Wilcox #define xas_lock_irqsave(xas, flags) \
905ad3d6c72SMatthew Wilcox 				xa_lock_irqsave((xas)->xa, flags)
906ad3d6c72SMatthew Wilcox #define xas_unlock_irqrestore(xas, flags) \
907ad3d6c72SMatthew Wilcox 				xa_unlock_irqrestore((xas)->xa, flags)
908ad3d6c72SMatthew Wilcox 
909ad3d6c72SMatthew Wilcox /**
910ad3d6c72SMatthew Wilcox  * xas_error() - Return an errno stored in the xa_state.
911ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
912ad3d6c72SMatthew Wilcox  *
913ad3d6c72SMatthew Wilcox  * Return: 0 if no error has been noted.  A negative errno if one has.
914ad3d6c72SMatthew Wilcox  */
915ad3d6c72SMatthew Wilcox static inline int xas_error(const struct xa_state *xas)
916ad3d6c72SMatthew Wilcox {
917ad3d6c72SMatthew Wilcox 	return xa_err(xas->xa_node);
918ad3d6c72SMatthew Wilcox }
919ad3d6c72SMatthew Wilcox 
920ad3d6c72SMatthew Wilcox /**
921ad3d6c72SMatthew Wilcox  * xas_set_err() - Note an error in the xa_state.
922ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
923ad3d6c72SMatthew Wilcox  * @err: Negative error number.
924ad3d6c72SMatthew Wilcox  *
925ad3d6c72SMatthew Wilcox  * Only call this function with a negative @err; zero or positive errors
926ad3d6c72SMatthew Wilcox  * will probably not behave the way you think they should.  If you want
927ad3d6c72SMatthew Wilcox  * to clear the error from an xa_state, use xas_reset().
928ad3d6c72SMatthew Wilcox  */
929ad3d6c72SMatthew Wilcox static inline void xas_set_err(struct xa_state *xas, long err)
930ad3d6c72SMatthew Wilcox {
931ad3d6c72SMatthew Wilcox 	xas->xa_node = XA_ERROR(err);
932ad3d6c72SMatthew Wilcox }
933ad3d6c72SMatthew Wilcox 
934ad3d6c72SMatthew Wilcox /**
935ad3d6c72SMatthew Wilcox  * xas_invalid() - Is the xas in a retry or error state?
936ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
937ad3d6c72SMatthew Wilcox  *
938ad3d6c72SMatthew Wilcox  * Return: %true if the xas cannot be used for operations.
939ad3d6c72SMatthew Wilcox  */
940ad3d6c72SMatthew Wilcox static inline bool xas_invalid(const struct xa_state *xas)
941ad3d6c72SMatthew Wilcox {
942ad3d6c72SMatthew Wilcox 	return (unsigned long)xas->xa_node & 3;
943ad3d6c72SMatthew Wilcox }
944ad3d6c72SMatthew Wilcox 
945ad3d6c72SMatthew Wilcox /**
946ad3d6c72SMatthew Wilcox  * xas_valid() - Is the xas a valid cursor into the array?
947ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
948ad3d6c72SMatthew Wilcox  *
949ad3d6c72SMatthew Wilcox  * Return: %true if the xas can be used for operations.
950ad3d6c72SMatthew Wilcox  */
951ad3d6c72SMatthew Wilcox static inline bool xas_valid(const struct xa_state *xas)
952ad3d6c72SMatthew Wilcox {
953ad3d6c72SMatthew Wilcox 	return !xas_invalid(xas);
954ad3d6c72SMatthew Wilcox }
955ad3d6c72SMatthew Wilcox 
9562264f513SMatthew Wilcox /**
9572264f513SMatthew Wilcox  * xas_is_node() - Does the xas point to a node?
9582264f513SMatthew Wilcox  * @xas: XArray operation state.
9592264f513SMatthew Wilcox  *
9602264f513SMatthew Wilcox  * Return: %true if the xas currently references a node.
9612264f513SMatthew Wilcox  */
9622264f513SMatthew Wilcox static inline bool xas_is_node(const struct xa_state *xas)
9632264f513SMatthew Wilcox {
9642264f513SMatthew Wilcox 	return xas_valid(xas) && xas->xa_node;
9652264f513SMatthew Wilcox }
9662264f513SMatthew Wilcox 
9679b89a035SMatthew Wilcox /* True if the pointer is something other than a node */
9689b89a035SMatthew Wilcox static inline bool xas_not_node(struct xa_node *node)
9699b89a035SMatthew Wilcox {
9709b89a035SMatthew Wilcox 	return ((unsigned long)node & 3) || !node;
9719b89a035SMatthew Wilcox }
9729b89a035SMatthew Wilcox 
97364d3e9a9SMatthew Wilcox /* True if the node represents RESTART or an error */
97464d3e9a9SMatthew Wilcox static inline bool xas_frozen(struct xa_node *node)
97564d3e9a9SMatthew Wilcox {
97664d3e9a9SMatthew Wilcox 	return (unsigned long)node & 2;
97764d3e9a9SMatthew Wilcox }
97864d3e9a9SMatthew Wilcox 
97958d6ea30SMatthew Wilcox /* True if the node represents head-of-tree, RESTART or BOUNDS */
98058d6ea30SMatthew Wilcox static inline bool xas_top(struct xa_node *node)
98158d6ea30SMatthew Wilcox {
98258d6ea30SMatthew Wilcox 	return node <= XAS_RESTART;
98358d6ea30SMatthew Wilcox }
98458d6ea30SMatthew Wilcox 
985ad3d6c72SMatthew Wilcox /**
986ad3d6c72SMatthew Wilcox  * xas_reset() - Reset an XArray operation state.
987ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
988ad3d6c72SMatthew Wilcox  *
989ad3d6c72SMatthew Wilcox  * Resets the error or walk state of the @xas so future walks of the
990ad3d6c72SMatthew Wilcox  * array will start from the root.  Use this if you have dropped the
991ad3d6c72SMatthew Wilcox  * xarray lock and want to reuse the xa_state.
992ad3d6c72SMatthew Wilcox  *
993ad3d6c72SMatthew Wilcox  * Context: Any context.
994ad3d6c72SMatthew Wilcox  */
995ad3d6c72SMatthew Wilcox static inline void xas_reset(struct xa_state *xas)
996ad3d6c72SMatthew Wilcox {
997ad3d6c72SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
998ad3d6c72SMatthew Wilcox }
999ad3d6c72SMatthew Wilcox 
1000ad3d6c72SMatthew Wilcox /**
1001ad3d6c72SMatthew Wilcox  * xas_retry() - Retry the operation if appropriate.
1002ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
1003ad3d6c72SMatthew Wilcox  * @entry: Entry from xarray.
1004ad3d6c72SMatthew Wilcox  *
1005ad3d6c72SMatthew Wilcox  * The advanced functions may sometimes return an internal entry, such as
1006ad3d6c72SMatthew Wilcox  * a retry entry or a zero entry.  This function sets up the @xas to restart
1007ad3d6c72SMatthew Wilcox  * the walk from the head of the array if needed.
1008ad3d6c72SMatthew Wilcox  *
1009ad3d6c72SMatthew Wilcox  * Context: Any context.
1010ad3d6c72SMatthew Wilcox  * Return: true if the operation needs to be retried.
1011ad3d6c72SMatthew Wilcox  */
1012ad3d6c72SMatthew Wilcox static inline bool xas_retry(struct xa_state *xas, const void *entry)
1013ad3d6c72SMatthew Wilcox {
10149f14d4f1SMatthew Wilcox 	if (xa_is_zero(entry))
10159f14d4f1SMatthew Wilcox 		return true;
1016ad3d6c72SMatthew Wilcox 	if (!xa_is_retry(entry))
1017ad3d6c72SMatthew Wilcox 		return false;
1018ad3d6c72SMatthew Wilcox 	xas_reset(xas);
1019ad3d6c72SMatthew Wilcox 	return true;
1020ad3d6c72SMatthew Wilcox }
1021ad3d6c72SMatthew Wilcox 
1022ad3d6c72SMatthew Wilcox void *xas_load(struct xa_state *);
102358d6ea30SMatthew Wilcox void *xas_store(struct xa_state *, void *entry);
1024b803b428SMatthew Wilcox void *xas_find(struct xa_state *, unsigned long max);
10254e99d4e9SMatthew Wilcox void *xas_find_conflict(struct xa_state *);
1026ad3d6c72SMatthew Wilcox 
10279b89a035SMatthew Wilcox bool xas_get_mark(const struct xa_state *, xa_mark_t);
10289b89a035SMatthew Wilcox void xas_set_mark(const struct xa_state *, xa_mark_t);
10299b89a035SMatthew Wilcox void xas_clear_mark(const struct xa_state *, xa_mark_t);
1030b803b428SMatthew Wilcox void *xas_find_marked(struct xa_state *, unsigned long max, xa_mark_t);
103158d6ea30SMatthew Wilcox void xas_init_marks(const struct xa_state *);
103258d6ea30SMatthew Wilcox 
103358d6ea30SMatthew Wilcox bool xas_nomem(struct xa_state *, gfp_t);
1034b803b428SMatthew Wilcox void xas_pause(struct xa_state *);
10359b89a035SMatthew Wilcox 
10362264f513SMatthew Wilcox void xas_create_range(struct xa_state *);
10372264f513SMatthew Wilcox 
1038ad3d6c72SMatthew Wilcox /**
1039ad3d6c72SMatthew Wilcox  * xas_reload() - Refetch an entry from the xarray.
1040ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
1041ad3d6c72SMatthew Wilcox  *
1042ad3d6c72SMatthew Wilcox  * Use this function to check that a previously loaded entry still has
1043ad3d6c72SMatthew Wilcox  * the same value.  This is useful for the lockless pagecache lookup where
1044ad3d6c72SMatthew Wilcox  * we walk the array with only the RCU lock to protect us, lock the page,
1045ad3d6c72SMatthew Wilcox  * then check that the page hasn't moved since we looked it up.
1046ad3d6c72SMatthew Wilcox  *
1047ad3d6c72SMatthew Wilcox  * The caller guarantees that @xas is still valid.  If it may be in an
1048ad3d6c72SMatthew Wilcox  * error or restart state, call xas_load() instead.
1049ad3d6c72SMatthew Wilcox  *
1050ad3d6c72SMatthew Wilcox  * Return: The entry at this location in the xarray.
1051ad3d6c72SMatthew Wilcox  */
1052ad3d6c72SMatthew Wilcox static inline void *xas_reload(struct xa_state *xas)
1053ad3d6c72SMatthew Wilcox {
1054ad3d6c72SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
1055ad3d6c72SMatthew Wilcox 
1056ad3d6c72SMatthew Wilcox 	if (node)
1057ad3d6c72SMatthew Wilcox 		return xa_entry(xas->xa, node, xas->xa_offset);
1058ad3d6c72SMatthew Wilcox 	return xa_head(xas->xa);
1059ad3d6c72SMatthew Wilcox }
1060ad3d6c72SMatthew Wilcox 
106158d6ea30SMatthew Wilcox /**
106258d6ea30SMatthew Wilcox  * xas_set() - Set up XArray operation state for a different index.
106358d6ea30SMatthew Wilcox  * @xas: XArray operation state.
106458d6ea30SMatthew Wilcox  * @index: New index into the XArray.
106558d6ea30SMatthew Wilcox  *
106658d6ea30SMatthew Wilcox  * Move the operation state to refer to a different index.  This will
106758d6ea30SMatthew Wilcox  * have the effect of starting a walk from the top; see xas_next()
106858d6ea30SMatthew Wilcox  * to move to an adjacent index.
106958d6ea30SMatthew Wilcox  */
107058d6ea30SMatthew Wilcox static inline void xas_set(struct xa_state *xas, unsigned long index)
107158d6ea30SMatthew Wilcox {
107258d6ea30SMatthew Wilcox 	xas->xa_index = index;
107358d6ea30SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
107458d6ea30SMatthew Wilcox }
107558d6ea30SMatthew Wilcox 
107658d6ea30SMatthew Wilcox /**
107758d6ea30SMatthew Wilcox  * xas_set_order() - Set up XArray operation state for a multislot entry.
107858d6ea30SMatthew Wilcox  * @xas: XArray operation state.
107958d6ea30SMatthew Wilcox  * @index: Target of the operation.
108058d6ea30SMatthew Wilcox  * @order: Entry occupies 2^@order indices.
108158d6ea30SMatthew Wilcox  */
108258d6ea30SMatthew Wilcox static inline void xas_set_order(struct xa_state *xas, unsigned long index,
108358d6ea30SMatthew Wilcox 					unsigned int order)
108458d6ea30SMatthew Wilcox {
108558d6ea30SMatthew Wilcox #ifdef CONFIG_XARRAY_MULTI
108658d6ea30SMatthew Wilcox 	xas->xa_index = order < BITS_PER_LONG ? (index >> order) << order : 0;
108758d6ea30SMatthew Wilcox 	xas->xa_shift = order - (order % XA_CHUNK_SHIFT);
108858d6ea30SMatthew Wilcox 	xas->xa_sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1;
108958d6ea30SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
109058d6ea30SMatthew Wilcox #else
109158d6ea30SMatthew Wilcox 	BUG_ON(order > 0);
109258d6ea30SMatthew Wilcox 	xas_set(xas, index);
109358d6ea30SMatthew Wilcox #endif
109458d6ea30SMatthew Wilcox }
109558d6ea30SMatthew Wilcox 
109658d6ea30SMatthew Wilcox /**
109758d6ea30SMatthew Wilcox  * xas_set_update() - Set up XArray operation state for a callback.
109858d6ea30SMatthew Wilcox  * @xas: XArray operation state.
109958d6ea30SMatthew Wilcox  * @update: Function to call when updating a node.
110058d6ea30SMatthew Wilcox  *
110158d6ea30SMatthew Wilcox  * The XArray can notify a caller after it has updated an xa_node.
110258d6ea30SMatthew Wilcox  * This is advanced functionality and is only needed by the page cache.
110358d6ea30SMatthew Wilcox  */
110458d6ea30SMatthew Wilcox static inline void xas_set_update(struct xa_state *xas, xa_update_node_t update)
110558d6ea30SMatthew Wilcox {
110658d6ea30SMatthew Wilcox 	xas->xa_update = update;
110758d6ea30SMatthew Wilcox }
110858d6ea30SMatthew Wilcox 
1109b803b428SMatthew Wilcox /**
1110b803b428SMatthew Wilcox  * xas_next_entry() - Advance iterator to next present entry.
1111b803b428SMatthew Wilcox  * @xas: XArray operation state.
1112b803b428SMatthew Wilcox  * @max: Highest index to return.
1113b803b428SMatthew Wilcox  *
1114b803b428SMatthew Wilcox  * xas_next_entry() is an inline function to optimise xarray traversal for
1115b803b428SMatthew Wilcox  * speed.  It is equivalent to calling xas_find(), and will call xas_find()
1116b803b428SMatthew Wilcox  * for all the hard cases.
1117b803b428SMatthew Wilcox  *
1118b803b428SMatthew Wilcox  * Return: The next present entry after the one currently referred to by @xas.
1119b803b428SMatthew Wilcox  */
1120b803b428SMatthew Wilcox static inline void *xas_next_entry(struct xa_state *xas, unsigned long max)
1121b803b428SMatthew Wilcox {
1122b803b428SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
1123b803b428SMatthew Wilcox 	void *entry;
1124b803b428SMatthew Wilcox 
1125b803b428SMatthew Wilcox 	if (unlikely(xas_not_node(node) || node->shift ||
1126b803b428SMatthew Wilcox 			xas->xa_offset != (xas->xa_index & XA_CHUNK_MASK)))
1127b803b428SMatthew Wilcox 		return xas_find(xas, max);
1128b803b428SMatthew Wilcox 
1129b803b428SMatthew Wilcox 	do {
1130b803b428SMatthew Wilcox 		if (unlikely(xas->xa_index >= max))
1131b803b428SMatthew Wilcox 			return xas_find(xas, max);
1132b803b428SMatthew Wilcox 		if (unlikely(xas->xa_offset == XA_CHUNK_MASK))
1133b803b428SMatthew Wilcox 			return xas_find(xas, max);
1134b803b428SMatthew Wilcox 		entry = xa_entry(xas->xa, node, xas->xa_offset + 1);
1135b803b428SMatthew Wilcox 		if (unlikely(xa_is_internal(entry)))
1136b803b428SMatthew Wilcox 			return xas_find(xas, max);
1137b803b428SMatthew Wilcox 		xas->xa_offset++;
1138b803b428SMatthew Wilcox 		xas->xa_index++;
1139b803b428SMatthew Wilcox 	} while (!entry);
1140b803b428SMatthew Wilcox 
1141b803b428SMatthew Wilcox 	return entry;
1142b803b428SMatthew Wilcox }
1143b803b428SMatthew Wilcox 
1144b803b428SMatthew Wilcox /* Private */
1145b803b428SMatthew Wilcox static inline unsigned int xas_find_chunk(struct xa_state *xas, bool advance,
1146b803b428SMatthew Wilcox 		xa_mark_t mark)
1147b803b428SMatthew Wilcox {
1148b803b428SMatthew Wilcox 	unsigned long *addr = xas->xa_node->marks[(__force unsigned)mark];
1149b803b428SMatthew Wilcox 	unsigned int offset = xas->xa_offset;
1150b803b428SMatthew Wilcox 
1151b803b428SMatthew Wilcox 	if (advance)
1152b803b428SMatthew Wilcox 		offset++;
1153b803b428SMatthew Wilcox 	if (XA_CHUNK_SIZE == BITS_PER_LONG) {
1154b803b428SMatthew Wilcox 		if (offset < XA_CHUNK_SIZE) {
1155b803b428SMatthew Wilcox 			unsigned long data = *addr & (~0UL << offset);
1156b803b428SMatthew Wilcox 			if (data)
1157b803b428SMatthew Wilcox 				return __ffs(data);
1158b803b428SMatthew Wilcox 		}
1159b803b428SMatthew Wilcox 		return XA_CHUNK_SIZE;
1160b803b428SMatthew Wilcox 	}
1161b803b428SMatthew Wilcox 
1162b803b428SMatthew Wilcox 	return find_next_bit(addr, XA_CHUNK_SIZE, offset);
1163b803b428SMatthew Wilcox }
1164b803b428SMatthew Wilcox 
1165b803b428SMatthew Wilcox /**
1166b803b428SMatthew Wilcox  * xas_next_marked() - Advance iterator to next marked entry.
1167b803b428SMatthew Wilcox  * @xas: XArray operation state.
1168b803b428SMatthew Wilcox  * @max: Highest index to return.
1169b803b428SMatthew Wilcox  * @mark: Mark to search for.
1170b803b428SMatthew Wilcox  *
1171b803b428SMatthew Wilcox  * xas_next_marked() is an inline function to optimise xarray traversal for
1172b803b428SMatthew Wilcox  * speed.  It is equivalent to calling xas_find_marked(), and will call
1173b803b428SMatthew Wilcox  * xas_find_marked() for all the hard cases.
1174b803b428SMatthew Wilcox  *
1175b803b428SMatthew Wilcox  * Return: The next marked entry after the one currently referred to by @xas.
1176b803b428SMatthew Wilcox  */
1177b803b428SMatthew Wilcox static inline void *xas_next_marked(struct xa_state *xas, unsigned long max,
1178b803b428SMatthew Wilcox 								xa_mark_t mark)
1179b803b428SMatthew Wilcox {
1180b803b428SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
1181b803b428SMatthew Wilcox 	unsigned int offset;
1182b803b428SMatthew Wilcox 
1183b803b428SMatthew Wilcox 	if (unlikely(xas_not_node(node) || node->shift))
1184b803b428SMatthew Wilcox 		return xas_find_marked(xas, max, mark);
1185b803b428SMatthew Wilcox 	offset = xas_find_chunk(xas, true, mark);
1186b803b428SMatthew Wilcox 	xas->xa_offset = offset;
1187b803b428SMatthew Wilcox 	xas->xa_index = (xas->xa_index & ~XA_CHUNK_MASK) + offset;
1188b803b428SMatthew Wilcox 	if (xas->xa_index > max)
1189b803b428SMatthew Wilcox 		return NULL;
1190b803b428SMatthew Wilcox 	if (offset == XA_CHUNK_SIZE)
1191b803b428SMatthew Wilcox 		return xas_find_marked(xas, max, mark);
1192b803b428SMatthew Wilcox 	return xa_entry(xas->xa, node, offset);
1193b803b428SMatthew Wilcox }
1194b803b428SMatthew Wilcox 
1195b803b428SMatthew Wilcox /*
1196b803b428SMatthew Wilcox  * If iterating while holding a lock, drop the lock and reschedule
1197b803b428SMatthew Wilcox  * every %XA_CHECK_SCHED loops.
1198b803b428SMatthew Wilcox  */
1199b803b428SMatthew Wilcox enum {
1200b803b428SMatthew Wilcox 	XA_CHECK_SCHED = 4096,
1201b803b428SMatthew Wilcox };
1202b803b428SMatthew Wilcox 
1203b803b428SMatthew Wilcox /**
1204b803b428SMatthew Wilcox  * xas_for_each() - Iterate over a range of an XArray.
1205b803b428SMatthew Wilcox  * @xas: XArray operation state.
1206b803b428SMatthew Wilcox  * @entry: Entry retrieved from the array.
1207b803b428SMatthew Wilcox  * @max: Maximum index to retrieve from array.
1208b803b428SMatthew Wilcox  *
1209b803b428SMatthew Wilcox  * The loop body will be executed for each entry present in the xarray
1210b803b428SMatthew Wilcox  * between the current xas position and @max.  @entry will be set to
1211b803b428SMatthew Wilcox  * the entry retrieved from the xarray.  It is safe to delete entries
1212b803b428SMatthew Wilcox  * from the array in the loop body.  You should hold either the RCU lock
1213b803b428SMatthew Wilcox  * or the xa_lock while iterating.  If you need to drop the lock, call
1214b803b428SMatthew Wilcox  * xas_pause() first.
1215b803b428SMatthew Wilcox  */
1216b803b428SMatthew Wilcox #define xas_for_each(xas, entry, max) \
1217b803b428SMatthew Wilcox 	for (entry = xas_find(xas, max); entry; \
1218b803b428SMatthew Wilcox 	     entry = xas_next_entry(xas, max))
1219b803b428SMatthew Wilcox 
1220b803b428SMatthew Wilcox /**
1221b803b428SMatthew Wilcox  * xas_for_each_marked() - Iterate over a range of an XArray.
1222b803b428SMatthew Wilcox  * @xas: XArray operation state.
1223b803b428SMatthew Wilcox  * @entry: Entry retrieved from the array.
1224b803b428SMatthew Wilcox  * @max: Maximum index to retrieve from array.
1225b803b428SMatthew Wilcox  * @mark: Mark to search for.
1226b803b428SMatthew Wilcox  *
1227b803b428SMatthew Wilcox  * The loop body will be executed for each marked entry in the xarray
1228b803b428SMatthew Wilcox  * between the current xas position and @max.  @entry will be set to
1229b803b428SMatthew Wilcox  * the entry retrieved from the xarray.  It is safe to delete entries
1230b803b428SMatthew Wilcox  * from the array in the loop body.  You should hold either the RCU lock
1231b803b428SMatthew Wilcox  * or the xa_lock while iterating.  If you need to drop the lock, call
1232b803b428SMatthew Wilcox  * xas_pause() first.
1233b803b428SMatthew Wilcox  */
1234b803b428SMatthew Wilcox #define xas_for_each_marked(xas, entry, max, mark) \
1235b803b428SMatthew Wilcox 	for (entry = xas_find_marked(xas, max, mark); entry; \
1236b803b428SMatthew Wilcox 	     entry = xas_next_marked(xas, max, mark))
1237b803b428SMatthew Wilcox 
12384e99d4e9SMatthew Wilcox /**
12394e99d4e9SMatthew Wilcox  * xas_for_each_conflict() - Iterate over a range of an XArray.
12404e99d4e9SMatthew Wilcox  * @xas: XArray operation state.
12414e99d4e9SMatthew Wilcox  * @entry: Entry retrieved from the array.
12424e99d4e9SMatthew Wilcox  *
12434e99d4e9SMatthew Wilcox  * The loop body will be executed for each entry in the XArray that lies
12444e99d4e9SMatthew Wilcox  * within the range specified by @xas.  If the loop completes successfully,
12454e99d4e9SMatthew Wilcox  * any entries that lie in this range will be replaced by @entry.  The caller
12464e99d4e9SMatthew Wilcox  * may break out of the loop; if they do so, the contents of the XArray will
12474e99d4e9SMatthew Wilcox  * be unchanged.  The operation may fail due to an out of memory condition.
12484e99d4e9SMatthew Wilcox  * The caller may also call xa_set_err() to exit the loop while setting an
12494e99d4e9SMatthew Wilcox  * error to record the reason.
12504e99d4e9SMatthew Wilcox  */
12514e99d4e9SMatthew Wilcox #define xas_for_each_conflict(xas, entry) \
12524e99d4e9SMatthew Wilcox 	while ((entry = xas_find_conflict(xas)))
12534e99d4e9SMatthew Wilcox 
125464d3e9a9SMatthew Wilcox void *__xas_next(struct xa_state *);
125564d3e9a9SMatthew Wilcox void *__xas_prev(struct xa_state *);
125664d3e9a9SMatthew Wilcox 
125764d3e9a9SMatthew Wilcox /**
125864d3e9a9SMatthew Wilcox  * xas_prev() - Move iterator to previous index.
125964d3e9a9SMatthew Wilcox  * @xas: XArray operation state.
126064d3e9a9SMatthew Wilcox  *
126164d3e9a9SMatthew Wilcox  * If the @xas was in an error state, it will remain in an error state
126264d3e9a9SMatthew Wilcox  * and this function will return %NULL.  If the @xas has never been walked,
126364d3e9a9SMatthew Wilcox  * it will have the effect of calling xas_load().  Otherwise one will be
126464d3e9a9SMatthew Wilcox  * subtracted from the index and the state will be walked to the correct
126564d3e9a9SMatthew Wilcox  * location in the array for the next operation.
126664d3e9a9SMatthew Wilcox  *
126764d3e9a9SMatthew Wilcox  * If the iterator was referencing index 0, this function wraps
126864d3e9a9SMatthew Wilcox  * around to %ULONG_MAX.
126964d3e9a9SMatthew Wilcox  *
127064d3e9a9SMatthew Wilcox  * Return: The entry at the new index.  This may be %NULL or an internal
127164d3e9a9SMatthew Wilcox  * entry.
127264d3e9a9SMatthew Wilcox  */
127364d3e9a9SMatthew Wilcox static inline void *xas_prev(struct xa_state *xas)
127464d3e9a9SMatthew Wilcox {
127564d3e9a9SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
127664d3e9a9SMatthew Wilcox 
127764d3e9a9SMatthew Wilcox 	if (unlikely(xas_not_node(node) || node->shift ||
127864d3e9a9SMatthew Wilcox 				xas->xa_offset == 0))
127964d3e9a9SMatthew Wilcox 		return __xas_prev(xas);
128064d3e9a9SMatthew Wilcox 
128164d3e9a9SMatthew Wilcox 	xas->xa_index--;
128264d3e9a9SMatthew Wilcox 	xas->xa_offset--;
128364d3e9a9SMatthew Wilcox 	return xa_entry(xas->xa, node, xas->xa_offset);
128464d3e9a9SMatthew Wilcox }
128564d3e9a9SMatthew Wilcox 
128664d3e9a9SMatthew Wilcox /**
128764d3e9a9SMatthew Wilcox  * xas_next() - Move state to next index.
128864d3e9a9SMatthew Wilcox  * @xas: XArray operation state.
128964d3e9a9SMatthew Wilcox  *
129064d3e9a9SMatthew Wilcox  * If the @xas was in an error state, it will remain in an error state
129164d3e9a9SMatthew Wilcox  * and this function will return %NULL.  If the @xas has never been walked,
129264d3e9a9SMatthew Wilcox  * it will have the effect of calling xas_load().  Otherwise one will be
129364d3e9a9SMatthew Wilcox  * added to the index and the state will be walked to the correct
129464d3e9a9SMatthew Wilcox  * location in the array for the next operation.
129564d3e9a9SMatthew Wilcox  *
129664d3e9a9SMatthew Wilcox  * If the iterator was referencing index %ULONG_MAX, this function wraps
129764d3e9a9SMatthew Wilcox  * around to 0.
129864d3e9a9SMatthew Wilcox  *
129964d3e9a9SMatthew Wilcox  * Return: The entry at the new index.  This may be %NULL or an internal
130064d3e9a9SMatthew Wilcox  * entry.
130164d3e9a9SMatthew Wilcox  */
130264d3e9a9SMatthew Wilcox static inline void *xas_next(struct xa_state *xas)
130364d3e9a9SMatthew Wilcox {
130464d3e9a9SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
130564d3e9a9SMatthew Wilcox 
130664d3e9a9SMatthew Wilcox 	if (unlikely(xas_not_node(node) || node->shift ||
130764d3e9a9SMatthew Wilcox 				xas->xa_offset == XA_CHUNK_MASK))
130864d3e9a9SMatthew Wilcox 		return __xas_next(xas);
130964d3e9a9SMatthew Wilcox 
131064d3e9a9SMatthew Wilcox 	xas->xa_index++;
131164d3e9a9SMatthew Wilcox 	xas->xa_offset++;
131264d3e9a9SMatthew Wilcox 	return xa_entry(xas->xa, node, xas->xa_offset);
131364d3e9a9SMatthew Wilcox }
131464d3e9a9SMatthew Wilcox 
1315f6bb2a2cSMatthew Wilcox #endif /* _LINUX_XARRAY_H */
1316