xref: /linux-6.15/include/linux/xarray.h (revision 687149fc)
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
3502c02bf1SMatthew Wilcox  * 256: Retry entry
36ad3d6c72SMatthew Wilcox  *
37ad3d6c72SMatthew Wilcox  * Errors are also represented as internal entries, but use the negative
38ad3d6c72SMatthew Wilcox  * space (-4094 to -2).  They're never stored in the slots array; only
39ad3d6c72SMatthew Wilcox  * returned by the normal API.
403159f943SMatthew Wilcox  */
413159f943SMatthew Wilcox 
423159f943SMatthew Wilcox #define BITS_PER_XA_VALUE	(BITS_PER_LONG - 1)
433159f943SMatthew Wilcox 
443159f943SMatthew Wilcox /**
453159f943SMatthew Wilcox  * xa_mk_value() - Create an XArray entry from an integer.
463159f943SMatthew Wilcox  * @v: Value to store in XArray.
473159f943SMatthew Wilcox  *
483159f943SMatthew Wilcox  * Context: Any context.
493159f943SMatthew Wilcox  * Return: An entry suitable for storing in the XArray.
503159f943SMatthew Wilcox  */
513159f943SMatthew Wilcox static inline void *xa_mk_value(unsigned long v)
523159f943SMatthew Wilcox {
533159f943SMatthew Wilcox 	WARN_ON((long)v < 0);
543159f943SMatthew Wilcox 	return (void *)((v << 1) | 1);
553159f943SMatthew Wilcox }
563159f943SMatthew Wilcox 
573159f943SMatthew Wilcox /**
583159f943SMatthew Wilcox  * xa_to_value() - Get value stored in an XArray entry.
593159f943SMatthew Wilcox  * @entry: XArray entry.
603159f943SMatthew Wilcox  *
613159f943SMatthew Wilcox  * Context: Any context.
623159f943SMatthew Wilcox  * Return: The value stored in the XArray entry.
633159f943SMatthew Wilcox  */
643159f943SMatthew Wilcox static inline unsigned long xa_to_value(const void *entry)
653159f943SMatthew Wilcox {
663159f943SMatthew Wilcox 	return (unsigned long)entry >> 1;
673159f943SMatthew Wilcox }
683159f943SMatthew Wilcox 
693159f943SMatthew Wilcox /**
703159f943SMatthew Wilcox  * xa_is_value() - Determine if an entry is a value.
713159f943SMatthew Wilcox  * @entry: XArray entry.
723159f943SMatthew Wilcox  *
733159f943SMatthew Wilcox  * Context: Any context.
743159f943SMatthew Wilcox  * Return: True if the entry is a value, false if it is a pointer.
753159f943SMatthew Wilcox  */
763159f943SMatthew Wilcox static inline bool xa_is_value(const void *entry)
773159f943SMatthew Wilcox {
783159f943SMatthew Wilcox 	return (unsigned long)entry & 1;
793159f943SMatthew Wilcox }
803159f943SMatthew Wilcox 
813159f943SMatthew Wilcox /**
823159f943SMatthew Wilcox  * xa_tag_pointer() - Create an XArray entry for a tagged pointer.
833159f943SMatthew Wilcox  * @p: Plain pointer.
843159f943SMatthew Wilcox  * @tag: Tag value (0, 1 or 3).
853159f943SMatthew Wilcox  *
863159f943SMatthew Wilcox  * If the user of the XArray prefers, they can tag their pointers instead
873159f943SMatthew Wilcox  * of storing value entries.  Three tags are available (0, 1 and 3).
883159f943SMatthew Wilcox  * These are distinct from the xa_mark_t as they are not replicated up
893159f943SMatthew Wilcox  * through the array and cannot be searched for.
903159f943SMatthew Wilcox  *
913159f943SMatthew Wilcox  * Context: Any context.
923159f943SMatthew Wilcox  * Return: An XArray entry.
933159f943SMatthew Wilcox  */
943159f943SMatthew Wilcox static inline void *xa_tag_pointer(void *p, unsigned long tag)
953159f943SMatthew Wilcox {
963159f943SMatthew Wilcox 	return (void *)((unsigned long)p | tag);
973159f943SMatthew Wilcox }
983159f943SMatthew Wilcox 
993159f943SMatthew Wilcox /**
1003159f943SMatthew Wilcox  * xa_untag_pointer() - Turn an XArray entry into a plain pointer.
1013159f943SMatthew Wilcox  * @entry: XArray entry.
1023159f943SMatthew Wilcox  *
1033159f943SMatthew Wilcox  * If you have stored a tagged pointer in the XArray, call this function
1043159f943SMatthew Wilcox  * to get the untagged version of the pointer.
1053159f943SMatthew Wilcox  *
1063159f943SMatthew Wilcox  * Context: Any context.
1073159f943SMatthew Wilcox  * Return: A pointer.
1083159f943SMatthew Wilcox  */
1093159f943SMatthew Wilcox static inline void *xa_untag_pointer(void *entry)
1103159f943SMatthew Wilcox {
1113159f943SMatthew Wilcox 	return (void *)((unsigned long)entry & ~3UL);
1123159f943SMatthew Wilcox }
1133159f943SMatthew Wilcox 
1143159f943SMatthew Wilcox /**
1153159f943SMatthew Wilcox  * xa_pointer_tag() - Get the tag stored in an XArray entry.
1163159f943SMatthew Wilcox  * @entry: XArray entry.
1173159f943SMatthew Wilcox  *
1183159f943SMatthew Wilcox  * If you have stored a tagged pointer in the XArray, call this function
1193159f943SMatthew Wilcox  * to get the tag of that pointer.
1203159f943SMatthew Wilcox  *
1213159f943SMatthew Wilcox  * Context: Any context.
1223159f943SMatthew Wilcox  * Return: A tag.
1233159f943SMatthew Wilcox  */
1243159f943SMatthew Wilcox static inline unsigned int xa_pointer_tag(void *entry)
1253159f943SMatthew Wilcox {
1263159f943SMatthew Wilcox 	return (unsigned long)entry & 3UL;
1273159f943SMatthew Wilcox }
128f6bb2a2cSMatthew Wilcox 
12902c02bf1SMatthew Wilcox /*
13002c02bf1SMatthew Wilcox  * xa_mk_internal() - Create an internal entry.
13102c02bf1SMatthew Wilcox  * @v: Value to turn into an internal entry.
13202c02bf1SMatthew Wilcox  *
13302c02bf1SMatthew Wilcox  * Context: Any context.
13402c02bf1SMatthew Wilcox  * Return: An XArray internal entry corresponding to this value.
13502c02bf1SMatthew Wilcox  */
13602c02bf1SMatthew Wilcox static inline void *xa_mk_internal(unsigned long v)
13702c02bf1SMatthew Wilcox {
13802c02bf1SMatthew Wilcox 	return (void *)((v << 2) | 2);
13902c02bf1SMatthew Wilcox }
14002c02bf1SMatthew Wilcox 
14102c02bf1SMatthew Wilcox /*
14202c02bf1SMatthew Wilcox  * xa_to_internal() - Extract the value from an internal entry.
14302c02bf1SMatthew Wilcox  * @entry: XArray entry.
14402c02bf1SMatthew Wilcox  *
14502c02bf1SMatthew Wilcox  * Context: Any context.
14602c02bf1SMatthew Wilcox  * Return: The value which was stored in the internal entry.
14702c02bf1SMatthew Wilcox  */
14802c02bf1SMatthew Wilcox static inline unsigned long xa_to_internal(const void *entry)
14902c02bf1SMatthew Wilcox {
15002c02bf1SMatthew Wilcox 	return (unsigned long)entry >> 2;
15102c02bf1SMatthew Wilcox }
15202c02bf1SMatthew Wilcox 
15302c02bf1SMatthew Wilcox /*
15402c02bf1SMatthew Wilcox  * xa_is_internal() - Is the entry an internal entry?
15502c02bf1SMatthew Wilcox  * @entry: XArray entry.
15602c02bf1SMatthew Wilcox  *
15702c02bf1SMatthew Wilcox  * Context: Any context.
15802c02bf1SMatthew Wilcox  * Return: %true if the entry is an internal entry.
15902c02bf1SMatthew Wilcox  */
16002c02bf1SMatthew Wilcox static inline bool xa_is_internal(const void *entry)
16102c02bf1SMatthew Wilcox {
16202c02bf1SMatthew Wilcox 	return ((unsigned long)entry & 3) == 2;
16302c02bf1SMatthew Wilcox }
16402c02bf1SMatthew Wilcox 
165f8d5d0ccSMatthew Wilcox /**
166ad3d6c72SMatthew Wilcox  * xa_is_err() - Report whether an XArray operation returned an error
167ad3d6c72SMatthew Wilcox  * @entry: Result from calling an XArray function
168ad3d6c72SMatthew Wilcox  *
169ad3d6c72SMatthew Wilcox  * If an XArray operation cannot complete an operation, it will return
170ad3d6c72SMatthew Wilcox  * a special value indicating an error.  This function tells you
171ad3d6c72SMatthew Wilcox  * whether an error occurred; xa_err() tells you which error occurred.
172ad3d6c72SMatthew Wilcox  *
173ad3d6c72SMatthew Wilcox  * Context: Any context.
174ad3d6c72SMatthew Wilcox  * Return: %true if the entry indicates an error.
175ad3d6c72SMatthew Wilcox  */
176ad3d6c72SMatthew Wilcox static inline bool xa_is_err(const void *entry)
177ad3d6c72SMatthew Wilcox {
178ad3d6c72SMatthew Wilcox 	return unlikely(xa_is_internal(entry));
179ad3d6c72SMatthew Wilcox }
180ad3d6c72SMatthew Wilcox 
181ad3d6c72SMatthew Wilcox /**
182ad3d6c72SMatthew Wilcox  * xa_err() - Turn an XArray result into an errno.
183ad3d6c72SMatthew Wilcox  * @entry: Result from calling an XArray function.
184ad3d6c72SMatthew Wilcox  *
185ad3d6c72SMatthew Wilcox  * If an XArray operation cannot complete an operation, it will return
186ad3d6c72SMatthew Wilcox  * a special pointer value which encodes an errno.  This function extracts
187ad3d6c72SMatthew Wilcox  * the errno from the pointer value, or returns 0 if the pointer does not
188ad3d6c72SMatthew Wilcox  * represent an errno.
189ad3d6c72SMatthew Wilcox  *
190ad3d6c72SMatthew Wilcox  * Context: Any context.
191ad3d6c72SMatthew Wilcox  * Return: A negative errno or 0.
192ad3d6c72SMatthew Wilcox  */
193ad3d6c72SMatthew Wilcox static inline int xa_err(void *entry)
194ad3d6c72SMatthew Wilcox {
195ad3d6c72SMatthew Wilcox 	/* xa_to_internal() would not do sign extension. */
196ad3d6c72SMatthew Wilcox 	if (xa_is_err(entry))
197ad3d6c72SMatthew Wilcox 		return (long)entry >> 2;
198ad3d6c72SMatthew Wilcox 	return 0;
199ad3d6c72SMatthew Wilcox }
200ad3d6c72SMatthew Wilcox 
2019b89a035SMatthew Wilcox typedef unsigned __bitwise xa_mark_t;
2029b89a035SMatthew Wilcox #define XA_MARK_0		((__force xa_mark_t)0U)
2039b89a035SMatthew Wilcox #define XA_MARK_1		((__force xa_mark_t)1U)
2049b89a035SMatthew Wilcox #define XA_MARK_2		((__force xa_mark_t)2U)
2059b89a035SMatthew Wilcox #define XA_PRESENT		((__force xa_mark_t)8U)
2069b89a035SMatthew Wilcox #define XA_MARK_MAX		XA_MARK_2
2079b89a035SMatthew Wilcox 
20858d6ea30SMatthew Wilcox enum xa_lock_type {
20958d6ea30SMatthew Wilcox 	XA_LOCK_IRQ = 1,
21058d6ea30SMatthew Wilcox 	XA_LOCK_BH = 2,
21158d6ea30SMatthew Wilcox };
21258d6ea30SMatthew Wilcox 
2139b89a035SMatthew Wilcox /*
2149b89a035SMatthew Wilcox  * Values for xa_flags.  The radix tree stores its GFP flags in the xa_flags,
2159b89a035SMatthew Wilcox  * and we remain compatible with that.
2169b89a035SMatthew Wilcox  */
21758d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_IRQ	((__force gfp_t)XA_LOCK_IRQ)
21858d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_BH	((__force gfp_t)XA_LOCK_BH)
2199b89a035SMatthew Wilcox #define XA_FLAGS_MARK(mark)	((__force gfp_t)((1U << __GFP_BITS_SHIFT) << \
2209b89a035SMatthew Wilcox 						(__force unsigned)(mark)))
2219b89a035SMatthew Wilcox 
222ad3d6c72SMatthew Wilcox /**
223f8d5d0ccSMatthew Wilcox  * struct xarray - The anchor of the XArray.
224f8d5d0ccSMatthew Wilcox  * @xa_lock: Lock that protects the contents of the XArray.
225f8d5d0ccSMatthew Wilcox  *
226f8d5d0ccSMatthew Wilcox  * To use the xarray, define it statically or embed it in your data structure.
227f8d5d0ccSMatthew Wilcox  * It is a very small data structure, so it does not usually make sense to
228f8d5d0ccSMatthew Wilcox  * allocate it separately and keep a pointer to it in your data structure.
229f8d5d0ccSMatthew Wilcox  *
230f8d5d0ccSMatthew Wilcox  * You may use the xa_lock to protect your own data structures as well.
231f8d5d0ccSMatthew Wilcox  */
232f8d5d0ccSMatthew Wilcox /*
233f8d5d0ccSMatthew Wilcox  * If all of the entries in the array are NULL, @xa_head is a NULL pointer.
234f8d5d0ccSMatthew Wilcox  * If the only non-NULL entry in the array is at index 0, @xa_head is that
235f8d5d0ccSMatthew Wilcox  * entry.  If any other entry in the array is non-NULL, @xa_head points
236f8d5d0ccSMatthew Wilcox  * to an @xa_node.
237f8d5d0ccSMatthew Wilcox  */
238f8d5d0ccSMatthew Wilcox struct xarray {
239f8d5d0ccSMatthew Wilcox 	spinlock_t	xa_lock;
240f8d5d0ccSMatthew Wilcox /* private: The rest of the data structure is not to be used directly. */
241f8d5d0ccSMatthew Wilcox 	gfp_t		xa_flags;
242f8d5d0ccSMatthew Wilcox 	void __rcu *	xa_head;
243f8d5d0ccSMatthew Wilcox };
244f8d5d0ccSMatthew Wilcox 
245f8d5d0ccSMatthew Wilcox #define XARRAY_INIT(name, flags) {				\
246f8d5d0ccSMatthew Wilcox 	.xa_lock = __SPIN_LOCK_UNLOCKED(name.xa_lock),		\
247f8d5d0ccSMatthew Wilcox 	.xa_flags = flags,					\
248f8d5d0ccSMatthew Wilcox 	.xa_head = NULL,					\
249f8d5d0ccSMatthew Wilcox }
250f8d5d0ccSMatthew Wilcox 
251f8d5d0ccSMatthew Wilcox /**
252f8d5d0ccSMatthew Wilcox  * DEFINE_XARRAY_FLAGS() - Define an XArray with custom flags.
253f8d5d0ccSMatthew Wilcox  * @name: A string that names your XArray.
254f8d5d0ccSMatthew Wilcox  * @flags: XA_FLAG values.
255f8d5d0ccSMatthew Wilcox  *
256f8d5d0ccSMatthew Wilcox  * This is intended for file scope definitions of XArrays.  It declares
257f8d5d0ccSMatthew Wilcox  * and initialises an empty XArray with the chosen name and flags.  It is
258f8d5d0ccSMatthew Wilcox  * equivalent to calling xa_init_flags() on the array, but it does the
259f8d5d0ccSMatthew Wilcox  * initialisation at compiletime instead of runtime.
260f8d5d0ccSMatthew Wilcox  */
261f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY_FLAGS(name, flags)				\
262f8d5d0ccSMatthew Wilcox 	struct xarray name = XARRAY_INIT(name, flags)
263f8d5d0ccSMatthew Wilcox 
264f8d5d0ccSMatthew Wilcox /**
265f8d5d0ccSMatthew Wilcox  * DEFINE_XARRAY() - Define an XArray.
266f8d5d0ccSMatthew Wilcox  * @name: A string that names your XArray.
267f8d5d0ccSMatthew Wilcox  *
268f8d5d0ccSMatthew Wilcox  * This is intended for file scope definitions of XArrays.  It declares
269f8d5d0ccSMatthew Wilcox  * and initialises an empty XArray with the chosen name.  It is equivalent
270f8d5d0ccSMatthew Wilcox  * to calling xa_init() on the array, but it does the initialisation at
271f8d5d0ccSMatthew Wilcox  * compiletime instead of runtime.
272f8d5d0ccSMatthew Wilcox  */
273f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY(name) DEFINE_XARRAY_FLAGS(name, 0)
274f8d5d0ccSMatthew Wilcox 
275f8d5d0ccSMatthew Wilcox void xa_init_flags(struct xarray *, gfp_t flags);
276ad3d6c72SMatthew Wilcox void *xa_load(struct xarray *, unsigned long index);
27758d6ea30SMatthew Wilcox void *xa_store(struct xarray *, unsigned long index, void *entry, gfp_t);
27841aec91fSMatthew Wilcox void *xa_cmpxchg(struct xarray *, unsigned long index,
27941aec91fSMatthew Wilcox 			void *old, void *entry, gfp_t);
2809b89a035SMatthew Wilcox bool xa_get_mark(struct xarray *, unsigned long index, xa_mark_t);
2819b89a035SMatthew Wilcox void xa_set_mark(struct xarray *, unsigned long index, xa_mark_t);
2829b89a035SMatthew Wilcox void xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t);
283b803b428SMatthew Wilcox void *xa_find(struct xarray *xa, unsigned long *index,
284b803b428SMatthew Wilcox 		unsigned long max, xa_mark_t) __attribute__((nonnull(2)));
285b803b428SMatthew Wilcox void *xa_find_after(struct xarray *xa, unsigned long *index,
286b803b428SMatthew Wilcox 		unsigned long max, xa_mark_t) __attribute__((nonnull(2)));
28780a0a1a9SMatthew Wilcox unsigned int xa_extract(struct xarray *, void **dst, unsigned long start,
28880a0a1a9SMatthew Wilcox 		unsigned long max, unsigned int n, xa_mark_t);
289*687149fcSMatthew Wilcox void xa_destroy(struct xarray *);
290f8d5d0ccSMatthew Wilcox 
291f8d5d0ccSMatthew Wilcox /**
292f8d5d0ccSMatthew Wilcox  * xa_init() - Initialise an empty XArray.
293f8d5d0ccSMatthew Wilcox  * @xa: XArray.
294f8d5d0ccSMatthew Wilcox  *
295f8d5d0ccSMatthew Wilcox  * An empty XArray is full of NULL entries.
296f8d5d0ccSMatthew Wilcox  *
297f8d5d0ccSMatthew Wilcox  * Context: Any context.
298f8d5d0ccSMatthew Wilcox  */
299f8d5d0ccSMatthew Wilcox static inline void xa_init(struct xarray *xa)
300f8d5d0ccSMatthew Wilcox {
301f8d5d0ccSMatthew Wilcox 	xa_init_flags(xa, 0);
302f8d5d0ccSMatthew Wilcox }
303f8d5d0ccSMatthew Wilcox 
304ad3d6c72SMatthew Wilcox /**
305ad3d6c72SMatthew Wilcox  * xa_empty() - Determine if an array has any present entries.
306ad3d6c72SMatthew Wilcox  * @xa: XArray.
307ad3d6c72SMatthew Wilcox  *
308ad3d6c72SMatthew Wilcox  * Context: Any context.
309ad3d6c72SMatthew Wilcox  * Return: %true if the array contains only NULL pointers.
310ad3d6c72SMatthew Wilcox  */
311ad3d6c72SMatthew Wilcox static inline bool xa_empty(const struct xarray *xa)
312ad3d6c72SMatthew Wilcox {
313ad3d6c72SMatthew Wilcox 	return xa->xa_head == NULL;
314ad3d6c72SMatthew Wilcox }
315ad3d6c72SMatthew Wilcox 
3169b89a035SMatthew Wilcox /**
3179b89a035SMatthew Wilcox  * xa_marked() - Inquire whether any entry in this array has a mark set
3189b89a035SMatthew Wilcox  * @xa: Array
3199b89a035SMatthew Wilcox  * @mark: Mark value
3209b89a035SMatthew Wilcox  *
3219b89a035SMatthew Wilcox  * Context: Any context.
3229b89a035SMatthew Wilcox  * Return: %true if any entry has this mark set.
3239b89a035SMatthew Wilcox  */
3249b89a035SMatthew Wilcox static inline bool xa_marked(const struct xarray *xa, xa_mark_t mark)
3259b89a035SMatthew Wilcox {
3269b89a035SMatthew Wilcox 	return xa->xa_flags & XA_FLAGS_MARK(mark);
3279b89a035SMatthew Wilcox }
3289b89a035SMatthew Wilcox 
32958d6ea30SMatthew Wilcox /**
33058d6ea30SMatthew Wilcox  * xa_erase() - Erase this entry from the XArray.
33158d6ea30SMatthew Wilcox  * @xa: XArray.
33258d6ea30SMatthew Wilcox  * @index: Index of entry.
33358d6ea30SMatthew Wilcox  *
33458d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
33558d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
33658d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
33758d6ea30SMatthew Wilcox  *
33858d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.
33958d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
34058d6ea30SMatthew Wilcox  */
34158d6ea30SMatthew Wilcox static inline void *xa_erase(struct xarray *xa, unsigned long index)
34258d6ea30SMatthew Wilcox {
34358d6ea30SMatthew Wilcox 	return xa_store(xa, index, NULL, 0);
34458d6ea30SMatthew Wilcox }
34558d6ea30SMatthew Wilcox 
34641aec91fSMatthew Wilcox /**
34741aec91fSMatthew Wilcox  * xa_insert() - Store this entry in the XArray unless another entry is
34841aec91fSMatthew Wilcox  *			already present.
34941aec91fSMatthew Wilcox  * @xa: XArray.
35041aec91fSMatthew Wilcox  * @index: Index into array.
35141aec91fSMatthew Wilcox  * @entry: New entry.
35241aec91fSMatthew Wilcox  * @gfp: Memory allocation flags.
35341aec91fSMatthew Wilcox  *
35441aec91fSMatthew Wilcox  * If you would rather see the existing entry in the array, use xa_cmpxchg().
35541aec91fSMatthew Wilcox  * This function is for users who don't care what the entry is, only that
35641aec91fSMatthew Wilcox  * one is present.
35741aec91fSMatthew Wilcox  *
35841aec91fSMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.
35941aec91fSMatthew Wilcox  *	    May sleep if the @gfp flags permit.
36041aec91fSMatthew Wilcox  * Return: 0 if the store succeeded.  -EEXIST if another entry was present.
36141aec91fSMatthew Wilcox  * -ENOMEM if memory could not be allocated.
36241aec91fSMatthew Wilcox  */
36341aec91fSMatthew Wilcox static inline int xa_insert(struct xarray *xa, unsigned long index,
36441aec91fSMatthew Wilcox 		void *entry, gfp_t gfp)
36541aec91fSMatthew Wilcox {
36641aec91fSMatthew Wilcox 	void *curr = xa_cmpxchg(xa, index, NULL, entry, gfp);
36741aec91fSMatthew Wilcox 	if (!curr)
36841aec91fSMatthew Wilcox 		return 0;
36941aec91fSMatthew Wilcox 	if (xa_is_err(curr))
37041aec91fSMatthew Wilcox 		return xa_err(curr);
37141aec91fSMatthew Wilcox 	return -EEXIST;
37241aec91fSMatthew Wilcox }
37341aec91fSMatthew Wilcox 
374b803b428SMatthew Wilcox /**
375b803b428SMatthew Wilcox  * xa_for_each() - Iterate over a portion of an XArray.
376b803b428SMatthew Wilcox  * @xa: XArray.
377b803b428SMatthew Wilcox  * @entry: Entry retrieved from array.
378b803b428SMatthew Wilcox  * @index: Index of @entry.
379b803b428SMatthew Wilcox  * @max: Maximum index to retrieve from array.
380b803b428SMatthew Wilcox  * @filter: Selection criterion.
381b803b428SMatthew Wilcox  *
382b803b428SMatthew Wilcox  * Initialise @index to the lowest index you want to retrieve from the
383b803b428SMatthew Wilcox  * array.  During the iteration, @entry will have the value of the entry
384b803b428SMatthew Wilcox  * stored in @xa at @index.  The iteration will skip all entries in the
385b803b428SMatthew Wilcox  * array which do not match @filter.  You may modify @index during the
386b803b428SMatthew Wilcox  * iteration if you want to skip or reprocess indices.  It is safe to modify
387b803b428SMatthew Wilcox  * the array during the iteration.  At the end of the iteration, @entry will
388b803b428SMatthew Wilcox  * be set to NULL and @index will have a value less than or equal to max.
389b803b428SMatthew Wilcox  *
390b803b428SMatthew Wilcox  * xa_for_each() is O(n.log(n)) while xas_for_each() is O(n).  You have
391b803b428SMatthew Wilcox  * to handle your own locking with xas_for_each(), and if you have to unlock
392b803b428SMatthew Wilcox  * after each iteration, it will also end up being O(n.log(n)).  xa_for_each()
393b803b428SMatthew Wilcox  * will spin if it hits a retry entry; if you intend to see retry entries,
394b803b428SMatthew Wilcox  * you should use the xas_for_each() iterator instead.  The xas_for_each()
395b803b428SMatthew Wilcox  * iterator will expand into more inline code than xa_for_each().
396b803b428SMatthew Wilcox  *
397b803b428SMatthew Wilcox  * Context: Any context.  Takes and releases the RCU lock.
398b803b428SMatthew Wilcox  */
399b803b428SMatthew Wilcox #define xa_for_each(xa, entry, index, max, filter) \
400b803b428SMatthew Wilcox 	for (entry = xa_find(xa, &index, max, filter); entry; \
401b803b428SMatthew Wilcox 	     entry = xa_find_after(xa, &index, max, filter))
402b803b428SMatthew Wilcox 
403f6bb2a2cSMatthew Wilcox #define xa_trylock(xa)		spin_trylock(&(xa)->xa_lock)
404f6bb2a2cSMatthew Wilcox #define xa_lock(xa)		spin_lock(&(xa)->xa_lock)
405f6bb2a2cSMatthew Wilcox #define xa_unlock(xa)		spin_unlock(&(xa)->xa_lock)
406f6bb2a2cSMatthew Wilcox #define xa_lock_bh(xa)		spin_lock_bh(&(xa)->xa_lock)
407f6bb2a2cSMatthew Wilcox #define xa_unlock_bh(xa)	spin_unlock_bh(&(xa)->xa_lock)
408f6bb2a2cSMatthew Wilcox #define xa_lock_irq(xa)		spin_lock_irq(&(xa)->xa_lock)
409f6bb2a2cSMatthew Wilcox #define xa_unlock_irq(xa)	spin_unlock_irq(&(xa)->xa_lock)
410f6bb2a2cSMatthew Wilcox #define xa_lock_irqsave(xa, flags) \
411f6bb2a2cSMatthew Wilcox 				spin_lock_irqsave(&(xa)->xa_lock, flags)
412f6bb2a2cSMatthew Wilcox #define xa_unlock_irqrestore(xa, flags) \
413f6bb2a2cSMatthew Wilcox 				spin_unlock_irqrestore(&(xa)->xa_lock, flags)
414f6bb2a2cSMatthew Wilcox 
4159b89a035SMatthew Wilcox /*
41658d6ea30SMatthew Wilcox  * Versions of the normal API which require the caller to hold the
41758d6ea30SMatthew Wilcox  * xa_lock.  If the GFP flags allow it, they will drop the lock to
41858d6ea30SMatthew Wilcox  * allocate memory, then reacquire it afterwards.  These functions
41958d6ea30SMatthew Wilcox  * may also re-enable interrupts if the XArray flags indicate the
42058d6ea30SMatthew Wilcox  * locking should be interrupt safe.
4219b89a035SMatthew Wilcox  */
42258d6ea30SMatthew Wilcox void *__xa_erase(struct xarray *, unsigned long index);
42358d6ea30SMatthew Wilcox void *__xa_store(struct xarray *, unsigned long index, void *entry, gfp_t);
42441aec91fSMatthew Wilcox void *__xa_cmpxchg(struct xarray *, unsigned long index, void *old,
42541aec91fSMatthew Wilcox 		void *entry, gfp_t);
4269b89a035SMatthew Wilcox void __xa_set_mark(struct xarray *, unsigned long index, xa_mark_t);
4279b89a035SMatthew Wilcox void __xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t);
4289b89a035SMatthew Wilcox 
42958d6ea30SMatthew Wilcox /**
43041aec91fSMatthew Wilcox  * __xa_insert() - Store this entry in the XArray unless another entry is
43141aec91fSMatthew Wilcox  *			already present.
43241aec91fSMatthew Wilcox  * @xa: XArray.
43341aec91fSMatthew Wilcox  * @index: Index into array.
43441aec91fSMatthew Wilcox  * @entry: New entry.
43541aec91fSMatthew Wilcox  * @gfp: Memory allocation flags.
43641aec91fSMatthew Wilcox  *
43741aec91fSMatthew Wilcox  * If you would rather see the existing entry in the array, use __xa_cmpxchg().
43841aec91fSMatthew Wilcox  * This function is for users who don't care what the entry is, only that
43941aec91fSMatthew Wilcox  * one is present.
44041aec91fSMatthew Wilcox  *
44141aec91fSMatthew Wilcox  * Context: Any context.  Expects xa_lock to be held on entry.  May
44241aec91fSMatthew Wilcox  *	    release and reacquire xa_lock if the @gfp flags permit.
44341aec91fSMatthew Wilcox  * Return: 0 if the store succeeded.  -EEXIST if another entry was present.
44441aec91fSMatthew Wilcox  * -ENOMEM if memory could not be allocated.
44541aec91fSMatthew Wilcox  */
44641aec91fSMatthew Wilcox static inline int __xa_insert(struct xarray *xa, unsigned long index,
44741aec91fSMatthew Wilcox 		void *entry, gfp_t gfp)
44841aec91fSMatthew Wilcox {
44941aec91fSMatthew Wilcox 	void *curr = __xa_cmpxchg(xa, index, NULL, entry, gfp);
45041aec91fSMatthew Wilcox 	if (!curr)
45141aec91fSMatthew Wilcox 		return 0;
45241aec91fSMatthew Wilcox 	if (xa_is_err(curr))
45341aec91fSMatthew Wilcox 		return xa_err(curr);
45441aec91fSMatthew Wilcox 	return -EEXIST;
45541aec91fSMatthew Wilcox }
45641aec91fSMatthew Wilcox 
45741aec91fSMatthew Wilcox /**
45858d6ea30SMatthew Wilcox  * xa_erase_bh() - Erase this entry from the XArray.
45958d6ea30SMatthew Wilcox  * @xa: XArray.
46058d6ea30SMatthew Wilcox  * @index: Index of entry.
46158d6ea30SMatthew Wilcox  *
46258d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
46358d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
46458d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
46558d6ea30SMatthew Wilcox  *
46658d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
46758d6ea30SMatthew Wilcox  * disabling softirqs.
46858d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
46958d6ea30SMatthew Wilcox  */
47058d6ea30SMatthew Wilcox static inline void *xa_erase_bh(struct xarray *xa, unsigned long index)
47158d6ea30SMatthew Wilcox {
47258d6ea30SMatthew Wilcox 	void *entry;
47358d6ea30SMatthew Wilcox 
47458d6ea30SMatthew Wilcox 	xa_lock_bh(xa);
47558d6ea30SMatthew Wilcox 	entry = __xa_erase(xa, index);
47658d6ea30SMatthew Wilcox 	xa_unlock_bh(xa);
47758d6ea30SMatthew Wilcox 
47858d6ea30SMatthew Wilcox 	return entry;
47958d6ea30SMatthew Wilcox }
48058d6ea30SMatthew Wilcox 
48158d6ea30SMatthew Wilcox /**
48258d6ea30SMatthew Wilcox  * xa_erase_irq() - Erase this entry from the XArray.
48358d6ea30SMatthew Wilcox  * @xa: XArray.
48458d6ea30SMatthew Wilcox  * @index: Index of entry.
48558d6ea30SMatthew Wilcox  *
48658d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
48758d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
48858d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
48958d6ea30SMatthew Wilcox  *
49058d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
49158d6ea30SMatthew Wilcox  * disabling interrupts.
49258d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
49358d6ea30SMatthew Wilcox  */
49458d6ea30SMatthew Wilcox static inline void *xa_erase_irq(struct xarray *xa, unsigned long index)
49558d6ea30SMatthew Wilcox {
49658d6ea30SMatthew Wilcox 	void *entry;
49758d6ea30SMatthew Wilcox 
49858d6ea30SMatthew Wilcox 	xa_lock_irq(xa);
49958d6ea30SMatthew Wilcox 	entry = __xa_erase(xa, index);
50058d6ea30SMatthew Wilcox 	xa_unlock_irq(xa);
50158d6ea30SMatthew Wilcox 
50258d6ea30SMatthew Wilcox 	return entry;
50358d6ea30SMatthew Wilcox }
50458d6ea30SMatthew Wilcox 
50502c02bf1SMatthew Wilcox /* Everything below here is the Advanced API.  Proceed with caution. */
50602c02bf1SMatthew Wilcox 
50702c02bf1SMatthew Wilcox /*
50802c02bf1SMatthew Wilcox  * The xarray is constructed out of a set of 'chunks' of pointers.  Choosing
50902c02bf1SMatthew Wilcox  * the best chunk size requires some tradeoffs.  A power of two recommends
51002c02bf1SMatthew Wilcox  * itself so that we can walk the tree based purely on shifts and masks.
51102c02bf1SMatthew Wilcox  * Generally, the larger the better; as the number of slots per level of the
51202c02bf1SMatthew Wilcox  * tree increases, the less tall the tree needs to be.  But that needs to be
51302c02bf1SMatthew Wilcox  * balanced against the memory consumption of each node.  On a 64-bit system,
51402c02bf1SMatthew Wilcox  * xa_node is currently 576 bytes, and we get 7 of them per 4kB page.  If we
51502c02bf1SMatthew Wilcox  * doubled the number of slots per node, we'd get only 3 nodes per 4kB page.
51602c02bf1SMatthew Wilcox  */
51702c02bf1SMatthew Wilcox #ifndef XA_CHUNK_SHIFT
51802c02bf1SMatthew Wilcox #define XA_CHUNK_SHIFT		(CONFIG_BASE_SMALL ? 4 : 6)
51902c02bf1SMatthew Wilcox #endif
52002c02bf1SMatthew Wilcox #define XA_CHUNK_SIZE		(1UL << XA_CHUNK_SHIFT)
52102c02bf1SMatthew Wilcox #define XA_CHUNK_MASK		(XA_CHUNK_SIZE - 1)
52201959dfeSMatthew Wilcox #define XA_MAX_MARKS		3
52301959dfeSMatthew Wilcox #define XA_MARK_LONGS		DIV_ROUND_UP(XA_CHUNK_SIZE, BITS_PER_LONG)
52401959dfeSMatthew Wilcox 
52501959dfeSMatthew Wilcox /*
52601959dfeSMatthew Wilcox  * @count is the count of every non-NULL element in the ->slots array
52701959dfeSMatthew Wilcox  * whether that is a value entry, a retry entry, a user pointer,
52801959dfeSMatthew Wilcox  * a sibling entry or a pointer to the next level of the tree.
52901959dfeSMatthew Wilcox  * @nr_values is the count of every element in ->slots which is
53001959dfeSMatthew Wilcox  * either a value entry or a sibling of a value entry.
53101959dfeSMatthew Wilcox  */
53201959dfeSMatthew Wilcox struct xa_node {
53301959dfeSMatthew Wilcox 	unsigned char	shift;		/* Bits remaining in each slot */
53401959dfeSMatthew Wilcox 	unsigned char	offset;		/* Slot offset in parent */
53501959dfeSMatthew Wilcox 	unsigned char	count;		/* Total entry count */
53601959dfeSMatthew Wilcox 	unsigned char	nr_values;	/* Value entry count */
53701959dfeSMatthew Wilcox 	struct xa_node __rcu *parent;	/* NULL at top of tree */
53801959dfeSMatthew Wilcox 	struct xarray	*array;		/* The array we belong to */
53901959dfeSMatthew Wilcox 	union {
54001959dfeSMatthew Wilcox 		struct list_head private_list;	/* For tree user */
54101959dfeSMatthew Wilcox 		struct rcu_head	rcu_head;	/* Used when freeing node */
54201959dfeSMatthew Wilcox 	};
54301959dfeSMatthew Wilcox 	void __rcu	*slots[XA_CHUNK_SIZE];
54401959dfeSMatthew Wilcox 	union {
54501959dfeSMatthew Wilcox 		unsigned long	tags[XA_MAX_MARKS][XA_MARK_LONGS];
54601959dfeSMatthew Wilcox 		unsigned long	marks[XA_MAX_MARKS][XA_MARK_LONGS];
54701959dfeSMatthew Wilcox 	};
54801959dfeSMatthew Wilcox };
54902c02bf1SMatthew Wilcox 
550ad3d6c72SMatthew Wilcox void xa_dump(const struct xarray *);
551ad3d6c72SMatthew Wilcox void xa_dump_node(const struct xa_node *);
552ad3d6c72SMatthew Wilcox 
553ad3d6c72SMatthew Wilcox #ifdef XA_DEBUG
554ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do {					\
555ad3d6c72SMatthew Wilcox 		if (x) {					\
556ad3d6c72SMatthew Wilcox 			xa_dump(xa);				\
557ad3d6c72SMatthew Wilcox 			BUG();					\
558ad3d6c72SMatthew Wilcox 		}						\
559ad3d6c72SMatthew Wilcox 	} while (0)
560ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do {				\
561ad3d6c72SMatthew Wilcox 		if (x) {					\
562ad3d6c72SMatthew Wilcox 			if (node) xa_dump_node(node);		\
563ad3d6c72SMatthew Wilcox 			BUG();					\
564ad3d6c72SMatthew Wilcox 		}						\
565ad3d6c72SMatthew Wilcox 	} while (0)
566ad3d6c72SMatthew Wilcox #else
567ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x)	do { } while (0)
568ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x)	do { } while (0)
569ad3d6c72SMatthew Wilcox #endif
570ad3d6c72SMatthew Wilcox 
571ad3d6c72SMatthew Wilcox /* Private */
572ad3d6c72SMatthew Wilcox static inline void *xa_head(const struct xarray *xa)
573ad3d6c72SMatthew Wilcox {
574ad3d6c72SMatthew Wilcox 	return rcu_dereference_check(xa->xa_head,
575ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
576ad3d6c72SMatthew Wilcox }
577ad3d6c72SMatthew Wilcox 
578ad3d6c72SMatthew Wilcox /* Private */
579ad3d6c72SMatthew Wilcox static inline void *xa_head_locked(const struct xarray *xa)
580ad3d6c72SMatthew Wilcox {
581ad3d6c72SMatthew Wilcox 	return rcu_dereference_protected(xa->xa_head,
582ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
583ad3d6c72SMatthew Wilcox }
584ad3d6c72SMatthew Wilcox 
585ad3d6c72SMatthew Wilcox /* Private */
586ad3d6c72SMatthew Wilcox static inline void *xa_entry(const struct xarray *xa,
587ad3d6c72SMatthew Wilcox 				const struct xa_node *node, unsigned int offset)
588ad3d6c72SMatthew Wilcox {
589ad3d6c72SMatthew Wilcox 	XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE);
590ad3d6c72SMatthew Wilcox 	return rcu_dereference_check(node->slots[offset],
591ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
592ad3d6c72SMatthew Wilcox }
593ad3d6c72SMatthew Wilcox 
594ad3d6c72SMatthew Wilcox /* Private */
595ad3d6c72SMatthew Wilcox static inline void *xa_entry_locked(const struct xarray *xa,
596ad3d6c72SMatthew Wilcox 				const struct xa_node *node, unsigned int offset)
597ad3d6c72SMatthew Wilcox {
598ad3d6c72SMatthew Wilcox 	XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE);
599ad3d6c72SMatthew Wilcox 	return rcu_dereference_protected(node->slots[offset],
600ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
601ad3d6c72SMatthew Wilcox }
602ad3d6c72SMatthew Wilcox 
603ad3d6c72SMatthew Wilcox /* Private */
6049b89a035SMatthew Wilcox static inline struct xa_node *xa_parent(const struct xarray *xa,
6059b89a035SMatthew Wilcox 					const struct xa_node *node)
6069b89a035SMatthew Wilcox {
6079b89a035SMatthew Wilcox 	return rcu_dereference_check(node->parent,
6089b89a035SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
6099b89a035SMatthew Wilcox }
6109b89a035SMatthew Wilcox 
6119b89a035SMatthew Wilcox /* Private */
6129b89a035SMatthew Wilcox static inline struct xa_node *xa_parent_locked(const struct xarray *xa,
6139b89a035SMatthew Wilcox 					const struct xa_node *node)
6149b89a035SMatthew Wilcox {
6159b89a035SMatthew Wilcox 	return rcu_dereference_protected(node->parent,
6169b89a035SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
6179b89a035SMatthew Wilcox }
6189b89a035SMatthew Wilcox 
6199b89a035SMatthew Wilcox /* Private */
62058d6ea30SMatthew Wilcox static inline void *xa_mk_node(const struct xa_node *node)
62158d6ea30SMatthew Wilcox {
62258d6ea30SMatthew Wilcox 	return (void *)((unsigned long)node | 2);
62358d6ea30SMatthew Wilcox }
62458d6ea30SMatthew Wilcox 
62558d6ea30SMatthew Wilcox /* Private */
626ad3d6c72SMatthew Wilcox static inline struct xa_node *xa_to_node(const void *entry)
627ad3d6c72SMatthew Wilcox {
628ad3d6c72SMatthew Wilcox 	return (struct xa_node *)((unsigned long)entry - 2);
629ad3d6c72SMatthew Wilcox }
630ad3d6c72SMatthew Wilcox 
63102c02bf1SMatthew Wilcox /* Private */
63202c02bf1SMatthew Wilcox static inline bool xa_is_node(const void *entry)
63302c02bf1SMatthew Wilcox {
63402c02bf1SMatthew Wilcox 	return xa_is_internal(entry) && (unsigned long)entry > 4096;
63502c02bf1SMatthew Wilcox }
63602c02bf1SMatthew Wilcox 
63702c02bf1SMatthew Wilcox /* Private */
63802c02bf1SMatthew Wilcox static inline void *xa_mk_sibling(unsigned int offset)
63902c02bf1SMatthew Wilcox {
64002c02bf1SMatthew Wilcox 	return xa_mk_internal(offset);
64102c02bf1SMatthew Wilcox }
64202c02bf1SMatthew Wilcox 
64302c02bf1SMatthew Wilcox /* Private */
64402c02bf1SMatthew Wilcox static inline unsigned long xa_to_sibling(const void *entry)
64502c02bf1SMatthew Wilcox {
64602c02bf1SMatthew Wilcox 	return xa_to_internal(entry);
64702c02bf1SMatthew Wilcox }
64802c02bf1SMatthew Wilcox 
64902c02bf1SMatthew Wilcox /**
65002c02bf1SMatthew Wilcox  * xa_is_sibling() - Is the entry a sibling entry?
65102c02bf1SMatthew Wilcox  * @entry: Entry retrieved from the XArray
65202c02bf1SMatthew Wilcox  *
65302c02bf1SMatthew Wilcox  * Return: %true if the entry is a sibling entry.
65402c02bf1SMatthew Wilcox  */
65502c02bf1SMatthew Wilcox static inline bool xa_is_sibling(const void *entry)
65602c02bf1SMatthew Wilcox {
65702c02bf1SMatthew Wilcox 	return IS_ENABLED(CONFIG_XARRAY_MULTI) && xa_is_internal(entry) &&
65802c02bf1SMatthew Wilcox 		(entry < xa_mk_sibling(XA_CHUNK_SIZE - 1));
65902c02bf1SMatthew Wilcox }
66002c02bf1SMatthew Wilcox 
66102c02bf1SMatthew Wilcox #define XA_RETRY_ENTRY		xa_mk_internal(256)
66202c02bf1SMatthew Wilcox 
663ad3d6c72SMatthew Wilcox /**
664ad3d6c72SMatthew Wilcox  * xa_is_retry() - Is the entry a retry entry?
665ad3d6c72SMatthew Wilcox  * @entry: Entry retrieved from the XArray
666ad3d6c72SMatthew Wilcox  *
667ad3d6c72SMatthew Wilcox  * Return: %true if the entry is a retry entry.
668ad3d6c72SMatthew Wilcox  */
669ad3d6c72SMatthew Wilcox static inline bool xa_is_retry(const void *entry)
670ad3d6c72SMatthew Wilcox {
671ad3d6c72SMatthew Wilcox 	return unlikely(entry == XA_RETRY_ENTRY);
672ad3d6c72SMatthew Wilcox }
673ad3d6c72SMatthew Wilcox 
674ad3d6c72SMatthew Wilcox /**
675ad3d6c72SMatthew Wilcox  * typedef xa_update_node_t - A callback function from the XArray.
676ad3d6c72SMatthew Wilcox  * @node: The node which is being processed
677ad3d6c72SMatthew Wilcox  *
678ad3d6c72SMatthew Wilcox  * This function is called every time the XArray updates the count of
679ad3d6c72SMatthew Wilcox  * present and value entries in a node.  It allows advanced users to
680ad3d6c72SMatthew Wilcox  * maintain the private_list in the node.
681ad3d6c72SMatthew Wilcox  *
682ad3d6c72SMatthew Wilcox  * Context: The xa_lock is held and interrupts may be disabled.
683ad3d6c72SMatthew Wilcox  *	    Implementations should not drop the xa_lock, nor re-enable
684ad3d6c72SMatthew Wilcox  *	    interrupts.
685ad3d6c72SMatthew Wilcox  */
686ad3d6c72SMatthew Wilcox typedef void (*xa_update_node_t)(struct xa_node *node);
687ad3d6c72SMatthew Wilcox 
688ad3d6c72SMatthew Wilcox /*
689ad3d6c72SMatthew Wilcox  * The xa_state is opaque to its users.  It contains various different pieces
690ad3d6c72SMatthew Wilcox  * of state involved in the current operation on the XArray.  It should be
691ad3d6c72SMatthew Wilcox  * declared on the stack and passed between the various internal routines.
692ad3d6c72SMatthew Wilcox  * The various elements in it should not be accessed directly, but only
693ad3d6c72SMatthew Wilcox  * through the provided accessor functions.  The below documentation is for
694ad3d6c72SMatthew Wilcox  * the benefit of those working on the code, not for users of the XArray.
695ad3d6c72SMatthew Wilcox  *
696ad3d6c72SMatthew Wilcox  * @xa_node usually points to the xa_node containing the slot we're operating
697ad3d6c72SMatthew Wilcox  * on (and @xa_offset is the offset in the slots array).  If there is a
698ad3d6c72SMatthew Wilcox  * single entry in the array at index 0, there are no allocated xa_nodes to
699ad3d6c72SMatthew Wilcox  * point to, and so we store %NULL in @xa_node.  @xa_node is set to
700ad3d6c72SMatthew Wilcox  * the value %XAS_RESTART if the xa_state is not walked to the correct
701ad3d6c72SMatthew Wilcox  * position in the tree of nodes for this operation.  If an error occurs
702ad3d6c72SMatthew Wilcox  * during an operation, it is set to an %XAS_ERROR value.  If we run off the
703ad3d6c72SMatthew Wilcox  * end of the allocated nodes, it is set to %XAS_BOUNDS.
704ad3d6c72SMatthew Wilcox  */
705ad3d6c72SMatthew Wilcox struct xa_state {
706ad3d6c72SMatthew Wilcox 	struct xarray *xa;
707ad3d6c72SMatthew Wilcox 	unsigned long xa_index;
708ad3d6c72SMatthew Wilcox 	unsigned char xa_shift;
709ad3d6c72SMatthew Wilcox 	unsigned char xa_sibs;
710ad3d6c72SMatthew Wilcox 	unsigned char xa_offset;
711ad3d6c72SMatthew Wilcox 	unsigned char xa_pad;		/* Helps gcc generate better code */
712ad3d6c72SMatthew Wilcox 	struct xa_node *xa_node;
713ad3d6c72SMatthew Wilcox 	struct xa_node *xa_alloc;
714ad3d6c72SMatthew Wilcox 	xa_update_node_t xa_update;
715ad3d6c72SMatthew Wilcox };
716ad3d6c72SMatthew Wilcox 
717ad3d6c72SMatthew Wilcox /*
718ad3d6c72SMatthew Wilcox  * We encode errnos in the xas->xa_node.  If an error has happened, we need to
719ad3d6c72SMatthew Wilcox  * drop the lock to fix it, and once we've done so the xa_state is invalid.
720ad3d6c72SMatthew Wilcox  */
721ad3d6c72SMatthew Wilcox #define XA_ERROR(errno) ((struct xa_node *)(((unsigned long)errno << 2) | 2UL))
722ad3d6c72SMatthew Wilcox #define XAS_BOUNDS	((struct xa_node *)1UL)
723ad3d6c72SMatthew Wilcox #define XAS_RESTART	((struct xa_node *)3UL)
724ad3d6c72SMatthew Wilcox 
725ad3d6c72SMatthew Wilcox #define __XA_STATE(array, index, shift, sibs)  {	\
726ad3d6c72SMatthew Wilcox 	.xa = array,					\
727ad3d6c72SMatthew Wilcox 	.xa_index = index,				\
728ad3d6c72SMatthew Wilcox 	.xa_shift = shift,				\
729ad3d6c72SMatthew Wilcox 	.xa_sibs = sibs,				\
730ad3d6c72SMatthew Wilcox 	.xa_offset = 0,					\
731ad3d6c72SMatthew Wilcox 	.xa_pad = 0,					\
732ad3d6c72SMatthew Wilcox 	.xa_node = XAS_RESTART,				\
733ad3d6c72SMatthew Wilcox 	.xa_alloc = NULL,				\
734ad3d6c72SMatthew Wilcox 	.xa_update = NULL				\
735ad3d6c72SMatthew Wilcox }
736ad3d6c72SMatthew Wilcox 
737ad3d6c72SMatthew Wilcox /**
738ad3d6c72SMatthew Wilcox  * XA_STATE() - Declare an XArray operation state.
739ad3d6c72SMatthew Wilcox  * @name: Name of this operation state (usually xas).
740ad3d6c72SMatthew Wilcox  * @array: Array to operate on.
741ad3d6c72SMatthew Wilcox  * @index: Initial index of interest.
742ad3d6c72SMatthew Wilcox  *
743ad3d6c72SMatthew Wilcox  * Declare and initialise an xa_state on the stack.
744ad3d6c72SMatthew Wilcox  */
745ad3d6c72SMatthew Wilcox #define XA_STATE(name, array, index)				\
746ad3d6c72SMatthew Wilcox 	struct xa_state name = __XA_STATE(array, index, 0, 0)
747ad3d6c72SMatthew Wilcox 
748ad3d6c72SMatthew Wilcox /**
749ad3d6c72SMatthew Wilcox  * XA_STATE_ORDER() - Declare an XArray operation state.
750ad3d6c72SMatthew Wilcox  * @name: Name of this operation state (usually xas).
751ad3d6c72SMatthew Wilcox  * @array: Array to operate on.
752ad3d6c72SMatthew Wilcox  * @index: Initial index of interest.
753ad3d6c72SMatthew Wilcox  * @order: Order of entry.
754ad3d6c72SMatthew Wilcox  *
755ad3d6c72SMatthew Wilcox  * Declare and initialise an xa_state on the stack.  This variant of
756ad3d6c72SMatthew Wilcox  * XA_STATE() allows you to specify the 'order' of the element you
757ad3d6c72SMatthew Wilcox  * want to operate on.`
758ad3d6c72SMatthew Wilcox  */
759ad3d6c72SMatthew Wilcox #define XA_STATE_ORDER(name, array, index, order)		\
760ad3d6c72SMatthew Wilcox 	struct xa_state name = __XA_STATE(array,		\
761ad3d6c72SMatthew Wilcox 			(index >> order) << order,		\
762ad3d6c72SMatthew Wilcox 			order - (order % XA_CHUNK_SHIFT),	\
763ad3d6c72SMatthew Wilcox 			(1U << (order % XA_CHUNK_SHIFT)) - 1)
764ad3d6c72SMatthew Wilcox 
765ad3d6c72SMatthew Wilcox #define xas_marked(xas, mark)	xa_marked((xas)->xa, (mark))
766ad3d6c72SMatthew Wilcox #define xas_trylock(xas)	xa_trylock((xas)->xa)
767ad3d6c72SMatthew Wilcox #define xas_lock(xas)		xa_lock((xas)->xa)
768ad3d6c72SMatthew Wilcox #define xas_unlock(xas)		xa_unlock((xas)->xa)
769ad3d6c72SMatthew Wilcox #define xas_lock_bh(xas)	xa_lock_bh((xas)->xa)
770ad3d6c72SMatthew Wilcox #define xas_unlock_bh(xas)	xa_unlock_bh((xas)->xa)
771ad3d6c72SMatthew Wilcox #define xas_lock_irq(xas)	xa_lock_irq((xas)->xa)
772ad3d6c72SMatthew Wilcox #define xas_unlock_irq(xas)	xa_unlock_irq((xas)->xa)
773ad3d6c72SMatthew Wilcox #define xas_lock_irqsave(xas, flags) \
774ad3d6c72SMatthew Wilcox 				xa_lock_irqsave((xas)->xa, flags)
775ad3d6c72SMatthew Wilcox #define xas_unlock_irqrestore(xas, flags) \
776ad3d6c72SMatthew Wilcox 				xa_unlock_irqrestore((xas)->xa, flags)
777ad3d6c72SMatthew Wilcox 
778ad3d6c72SMatthew Wilcox /**
779ad3d6c72SMatthew Wilcox  * xas_error() - Return an errno stored in the xa_state.
780ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
781ad3d6c72SMatthew Wilcox  *
782ad3d6c72SMatthew Wilcox  * Return: 0 if no error has been noted.  A negative errno if one has.
783ad3d6c72SMatthew Wilcox  */
784ad3d6c72SMatthew Wilcox static inline int xas_error(const struct xa_state *xas)
785ad3d6c72SMatthew Wilcox {
786ad3d6c72SMatthew Wilcox 	return xa_err(xas->xa_node);
787ad3d6c72SMatthew Wilcox }
788ad3d6c72SMatthew Wilcox 
789ad3d6c72SMatthew Wilcox /**
790ad3d6c72SMatthew Wilcox  * xas_set_err() - Note an error in the xa_state.
791ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
792ad3d6c72SMatthew Wilcox  * @err: Negative error number.
793ad3d6c72SMatthew Wilcox  *
794ad3d6c72SMatthew Wilcox  * Only call this function with a negative @err; zero or positive errors
795ad3d6c72SMatthew Wilcox  * will probably not behave the way you think they should.  If you want
796ad3d6c72SMatthew Wilcox  * to clear the error from an xa_state, use xas_reset().
797ad3d6c72SMatthew Wilcox  */
798ad3d6c72SMatthew Wilcox static inline void xas_set_err(struct xa_state *xas, long err)
799ad3d6c72SMatthew Wilcox {
800ad3d6c72SMatthew Wilcox 	xas->xa_node = XA_ERROR(err);
801ad3d6c72SMatthew Wilcox }
802ad3d6c72SMatthew Wilcox 
803ad3d6c72SMatthew Wilcox /**
804ad3d6c72SMatthew Wilcox  * xas_invalid() - Is the xas in a retry or error state?
805ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
806ad3d6c72SMatthew Wilcox  *
807ad3d6c72SMatthew Wilcox  * Return: %true if the xas cannot be used for operations.
808ad3d6c72SMatthew Wilcox  */
809ad3d6c72SMatthew Wilcox static inline bool xas_invalid(const struct xa_state *xas)
810ad3d6c72SMatthew Wilcox {
811ad3d6c72SMatthew Wilcox 	return (unsigned long)xas->xa_node & 3;
812ad3d6c72SMatthew Wilcox }
813ad3d6c72SMatthew Wilcox 
814ad3d6c72SMatthew Wilcox /**
815ad3d6c72SMatthew Wilcox  * xas_valid() - Is the xas a valid cursor into the array?
816ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
817ad3d6c72SMatthew Wilcox  *
818ad3d6c72SMatthew Wilcox  * Return: %true if the xas can be used for operations.
819ad3d6c72SMatthew Wilcox  */
820ad3d6c72SMatthew Wilcox static inline bool xas_valid(const struct xa_state *xas)
821ad3d6c72SMatthew Wilcox {
822ad3d6c72SMatthew Wilcox 	return !xas_invalid(xas);
823ad3d6c72SMatthew Wilcox }
824ad3d6c72SMatthew Wilcox 
8259b89a035SMatthew Wilcox /* True if the pointer is something other than a node */
8269b89a035SMatthew Wilcox static inline bool xas_not_node(struct xa_node *node)
8279b89a035SMatthew Wilcox {
8289b89a035SMatthew Wilcox 	return ((unsigned long)node & 3) || !node;
8299b89a035SMatthew Wilcox }
8309b89a035SMatthew Wilcox 
83158d6ea30SMatthew Wilcox /* True if the node represents head-of-tree, RESTART or BOUNDS */
83258d6ea30SMatthew Wilcox static inline bool xas_top(struct xa_node *node)
83358d6ea30SMatthew Wilcox {
83458d6ea30SMatthew Wilcox 	return node <= XAS_RESTART;
83558d6ea30SMatthew Wilcox }
83658d6ea30SMatthew Wilcox 
837ad3d6c72SMatthew Wilcox /**
838ad3d6c72SMatthew Wilcox  * xas_reset() - Reset an XArray operation state.
839ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
840ad3d6c72SMatthew Wilcox  *
841ad3d6c72SMatthew Wilcox  * Resets the error or walk state of the @xas so future walks of the
842ad3d6c72SMatthew Wilcox  * array will start from the root.  Use this if you have dropped the
843ad3d6c72SMatthew Wilcox  * xarray lock and want to reuse the xa_state.
844ad3d6c72SMatthew Wilcox  *
845ad3d6c72SMatthew Wilcox  * Context: Any context.
846ad3d6c72SMatthew Wilcox  */
847ad3d6c72SMatthew Wilcox static inline void xas_reset(struct xa_state *xas)
848ad3d6c72SMatthew Wilcox {
849ad3d6c72SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
850ad3d6c72SMatthew Wilcox }
851ad3d6c72SMatthew Wilcox 
852ad3d6c72SMatthew Wilcox /**
853ad3d6c72SMatthew Wilcox  * xas_retry() - Retry the operation if appropriate.
854ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
855ad3d6c72SMatthew Wilcox  * @entry: Entry from xarray.
856ad3d6c72SMatthew Wilcox  *
857ad3d6c72SMatthew Wilcox  * The advanced functions may sometimes return an internal entry, such as
858ad3d6c72SMatthew Wilcox  * a retry entry or a zero entry.  This function sets up the @xas to restart
859ad3d6c72SMatthew Wilcox  * the walk from the head of the array if needed.
860ad3d6c72SMatthew Wilcox  *
861ad3d6c72SMatthew Wilcox  * Context: Any context.
862ad3d6c72SMatthew Wilcox  * Return: true if the operation needs to be retried.
863ad3d6c72SMatthew Wilcox  */
864ad3d6c72SMatthew Wilcox static inline bool xas_retry(struct xa_state *xas, const void *entry)
865ad3d6c72SMatthew Wilcox {
866ad3d6c72SMatthew Wilcox 	if (!xa_is_retry(entry))
867ad3d6c72SMatthew Wilcox 		return false;
868ad3d6c72SMatthew Wilcox 	xas_reset(xas);
869ad3d6c72SMatthew Wilcox 	return true;
870ad3d6c72SMatthew Wilcox }
871ad3d6c72SMatthew Wilcox 
872ad3d6c72SMatthew Wilcox void *xas_load(struct xa_state *);
87358d6ea30SMatthew Wilcox void *xas_store(struct xa_state *, void *entry);
874b803b428SMatthew Wilcox void *xas_find(struct xa_state *, unsigned long max);
875ad3d6c72SMatthew Wilcox 
8769b89a035SMatthew Wilcox bool xas_get_mark(const struct xa_state *, xa_mark_t);
8779b89a035SMatthew Wilcox void xas_set_mark(const struct xa_state *, xa_mark_t);
8789b89a035SMatthew Wilcox void xas_clear_mark(const struct xa_state *, xa_mark_t);
879b803b428SMatthew Wilcox void *xas_find_marked(struct xa_state *, unsigned long max, xa_mark_t);
88058d6ea30SMatthew Wilcox void xas_init_marks(const struct xa_state *);
88158d6ea30SMatthew Wilcox 
88258d6ea30SMatthew Wilcox bool xas_nomem(struct xa_state *, gfp_t);
883b803b428SMatthew Wilcox void xas_pause(struct xa_state *);
8849b89a035SMatthew Wilcox 
885ad3d6c72SMatthew Wilcox /**
886ad3d6c72SMatthew Wilcox  * xas_reload() - Refetch an entry from the xarray.
887ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
888ad3d6c72SMatthew Wilcox  *
889ad3d6c72SMatthew Wilcox  * Use this function to check that a previously loaded entry still has
890ad3d6c72SMatthew Wilcox  * the same value.  This is useful for the lockless pagecache lookup where
891ad3d6c72SMatthew Wilcox  * we walk the array with only the RCU lock to protect us, lock the page,
892ad3d6c72SMatthew Wilcox  * then check that the page hasn't moved since we looked it up.
893ad3d6c72SMatthew Wilcox  *
894ad3d6c72SMatthew Wilcox  * The caller guarantees that @xas is still valid.  If it may be in an
895ad3d6c72SMatthew Wilcox  * error or restart state, call xas_load() instead.
896ad3d6c72SMatthew Wilcox  *
897ad3d6c72SMatthew Wilcox  * Return: The entry at this location in the xarray.
898ad3d6c72SMatthew Wilcox  */
899ad3d6c72SMatthew Wilcox static inline void *xas_reload(struct xa_state *xas)
900ad3d6c72SMatthew Wilcox {
901ad3d6c72SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
902ad3d6c72SMatthew Wilcox 
903ad3d6c72SMatthew Wilcox 	if (node)
904ad3d6c72SMatthew Wilcox 		return xa_entry(xas->xa, node, xas->xa_offset);
905ad3d6c72SMatthew Wilcox 	return xa_head(xas->xa);
906ad3d6c72SMatthew Wilcox }
907ad3d6c72SMatthew Wilcox 
90858d6ea30SMatthew Wilcox /**
90958d6ea30SMatthew Wilcox  * xas_set() - Set up XArray operation state for a different index.
91058d6ea30SMatthew Wilcox  * @xas: XArray operation state.
91158d6ea30SMatthew Wilcox  * @index: New index into the XArray.
91258d6ea30SMatthew Wilcox  *
91358d6ea30SMatthew Wilcox  * Move the operation state to refer to a different index.  This will
91458d6ea30SMatthew Wilcox  * have the effect of starting a walk from the top; see xas_next()
91558d6ea30SMatthew Wilcox  * to move to an adjacent index.
91658d6ea30SMatthew Wilcox  */
91758d6ea30SMatthew Wilcox static inline void xas_set(struct xa_state *xas, unsigned long index)
91858d6ea30SMatthew Wilcox {
91958d6ea30SMatthew Wilcox 	xas->xa_index = index;
92058d6ea30SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
92158d6ea30SMatthew Wilcox }
92258d6ea30SMatthew Wilcox 
92358d6ea30SMatthew Wilcox /**
92458d6ea30SMatthew Wilcox  * xas_set_order() - Set up XArray operation state for a multislot entry.
92558d6ea30SMatthew Wilcox  * @xas: XArray operation state.
92658d6ea30SMatthew Wilcox  * @index: Target of the operation.
92758d6ea30SMatthew Wilcox  * @order: Entry occupies 2^@order indices.
92858d6ea30SMatthew Wilcox  */
92958d6ea30SMatthew Wilcox static inline void xas_set_order(struct xa_state *xas, unsigned long index,
93058d6ea30SMatthew Wilcox 					unsigned int order)
93158d6ea30SMatthew Wilcox {
93258d6ea30SMatthew Wilcox #ifdef CONFIG_XARRAY_MULTI
93358d6ea30SMatthew Wilcox 	xas->xa_index = order < BITS_PER_LONG ? (index >> order) << order : 0;
93458d6ea30SMatthew Wilcox 	xas->xa_shift = order - (order % XA_CHUNK_SHIFT);
93558d6ea30SMatthew Wilcox 	xas->xa_sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1;
93658d6ea30SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
93758d6ea30SMatthew Wilcox #else
93858d6ea30SMatthew Wilcox 	BUG_ON(order > 0);
93958d6ea30SMatthew Wilcox 	xas_set(xas, index);
94058d6ea30SMatthew Wilcox #endif
94158d6ea30SMatthew Wilcox }
94258d6ea30SMatthew Wilcox 
94358d6ea30SMatthew Wilcox /**
94458d6ea30SMatthew Wilcox  * xas_set_update() - Set up XArray operation state for a callback.
94558d6ea30SMatthew Wilcox  * @xas: XArray operation state.
94658d6ea30SMatthew Wilcox  * @update: Function to call when updating a node.
94758d6ea30SMatthew Wilcox  *
94858d6ea30SMatthew Wilcox  * The XArray can notify a caller after it has updated an xa_node.
94958d6ea30SMatthew Wilcox  * This is advanced functionality and is only needed by the page cache.
95058d6ea30SMatthew Wilcox  */
95158d6ea30SMatthew Wilcox static inline void xas_set_update(struct xa_state *xas, xa_update_node_t update)
95258d6ea30SMatthew Wilcox {
95358d6ea30SMatthew Wilcox 	xas->xa_update = update;
95458d6ea30SMatthew Wilcox }
95558d6ea30SMatthew Wilcox 
956b803b428SMatthew Wilcox /**
957b803b428SMatthew Wilcox  * xas_next_entry() - Advance iterator to next present entry.
958b803b428SMatthew Wilcox  * @xas: XArray operation state.
959b803b428SMatthew Wilcox  * @max: Highest index to return.
960b803b428SMatthew Wilcox  *
961b803b428SMatthew Wilcox  * xas_next_entry() is an inline function to optimise xarray traversal for
962b803b428SMatthew Wilcox  * speed.  It is equivalent to calling xas_find(), and will call xas_find()
963b803b428SMatthew Wilcox  * for all the hard cases.
964b803b428SMatthew Wilcox  *
965b803b428SMatthew Wilcox  * Return: The next present entry after the one currently referred to by @xas.
966b803b428SMatthew Wilcox  */
967b803b428SMatthew Wilcox static inline void *xas_next_entry(struct xa_state *xas, unsigned long max)
968b803b428SMatthew Wilcox {
969b803b428SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
970b803b428SMatthew Wilcox 	void *entry;
971b803b428SMatthew Wilcox 
972b803b428SMatthew Wilcox 	if (unlikely(xas_not_node(node) || node->shift ||
973b803b428SMatthew Wilcox 			xas->xa_offset != (xas->xa_index & XA_CHUNK_MASK)))
974b803b428SMatthew Wilcox 		return xas_find(xas, max);
975b803b428SMatthew Wilcox 
976b803b428SMatthew Wilcox 	do {
977b803b428SMatthew Wilcox 		if (unlikely(xas->xa_index >= max))
978b803b428SMatthew Wilcox 			return xas_find(xas, max);
979b803b428SMatthew Wilcox 		if (unlikely(xas->xa_offset == XA_CHUNK_MASK))
980b803b428SMatthew Wilcox 			return xas_find(xas, max);
981b803b428SMatthew Wilcox 		entry = xa_entry(xas->xa, node, xas->xa_offset + 1);
982b803b428SMatthew Wilcox 		if (unlikely(xa_is_internal(entry)))
983b803b428SMatthew Wilcox 			return xas_find(xas, max);
984b803b428SMatthew Wilcox 		xas->xa_offset++;
985b803b428SMatthew Wilcox 		xas->xa_index++;
986b803b428SMatthew Wilcox 	} while (!entry);
987b803b428SMatthew Wilcox 
988b803b428SMatthew Wilcox 	return entry;
989b803b428SMatthew Wilcox }
990b803b428SMatthew Wilcox 
991b803b428SMatthew Wilcox /* Private */
992b803b428SMatthew Wilcox static inline unsigned int xas_find_chunk(struct xa_state *xas, bool advance,
993b803b428SMatthew Wilcox 		xa_mark_t mark)
994b803b428SMatthew Wilcox {
995b803b428SMatthew Wilcox 	unsigned long *addr = xas->xa_node->marks[(__force unsigned)mark];
996b803b428SMatthew Wilcox 	unsigned int offset = xas->xa_offset;
997b803b428SMatthew Wilcox 
998b803b428SMatthew Wilcox 	if (advance)
999b803b428SMatthew Wilcox 		offset++;
1000b803b428SMatthew Wilcox 	if (XA_CHUNK_SIZE == BITS_PER_LONG) {
1001b803b428SMatthew Wilcox 		if (offset < XA_CHUNK_SIZE) {
1002b803b428SMatthew Wilcox 			unsigned long data = *addr & (~0UL << offset);
1003b803b428SMatthew Wilcox 			if (data)
1004b803b428SMatthew Wilcox 				return __ffs(data);
1005b803b428SMatthew Wilcox 		}
1006b803b428SMatthew Wilcox 		return XA_CHUNK_SIZE;
1007b803b428SMatthew Wilcox 	}
1008b803b428SMatthew Wilcox 
1009b803b428SMatthew Wilcox 	return find_next_bit(addr, XA_CHUNK_SIZE, offset);
1010b803b428SMatthew Wilcox }
1011b803b428SMatthew Wilcox 
1012b803b428SMatthew Wilcox /**
1013b803b428SMatthew Wilcox  * xas_next_marked() - Advance iterator to next marked entry.
1014b803b428SMatthew Wilcox  * @xas: XArray operation state.
1015b803b428SMatthew Wilcox  * @max: Highest index to return.
1016b803b428SMatthew Wilcox  * @mark: Mark to search for.
1017b803b428SMatthew Wilcox  *
1018b803b428SMatthew Wilcox  * xas_next_marked() is an inline function to optimise xarray traversal for
1019b803b428SMatthew Wilcox  * speed.  It is equivalent to calling xas_find_marked(), and will call
1020b803b428SMatthew Wilcox  * xas_find_marked() for all the hard cases.
1021b803b428SMatthew Wilcox  *
1022b803b428SMatthew Wilcox  * Return: The next marked entry after the one currently referred to by @xas.
1023b803b428SMatthew Wilcox  */
1024b803b428SMatthew Wilcox static inline void *xas_next_marked(struct xa_state *xas, unsigned long max,
1025b803b428SMatthew Wilcox 								xa_mark_t mark)
1026b803b428SMatthew Wilcox {
1027b803b428SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
1028b803b428SMatthew Wilcox 	unsigned int offset;
1029b803b428SMatthew Wilcox 
1030b803b428SMatthew Wilcox 	if (unlikely(xas_not_node(node) || node->shift))
1031b803b428SMatthew Wilcox 		return xas_find_marked(xas, max, mark);
1032b803b428SMatthew Wilcox 	offset = xas_find_chunk(xas, true, mark);
1033b803b428SMatthew Wilcox 	xas->xa_offset = offset;
1034b803b428SMatthew Wilcox 	xas->xa_index = (xas->xa_index & ~XA_CHUNK_MASK) + offset;
1035b803b428SMatthew Wilcox 	if (xas->xa_index > max)
1036b803b428SMatthew Wilcox 		return NULL;
1037b803b428SMatthew Wilcox 	if (offset == XA_CHUNK_SIZE)
1038b803b428SMatthew Wilcox 		return xas_find_marked(xas, max, mark);
1039b803b428SMatthew Wilcox 	return xa_entry(xas->xa, node, offset);
1040b803b428SMatthew Wilcox }
1041b803b428SMatthew Wilcox 
1042b803b428SMatthew Wilcox /*
1043b803b428SMatthew Wilcox  * If iterating while holding a lock, drop the lock and reschedule
1044b803b428SMatthew Wilcox  * every %XA_CHECK_SCHED loops.
1045b803b428SMatthew Wilcox  */
1046b803b428SMatthew Wilcox enum {
1047b803b428SMatthew Wilcox 	XA_CHECK_SCHED = 4096,
1048b803b428SMatthew Wilcox };
1049b803b428SMatthew Wilcox 
1050b803b428SMatthew Wilcox /**
1051b803b428SMatthew Wilcox  * xas_for_each() - Iterate over a range of an XArray.
1052b803b428SMatthew Wilcox  * @xas: XArray operation state.
1053b803b428SMatthew Wilcox  * @entry: Entry retrieved from the array.
1054b803b428SMatthew Wilcox  * @max: Maximum index to retrieve from array.
1055b803b428SMatthew Wilcox  *
1056b803b428SMatthew Wilcox  * The loop body will be executed for each entry present in the xarray
1057b803b428SMatthew Wilcox  * between the current xas position and @max.  @entry will be set to
1058b803b428SMatthew Wilcox  * the entry retrieved from the xarray.  It is safe to delete entries
1059b803b428SMatthew Wilcox  * from the array in the loop body.  You should hold either the RCU lock
1060b803b428SMatthew Wilcox  * or the xa_lock while iterating.  If you need to drop the lock, call
1061b803b428SMatthew Wilcox  * xas_pause() first.
1062b803b428SMatthew Wilcox  */
1063b803b428SMatthew Wilcox #define xas_for_each(xas, entry, max) \
1064b803b428SMatthew Wilcox 	for (entry = xas_find(xas, max); entry; \
1065b803b428SMatthew Wilcox 	     entry = xas_next_entry(xas, max))
1066b803b428SMatthew Wilcox 
1067b803b428SMatthew Wilcox /**
1068b803b428SMatthew Wilcox  * xas_for_each_marked() - Iterate over a range of an XArray.
1069b803b428SMatthew Wilcox  * @xas: XArray operation state.
1070b803b428SMatthew Wilcox  * @entry: Entry retrieved from the array.
1071b803b428SMatthew Wilcox  * @max: Maximum index to retrieve from array.
1072b803b428SMatthew Wilcox  * @mark: Mark to search for.
1073b803b428SMatthew Wilcox  *
1074b803b428SMatthew Wilcox  * The loop body will be executed for each marked entry in the xarray
1075b803b428SMatthew Wilcox  * between the current xas position and @max.  @entry will be set to
1076b803b428SMatthew Wilcox  * the entry retrieved from the xarray.  It is safe to delete entries
1077b803b428SMatthew Wilcox  * from the array in the loop body.  You should hold either the RCU lock
1078b803b428SMatthew Wilcox  * or the xa_lock while iterating.  If you need to drop the lock, call
1079b803b428SMatthew Wilcox  * xas_pause() first.
1080b803b428SMatthew Wilcox  */
1081b803b428SMatthew Wilcox #define xas_for_each_marked(xas, entry, max, mark) \
1082b803b428SMatthew Wilcox 	for (entry = xas_find_marked(xas, max, mark); entry; \
1083b803b428SMatthew Wilcox 	     entry = xas_next_marked(xas, max, mark))
1084b803b428SMatthew Wilcox 
1085f6bb2a2cSMatthew Wilcox #endif /* _LINUX_XARRAY_H */
1086