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