xref: /linux-6.15/include/linux/xarray.h (revision 41aec91f)
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);
278*41aec91fSMatthew Wilcox void *xa_cmpxchg(struct xarray *, unsigned long index,
279*41aec91fSMatthew 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);
283f8d5d0ccSMatthew Wilcox 
284f8d5d0ccSMatthew Wilcox /**
285f8d5d0ccSMatthew Wilcox  * xa_init() - Initialise an empty XArray.
286f8d5d0ccSMatthew Wilcox  * @xa: XArray.
287f8d5d0ccSMatthew Wilcox  *
288f8d5d0ccSMatthew Wilcox  * An empty XArray is full of NULL entries.
289f8d5d0ccSMatthew Wilcox  *
290f8d5d0ccSMatthew Wilcox  * Context: Any context.
291f8d5d0ccSMatthew Wilcox  */
292f8d5d0ccSMatthew Wilcox static inline void xa_init(struct xarray *xa)
293f8d5d0ccSMatthew Wilcox {
294f8d5d0ccSMatthew Wilcox 	xa_init_flags(xa, 0);
295f8d5d0ccSMatthew Wilcox }
296f8d5d0ccSMatthew Wilcox 
297ad3d6c72SMatthew Wilcox /**
298ad3d6c72SMatthew Wilcox  * xa_empty() - Determine if an array has any present entries.
299ad3d6c72SMatthew Wilcox  * @xa: XArray.
300ad3d6c72SMatthew Wilcox  *
301ad3d6c72SMatthew Wilcox  * Context: Any context.
302ad3d6c72SMatthew Wilcox  * Return: %true if the array contains only NULL pointers.
303ad3d6c72SMatthew Wilcox  */
304ad3d6c72SMatthew Wilcox static inline bool xa_empty(const struct xarray *xa)
305ad3d6c72SMatthew Wilcox {
306ad3d6c72SMatthew Wilcox 	return xa->xa_head == NULL;
307ad3d6c72SMatthew Wilcox }
308ad3d6c72SMatthew Wilcox 
3099b89a035SMatthew Wilcox /**
3109b89a035SMatthew Wilcox  * xa_marked() - Inquire whether any entry in this array has a mark set
3119b89a035SMatthew Wilcox  * @xa: Array
3129b89a035SMatthew Wilcox  * @mark: Mark value
3139b89a035SMatthew Wilcox  *
3149b89a035SMatthew Wilcox  * Context: Any context.
3159b89a035SMatthew Wilcox  * Return: %true if any entry has this mark set.
3169b89a035SMatthew Wilcox  */
3179b89a035SMatthew Wilcox static inline bool xa_marked(const struct xarray *xa, xa_mark_t mark)
3189b89a035SMatthew Wilcox {
3199b89a035SMatthew Wilcox 	return xa->xa_flags & XA_FLAGS_MARK(mark);
3209b89a035SMatthew Wilcox }
3219b89a035SMatthew Wilcox 
32258d6ea30SMatthew Wilcox /**
32358d6ea30SMatthew Wilcox  * xa_erase() - Erase this entry from the XArray.
32458d6ea30SMatthew Wilcox  * @xa: XArray.
32558d6ea30SMatthew Wilcox  * @index: Index of entry.
32658d6ea30SMatthew Wilcox  *
32758d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
32858d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
32958d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
33058d6ea30SMatthew Wilcox  *
33158d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.
33258d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
33358d6ea30SMatthew Wilcox  */
33458d6ea30SMatthew Wilcox static inline void *xa_erase(struct xarray *xa, unsigned long index)
33558d6ea30SMatthew Wilcox {
33658d6ea30SMatthew Wilcox 	return xa_store(xa, index, NULL, 0);
33758d6ea30SMatthew Wilcox }
33858d6ea30SMatthew Wilcox 
339*41aec91fSMatthew Wilcox /**
340*41aec91fSMatthew Wilcox  * xa_insert() - Store this entry in the XArray unless another entry is
341*41aec91fSMatthew Wilcox  *			already present.
342*41aec91fSMatthew Wilcox  * @xa: XArray.
343*41aec91fSMatthew Wilcox  * @index: Index into array.
344*41aec91fSMatthew Wilcox  * @entry: New entry.
345*41aec91fSMatthew Wilcox  * @gfp: Memory allocation flags.
346*41aec91fSMatthew Wilcox  *
347*41aec91fSMatthew Wilcox  * If you would rather see the existing entry in the array, use xa_cmpxchg().
348*41aec91fSMatthew Wilcox  * This function is for users who don't care what the entry is, only that
349*41aec91fSMatthew Wilcox  * one is present.
350*41aec91fSMatthew Wilcox  *
351*41aec91fSMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock.
352*41aec91fSMatthew Wilcox  *	    May sleep if the @gfp flags permit.
353*41aec91fSMatthew Wilcox  * Return: 0 if the store succeeded.  -EEXIST if another entry was present.
354*41aec91fSMatthew Wilcox  * -ENOMEM if memory could not be allocated.
355*41aec91fSMatthew Wilcox  */
356*41aec91fSMatthew Wilcox static inline int xa_insert(struct xarray *xa, unsigned long index,
357*41aec91fSMatthew Wilcox 		void *entry, gfp_t gfp)
358*41aec91fSMatthew Wilcox {
359*41aec91fSMatthew Wilcox 	void *curr = xa_cmpxchg(xa, index, NULL, entry, gfp);
360*41aec91fSMatthew Wilcox 	if (!curr)
361*41aec91fSMatthew Wilcox 		return 0;
362*41aec91fSMatthew Wilcox 	if (xa_is_err(curr))
363*41aec91fSMatthew Wilcox 		return xa_err(curr);
364*41aec91fSMatthew Wilcox 	return -EEXIST;
365*41aec91fSMatthew Wilcox }
366*41aec91fSMatthew Wilcox 
367f6bb2a2cSMatthew Wilcox #define xa_trylock(xa)		spin_trylock(&(xa)->xa_lock)
368f6bb2a2cSMatthew Wilcox #define xa_lock(xa)		spin_lock(&(xa)->xa_lock)
369f6bb2a2cSMatthew Wilcox #define xa_unlock(xa)		spin_unlock(&(xa)->xa_lock)
370f6bb2a2cSMatthew Wilcox #define xa_lock_bh(xa)		spin_lock_bh(&(xa)->xa_lock)
371f6bb2a2cSMatthew Wilcox #define xa_unlock_bh(xa)	spin_unlock_bh(&(xa)->xa_lock)
372f6bb2a2cSMatthew Wilcox #define xa_lock_irq(xa)		spin_lock_irq(&(xa)->xa_lock)
373f6bb2a2cSMatthew Wilcox #define xa_unlock_irq(xa)	spin_unlock_irq(&(xa)->xa_lock)
374f6bb2a2cSMatthew Wilcox #define xa_lock_irqsave(xa, flags) \
375f6bb2a2cSMatthew Wilcox 				spin_lock_irqsave(&(xa)->xa_lock, flags)
376f6bb2a2cSMatthew Wilcox #define xa_unlock_irqrestore(xa, flags) \
377f6bb2a2cSMatthew Wilcox 				spin_unlock_irqrestore(&(xa)->xa_lock, flags)
378f6bb2a2cSMatthew Wilcox 
3799b89a035SMatthew Wilcox /*
38058d6ea30SMatthew Wilcox  * Versions of the normal API which require the caller to hold the
38158d6ea30SMatthew Wilcox  * xa_lock.  If the GFP flags allow it, they will drop the lock to
38258d6ea30SMatthew Wilcox  * allocate memory, then reacquire it afterwards.  These functions
38358d6ea30SMatthew Wilcox  * may also re-enable interrupts if the XArray flags indicate the
38458d6ea30SMatthew Wilcox  * locking should be interrupt safe.
3859b89a035SMatthew Wilcox  */
38658d6ea30SMatthew Wilcox void *__xa_erase(struct xarray *, unsigned long index);
38758d6ea30SMatthew Wilcox void *__xa_store(struct xarray *, unsigned long index, void *entry, gfp_t);
388*41aec91fSMatthew Wilcox void *__xa_cmpxchg(struct xarray *, unsigned long index, void *old,
389*41aec91fSMatthew Wilcox 		void *entry, gfp_t);
3909b89a035SMatthew Wilcox void __xa_set_mark(struct xarray *, unsigned long index, xa_mark_t);
3919b89a035SMatthew Wilcox void __xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t);
3929b89a035SMatthew Wilcox 
39358d6ea30SMatthew Wilcox /**
394*41aec91fSMatthew Wilcox  * __xa_insert() - Store this entry in the XArray unless another entry is
395*41aec91fSMatthew Wilcox  *			already present.
396*41aec91fSMatthew Wilcox  * @xa: XArray.
397*41aec91fSMatthew Wilcox  * @index: Index into array.
398*41aec91fSMatthew Wilcox  * @entry: New entry.
399*41aec91fSMatthew Wilcox  * @gfp: Memory allocation flags.
400*41aec91fSMatthew Wilcox  *
401*41aec91fSMatthew Wilcox  * If you would rather see the existing entry in the array, use __xa_cmpxchg().
402*41aec91fSMatthew Wilcox  * This function is for users who don't care what the entry is, only that
403*41aec91fSMatthew Wilcox  * one is present.
404*41aec91fSMatthew Wilcox  *
405*41aec91fSMatthew Wilcox  * Context: Any context.  Expects xa_lock to be held on entry.  May
406*41aec91fSMatthew Wilcox  *	    release and reacquire xa_lock if the @gfp flags permit.
407*41aec91fSMatthew Wilcox  * Return: 0 if the store succeeded.  -EEXIST if another entry was present.
408*41aec91fSMatthew Wilcox  * -ENOMEM if memory could not be allocated.
409*41aec91fSMatthew Wilcox  */
410*41aec91fSMatthew Wilcox static inline int __xa_insert(struct xarray *xa, unsigned long index,
411*41aec91fSMatthew Wilcox 		void *entry, gfp_t gfp)
412*41aec91fSMatthew Wilcox {
413*41aec91fSMatthew Wilcox 	void *curr = __xa_cmpxchg(xa, index, NULL, entry, gfp);
414*41aec91fSMatthew Wilcox 	if (!curr)
415*41aec91fSMatthew Wilcox 		return 0;
416*41aec91fSMatthew Wilcox 	if (xa_is_err(curr))
417*41aec91fSMatthew Wilcox 		return xa_err(curr);
418*41aec91fSMatthew Wilcox 	return -EEXIST;
419*41aec91fSMatthew Wilcox }
420*41aec91fSMatthew Wilcox 
421*41aec91fSMatthew Wilcox /**
42258d6ea30SMatthew Wilcox  * xa_erase_bh() - Erase this entry from the XArray.
42358d6ea30SMatthew Wilcox  * @xa: XArray.
42458d6ea30SMatthew Wilcox  * @index: Index of entry.
42558d6ea30SMatthew Wilcox  *
42658d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
42758d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
42858d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
42958d6ea30SMatthew Wilcox  *
43058d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
43158d6ea30SMatthew Wilcox  * disabling softirqs.
43258d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
43358d6ea30SMatthew Wilcox  */
43458d6ea30SMatthew Wilcox static inline void *xa_erase_bh(struct xarray *xa, unsigned long index)
43558d6ea30SMatthew Wilcox {
43658d6ea30SMatthew Wilcox 	void *entry;
43758d6ea30SMatthew Wilcox 
43858d6ea30SMatthew Wilcox 	xa_lock_bh(xa);
43958d6ea30SMatthew Wilcox 	entry = __xa_erase(xa, index);
44058d6ea30SMatthew Wilcox 	xa_unlock_bh(xa);
44158d6ea30SMatthew Wilcox 
44258d6ea30SMatthew Wilcox 	return entry;
44358d6ea30SMatthew Wilcox }
44458d6ea30SMatthew Wilcox 
44558d6ea30SMatthew Wilcox /**
44658d6ea30SMatthew Wilcox  * xa_erase_irq() - Erase this entry from the XArray.
44758d6ea30SMatthew Wilcox  * @xa: XArray.
44858d6ea30SMatthew Wilcox  * @index: Index of entry.
44958d6ea30SMatthew Wilcox  *
45058d6ea30SMatthew Wilcox  * This function is the equivalent of calling xa_store() with %NULL as
45158d6ea30SMatthew Wilcox  * the third argument.  The XArray does not need to allocate memory, so
45258d6ea30SMatthew Wilcox  * the user does not need to provide GFP flags.
45358d6ea30SMatthew Wilcox  *
45458d6ea30SMatthew Wilcox  * Context: Process context.  Takes and releases the xa_lock while
45558d6ea30SMatthew Wilcox  * disabling interrupts.
45658d6ea30SMatthew Wilcox  * Return: The entry which used to be at this index.
45758d6ea30SMatthew Wilcox  */
45858d6ea30SMatthew Wilcox static inline void *xa_erase_irq(struct xarray *xa, unsigned long index)
45958d6ea30SMatthew Wilcox {
46058d6ea30SMatthew Wilcox 	void *entry;
46158d6ea30SMatthew Wilcox 
46258d6ea30SMatthew Wilcox 	xa_lock_irq(xa);
46358d6ea30SMatthew Wilcox 	entry = __xa_erase(xa, index);
46458d6ea30SMatthew Wilcox 	xa_unlock_irq(xa);
46558d6ea30SMatthew Wilcox 
46658d6ea30SMatthew Wilcox 	return entry;
46758d6ea30SMatthew Wilcox }
46858d6ea30SMatthew Wilcox 
46902c02bf1SMatthew Wilcox /* Everything below here is the Advanced API.  Proceed with caution. */
47002c02bf1SMatthew Wilcox 
47102c02bf1SMatthew Wilcox /*
47202c02bf1SMatthew Wilcox  * The xarray is constructed out of a set of 'chunks' of pointers.  Choosing
47302c02bf1SMatthew Wilcox  * the best chunk size requires some tradeoffs.  A power of two recommends
47402c02bf1SMatthew Wilcox  * itself so that we can walk the tree based purely on shifts and masks.
47502c02bf1SMatthew Wilcox  * Generally, the larger the better; as the number of slots per level of the
47602c02bf1SMatthew Wilcox  * tree increases, the less tall the tree needs to be.  But that needs to be
47702c02bf1SMatthew Wilcox  * balanced against the memory consumption of each node.  On a 64-bit system,
47802c02bf1SMatthew Wilcox  * xa_node is currently 576 bytes, and we get 7 of them per 4kB page.  If we
47902c02bf1SMatthew Wilcox  * doubled the number of slots per node, we'd get only 3 nodes per 4kB page.
48002c02bf1SMatthew Wilcox  */
48102c02bf1SMatthew Wilcox #ifndef XA_CHUNK_SHIFT
48202c02bf1SMatthew Wilcox #define XA_CHUNK_SHIFT		(CONFIG_BASE_SMALL ? 4 : 6)
48302c02bf1SMatthew Wilcox #endif
48402c02bf1SMatthew Wilcox #define XA_CHUNK_SIZE		(1UL << XA_CHUNK_SHIFT)
48502c02bf1SMatthew Wilcox #define XA_CHUNK_MASK		(XA_CHUNK_SIZE - 1)
48601959dfeSMatthew Wilcox #define XA_MAX_MARKS		3
48701959dfeSMatthew Wilcox #define XA_MARK_LONGS		DIV_ROUND_UP(XA_CHUNK_SIZE, BITS_PER_LONG)
48801959dfeSMatthew Wilcox 
48901959dfeSMatthew Wilcox /*
49001959dfeSMatthew Wilcox  * @count is the count of every non-NULL element in the ->slots array
49101959dfeSMatthew Wilcox  * whether that is a value entry, a retry entry, a user pointer,
49201959dfeSMatthew Wilcox  * a sibling entry or a pointer to the next level of the tree.
49301959dfeSMatthew Wilcox  * @nr_values is the count of every element in ->slots which is
49401959dfeSMatthew Wilcox  * either a value entry or a sibling of a value entry.
49501959dfeSMatthew Wilcox  */
49601959dfeSMatthew Wilcox struct xa_node {
49701959dfeSMatthew Wilcox 	unsigned char	shift;		/* Bits remaining in each slot */
49801959dfeSMatthew Wilcox 	unsigned char	offset;		/* Slot offset in parent */
49901959dfeSMatthew Wilcox 	unsigned char	count;		/* Total entry count */
50001959dfeSMatthew Wilcox 	unsigned char	nr_values;	/* Value entry count */
50101959dfeSMatthew Wilcox 	struct xa_node __rcu *parent;	/* NULL at top of tree */
50201959dfeSMatthew Wilcox 	struct xarray	*array;		/* The array we belong to */
50301959dfeSMatthew Wilcox 	union {
50401959dfeSMatthew Wilcox 		struct list_head private_list;	/* For tree user */
50501959dfeSMatthew Wilcox 		struct rcu_head	rcu_head;	/* Used when freeing node */
50601959dfeSMatthew Wilcox 	};
50701959dfeSMatthew Wilcox 	void __rcu	*slots[XA_CHUNK_SIZE];
50801959dfeSMatthew Wilcox 	union {
50901959dfeSMatthew Wilcox 		unsigned long	tags[XA_MAX_MARKS][XA_MARK_LONGS];
51001959dfeSMatthew Wilcox 		unsigned long	marks[XA_MAX_MARKS][XA_MARK_LONGS];
51101959dfeSMatthew Wilcox 	};
51201959dfeSMatthew Wilcox };
51302c02bf1SMatthew Wilcox 
514ad3d6c72SMatthew Wilcox void xa_dump(const struct xarray *);
515ad3d6c72SMatthew Wilcox void xa_dump_node(const struct xa_node *);
516ad3d6c72SMatthew Wilcox 
517ad3d6c72SMatthew Wilcox #ifdef XA_DEBUG
518ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do {					\
519ad3d6c72SMatthew Wilcox 		if (x) {					\
520ad3d6c72SMatthew Wilcox 			xa_dump(xa);				\
521ad3d6c72SMatthew Wilcox 			BUG();					\
522ad3d6c72SMatthew Wilcox 		}						\
523ad3d6c72SMatthew Wilcox 	} while (0)
524ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do {				\
525ad3d6c72SMatthew Wilcox 		if (x) {					\
526ad3d6c72SMatthew Wilcox 			if (node) xa_dump_node(node);		\
527ad3d6c72SMatthew Wilcox 			BUG();					\
528ad3d6c72SMatthew Wilcox 		}						\
529ad3d6c72SMatthew Wilcox 	} while (0)
530ad3d6c72SMatthew Wilcox #else
531ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x)	do { } while (0)
532ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x)	do { } while (0)
533ad3d6c72SMatthew Wilcox #endif
534ad3d6c72SMatthew Wilcox 
535ad3d6c72SMatthew Wilcox /* Private */
536ad3d6c72SMatthew Wilcox static inline void *xa_head(const struct xarray *xa)
537ad3d6c72SMatthew Wilcox {
538ad3d6c72SMatthew Wilcox 	return rcu_dereference_check(xa->xa_head,
539ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
540ad3d6c72SMatthew Wilcox }
541ad3d6c72SMatthew Wilcox 
542ad3d6c72SMatthew Wilcox /* Private */
543ad3d6c72SMatthew Wilcox static inline void *xa_head_locked(const struct xarray *xa)
544ad3d6c72SMatthew Wilcox {
545ad3d6c72SMatthew Wilcox 	return rcu_dereference_protected(xa->xa_head,
546ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
547ad3d6c72SMatthew Wilcox }
548ad3d6c72SMatthew Wilcox 
549ad3d6c72SMatthew Wilcox /* Private */
550ad3d6c72SMatthew Wilcox static inline void *xa_entry(const struct xarray *xa,
551ad3d6c72SMatthew Wilcox 				const struct xa_node *node, unsigned int offset)
552ad3d6c72SMatthew Wilcox {
553ad3d6c72SMatthew Wilcox 	XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE);
554ad3d6c72SMatthew Wilcox 	return rcu_dereference_check(node->slots[offset],
555ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
556ad3d6c72SMatthew Wilcox }
557ad3d6c72SMatthew Wilcox 
558ad3d6c72SMatthew Wilcox /* Private */
559ad3d6c72SMatthew Wilcox static inline void *xa_entry_locked(const struct xarray *xa,
560ad3d6c72SMatthew Wilcox 				const struct xa_node *node, unsigned int offset)
561ad3d6c72SMatthew Wilcox {
562ad3d6c72SMatthew Wilcox 	XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE);
563ad3d6c72SMatthew Wilcox 	return rcu_dereference_protected(node->slots[offset],
564ad3d6c72SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
565ad3d6c72SMatthew Wilcox }
566ad3d6c72SMatthew Wilcox 
567ad3d6c72SMatthew Wilcox /* Private */
5689b89a035SMatthew Wilcox static inline struct xa_node *xa_parent(const struct xarray *xa,
5699b89a035SMatthew Wilcox 					const struct xa_node *node)
5709b89a035SMatthew Wilcox {
5719b89a035SMatthew Wilcox 	return rcu_dereference_check(node->parent,
5729b89a035SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
5739b89a035SMatthew Wilcox }
5749b89a035SMatthew Wilcox 
5759b89a035SMatthew Wilcox /* Private */
5769b89a035SMatthew Wilcox static inline struct xa_node *xa_parent_locked(const struct xarray *xa,
5779b89a035SMatthew Wilcox 					const struct xa_node *node)
5789b89a035SMatthew Wilcox {
5799b89a035SMatthew Wilcox 	return rcu_dereference_protected(node->parent,
5809b89a035SMatthew Wilcox 						lockdep_is_held(&xa->xa_lock));
5819b89a035SMatthew Wilcox }
5829b89a035SMatthew Wilcox 
5839b89a035SMatthew Wilcox /* Private */
58458d6ea30SMatthew Wilcox static inline void *xa_mk_node(const struct xa_node *node)
58558d6ea30SMatthew Wilcox {
58658d6ea30SMatthew Wilcox 	return (void *)((unsigned long)node | 2);
58758d6ea30SMatthew Wilcox }
58858d6ea30SMatthew Wilcox 
58958d6ea30SMatthew Wilcox /* Private */
590ad3d6c72SMatthew Wilcox static inline struct xa_node *xa_to_node(const void *entry)
591ad3d6c72SMatthew Wilcox {
592ad3d6c72SMatthew Wilcox 	return (struct xa_node *)((unsigned long)entry - 2);
593ad3d6c72SMatthew Wilcox }
594ad3d6c72SMatthew Wilcox 
59502c02bf1SMatthew Wilcox /* Private */
59602c02bf1SMatthew Wilcox static inline bool xa_is_node(const void *entry)
59702c02bf1SMatthew Wilcox {
59802c02bf1SMatthew Wilcox 	return xa_is_internal(entry) && (unsigned long)entry > 4096;
59902c02bf1SMatthew Wilcox }
60002c02bf1SMatthew Wilcox 
60102c02bf1SMatthew Wilcox /* Private */
60202c02bf1SMatthew Wilcox static inline void *xa_mk_sibling(unsigned int offset)
60302c02bf1SMatthew Wilcox {
60402c02bf1SMatthew Wilcox 	return xa_mk_internal(offset);
60502c02bf1SMatthew Wilcox }
60602c02bf1SMatthew Wilcox 
60702c02bf1SMatthew Wilcox /* Private */
60802c02bf1SMatthew Wilcox static inline unsigned long xa_to_sibling(const void *entry)
60902c02bf1SMatthew Wilcox {
61002c02bf1SMatthew Wilcox 	return xa_to_internal(entry);
61102c02bf1SMatthew Wilcox }
61202c02bf1SMatthew Wilcox 
61302c02bf1SMatthew Wilcox /**
61402c02bf1SMatthew Wilcox  * xa_is_sibling() - Is the entry a sibling entry?
61502c02bf1SMatthew Wilcox  * @entry: Entry retrieved from the XArray
61602c02bf1SMatthew Wilcox  *
61702c02bf1SMatthew Wilcox  * Return: %true if the entry is a sibling entry.
61802c02bf1SMatthew Wilcox  */
61902c02bf1SMatthew Wilcox static inline bool xa_is_sibling(const void *entry)
62002c02bf1SMatthew Wilcox {
62102c02bf1SMatthew Wilcox 	return IS_ENABLED(CONFIG_XARRAY_MULTI) && xa_is_internal(entry) &&
62202c02bf1SMatthew Wilcox 		(entry < xa_mk_sibling(XA_CHUNK_SIZE - 1));
62302c02bf1SMatthew Wilcox }
62402c02bf1SMatthew Wilcox 
62502c02bf1SMatthew Wilcox #define XA_RETRY_ENTRY		xa_mk_internal(256)
62602c02bf1SMatthew Wilcox 
627ad3d6c72SMatthew Wilcox /**
628ad3d6c72SMatthew Wilcox  * xa_is_retry() - Is the entry a retry entry?
629ad3d6c72SMatthew Wilcox  * @entry: Entry retrieved from the XArray
630ad3d6c72SMatthew Wilcox  *
631ad3d6c72SMatthew Wilcox  * Return: %true if the entry is a retry entry.
632ad3d6c72SMatthew Wilcox  */
633ad3d6c72SMatthew Wilcox static inline bool xa_is_retry(const void *entry)
634ad3d6c72SMatthew Wilcox {
635ad3d6c72SMatthew Wilcox 	return unlikely(entry == XA_RETRY_ENTRY);
636ad3d6c72SMatthew Wilcox }
637ad3d6c72SMatthew Wilcox 
638ad3d6c72SMatthew Wilcox /**
639ad3d6c72SMatthew Wilcox  * typedef xa_update_node_t - A callback function from the XArray.
640ad3d6c72SMatthew Wilcox  * @node: The node which is being processed
641ad3d6c72SMatthew Wilcox  *
642ad3d6c72SMatthew Wilcox  * This function is called every time the XArray updates the count of
643ad3d6c72SMatthew Wilcox  * present and value entries in a node.  It allows advanced users to
644ad3d6c72SMatthew Wilcox  * maintain the private_list in the node.
645ad3d6c72SMatthew Wilcox  *
646ad3d6c72SMatthew Wilcox  * Context: The xa_lock is held and interrupts may be disabled.
647ad3d6c72SMatthew Wilcox  *	    Implementations should not drop the xa_lock, nor re-enable
648ad3d6c72SMatthew Wilcox  *	    interrupts.
649ad3d6c72SMatthew Wilcox  */
650ad3d6c72SMatthew Wilcox typedef void (*xa_update_node_t)(struct xa_node *node);
651ad3d6c72SMatthew Wilcox 
652ad3d6c72SMatthew Wilcox /*
653ad3d6c72SMatthew Wilcox  * The xa_state is opaque to its users.  It contains various different pieces
654ad3d6c72SMatthew Wilcox  * of state involved in the current operation on the XArray.  It should be
655ad3d6c72SMatthew Wilcox  * declared on the stack and passed between the various internal routines.
656ad3d6c72SMatthew Wilcox  * The various elements in it should not be accessed directly, but only
657ad3d6c72SMatthew Wilcox  * through the provided accessor functions.  The below documentation is for
658ad3d6c72SMatthew Wilcox  * the benefit of those working on the code, not for users of the XArray.
659ad3d6c72SMatthew Wilcox  *
660ad3d6c72SMatthew Wilcox  * @xa_node usually points to the xa_node containing the slot we're operating
661ad3d6c72SMatthew Wilcox  * on (and @xa_offset is the offset in the slots array).  If there is a
662ad3d6c72SMatthew Wilcox  * single entry in the array at index 0, there are no allocated xa_nodes to
663ad3d6c72SMatthew Wilcox  * point to, and so we store %NULL in @xa_node.  @xa_node is set to
664ad3d6c72SMatthew Wilcox  * the value %XAS_RESTART if the xa_state is not walked to the correct
665ad3d6c72SMatthew Wilcox  * position in the tree of nodes for this operation.  If an error occurs
666ad3d6c72SMatthew Wilcox  * during an operation, it is set to an %XAS_ERROR value.  If we run off the
667ad3d6c72SMatthew Wilcox  * end of the allocated nodes, it is set to %XAS_BOUNDS.
668ad3d6c72SMatthew Wilcox  */
669ad3d6c72SMatthew Wilcox struct xa_state {
670ad3d6c72SMatthew Wilcox 	struct xarray *xa;
671ad3d6c72SMatthew Wilcox 	unsigned long xa_index;
672ad3d6c72SMatthew Wilcox 	unsigned char xa_shift;
673ad3d6c72SMatthew Wilcox 	unsigned char xa_sibs;
674ad3d6c72SMatthew Wilcox 	unsigned char xa_offset;
675ad3d6c72SMatthew Wilcox 	unsigned char xa_pad;		/* Helps gcc generate better code */
676ad3d6c72SMatthew Wilcox 	struct xa_node *xa_node;
677ad3d6c72SMatthew Wilcox 	struct xa_node *xa_alloc;
678ad3d6c72SMatthew Wilcox 	xa_update_node_t xa_update;
679ad3d6c72SMatthew Wilcox };
680ad3d6c72SMatthew Wilcox 
681ad3d6c72SMatthew Wilcox /*
682ad3d6c72SMatthew Wilcox  * We encode errnos in the xas->xa_node.  If an error has happened, we need to
683ad3d6c72SMatthew Wilcox  * drop the lock to fix it, and once we've done so the xa_state is invalid.
684ad3d6c72SMatthew Wilcox  */
685ad3d6c72SMatthew Wilcox #define XA_ERROR(errno) ((struct xa_node *)(((unsigned long)errno << 2) | 2UL))
686ad3d6c72SMatthew Wilcox #define XAS_BOUNDS	((struct xa_node *)1UL)
687ad3d6c72SMatthew Wilcox #define XAS_RESTART	((struct xa_node *)3UL)
688ad3d6c72SMatthew Wilcox 
689ad3d6c72SMatthew Wilcox #define __XA_STATE(array, index, shift, sibs)  {	\
690ad3d6c72SMatthew Wilcox 	.xa = array,					\
691ad3d6c72SMatthew Wilcox 	.xa_index = index,				\
692ad3d6c72SMatthew Wilcox 	.xa_shift = shift,				\
693ad3d6c72SMatthew Wilcox 	.xa_sibs = sibs,				\
694ad3d6c72SMatthew Wilcox 	.xa_offset = 0,					\
695ad3d6c72SMatthew Wilcox 	.xa_pad = 0,					\
696ad3d6c72SMatthew Wilcox 	.xa_node = XAS_RESTART,				\
697ad3d6c72SMatthew Wilcox 	.xa_alloc = NULL,				\
698ad3d6c72SMatthew Wilcox 	.xa_update = NULL				\
699ad3d6c72SMatthew Wilcox }
700ad3d6c72SMatthew Wilcox 
701ad3d6c72SMatthew Wilcox /**
702ad3d6c72SMatthew Wilcox  * XA_STATE() - Declare an XArray operation state.
703ad3d6c72SMatthew Wilcox  * @name: Name of this operation state (usually xas).
704ad3d6c72SMatthew Wilcox  * @array: Array to operate on.
705ad3d6c72SMatthew Wilcox  * @index: Initial index of interest.
706ad3d6c72SMatthew Wilcox  *
707ad3d6c72SMatthew Wilcox  * Declare and initialise an xa_state on the stack.
708ad3d6c72SMatthew Wilcox  */
709ad3d6c72SMatthew Wilcox #define XA_STATE(name, array, index)				\
710ad3d6c72SMatthew Wilcox 	struct xa_state name = __XA_STATE(array, index, 0, 0)
711ad3d6c72SMatthew Wilcox 
712ad3d6c72SMatthew Wilcox /**
713ad3d6c72SMatthew Wilcox  * XA_STATE_ORDER() - Declare an XArray operation state.
714ad3d6c72SMatthew Wilcox  * @name: Name of this operation state (usually xas).
715ad3d6c72SMatthew Wilcox  * @array: Array to operate on.
716ad3d6c72SMatthew Wilcox  * @index: Initial index of interest.
717ad3d6c72SMatthew Wilcox  * @order: Order of entry.
718ad3d6c72SMatthew Wilcox  *
719ad3d6c72SMatthew Wilcox  * Declare and initialise an xa_state on the stack.  This variant of
720ad3d6c72SMatthew Wilcox  * XA_STATE() allows you to specify the 'order' of the element you
721ad3d6c72SMatthew Wilcox  * want to operate on.`
722ad3d6c72SMatthew Wilcox  */
723ad3d6c72SMatthew Wilcox #define XA_STATE_ORDER(name, array, index, order)		\
724ad3d6c72SMatthew Wilcox 	struct xa_state name = __XA_STATE(array,		\
725ad3d6c72SMatthew Wilcox 			(index >> order) << order,		\
726ad3d6c72SMatthew Wilcox 			order - (order % XA_CHUNK_SHIFT),	\
727ad3d6c72SMatthew Wilcox 			(1U << (order % XA_CHUNK_SHIFT)) - 1)
728ad3d6c72SMatthew Wilcox 
729ad3d6c72SMatthew Wilcox #define xas_marked(xas, mark)	xa_marked((xas)->xa, (mark))
730ad3d6c72SMatthew Wilcox #define xas_trylock(xas)	xa_trylock((xas)->xa)
731ad3d6c72SMatthew Wilcox #define xas_lock(xas)		xa_lock((xas)->xa)
732ad3d6c72SMatthew Wilcox #define xas_unlock(xas)		xa_unlock((xas)->xa)
733ad3d6c72SMatthew Wilcox #define xas_lock_bh(xas)	xa_lock_bh((xas)->xa)
734ad3d6c72SMatthew Wilcox #define xas_unlock_bh(xas)	xa_unlock_bh((xas)->xa)
735ad3d6c72SMatthew Wilcox #define xas_lock_irq(xas)	xa_lock_irq((xas)->xa)
736ad3d6c72SMatthew Wilcox #define xas_unlock_irq(xas)	xa_unlock_irq((xas)->xa)
737ad3d6c72SMatthew Wilcox #define xas_lock_irqsave(xas, flags) \
738ad3d6c72SMatthew Wilcox 				xa_lock_irqsave((xas)->xa, flags)
739ad3d6c72SMatthew Wilcox #define xas_unlock_irqrestore(xas, flags) \
740ad3d6c72SMatthew Wilcox 				xa_unlock_irqrestore((xas)->xa, flags)
741ad3d6c72SMatthew Wilcox 
742ad3d6c72SMatthew Wilcox /**
743ad3d6c72SMatthew Wilcox  * xas_error() - Return an errno stored in the xa_state.
744ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
745ad3d6c72SMatthew Wilcox  *
746ad3d6c72SMatthew Wilcox  * Return: 0 if no error has been noted.  A negative errno if one has.
747ad3d6c72SMatthew Wilcox  */
748ad3d6c72SMatthew Wilcox static inline int xas_error(const struct xa_state *xas)
749ad3d6c72SMatthew Wilcox {
750ad3d6c72SMatthew Wilcox 	return xa_err(xas->xa_node);
751ad3d6c72SMatthew Wilcox }
752ad3d6c72SMatthew Wilcox 
753ad3d6c72SMatthew Wilcox /**
754ad3d6c72SMatthew Wilcox  * xas_set_err() - Note an error in the xa_state.
755ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
756ad3d6c72SMatthew Wilcox  * @err: Negative error number.
757ad3d6c72SMatthew Wilcox  *
758ad3d6c72SMatthew Wilcox  * Only call this function with a negative @err; zero or positive errors
759ad3d6c72SMatthew Wilcox  * will probably not behave the way you think they should.  If you want
760ad3d6c72SMatthew Wilcox  * to clear the error from an xa_state, use xas_reset().
761ad3d6c72SMatthew Wilcox  */
762ad3d6c72SMatthew Wilcox static inline void xas_set_err(struct xa_state *xas, long err)
763ad3d6c72SMatthew Wilcox {
764ad3d6c72SMatthew Wilcox 	xas->xa_node = XA_ERROR(err);
765ad3d6c72SMatthew Wilcox }
766ad3d6c72SMatthew Wilcox 
767ad3d6c72SMatthew Wilcox /**
768ad3d6c72SMatthew Wilcox  * xas_invalid() - Is the xas in a retry or error state?
769ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
770ad3d6c72SMatthew Wilcox  *
771ad3d6c72SMatthew Wilcox  * Return: %true if the xas cannot be used for operations.
772ad3d6c72SMatthew Wilcox  */
773ad3d6c72SMatthew Wilcox static inline bool xas_invalid(const struct xa_state *xas)
774ad3d6c72SMatthew Wilcox {
775ad3d6c72SMatthew Wilcox 	return (unsigned long)xas->xa_node & 3;
776ad3d6c72SMatthew Wilcox }
777ad3d6c72SMatthew Wilcox 
778ad3d6c72SMatthew Wilcox /**
779ad3d6c72SMatthew Wilcox  * xas_valid() - Is the xas a valid cursor into the array?
780ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
781ad3d6c72SMatthew Wilcox  *
782ad3d6c72SMatthew Wilcox  * Return: %true if the xas can be used for operations.
783ad3d6c72SMatthew Wilcox  */
784ad3d6c72SMatthew Wilcox static inline bool xas_valid(const struct xa_state *xas)
785ad3d6c72SMatthew Wilcox {
786ad3d6c72SMatthew Wilcox 	return !xas_invalid(xas);
787ad3d6c72SMatthew Wilcox }
788ad3d6c72SMatthew Wilcox 
7899b89a035SMatthew Wilcox /* True if the pointer is something other than a node */
7909b89a035SMatthew Wilcox static inline bool xas_not_node(struct xa_node *node)
7919b89a035SMatthew Wilcox {
7929b89a035SMatthew Wilcox 	return ((unsigned long)node & 3) || !node;
7939b89a035SMatthew Wilcox }
7949b89a035SMatthew Wilcox 
79558d6ea30SMatthew Wilcox /* True if the node represents head-of-tree, RESTART or BOUNDS */
79658d6ea30SMatthew Wilcox static inline bool xas_top(struct xa_node *node)
79758d6ea30SMatthew Wilcox {
79858d6ea30SMatthew Wilcox 	return node <= XAS_RESTART;
79958d6ea30SMatthew Wilcox }
80058d6ea30SMatthew Wilcox 
801ad3d6c72SMatthew Wilcox /**
802ad3d6c72SMatthew Wilcox  * xas_reset() - Reset an XArray operation state.
803ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
804ad3d6c72SMatthew Wilcox  *
805ad3d6c72SMatthew Wilcox  * Resets the error or walk state of the @xas so future walks of the
806ad3d6c72SMatthew Wilcox  * array will start from the root.  Use this if you have dropped the
807ad3d6c72SMatthew Wilcox  * xarray lock and want to reuse the xa_state.
808ad3d6c72SMatthew Wilcox  *
809ad3d6c72SMatthew Wilcox  * Context: Any context.
810ad3d6c72SMatthew Wilcox  */
811ad3d6c72SMatthew Wilcox static inline void xas_reset(struct xa_state *xas)
812ad3d6c72SMatthew Wilcox {
813ad3d6c72SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
814ad3d6c72SMatthew Wilcox }
815ad3d6c72SMatthew Wilcox 
816ad3d6c72SMatthew Wilcox /**
817ad3d6c72SMatthew Wilcox  * xas_retry() - Retry the operation if appropriate.
818ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
819ad3d6c72SMatthew Wilcox  * @entry: Entry from xarray.
820ad3d6c72SMatthew Wilcox  *
821ad3d6c72SMatthew Wilcox  * The advanced functions may sometimes return an internal entry, such as
822ad3d6c72SMatthew Wilcox  * a retry entry or a zero entry.  This function sets up the @xas to restart
823ad3d6c72SMatthew Wilcox  * the walk from the head of the array if needed.
824ad3d6c72SMatthew Wilcox  *
825ad3d6c72SMatthew Wilcox  * Context: Any context.
826ad3d6c72SMatthew Wilcox  * Return: true if the operation needs to be retried.
827ad3d6c72SMatthew Wilcox  */
828ad3d6c72SMatthew Wilcox static inline bool xas_retry(struct xa_state *xas, const void *entry)
829ad3d6c72SMatthew Wilcox {
830ad3d6c72SMatthew Wilcox 	if (!xa_is_retry(entry))
831ad3d6c72SMatthew Wilcox 		return false;
832ad3d6c72SMatthew Wilcox 	xas_reset(xas);
833ad3d6c72SMatthew Wilcox 	return true;
834ad3d6c72SMatthew Wilcox }
835ad3d6c72SMatthew Wilcox 
836ad3d6c72SMatthew Wilcox void *xas_load(struct xa_state *);
83758d6ea30SMatthew Wilcox void *xas_store(struct xa_state *, void *entry);
838ad3d6c72SMatthew Wilcox 
8399b89a035SMatthew Wilcox bool xas_get_mark(const struct xa_state *, xa_mark_t);
8409b89a035SMatthew Wilcox void xas_set_mark(const struct xa_state *, xa_mark_t);
8419b89a035SMatthew Wilcox void xas_clear_mark(const struct xa_state *, xa_mark_t);
84258d6ea30SMatthew Wilcox void xas_init_marks(const struct xa_state *);
84358d6ea30SMatthew Wilcox 
84458d6ea30SMatthew Wilcox bool xas_nomem(struct xa_state *, gfp_t);
8459b89a035SMatthew Wilcox 
846ad3d6c72SMatthew Wilcox /**
847ad3d6c72SMatthew Wilcox  * xas_reload() - Refetch an entry from the xarray.
848ad3d6c72SMatthew Wilcox  * @xas: XArray operation state.
849ad3d6c72SMatthew Wilcox  *
850ad3d6c72SMatthew Wilcox  * Use this function to check that a previously loaded entry still has
851ad3d6c72SMatthew Wilcox  * the same value.  This is useful for the lockless pagecache lookup where
852ad3d6c72SMatthew Wilcox  * we walk the array with only the RCU lock to protect us, lock the page,
853ad3d6c72SMatthew Wilcox  * then check that the page hasn't moved since we looked it up.
854ad3d6c72SMatthew Wilcox  *
855ad3d6c72SMatthew Wilcox  * The caller guarantees that @xas is still valid.  If it may be in an
856ad3d6c72SMatthew Wilcox  * error or restart state, call xas_load() instead.
857ad3d6c72SMatthew Wilcox  *
858ad3d6c72SMatthew Wilcox  * Return: The entry at this location in the xarray.
859ad3d6c72SMatthew Wilcox  */
860ad3d6c72SMatthew Wilcox static inline void *xas_reload(struct xa_state *xas)
861ad3d6c72SMatthew Wilcox {
862ad3d6c72SMatthew Wilcox 	struct xa_node *node = xas->xa_node;
863ad3d6c72SMatthew Wilcox 
864ad3d6c72SMatthew Wilcox 	if (node)
865ad3d6c72SMatthew Wilcox 		return xa_entry(xas->xa, node, xas->xa_offset);
866ad3d6c72SMatthew Wilcox 	return xa_head(xas->xa);
867ad3d6c72SMatthew Wilcox }
868ad3d6c72SMatthew Wilcox 
86958d6ea30SMatthew Wilcox /**
87058d6ea30SMatthew Wilcox  * xas_set() - Set up XArray operation state for a different index.
87158d6ea30SMatthew Wilcox  * @xas: XArray operation state.
87258d6ea30SMatthew Wilcox  * @index: New index into the XArray.
87358d6ea30SMatthew Wilcox  *
87458d6ea30SMatthew Wilcox  * Move the operation state to refer to a different index.  This will
87558d6ea30SMatthew Wilcox  * have the effect of starting a walk from the top; see xas_next()
87658d6ea30SMatthew Wilcox  * to move to an adjacent index.
87758d6ea30SMatthew Wilcox  */
87858d6ea30SMatthew Wilcox static inline void xas_set(struct xa_state *xas, unsigned long index)
87958d6ea30SMatthew Wilcox {
88058d6ea30SMatthew Wilcox 	xas->xa_index = index;
88158d6ea30SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
88258d6ea30SMatthew Wilcox }
88358d6ea30SMatthew Wilcox 
88458d6ea30SMatthew Wilcox /**
88558d6ea30SMatthew Wilcox  * xas_set_order() - Set up XArray operation state for a multislot entry.
88658d6ea30SMatthew Wilcox  * @xas: XArray operation state.
88758d6ea30SMatthew Wilcox  * @index: Target of the operation.
88858d6ea30SMatthew Wilcox  * @order: Entry occupies 2^@order indices.
88958d6ea30SMatthew Wilcox  */
89058d6ea30SMatthew Wilcox static inline void xas_set_order(struct xa_state *xas, unsigned long index,
89158d6ea30SMatthew Wilcox 					unsigned int order)
89258d6ea30SMatthew Wilcox {
89358d6ea30SMatthew Wilcox #ifdef CONFIG_XARRAY_MULTI
89458d6ea30SMatthew Wilcox 	xas->xa_index = order < BITS_PER_LONG ? (index >> order) << order : 0;
89558d6ea30SMatthew Wilcox 	xas->xa_shift = order - (order % XA_CHUNK_SHIFT);
89658d6ea30SMatthew Wilcox 	xas->xa_sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1;
89758d6ea30SMatthew Wilcox 	xas->xa_node = XAS_RESTART;
89858d6ea30SMatthew Wilcox #else
89958d6ea30SMatthew Wilcox 	BUG_ON(order > 0);
90058d6ea30SMatthew Wilcox 	xas_set(xas, index);
90158d6ea30SMatthew Wilcox #endif
90258d6ea30SMatthew Wilcox }
90358d6ea30SMatthew Wilcox 
90458d6ea30SMatthew Wilcox /**
90558d6ea30SMatthew Wilcox  * xas_set_update() - Set up XArray operation state for a callback.
90658d6ea30SMatthew Wilcox  * @xas: XArray operation state.
90758d6ea30SMatthew Wilcox  * @update: Function to call when updating a node.
90858d6ea30SMatthew Wilcox  *
90958d6ea30SMatthew Wilcox  * The XArray can notify a caller after it has updated an xa_node.
91058d6ea30SMatthew Wilcox  * This is advanced functionality and is only needed by the page cache.
91158d6ea30SMatthew Wilcox  */
91258d6ea30SMatthew Wilcox static inline void xas_set_update(struct xa_state *xas, xa_update_node_t update)
91358d6ea30SMatthew Wilcox {
91458d6ea30SMatthew Wilcox 	xas->xa_update = update;
91558d6ea30SMatthew Wilcox }
91658d6ea30SMatthew Wilcox 
917f6bb2a2cSMatthew Wilcox #endif /* _LINUX_XARRAY_H */
918