1f6bb2a2cSMatthew Wilcox /* SPDX-License-Identifier: GPL-2.0+ */ 2f6bb2a2cSMatthew Wilcox #ifndef _LINUX_XARRAY_H 3f6bb2a2cSMatthew Wilcox #define _LINUX_XARRAY_H 4f6bb2a2cSMatthew Wilcox /* 5f6bb2a2cSMatthew Wilcox * eXtensible Arrays 6f6bb2a2cSMatthew Wilcox * Copyright (c) 2017 Microsoft Corporation 73d0186bbSMatthew Wilcox * Author: Matthew Wilcox <[email protected]> 83159f943SMatthew Wilcox * 93159f943SMatthew Wilcox * See Documentation/core-api/xarray.rst for how to use the XArray. 10f6bb2a2cSMatthew Wilcox */ 11f6bb2a2cSMatthew Wilcox 123159f943SMatthew Wilcox #include <linux/bug.h> 13f8d5d0ccSMatthew Wilcox #include <linux/compiler.h> 149b89a035SMatthew Wilcox #include <linux/gfp.h> 15f8d5d0ccSMatthew Wilcox #include <linux/kconfig.h> 16ad3d6c72SMatthew Wilcox #include <linux/kernel.h> 17ad3d6c72SMatthew Wilcox #include <linux/rcupdate.h> 18f6bb2a2cSMatthew Wilcox #include <linux/spinlock.h> 193159f943SMatthew Wilcox #include <linux/types.h> 203159f943SMatthew Wilcox 213159f943SMatthew Wilcox /* 223159f943SMatthew Wilcox * The bottom two bits of the entry determine how the XArray interprets 233159f943SMatthew Wilcox * the contents: 243159f943SMatthew Wilcox * 253159f943SMatthew Wilcox * 00: Pointer entry 263159f943SMatthew Wilcox * 10: Internal entry 273159f943SMatthew Wilcox * x1: Value entry or tagged pointer 283159f943SMatthew Wilcox * 293159f943SMatthew Wilcox * Attempting to store internal entries in the XArray is a bug. 3002c02bf1SMatthew Wilcox * 3102c02bf1SMatthew Wilcox * Most internal entries are pointers to the next node in the tree. 3202c02bf1SMatthew Wilcox * The following internal entries have a special meaning: 3302c02bf1SMatthew Wilcox * 3402c02bf1SMatthew Wilcox * 0-62: Sibling entries 359f14d4f1SMatthew Wilcox * 256: Zero entry 369f14d4f1SMatthew Wilcox * 257: Retry entry 37ad3d6c72SMatthew Wilcox * 38ad3d6c72SMatthew Wilcox * Errors are also represented as internal entries, but use the negative 39ad3d6c72SMatthew Wilcox * space (-4094 to -2). They're never stored in the slots array; only 40ad3d6c72SMatthew Wilcox * returned by the normal API. 413159f943SMatthew Wilcox */ 423159f943SMatthew Wilcox 433159f943SMatthew Wilcox #define BITS_PER_XA_VALUE (BITS_PER_LONG - 1) 443159f943SMatthew Wilcox 453159f943SMatthew Wilcox /** 463159f943SMatthew Wilcox * xa_mk_value() - Create an XArray entry from an integer. 473159f943SMatthew Wilcox * @v: Value to store in XArray. 483159f943SMatthew Wilcox * 493159f943SMatthew Wilcox * Context: Any context. 503159f943SMatthew Wilcox * Return: An entry suitable for storing in the XArray. 513159f943SMatthew Wilcox */ 523159f943SMatthew Wilcox static inline void *xa_mk_value(unsigned long v) 533159f943SMatthew Wilcox { 543159f943SMatthew Wilcox WARN_ON((long)v < 0); 553159f943SMatthew Wilcox return (void *)((v << 1) | 1); 563159f943SMatthew Wilcox } 573159f943SMatthew Wilcox 583159f943SMatthew Wilcox /** 593159f943SMatthew Wilcox * xa_to_value() - Get value stored in an XArray entry. 603159f943SMatthew Wilcox * @entry: XArray entry. 613159f943SMatthew Wilcox * 623159f943SMatthew Wilcox * Context: Any context. 633159f943SMatthew Wilcox * Return: The value stored in the XArray entry. 643159f943SMatthew Wilcox */ 653159f943SMatthew Wilcox static inline unsigned long xa_to_value(const void *entry) 663159f943SMatthew Wilcox { 673159f943SMatthew Wilcox return (unsigned long)entry >> 1; 683159f943SMatthew Wilcox } 693159f943SMatthew Wilcox 703159f943SMatthew Wilcox /** 713159f943SMatthew Wilcox * xa_is_value() - Determine if an entry is a value. 723159f943SMatthew Wilcox * @entry: XArray entry. 733159f943SMatthew Wilcox * 743159f943SMatthew Wilcox * Context: Any context. 753159f943SMatthew Wilcox * Return: True if the entry is a value, false if it is a pointer. 763159f943SMatthew Wilcox */ 773159f943SMatthew Wilcox static inline bool xa_is_value(const void *entry) 783159f943SMatthew Wilcox { 793159f943SMatthew Wilcox return (unsigned long)entry & 1; 803159f943SMatthew Wilcox } 813159f943SMatthew Wilcox 823159f943SMatthew Wilcox /** 833159f943SMatthew Wilcox * xa_tag_pointer() - Create an XArray entry for a tagged pointer. 843159f943SMatthew Wilcox * @p: Plain pointer. 853159f943SMatthew Wilcox * @tag: Tag value (0, 1 or 3). 863159f943SMatthew Wilcox * 873159f943SMatthew Wilcox * If the user of the XArray prefers, they can tag their pointers instead 883159f943SMatthew Wilcox * of storing value entries. Three tags are available (0, 1 and 3). 893159f943SMatthew Wilcox * These are distinct from the xa_mark_t as they are not replicated up 903159f943SMatthew Wilcox * through the array and cannot be searched for. 913159f943SMatthew Wilcox * 923159f943SMatthew Wilcox * Context: Any context. 933159f943SMatthew Wilcox * Return: An XArray entry. 943159f943SMatthew Wilcox */ 953159f943SMatthew Wilcox static inline void *xa_tag_pointer(void *p, unsigned long tag) 963159f943SMatthew Wilcox { 973159f943SMatthew Wilcox return (void *)((unsigned long)p | tag); 983159f943SMatthew Wilcox } 993159f943SMatthew Wilcox 1003159f943SMatthew Wilcox /** 1013159f943SMatthew Wilcox * xa_untag_pointer() - Turn an XArray entry into a plain pointer. 1023159f943SMatthew Wilcox * @entry: XArray entry. 1033159f943SMatthew Wilcox * 1043159f943SMatthew Wilcox * If you have stored a tagged pointer in the XArray, call this function 1053159f943SMatthew Wilcox * to get the untagged version of the pointer. 1063159f943SMatthew Wilcox * 1073159f943SMatthew Wilcox * Context: Any context. 1083159f943SMatthew Wilcox * Return: A pointer. 1093159f943SMatthew Wilcox */ 1103159f943SMatthew Wilcox static inline void *xa_untag_pointer(void *entry) 1113159f943SMatthew Wilcox { 1123159f943SMatthew Wilcox return (void *)((unsigned long)entry & ~3UL); 1133159f943SMatthew Wilcox } 1143159f943SMatthew Wilcox 1153159f943SMatthew Wilcox /** 1163159f943SMatthew Wilcox * xa_pointer_tag() - Get the tag stored in an XArray entry. 1173159f943SMatthew Wilcox * @entry: XArray entry. 1183159f943SMatthew Wilcox * 1193159f943SMatthew Wilcox * If you have stored a tagged pointer in the XArray, call this function 1203159f943SMatthew Wilcox * to get the tag of that pointer. 1213159f943SMatthew Wilcox * 1223159f943SMatthew Wilcox * Context: Any context. 1233159f943SMatthew Wilcox * Return: A tag. 1243159f943SMatthew Wilcox */ 1253159f943SMatthew Wilcox static inline unsigned int xa_pointer_tag(void *entry) 1263159f943SMatthew Wilcox { 1273159f943SMatthew Wilcox return (unsigned long)entry & 3UL; 1283159f943SMatthew Wilcox } 129f6bb2a2cSMatthew Wilcox 13002c02bf1SMatthew Wilcox /* 13102c02bf1SMatthew Wilcox * xa_mk_internal() - Create an internal entry. 13202c02bf1SMatthew Wilcox * @v: Value to turn into an internal entry. 13302c02bf1SMatthew Wilcox * 13402c02bf1SMatthew Wilcox * Context: Any context. 13502c02bf1SMatthew Wilcox * Return: An XArray internal entry corresponding to this value. 13602c02bf1SMatthew Wilcox */ 13702c02bf1SMatthew Wilcox static inline void *xa_mk_internal(unsigned long v) 13802c02bf1SMatthew Wilcox { 13902c02bf1SMatthew Wilcox return (void *)((v << 2) | 2); 14002c02bf1SMatthew Wilcox } 14102c02bf1SMatthew Wilcox 14202c02bf1SMatthew Wilcox /* 14302c02bf1SMatthew Wilcox * xa_to_internal() - Extract the value from an internal entry. 14402c02bf1SMatthew Wilcox * @entry: XArray entry. 14502c02bf1SMatthew Wilcox * 14602c02bf1SMatthew Wilcox * Context: Any context. 14702c02bf1SMatthew Wilcox * Return: The value which was stored in the internal entry. 14802c02bf1SMatthew Wilcox */ 14902c02bf1SMatthew Wilcox static inline unsigned long xa_to_internal(const void *entry) 15002c02bf1SMatthew Wilcox { 15102c02bf1SMatthew Wilcox return (unsigned long)entry >> 2; 15202c02bf1SMatthew Wilcox } 15302c02bf1SMatthew Wilcox 15402c02bf1SMatthew Wilcox /* 15502c02bf1SMatthew Wilcox * xa_is_internal() - Is the entry an internal entry? 15602c02bf1SMatthew Wilcox * @entry: XArray entry. 15702c02bf1SMatthew Wilcox * 15802c02bf1SMatthew Wilcox * Context: Any context. 15902c02bf1SMatthew Wilcox * Return: %true if the entry is an internal entry. 16002c02bf1SMatthew Wilcox */ 16102c02bf1SMatthew Wilcox static inline bool xa_is_internal(const void *entry) 16202c02bf1SMatthew Wilcox { 16302c02bf1SMatthew Wilcox return ((unsigned long)entry & 3) == 2; 16402c02bf1SMatthew Wilcox } 16502c02bf1SMatthew Wilcox 166f8d5d0ccSMatthew Wilcox /** 167ad3d6c72SMatthew Wilcox * xa_is_err() - Report whether an XArray operation returned an error 168ad3d6c72SMatthew Wilcox * @entry: Result from calling an XArray function 169ad3d6c72SMatthew Wilcox * 170ad3d6c72SMatthew Wilcox * If an XArray operation cannot complete an operation, it will return 171ad3d6c72SMatthew Wilcox * a special value indicating an error. This function tells you 172ad3d6c72SMatthew Wilcox * whether an error occurred; xa_err() tells you which error occurred. 173ad3d6c72SMatthew Wilcox * 174ad3d6c72SMatthew Wilcox * Context: Any context. 175ad3d6c72SMatthew Wilcox * Return: %true if the entry indicates an error. 176ad3d6c72SMatthew Wilcox */ 177ad3d6c72SMatthew Wilcox static inline bool xa_is_err(const void *entry) 178ad3d6c72SMatthew Wilcox { 179ad3d6c72SMatthew Wilcox return unlikely(xa_is_internal(entry)); 180ad3d6c72SMatthew Wilcox } 181ad3d6c72SMatthew Wilcox 182ad3d6c72SMatthew Wilcox /** 183ad3d6c72SMatthew Wilcox * xa_err() - Turn an XArray result into an errno. 184ad3d6c72SMatthew Wilcox * @entry: Result from calling an XArray function. 185ad3d6c72SMatthew Wilcox * 186ad3d6c72SMatthew Wilcox * If an XArray operation cannot complete an operation, it will return 187ad3d6c72SMatthew Wilcox * a special pointer value which encodes an errno. This function extracts 188ad3d6c72SMatthew Wilcox * the errno from the pointer value, or returns 0 if the pointer does not 189ad3d6c72SMatthew Wilcox * represent an errno. 190ad3d6c72SMatthew Wilcox * 191ad3d6c72SMatthew Wilcox * Context: Any context. 192ad3d6c72SMatthew Wilcox * Return: A negative errno or 0. 193ad3d6c72SMatthew Wilcox */ 194ad3d6c72SMatthew Wilcox static inline int xa_err(void *entry) 195ad3d6c72SMatthew Wilcox { 196ad3d6c72SMatthew Wilcox /* xa_to_internal() would not do sign extension. */ 197ad3d6c72SMatthew Wilcox if (xa_is_err(entry)) 198ad3d6c72SMatthew Wilcox return (long)entry >> 2; 199ad3d6c72SMatthew Wilcox return 0; 200ad3d6c72SMatthew Wilcox } 201ad3d6c72SMatthew Wilcox 2029b89a035SMatthew Wilcox typedef unsigned __bitwise xa_mark_t; 2039b89a035SMatthew Wilcox #define XA_MARK_0 ((__force xa_mark_t)0U) 2049b89a035SMatthew Wilcox #define XA_MARK_1 ((__force xa_mark_t)1U) 2059b89a035SMatthew Wilcox #define XA_MARK_2 ((__force xa_mark_t)2U) 2069b89a035SMatthew Wilcox #define XA_PRESENT ((__force xa_mark_t)8U) 2079b89a035SMatthew Wilcox #define XA_MARK_MAX XA_MARK_2 208371c752dSMatthew Wilcox #define XA_FREE_MARK XA_MARK_0 2099b89a035SMatthew Wilcox 21058d6ea30SMatthew Wilcox enum xa_lock_type { 21158d6ea30SMatthew Wilcox XA_LOCK_IRQ = 1, 21258d6ea30SMatthew Wilcox XA_LOCK_BH = 2, 21358d6ea30SMatthew Wilcox }; 21458d6ea30SMatthew Wilcox 2159b89a035SMatthew Wilcox /* 2169b89a035SMatthew Wilcox * Values for xa_flags. The radix tree stores its GFP flags in the xa_flags, 2179b89a035SMatthew Wilcox * and we remain compatible with that. 2189b89a035SMatthew Wilcox */ 21958d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_IRQ ((__force gfp_t)XA_LOCK_IRQ) 22058d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_BH ((__force gfp_t)XA_LOCK_BH) 221371c752dSMatthew Wilcox #define XA_FLAGS_TRACK_FREE ((__force gfp_t)4U) 2229b89a035SMatthew Wilcox #define XA_FLAGS_MARK(mark) ((__force gfp_t)((1U << __GFP_BITS_SHIFT) << \ 2239b89a035SMatthew Wilcox (__force unsigned)(mark))) 2249b89a035SMatthew Wilcox 225371c752dSMatthew Wilcox #define XA_FLAGS_ALLOC (XA_FLAGS_TRACK_FREE | XA_FLAGS_MARK(XA_FREE_MARK)) 226371c752dSMatthew Wilcox 227ad3d6c72SMatthew Wilcox /** 228f8d5d0ccSMatthew Wilcox * struct xarray - The anchor of the XArray. 229f8d5d0ccSMatthew Wilcox * @xa_lock: Lock that protects the contents of the XArray. 230f8d5d0ccSMatthew Wilcox * 231f8d5d0ccSMatthew Wilcox * To use the xarray, define it statically or embed it in your data structure. 232f8d5d0ccSMatthew Wilcox * It is a very small data structure, so it does not usually make sense to 233f8d5d0ccSMatthew Wilcox * allocate it separately and keep a pointer to it in your data structure. 234f8d5d0ccSMatthew Wilcox * 235f8d5d0ccSMatthew Wilcox * You may use the xa_lock to protect your own data structures as well. 236f8d5d0ccSMatthew Wilcox */ 237f8d5d0ccSMatthew Wilcox /* 238f8d5d0ccSMatthew Wilcox * If all of the entries in the array are NULL, @xa_head is a NULL pointer. 239f8d5d0ccSMatthew Wilcox * If the only non-NULL entry in the array is at index 0, @xa_head is that 240f8d5d0ccSMatthew Wilcox * entry. If any other entry in the array is non-NULL, @xa_head points 241f8d5d0ccSMatthew Wilcox * to an @xa_node. 242f8d5d0ccSMatthew Wilcox */ 243f8d5d0ccSMatthew Wilcox struct xarray { 244f8d5d0ccSMatthew Wilcox spinlock_t xa_lock; 245f8d5d0ccSMatthew Wilcox /* private: The rest of the data structure is not to be used directly. */ 246f8d5d0ccSMatthew Wilcox gfp_t xa_flags; 247f8d5d0ccSMatthew Wilcox void __rcu * xa_head; 248f8d5d0ccSMatthew Wilcox }; 249f8d5d0ccSMatthew Wilcox 250f8d5d0ccSMatthew Wilcox #define XARRAY_INIT(name, flags) { \ 251f8d5d0ccSMatthew Wilcox .xa_lock = __SPIN_LOCK_UNLOCKED(name.xa_lock), \ 252f8d5d0ccSMatthew Wilcox .xa_flags = flags, \ 253f8d5d0ccSMatthew Wilcox .xa_head = NULL, \ 254f8d5d0ccSMatthew Wilcox } 255f8d5d0ccSMatthew Wilcox 256f8d5d0ccSMatthew Wilcox /** 257f8d5d0ccSMatthew Wilcox * DEFINE_XARRAY_FLAGS() - Define an XArray with custom flags. 258f8d5d0ccSMatthew Wilcox * @name: A string that names your XArray. 259f8d5d0ccSMatthew Wilcox * @flags: XA_FLAG values. 260f8d5d0ccSMatthew Wilcox * 261f8d5d0ccSMatthew Wilcox * This is intended for file scope definitions of XArrays. It declares 262f8d5d0ccSMatthew Wilcox * and initialises an empty XArray with the chosen name and flags. It is 263f8d5d0ccSMatthew Wilcox * equivalent to calling xa_init_flags() on the array, but it does the 264f8d5d0ccSMatthew Wilcox * initialisation at compiletime instead of runtime. 265f8d5d0ccSMatthew Wilcox */ 266f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY_FLAGS(name, flags) \ 267f8d5d0ccSMatthew Wilcox struct xarray name = XARRAY_INIT(name, flags) 268f8d5d0ccSMatthew Wilcox 269f8d5d0ccSMatthew Wilcox /** 270f8d5d0ccSMatthew Wilcox * DEFINE_XARRAY() - Define an XArray. 271f8d5d0ccSMatthew Wilcox * @name: A string that names your XArray. 272f8d5d0ccSMatthew Wilcox * 273f8d5d0ccSMatthew Wilcox * This is intended for file scope definitions of XArrays. It declares 274f8d5d0ccSMatthew Wilcox * and initialises an empty XArray with the chosen name. It is equivalent 275f8d5d0ccSMatthew Wilcox * to calling xa_init() on the array, but it does the initialisation at 276f8d5d0ccSMatthew Wilcox * compiletime instead of runtime. 277f8d5d0ccSMatthew Wilcox */ 278f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY(name) DEFINE_XARRAY_FLAGS(name, 0) 279f8d5d0ccSMatthew Wilcox 280371c752dSMatthew Wilcox /** 281371c752dSMatthew Wilcox * DEFINE_XARRAY_ALLOC() - Define an XArray which can allocate IDs. 282371c752dSMatthew Wilcox * @name: A string that names your XArray. 283371c752dSMatthew Wilcox * 284371c752dSMatthew Wilcox * This is intended for file scope definitions of allocating XArrays. 285371c752dSMatthew Wilcox * See also DEFINE_XARRAY(). 286371c752dSMatthew Wilcox */ 287371c752dSMatthew Wilcox #define DEFINE_XARRAY_ALLOC(name) DEFINE_XARRAY_FLAGS(name, XA_FLAGS_ALLOC) 288371c752dSMatthew Wilcox 289f8d5d0ccSMatthew Wilcox void xa_init_flags(struct xarray *, gfp_t flags); 290ad3d6c72SMatthew Wilcox void *xa_load(struct xarray *, unsigned long index); 29158d6ea30SMatthew Wilcox void *xa_store(struct xarray *, unsigned long index, void *entry, gfp_t); 2920e9446c3SMatthew Wilcox void *xa_store_range(struct xarray *, unsigned long first, unsigned long last, 2930e9446c3SMatthew Wilcox void *entry, gfp_t); 2949b89a035SMatthew Wilcox bool xa_get_mark(struct xarray *, unsigned long index, xa_mark_t); 2959b89a035SMatthew Wilcox void xa_set_mark(struct xarray *, unsigned long index, xa_mark_t); 2969b89a035SMatthew Wilcox void xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t); 297b803b428SMatthew Wilcox void *xa_find(struct xarray *xa, unsigned long *index, 298b803b428SMatthew Wilcox unsigned long max, xa_mark_t) __attribute__((nonnull(2))); 299b803b428SMatthew Wilcox void *xa_find_after(struct xarray *xa, unsigned long *index, 300b803b428SMatthew Wilcox unsigned long max, xa_mark_t) __attribute__((nonnull(2))); 30180a0a1a9SMatthew Wilcox unsigned int xa_extract(struct xarray *, void **dst, unsigned long start, 30280a0a1a9SMatthew Wilcox unsigned long max, unsigned int n, xa_mark_t); 303687149fcSMatthew Wilcox void xa_destroy(struct xarray *); 304f8d5d0ccSMatthew Wilcox 305f8d5d0ccSMatthew Wilcox /** 306f8d5d0ccSMatthew Wilcox * xa_init() - Initialise an empty XArray. 307f8d5d0ccSMatthew Wilcox * @xa: XArray. 308f8d5d0ccSMatthew Wilcox * 309f8d5d0ccSMatthew Wilcox * An empty XArray is full of NULL entries. 310f8d5d0ccSMatthew Wilcox * 311f8d5d0ccSMatthew Wilcox * Context: Any context. 312f8d5d0ccSMatthew Wilcox */ 313f8d5d0ccSMatthew Wilcox static inline void xa_init(struct xarray *xa) 314f8d5d0ccSMatthew Wilcox { 315f8d5d0ccSMatthew Wilcox xa_init_flags(xa, 0); 316f8d5d0ccSMatthew Wilcox } 317f8d5d0ccSMatthew Wilcox 318ad3d6c72SMatthew Wilcox /** 319ad3d6c72SMatthew Wilcox * xa_empty() - Determine if an array has any present entries. 320ad3d6c72SMatthew Wilcox * @xa: XArray. 321ad3d6c72SMatthew Wilcox * 322ad3d6c72SMatthew Wilcox * Context: Any context. 323ad3d6c72SMatthew Wilcox * Return: %true if the array contains only NULL pointers. 324ad3d6c72SMatthew Wilcox */ 325ad3d6c72SMatthew Wilcox static inline bool xa_empty(const struct xarray *xa) 326ad3d6c72SMatthew Wilcox { 327ad3d6c72SMatthew Wilcox return xa->xa_head == NULL; 328ad3d6c72SMatthew Wilcox } 329ad3d6c72SMatthew Wilcox 3309b89a035SMatthew Wilcox /** 3319b89a035SMatthew Wilcox * xa_marked() - Inquire whether any entry in this array has a mark set 3329b89a035SMatthew Wilcox * @xa: Array 3339b89a035SMatthew Wilcox * @mark: Mark value 3349b89a035SMatthew Wilcox * 3359b89a035SMatthew Wilcox * Context: Any context. 3369b89a035SMatthew Wilcox * Return: %true if any entry has this mark set. 3379b89a035SMatthew Wilcox */ 3389b89a035SMatthew Wilcox static inline bool xa_marked(const struct xarray *xa, xa_mark_t mark) 3399b89a035SMatthew Wilcox { 3409b89a035SMatthew Wilcox return xa->xa_flags & XA_FLAGS_MARK(mark); 3419b89a035SMatthew Wilcox } 3429b89a035SMatthew Wilcox 34358d6ea30SMatthew Wilcox /** 34458d6ea30SMatthew Wilcox * xa_erase() - Erase this entry from the XArray. 34558d6ea30SMatthew Wilcox * @xa: XArray. 34658d6ea30SMatthew Wilcox * @index: Index of entry. 34758d6ea30SMatthew Wilcox * 34858d6ea30SMatthew Wilcox * This function is the equivalent of calling xa_store() with %NULL as 34958d6ea30SMatthew Wilcox * the third argument. The XArray does not need to allocate memory, so 35058d6ea30SMatthew Wilcox * the user does not need to provide GFP flags. 35158d6ea30SMatthew Wilcox * 35258d6ea30SMatthew Wilcox * Context: Process context. Takes and releases the xa_lock. 35358d6ea30SMatthew Wilcox * Return: The entry which used to be at this index. 35458d6ea30SMatthew Wilcox */ 35558d6ea30SMatthew Wilcox static inline void *xa_erase(struct xarray *xa, unsigned long index) 35658d6ea30SMatthew Wilcox { 35758d6ea30SMatthew Wilcox return xa_store(xa, index, NULL, 0); 35858d6ea30SMatthew Wilcox } 35958d6ea30SMatthew Wilcox 36041aec91fSMatthew Wilcox /** 361b803b428SMatthew Wilcox * xa_for_each() - Iterate over a portion of an XArray. 362b803b428SMatthew Wilcox * @xa: XArray. 363b803b428SMatthew Wilcox * @entry: Entry retrieved from array. 364b803b428SMatthew Wilcox * @index: Index of @entry. 365b803b428SMatthew Wilcox * @max: Maximum index to retrieve from array. 366b803b428SMatthew Wilcox * @filter: Selection criterion. 367b803b428SMatthew Wilcox * 368b803b428SMatthew Wilcox * Initialise @index to the lowest index you want to retrieve from the 369b803b428SMatthew Wilcox * array. During the iteration, @entry will have the value of the entry 370b803b428SMatthew Wilcox * stored in @xa at @index. The iteration will skip all entries in the 371b803b428SMatthew Wilcox * array which do not match @filter. You may modify @index during the 372b803b428SMatthew Wilcox * iteration if you want to skip or reprocess indices. It is safe to modify 373b803b428SMatthew Wilcox * the array during the iteration. At the end of the iteration, @entry will 374b803b428SMatthew Wilcox * be set to NULL and @index will have a value less than or equal to max. 375b803b428SMatthew Wilcox * 376b803b428SMatthew Wilcox * xa_for_each() is O(n.log(n)) while xas_for_each() is O(n). You have 377b803b428SMatthew Wilcox * to handle your own locking with xas_for_each(), and if you have to unlock 378b803b428SMatthew Wilcox * after each iteration, it will also end up being O(n.log(n)). xa_for_each() 379b803b428SMatthew Wilcox * will spin if it hits a retry entry; if you intend to see retry entries, 380b803b428SMatthew Wilcox * you should use the xas_for_each() iterator instead. The xas_for_each() 381b803b428SMatthew Wilcox * iterator will expand into more inline code than xa_for_each(). 382b803b428SMatthew Wilcox * 383b803b428SMatthew Wilcox * Context: Any context. Takes and releases the RCU lock. 384b803b428SMatthew Wilcox */ 385b803b428SMatthew Wilcox #define xa_for_each(xa, entry, index, max, filter) \ 386b803b428SMatthew Wilcox for (entry = xa_find(xa, &index, max, filter); entry; \ 387b803b428SMatthew Wilcox entry = xa_find_after(xa, &index, max, filter)) 388b803b428SMatthew Wilcox 389f6bb2a2cSMatthew Wilcox #define xa_trylock(xa) spin_trylock(&(xa)->xa_lock) 390f6bb2a2cSMatthew Wilcox #define xa_lock(xa) spin_lock(&(xa)->xa_lock) 391f6bb2a2cSMatthew Wilcox #define xa_unlock(xa) spin_unlock(&(xa)->xa_lock) 392f6bb2a2cSMatthew Wilcox #define xa_lock_bh(xa) spin_lock_bh(&(xa)->xa_lock) 393f6bb2a2cSMatthew Wilcox #define xa_unlock_bh(xa) spin_unlock_bh(&(xa)->xa_lock) 394f6bb2a2cSMatthew Wilcox #define xa_lock_irq(xa) spin_lock_irq(&(xa)->xa_lock) 395f6bb2a2cSMatthew Wilcox #define xa_unlock_irq(xa) spin_unlock_irq(&(xa)->xa_lock) 396f6bb2a2cSMatthew Wilcox #define xa_lock_irqsave(xa, flags) \ 397f6bb2a2cSMatthew Wilcox spin_lock_irqsave(&(xa)->xa_lock, flags) 398f6bb2a2cSMatthew Wilcox #define xa_unlock_irqrestore(xa, flags) \ 399f6bb2a2cSMatthew Wilcox spin_unlock_irqrestore(&(xa)->xa_lock, flags) 400f6bb2a2cSMatthew Wilcox 4019b89a035SMatthew Wilcox /* 40258d6ea30SMatthew Wilcox * Versions of the normal API which require the caller to hold the 40358d6ea30SMatthew Wilcox * xa_lock. If the GFP flags allow it, they will drop the lock to 40458d6ea30SMatthew Wilcox * allocate memory, then reacquire it afterwards. These functions 40558d6ea30SMatthew Wilcox * may also re-enable interrupts if the XArray flags indicate the 40658d6ea30SMatthew Wilcox * locking should be interrupt safe. 4079b89a035SMatthew Wilcox */ 40858d6ea30SMatthew Wilcox void *__xa_erase(struct xarray *, unsigned long index); 40958d6ea30SMatthew Wilcox void *__xa_store(struct xarray *, unsigned long index, void *entry, gfp_t); 41041aec91fSMatthew Wilcox void *__xa_cmpxchg(struct xarray *, unsigned long index, void *old, 41141aec91fSMatthew Wilcox void *entry, gfp_t); 412371c752dSMatthew Wilcox int __xa_alloc(struct xarray *, u32 *id, u32 max, void *entry, gfp_t); 4134c0608f4SMatthew Wilcox int __xa_reserve(struct xarray *, unsigned long index, gfp_t); 4149b89a035SMatthew Wilcox void __xa_set_mark(struct xarray *, unsigned long index, xa_mark_t); 4159b89a035SMatthew Wilcox void __xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t); 4169b89a035SMatthew Wilcox 41758d6ea30SMatthew Wilcox /** 41841aec91fSMatthew Wilcox * __xa_insert() - Store this entry in the XArray unless another entry is 41941aec91fSMatthew Wilcox * already present. 42041aec91fSMatthew Wilcox * @xa: XArray. 42141aec91fSMatthew Wilcox * @index: Index into array. 42241aec91fSMatthew Wilcox * @entry: New entry. 42341aec91fSMatthew Wilcox * @gfp: Memory allocation flags. 42441aec91fSMatthew Wilcox * 42541aec91fSMatthew Wilcox * If you would rather see the existing entry in the array, use __xa_cmpxchg(). 42641aec91fSMatthew Wilcox * This function is for users who don't care what the entry is, only that 42741aec91fSMatthew Wilcox * one is present. 42841aec91fSMatthew Wilcox * 42941aec91fSMatthew Wilcox * Context: Any context. Expects xa_lock to be held on entry. May 43041aec91fSMatthew Wilcox * release and reacquire xa_lock if the @gfp flags permit. 43141aec91fSMatthew Wilcox * Return: 0 if the store succeeded. -EEXIST if another entry was present. 43241aec91fSMatthew Wilcox * -ENOMEM if memory could not be allocated. 43341aec91fSMatthew Wilcox */ 43441aec91fSMatthew Wilcox static inline int __xa_insert(struct xarray *xa, unsigned long index, 43541aec91fSMatthew Wilcox void *entry, gfp_t gfp) 43641aec91fSMatthew Wilcox { 43741aec91fSMatthew Wilcox void *curr = __xa_cmpxchg(xa, index, NULL, entry, gfp); 43841aec91fSMatthew Wilcox if (!curr) 43941aec91fSMatthew Wilcox return 0; 44041aec91fSMatthew Wilcox if (xa_is_err(curr)) 44141aec91fSMatthew Wilcox return xa_err(curr); 44241aec91fSMatthew Wilcox return -EEXIST; 44341aec91fSMatthew Wilcox } 44441aec91fSMatthew Wilcox 44541aec91fSMatthew Wilcox /** 44658d6ea30SMatthew Wilcox * xa_erase_bh() - 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 softirqs. 45658d6ea30SMatthew Wilcox * Return: The entry which used to be at this index. 45758d6ea30SMatthew Wilcox */ 45858d6ea30SMatthew Wilcox static inline void *xa_erase_bh(struct xarray *xa, unsigned long index) 45958d6ea30SMatthew Wilcox { 46058d6ea30SMatthew Wilcox void *entry; 46158d6ea30SMatthew Wilcox 46258d6ea30SMatthew Wilcox xa_lock_bh(xa); 46358d6ea30SMatthew Wilcox entry = __xa_erase(xa, index); 46458d6ea30SMatthew Wilcox xa_unlock_bh(xa); 46558d6ea30SMatthew Wilcox 46658d6ea30SMatthew Wilcox return entry; 46758d6ea30SMatthew Wilcox } 46858d6ea30SMatthew Wilcox 46958d6ea30SMatthew Wilcox /** 47058d6ea30SMatthew Wilcox * xa_erase_irq() - Erase this entry from the XArray. 47158d6ea30SMatthew Wilcox * @xa: XArray. 47258d6ea30SMatthew Wilcox * @index: Index of entry. 47358d6ea30SMatthew Wilcox * 47458d6ea30SMatthew Wilcox * This function is the equivalent of calling xa_store() with %NULL as 47558d6ea30SMatthew Wilcox * the third argument. The XArray does not need to allocate memory, so 47658d6ea30SMatthew Wilcox * the user does not need to provide GFP flags. 47758d6ea30SMatthew Wilcox * 47858d6ea30SMatthew Wilcox * Context: Process context. Takes and releases the xa_lock while 47958d6ea30SMatthew Wilcox * disabling interrupts. 48058d6ea30SMatthew Wilcox * Return: The entry which used to be at this index. 48158d6ea30SMatthew Wilcox */ 48258d6ea30SMatthew Wilcox static inline void *xa_erase_irq(struct xarray *xa, unsigned long index) 48358d6ea30SMatthew Wilcox { 48458d6ea30SMatthew Wilcox void *entry; 48558d6ea30SMatthew Wilcox 48658d6ea30SMatthew Wilcox xa_lock_irq(xa); 48758d6ea30SMatthew Wilcox entry = __xa_erase(xa, index); 48858d6ea30SMatthew Wilcox xa_unlock_irq(xa); 48958d6ea30SMatthew Wilcox 49058d6ea30SMatthew Wilcox return entry; 49158d6ea30SMatthew Wilcox } 49258d6ea30SMatthew Wilcox 493371c752dSMatthew Wilcox /** 494*c5beb07eSMatthew Wilcox * xa_cmpxchg() - Conditionally replace an entry in the XArray. 495*c5beb07eSMatthew Wilcox * @xa: XArray. 496*c5beb07eSMatthew Wilcox * @index: Index into array. 497*c5beb07eSMatthew Wilcox * @old: Old value to test against. 498*c5beb07eSMatthew Wilcox * @entry: New value to place in array. 499*c5beb07eSMatthew Wilcox * @gfp: Memory allocation flags. 500*c5beb07eSMatthew Wilcox * 501*c5beb07eSMatthew Wilcox * If the entry at @index is the same as @old, replace it with @entry. 502*c5beb07eSMatthew Wilcox * If the return value is equal to @old, then the exchange was successful. 503*c5beb07eSMatthew Wilcox * 504*c5beb07eSMatthew Wilcox * Context: Any context. Takes and releases the xa_lock. May sleep 505*c5beb07eSMatthew Wilcox * if the @gfp flags permit. 506*c5beb07eSMatthew Wilcox * Return: The old value at this index or xa_err() if an error happened. 507*c5beb07eSMatthew Wilcox */ 508*c5beb07eSMatthew Wilcox static inline void *xa_cmpxchg(struct xarray *xa, unsigned long index, 509*c5beb07eSMatthew Wilcox void *old, void *entry, gfp_t gfp) 510*c5beb07eSMatthew Wilcox { 511*c5beb07eSMatthew Wilcox void *curr; 512*c5beb07eSMatthew Wilcox 513*c5beb07eSMatthew Wilcox xa_lock(xa); 514*c5beb07eSMatthew Wilcox curr = __xa_cmpxchg(xa, index, old, entry, gfp); 515*c5beb07eSMatthew Wilcox xa_unlock(xa); 516*c5beb07eSMatthew Wilcox 517*c5beb07eSMatthew Wilcox return curr; 518*c5beb07eSMatthew Wilcox } 519*c5beb07eSMatthew Wilcox 520*c5beb07eSMatthew Wilcox /** 521*c5beb07eSMatthew Wilcox * xa_insert() - Store this entry in the XArray unless another entry is 522*c5beb07eSMatthew Wilcox * already present. 523*c5beb07eSMatthew Wilcox * @xa: XArray. 524*c5beb07eSMatthew Wilcox * @index: Index into array. 525*c5beb07eSMatthew Wilcox * @entry: New entry. 526*c5beb07eSMatthew Wilcox * @gfp: Memory allocation flags. 527*c5beb07eSMatthew Wilcox * 528*c5beb07eSMatthew Wilcox * If you would rather see the existing entry in the array, use xa_cmpxchg(). 529*c5beb07eSMatthew Wilcox * This function is for users who don't care what the entry is, only that 530*c5beb07eSMatthew Wilcox * one is present. 531*c5beb07eSMatthew Wilcox * 532*c5beb07eSMatthew Wilcox * Context: Process context. Takes and releases the xa_lock. 533*c5beb07eSMatthew Wilcox * May sleep if the @gfp flags permit. 534*c5beb07eSMatthew Wilcox * Return: 0 if the store succeeded. -EEXIST if another entry was present. 535*c5beb07eSMatthew Wilcox * -ENOMEM if memory could not be allocated. 536*c5beb07eSMatthew Wilcox */ 537*c5beb07eSMatthew Wilcox static inline int xa_insert(struct xarray *xa, unsigned long index, 538*c5beb07eSMatthew Wilcox void *entry, gfp_t gfp) 539*c5beb07eSMatthew Wilcox { 540*c5beb07eSMatthew Wilcox void *curr = xa_cmpxchg(xa, index, NULL, entry, gfp); 541*c5beb07eSMatthew Wilcox if (!curr) 542*c5beb07eSMatthew Wilcox return 0; 543*c5beb07eSMatthew Wilcox if (xa_is_err(curr)) 544*c5beb07eSMatthew Wilcox return xa_err(curr); 545*c5beb07eSMatthew Wilcox return -EEXIST; 546*c5beb07eSMatthew Wilcox } 547*c5beb07eSMatthew Wilcox 548*c5beb07eSMatthew Wilcox /** 549371c752dSMatthew Wilcox * xa_alloc() - Find somewhere to store this entry in the XArray. 550371c752dSMatthew Wilcox * @xa: XArray. 551371c752dSMatthew Wilcox * @id: Pointer to ID. 552371c752dSMatthew Wilcox * @max: Maximum ID to allocate (inclusive). 553371c752dSMatthew Wilcox * @entry: New entry. 554371c752dSMatthew Wilcox * @gfp: Memory allocation flags. 555371c752dSMatthew Wilcox * 556371c752dSMatthew Wilcox * Allocates an unused ID in the range specified by @id and @max. 557371c752dSMatthew Wilcox * Updates the @id pointer with the index, then stores the entry at that 558371c752dSMatthew Wilcox * index. A concurrent lookup will not see an uninitialised @id. 559371c752dSMatthew Wilcox * 560371c752dSMatthew Wilcox * Context: Process context. Takes and releases the xa_lock. May sleep if 561371c752dSMatthew Wilcox * the @gfp flags permit. 562371c752dSMatthew Wilcox * Return: 0 on success, -ENOMEM if memory allocation fails or -ENOSPC if 563371c752dSMatthew Wilcox * there is no more space in the XArray. 564371c752dSMatthew Wilcox */ 565371c752dSMatthew Wilcox static inline int xa_alloc(struct xarray *xa, u32 *id, u32 max, void *entry, 566371c752dSMatthew Wilcox gfp_t gfp) 567371c752dSMatthew Wilcox { 568371c752dSMatthew Wilcox int err; 569371c752dSMatthew Wilcox 570371c752dSMatthew Wilcox xa_lock(xa); 571371c752dSMatthew Wilcox err = __xa_alloc(xa, id, max, entry, gfp); 572371c752dSMatthew Wilcox xa_unlock(xa); 573371c752dSMatthew Wilcox 574371c752dSMatthew Wilcox return err; 575371c752dSMatthew Wilcox } 576371c752dSMatthew Wilcox 577371c752dSMatthew Wilcox /** 578371c752dSMatthew Wilcox * xa_alloc_bh() - Find somewhere to store this entry in the XArray. 579371c752dSMatthew Wilcox * @xa: XArray. 580371c752dSMatthew Wilcox * @id: Pointer to ID. 581371c752dSMatthew Wilcox * @max: Maximum ID to allocate (inclusive). 582371c752dSMatthew Wilcox * @entry: New entry. 583371c752dSMatthew Wilcox * @gfp: Memory allocation flags. 584371c752dSMatthew Wilcox * 585371c752dSMatthew Wilcox * Allocates an unused ID in the range specified by @id and @max. 586371c752dSMatthew Wilcox * Updates the @id pointer with the index, then stores the entry at that 587371c752dSMatthew Wilcox * index. A concurrent lookup will not see an uninitialised @id. 588371c752dSMatthew Wilcox * 589371c752dSMatthew Wilcox * Context: Process context. Takes and releases the xa_lock while 590371c752dSMatthew Wilcox * disabling softirqs. May sleep if the @gfp flags permit. 591371c752dSMatthew Wilcox * Return: 0 on success, -ENOMEM if memory allocation fails or -ENOSPC if 592371c752dSMatthew Wilcox * there is no more space in the XArray. 593371c752dSMatthew Wilcox */ 594371c752dSMatthew Wilcox static inline int xa_alloc_bh(struct xarray *xa, u32 *id, u32 max, void *entry, 595371c752dSMatthew Wilcox gfp_t gfp) 596371c752dSMatthew Wilcox { 597371c752dSMatthew Wilcox int err; 598371c752dSMatthew Wilcox 599371c752dSMatthew Wilcox xa_lock_bh(xa); 600371c752dSMatthew Wilcox err = __xa_alloc(xa, id, max, entry, gfp); 601371c752dSMatthew Wilcox xa_unlock_bh(xa); 602371c752dSMatthew Wilcox 603371c752dSMatthew Wilcox return err; 604371c752dSMatthew Wilcox } 605371c752dSMatthew Wilcox 606371c752dSMatthew Wilcox /** 607371c752dSMatthew Wilcox * xa_alloc_irq() - Find somewhere to store this entry in the XArray. 608371c752dSMatthew Wilcox * @xa: XArray. 609371c752dSMatthew Wilcox * @id: Pointer to ID. 610371c752dSMatthew Wilcox * @max: Maximum ID to allocate (inclusive). 611371c752dSMatthew Wilcox * @entry: New entry. 612371c752dSMatthew Wilcox * @gfp: Memory allocation flags. 613371c752dSMatthew Wilcox * 614371c752dSMatthew Wilcox * Allocates an unused ID in the range specified by @id and @max. 615371c752dSMatthew Wilcox * Updates the @id pointer with the index, then stores the entry at that 616371c752dSMatthew Wilcox * index. A concurrent lookup will not see an uninitialised @id. 617371c752dSMatthew Wilcox * 618371c752dSMatthew Wilcox * Context: Process context. Takes and releases the xa_lock while 619371c752dSMatthew Wilcox * disabling interrupts. May sleep if the @gfp flags permit. 620371c752dSMatthew Wilcox * Return: 0 on success, -ENOMEM if memory allocation fails or -ENOSPC if 621371c752dSMatthew Wilcox * there is no more space in the XArray. 622371c752dSMatthew Wilcox */ 623371c752dSMatthew Wilcox static inline int xa_alloc_irq(struct xarray *xa, u32 *id, u32 max, void *entry, 624371c752dSMatthew Wilcox gfp_t gfp) 625371c752dSMatthew Wilcox { 626371c752dSMatthew Wilcox int err; 627371c752dSMatthew Wilcox 628371c752dSMatthew Wilcox xa_lock_irq(xa); 629371c752dSMatthew Wilcox err = __xa_alloc(xa, id, max, entry, gfp); 630371c752dSMatthew Wilcox xa_unlock_irq(xa); 631371c752dSMatthew Wilcox 632371c752dSMatthew Wilcox return err; 633371c752dSMatthew Wilcox } 634371c752dSMatthew Wilcox 6354c0608f4SMatthew Wilcox /** 6364c0608f4SMatthew Wilcox * xa_reserve() - Reserve this index in the XArray. 6374c0608f4SMatthew Wilcox * @xa: XArray. 6384c0608f4SMatthew Wilcox * @index: Index into array. 6394c0608f4SMatthew Wilcox * @gfp: Memory allocation flags. 6404c0608f4SMatthew Wilcox * 6414c0608f4SMatthew Wilcox * Ensures there is somewhere to store an entry at @index in the array. 6424c0608f4SMatthew Wilcox * If there is already something stored at @index, this function does 6434c0608f4SMatthew Wilcox * nothing. If there was nothing there, the entry is marked as reserved. 6444c0608f4SMatthew Wilcox * Loading from a reserved entry returns a %NULL pointer. 6454c0608f4SMatthew Wilcox * 6464c0608f4SMatthew Wilcox * If you do not use the entry that you have reserved, call xa_release() 6474c0608f4SMatthew Wilcox * or xa_erase() to free any unnecessary memory. 6484c0608f4SMatthew Wilcox * 6494c0608f4SMatthew Wilcox * Context: Any context. Takes and releases the xa_lock. 6504c0608f4SMatthew Wilcox * May sleep if the @gfp flags permit. 6514c0608f4SMatthew Wilcox * Return: 0 if the reservation succeeded or -ENOMEM if it failed. 6524c0608f4SMatthew Wilcox */ 6534c0608f4SMatthew Wilcox static inline 6544c0608f4SMatthew Wilcox int xa_reserve(struct xarray *xa, unsigned long index, gfp_t gfp) 6554c0608f4SMatthew Wilcox { 6564c0608f4SMatthew Wilcox int ret; 6574c0608f4SMatthew Wilcox 6584c0608f4SMatthew Wilcox xa_lock(xa); 6594c0608f4SMatthew Wilcox ret = __xa_reserve(xa, index, gfp); 6604c0608f4SMatthew Wilcox xa_unlock(xa); 6614c0608f4SMatthew Wilcox 6624c0608f4SMatthew Wilcox return ret; 6634c0608f4SMatthew Wilcox } 6644c0608f4SMatthew Wilcox 6654c0608f4SMatthew Wilcox /** 6664c0608f4SMatthew Wilcox * xa_reserve_bh() - Reserve this index in the XArray. 6674c0608f4SMatthew Wilcox * @xa: XArray. 6684c0608f4SMatthew Wilcox * @index: Index into array. 6694c0608f4SMatthew Wilcox * @gfp: Memory allocation flags. 6704c0608f4SMatthew Wilcox * 6714c0608f4SMatthew Wilcox * A softirq-disabling version of xa_reserve(). 6724c0608f4SMatthew Wilcox * 6734c0608f4SMatthew Wilcox * Context: Any context. Takes and releases the xa_lock while 6744c0608f4SMatthew Wilcox * disabling softirqs. 6754c0608f4SMatthew Wilcox * Return: 0 if the reservation succeeded or -ENOMEM if it failed. 6764c0608f4SMatthew Wilcox */ 6774c0608f4SMatthew Wilcox static inline 6784c0608f4SMatthew Wilcox int xa_reserve_bh(struct xarray *xa, unsigned long index, gfp_t gfp) 6794c0608f4SMatthew Wilcox { 6804c0608f4SMatthew Wilcox int ret; 6814c0608f4SMatthew Wilcox 6824c0608f4SMatthew Wilcox xa_lock_bh(xa); 6834c0608f4SMatthew Wilcox ret = __xa_reserve(xa, index, gfp); 6844c0608f4SMatthew Wilcox xa_unlock_bh(xa); 6854c0608f4SMatthew Wilcox 6864c0608f4SMatthew Wilcox return ret; 6874c0608f4SMatthew Wilcox } 6884c0608f4SMatthew Wilcox 6894c0608f4SMatthew Wilcox /** 6904c0608f4SMatthew Wilcox * xa_reserve_irq() - Reserve this index in the XArray. 6914c0608f4SMatthew Wilcox * @xa: XArray. 6924c0608f4SMatthew Wilcox * @index: Index into array. 6934c0608f4SMatthew Wilcox * @gfp: Memory allocation flags. 6944c0608f4SMatthew Wilcox * 6954c0608f4SMatthew Wilcox * An interrupt-disabling version of xa_reserve(). 6964c0608f4SMatthew Wilcox * 6974c0608f4SMatthew Wilcox * Context: Process context. Takes and releases the xa_lock while 6984c0608f4SMatthew Wilcox * disabling interrupts. 6994c0608f4SMatthew Wilcox * Return: 0 if the reservation succeeded or -ENOMEM if it failed. 7004c0608f4SMatthew Wilcox */ 7014c0608f4SMatthew Wilcox static inline 7024c0608f4SMatthew Wilcox int xa_reserve_irq(struct xarray *xa, unsigned long index, gfp_t gfp) 7034c0608f4SMatthew Wilcox { 7044c0608f4SMatthew Wilcox int ret; 7054c0608f4SMatthew Wilcox 7064c0608f4SMatthew Wilcox xa_lock_irq(xa); 7074c0608f4SMatthew Wilcox ret = __xa_reserve(xa, index, gfp); 7084c0608f4SMatthew Wilcox xa_unlock_irq(xa); 7094c0608f4SMatthew Wilcox 7104c0608f4SMatthew Wilcox return ret; 7114c0608f4SMatthew Wilcox } 7124c0608f4SMatthew Wilcox 713*c5beb07eSMatthew Wilcox /** 714*c5beb07eSMatthew Wilcox * xa_release() - Release a reserved entry. 715*c5beb07eSMatthew Wilcox * @xa: XArray. 716*c5beb07eSMatthew Wilcox * @index: Index of entry. 717*c5beb07eSMatthew Wilcox * 718*c5beb07eSMatthew Wilcox * After calling xa_reserve(), you can call this function to release the 719*c5beb07eSMatthew Wilcox * reservation. If the entry at @index has been stored to, this function 720*c5beb07eSMatthew Wilcox * will do nothing. 721*c5beb07eSMatthew Wilcox */ 722*c5beb07eSMatthew Wilcox static inline void xa_release(struct xarray *xa, unsigned long index) 723*c5beb07eSMatthew Wilcox { 724*c5beb07eSMatthew Wilcox xa_cmpxchg(xa, index, NULL, NULL, 0); 725*c5beb07eSMatthew Wilcox } 726*c5beb07eSMatthew Wilcox 72702c02bf1SMatthew Wilcox /* Everything below here is the Advanced API. Proceed with caution. */ 72802c02bf1SMatthew Wilcox 72902c02bf1SMatthew Wilcox /* 73002c02bf1SMatthew Wilcox * The xarray is constructed out of a set of 'chunks' of pointers. Choosing 73102c02bf1SMatthew Wilcox * the best chunk size requires some tradeoffs. A power of two recommends 73202c02bf1SMatthew Wilcox * itself so that we can walk the tree based purely on shifts and masks. 73302c02bf1SMatthew Wilcox * Generally, the larger the better; as the number of slots per level of the 73402c02bf1SMatthew Wilcox * tree increases, the less tall the tree needs to be. But that needs to be 73502c02bf1SMatthew Wilcox * balanced against the memory consumption of each node. On a 64-bit system, 73602c02bf1SMatthew Wilcox * xa_node is currently 576 bytes, and we get 7 of them per 4kB page. If we 73702c02bf1SMatthew Wilcox * doubled the number of slots per node, we'd get only 3 nodes per 4kB page. 73802c02bf1SMatthew Wilcox */ 73902c02bf1SMatthew Wilcox #ifndef XA_CHUNK_SHIFT 74002c02bf1SMatthew Wilcox #define XA_CHUNK_SHIFT (CONFIG_BASE_SMALL ? 4 : 6) 74102c02bf1SMatthew Wilcox #endif 74202c02bf1SMatthew Wilcox #define XA_CHUNK_SIZE (1UL << XA_CHUNK_SHIFT) 74302c02bf1SMatthew Wilcox #define XA_CHUNK_MASK (XA_CHUNK_SIZE - 1) 74401959dfeSMatthew Wilcox #define XA_MAX_MARKS 3 74501959dfeSMatthew Wilcox #define XA_MARK_LONGS DIV_ROUND_UP(XA_CHUNK_SIZE, BITS_PER_LONG) 74601959dfeSMatthew Wilcox 74701959dfeSMatthew Wilcox /* 74801959dfeSMatthew Wilcox * @count is the count of every non-NULL element in the ->slots array 74901959dfeSMatthew Wilcox * whether that is a value entry, a retry entry, a user pointer, 75001959dfeSMatthew Wilcox * a sibling entry or a pointer to the next level of the tree. 75101959dfeSMatthew Wilcox * @nr_values is the count of every element in ->slots which is 75201959dfeSMatthew Wilcox * either a value entry or a sibling of a value entry. 75301959dfeSMatthew Wilcox */ 75401959dfeSMatthew Wilcox struct xa_node { 75501959dfeSMatthew Wilcox unsigned char shift; /* Bits remaining in each slot */ 75601959dfeSMatthew Wilcox unsigned char offset; /* Slot offset in parent */ 75701959dfeSMatthew Wilcox unsigned char count; /* Total entry count */ 75801959dfeSMatthew Wilcox unsigned char nr_values; /* Value entry count */ 75901959dfeSMatthew Wilcox struct xa_node __rcu *parent; /* NULL at top of tree */ 76001959dfeSMatthew Wilcox struct xarray *array; /* The array we belong to */ 76101959dfeSMatthew Wilcox union { 76201959dfeSMatthew Wilcox struct list_head private_list; /* For tree user */ 76301959dfeSMatthew Wilcox struct rcu_head rcu_head; /* Used when freeing node */ 76401959dfeSMatthew Wilcox }; 76501959dfeSMatthew Wilcox void __rcu *slots[XA_CHUNK_SIZE]; 76601959dfeSMatthew Wilcox union { 76701959dfeSMatthew Wilcox unsigned long tags[XA_MAX_MARKS][XA_MARK_LONGS]; 76801959dfeSMatthew Wilcox unsigned long marks[XA_MAX_MARKS][XA_MARK_LONGS]; 76901959dfeSMatthew Wilcox }; 77001959dfeSMatthew Wilcox }; 77102c02bf1SMatthew Wilcox 772ad3d6c72SMatthew Wilcox void xa_dump(const struct xarray *); 773ad3d6c72SMatthew Wilcox void xa_dump_node(const struct xa_node *); 774ad3d6c72SMatthew Wilcox 775ad3d6c72SMatthew Wilcox #ifdef XA_DEBUG 776ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do { \ 777ad3d6c72SMatthew Wilcox if (x) { \ 778ad3d6c72SMatthew Wilcox xa_dump(xa); \ 779ad3d6c72SMatthew Wilcox BUG(); \ 780ad3d6c72SMatthew Wilcox } \ 781ad3d6c72SMatthew Wilcox } while (0) 782ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do { \ 783ad3d6c72SMatthew Wilcox if (x) { \ 784ad3d6c72SMatthew Wilcox if (node) xa_dump_node(node); \ 785ad3d6c72SMatthew Wilcox BUG(); \ 786ad3d6c72SMatthew Wilcox } \ 787ad3d6c72SMatthew Wilcox } while (0) 788ad3d6c72SMatthew Wilcox #else 789ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do { } while (0) 790ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do { } while (0) 791ad3d6c72SMatthew Wilcox #endif 792ad3d6c72SMatthew Wilcox 793ad3d6c72SMatthew Wilcox /* Private */ 794ad3d6c72SMatthew Wilcox static inline void *xa_head(const struct xarray *xa) 795ad3d6c72SMatthew Wilcox { 796ad3d6c72SMatthew Wilcox return rcu_dereference_check(xa->xa_head, 797ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 798ad3d6c72SMatthew Wilcox } 799ad3d6c72SMatthew Wilcox 800ad3d6c72SMatthew Wilcox /* Private */ 801ad3d6c72SMatthew Wilcox static inline void *xa_head_locked(const struct xarray *xa) 802ad3d6c72SMatthew Wilcox { 803ad3d6c72SMatthew Wilcox return rcu_dereference_protected(xa->xa_head, 804ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 805ad3d6c72SMatthew Wilcox } 806ad3d6c72SMatthew Wilcox 807ad3d6c72SMatthew Wilcox /* Private */ 808ad3d6c72SMatthew Wilcox static inline void *xa_entry(const struct xarray *xa, 809ad3d6c72SMatthew Wilcox const struct xa_node *node, unsigned int offset) 810ad3d6c72SMatthew Wilcox { 811ad3d6c72SMatthew Wilcox XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE); 812ad3d6c72SMatthew Wilcox return rcu_dereference_check(node->slots[offset], 813ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 814ad3d6c72SMatthew Wilcox } 815ad3d6c72SMatthew Wilcox 816ad3d6c72SMatthew Wilcox /* Private */ 817ad3d6c72SMatthew Wilcox static inline void *xa_entry_locked(const struct xarray *xa, 818ad3d6c72SMatthew Wilcox const struct xa_node *node, unsigned int offset) 819ad3d6c72SMatthew Wilcox { 820ad3d6c72SMatthew Wilcox XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE); 821ad3d6c72SMatthew Wilcox return rcu_dereference_protected(node->slots[offset], 822ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 823ad3d6c72SMatthew Wilcox } 824ad3d6c72SMatthew Wilcox 825ad3d6c72SMatthew Wilcox /* Private */ 8269b89a035SMatthew Wilcox static inline struct xa_node *xa_parent(const struct xarray *xa, 8279b89a035SMatthew Wilcox const struct xa_node *node) 8289b89a035SMatthew Wilcox { 8299b89a035SMatthew Wilcox return rcu_dereference_check(node->parent, 8309b89a035SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 8319b89a035SMatthew Wilcox } 8329b89a035SMatthew Wilcox 8339b89a035SMatthew Wilcox /* Private */ 8349b89a035SMatthew Wilcox static inline struct xa_node *xa_parent_locked(const struct xarray *xa, 8359b89a035SMatthew Wilcox const struct xa_node *node) 8369b89a035SMatthew Wilcox { 8379b89a035SMatthew Wilcox return rcu_dereference_protected(node->parent, 8389b89a035SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 8399b89a035SMatthew Wilcox } 8409b89a035SMatthew Wilcox 8419b89a035SMatthew Wilcox /* Private */ 84258d6ea30SMatthew Wilcox static inline void *xa_mk_node(const struct xa_node *node) 84358d6ea30SMatthew Wilcox { 84458d6ea30SMatthew Wilcox return (void *)((unsigned long)node | 2); 84558d6ea30SMatthew Wilcox } 84658d6ea30SMatthew Wilcox 84758d6ea30SMatthew Wilcox /* Private */ 848ad3d6c72SMatthew Wilcox static inline struct xa_node *xa_to_node(const void *entry) 849ad3d6c72SMatthew Wilcox { 850ad3d6c72SMatthew Wilcox return (struct xa_node *)((unsigned long)entry - 2); 851ad3d6c72SMatthew Wilcox } 852ad3d6c72SMatthew Wilcox 85302c02bf1SMatthew Wilcox /* Private */ 85402c02bf1SMatthew Wilcox static inline bool xa_is_node(const void *entry) 85502c02bf1SMatthew Wilcox { 85602c02bf1SMatthew Wilcox return xa_is_internal(entry) && (unsigned long)entry > 4096; 85702c02bf1SMatthew Wilcox } 85802c02bf1SMatthew Wilcox 85902c02bf1SMatthew Wilcox /* Private */ 86002c02bf1SMatthew Wilcox static inline void *xa_mk_sibling(unsigned int offset) 86102c02bf1SMatthew Wilcox { 86202c02bf1SMatthew Wilcox return xa_mk_internal(offset); 86302c02bf1SMatthew Wilcox } 86402c02bf1SMatthew Wilcox 86502c02bf1SMatthew Wilcox /* Private */ 86602c02bf1SMatthew Wilcox static inline unsigned long xa_to_sibling(const void *entry) 86702c02bf1SMatthew Wilcox { 86802c02bf1SMatthew Wilcox return xa_to_internal(entry); 86902c02bf1SMatthew Wilcox } 87002c02bf1SMatthew Wilcox 87102c02bf1SMatthew Wilcox /** 87202c02bf1SMatthew Wilcox * xa_is_sibling() - Is the entry a sibling entry? 87302c02bf1SMatthew Wilcox * @entry: Entry retrieved from the XArray 87402c02bf1SMatthew Wilcox * 87502c02bf1SMatthew Wilcox * Return: %true if the entry is a sibling entry. 87602c02bf1SMatthew Wilcox */ 87702c02bf1SMatthew Wilcox static inline bool xa_is_sibling(const void *entry) 87802c02bf1SMatthew Wilcox { 87902c02bf1SMatthew Wilcox return IS_ENABLED(CONFIG_XARRAY_MULTI) && xa_is_internal(entry) && 88002c02bf1SMatthew Wilcox (entry < xa_mk_sibling(XA_CHUNK_SIZE - 1)); 88102c02bf1SMatthew Wilcox } 88202c02bf1SMatthew Wilcox 8839f14d4f1SMatthew Wilcox #define XA_ZERO_ENTRY xa_mk_internal(256) 8849f14d4f1SMatthew Wilcox #define XA_RETRY_ENTRY xa_mk_internal(257) 8859f14d4f1SMatthew Wilcox 8869f14d4f1SMatthew Wilcox /** 8879f14d4f1SMatthew Wilcox * xa_is_zero() - Is the entry a zero entry? 8889f14d4f1SMatthew Wilcox * @entry: Entry retrieved from the XArray 8899f14d4f1SMatthew Wilcox * 8909f14d4f1SMatthew Wilcox * Return: %true if the entry is a zero entry. 8919f14d4f1SMatthew Wilcox */ 8929f14d4f1SMatthew Wilcox static inline bool xa_is_zero(const void *entry) 8939f14d4f1SMatthew Wilcox { 8949f14d4f1SMatthew Wilcox return unlikely(entry == XA_ZERO_ENTRY); 8959f14d4f1SMatthew Wilcox } 89602c02bf1SMatthew Wilcox 897ad3d6c72SMatthew Wilcox /** 898ad3d6c72SMatthew Wilcox * xa_is_retry() - Is the entry a retry entry? 899ad3d6c72SMatthew Wilcox * @entry: Entry retrieved from the XArray 900ad3d6c72SMatthew Wilcox * 901ad3d6c72SMatthew Wilcox * Return: %true if the entry is a retry entry. 902ad3d6c72SMatthew Wilcox */ 903ad3d6c72SMatthew Wilcox static inline bool xa_is_retry(const void *entry) 904ad3d6c72SMatthew Wilcox { 905ad3d6c72SMatthew Wilcox return unlikely(entry == XA_RETRY_ENTRY); 906ad3d6c72SMatthew Wilcox } 907ad3d6c72SMatthew Wilcox 908ad3d6c72SMatthew Wilcox /** 909ad3d6c72SMatthew Wilcox * typedef xa_update_node_t - A callback function from the XArray. 910ad3d6c72SMatthew Wilcox * @node: The node which is being processed 911ad3d6c72SMatthew Wilcox * 912ad3d6c72SMatthew Wilcox * This function is called every time the XArray updates the count of 913ad3d6c72SMatthew Wilcox * present and value entries in a node. It allows advanced users to 914ad3d6c72SMatthew Wilcox * maintain the private_list in the node. 915ad3d6c72SMatthew Wilcox * 916ad3d6c72SMatthew Wilcox * Context: The xa_lock is held and interrupts may be disabled. 917ad3d6c72SMatthew Wilcox * Implementations should not drop the xa_lock, nor re-enable 918ad3d6c72SMatthew Wilcox * interrupts. 919ad3d6c72SMatthew Wilcox */ 920ad3d6c72SMatthew Wilcox typedef void (*xa_update_node_t)(struct xa_node *node); 921ad3d6c72SMatthew Wilcox 922ad3d6c72SMatthew Wilcox /* 923ad3d6c72SMatthew Wilcox * The xa_state is opaque to its users. It contains various different pieces 924ad3d6c72SMatthew Wilcox * of state involved in the current operation on the XArray. It should be 925ad3d6c72SMatthew Wilcox * declared on the stack and passed between the various internal routines. 926ad3d6c72SMatthew Wilcox * The various elements in it should not be accessed directly, but only 927ad3d6c72SMatthew Wilcox * through the provided accessor functions. The below documentation is for 928ad3d6c72SMatthew Wilcox * the benefit of those working on the code, not for users of the XArray. 929ad3d6c72SMatthew Wilcox * 930ad3d6c72SMatthew Wilcox * @xa_node usually points to the xa_node containing the slot we're operating 931ad3d6c72SMatthew Wilcox * on (and @xa_offset is the offset in the slots array). If there is a 932ad3d6c72SMatthew Wilcox * single entry in the array at index 0, there are no allocated xa_nodes to 933ad3d6c72SMatthew Wilcox * point to, and so we store %NULL in @xa_node. @xa_node is set to 934ad3d6c72SMatthew Wilcox * the value %XAS_RESTART if the xa_state is not walked to the correct 935ad3d6c72SMatthew Wilcox * position in the tree of nodes for this operation. If an error occurs 936ad3d6c72SMatthew Wilcox * during an operation, it is set to an %XAS_ERROR value. If we run off the 937ad3d6c72SMatthew Wilcox * end of the allocated nodes, it is set to %XAS_BOUNDS. 938ad3d6c72SMatthew Wilcox */ 939ad3d6c72SMatthew Wilcox struct xa_state { 940ad3d6c72SMatthew Wilcox struct xarray *xa; 941ad3d6c72SMatthew Wilcox unsigned long xa_index; 942ad3d6c72SMatthew Wilcox unsigned char xa_shift; 943ad3d6c72SMatthew Wilcox unsigned char xa_sibs; 944ad3d6c72SMatthew Wilcox unsigned char xa_offset; 945ad3d6c72SMatthew Wilcox unsigned char xa_pad; /* Helps gcc generate better code */ 946ad3d6c72SMatthew Wilcox struct xa_node *xa_node; 947ad3d6c72SMatthew Wilcox struct xa_node *xa_alloc; 948ad3d6c72SMatthew Wilcox xa_update_node_t xa_update; 949ad3d6c72SMatthew Wilcox }; 950ad3d6c72SMatthew Wilcox 951ad3d6c72SMatthew Wilcox /* 952ad3d6c72SMatthew Wilcox * We encode errnos in the xas->xa_node. If an error has happened, we need to 953ad3d6c72SMatthew Wilcox * drop the lock to fix it, and once we've done so the xa_state is invalid. 954ad3d6c72SMatthew Wilcox */ 955ad3d6c72SMatthew Wilcox #define XA_ERROR(errno) ((struct xa_node *)(((unsigned long)errno << 2) | 2UL)) 956ad3d6c72SMatthew Wilcox #define XAS_BOUNDS ((struct xa_node *)1UL) 957ad3d6c72SMatthew Wilcox #define XAS_RESTART ((struct xa_node *)3UL) 958ad3d6c72SMatthew Wilcox 959ad3d6c72SMatthew Wilcox #define __XA_STATE(array, index, shift, sibs) { \ 960ad3d6c72SMatthew Wilcox .xa = array, \ 961ad3d6c72SMatthew Wilcox .xa_index = index, \ 962ad3d6c72SMatthew Wilcox .xa_shift = shift, \ 963ad3d6c72SMatthew Wilcox .xa_sibs = sibs, \ 964ad3d6c72SMatthew Wilcox .xa_offset = 0, \ 965ad3d6c72SMatthew Wilcox .xa_pad = 0, \ 966ad3d6c72SMatthew Wilcox .xa_node = XAS_RESTART, \ 967ad3d6c72SMatthew Wilcox .xa_alloc = NULL, \ 968ad3d6c72SMatthew Wilcox .xa_update = NULL \ 969ad3d6c72SMatthew Wilcox } 970ad3d6c72SMatthew Wilcox 971ad3d6c72SMatthew Wilcox /** 972ad3d6c72SMatthew Wilcox * XA_STATE() - Declare an XArray operation state. 973ad3d6c72SMatthew Wilcox * @name: Name of this operation state (usually xas). 974ad3d6c72SMatthew Wilcox * @array: Array to operate on. 975ad3d6c72SMatthew Wilcox * @index: Initial index of interest. 976ad3d6c72SMatthew Wilcox * 977ad3d6c72SMatthew Wilcox * Declare and initialise an xa_state on the stack. 978ad3d6c72SMatthew Wilcox */ 979ad3d6c72SMatthew Wilcox #define XA_STATE(name, array, index) \ 980ad3d6c72SMatthew Wilcox struct xa_state name = __XA_STATE(array, index, 0, 0) 981ad3d6c72SMatthew Wilcox 982ad3d6c72SMatthew Wilcox /** 983ad3d6c72SMatthew Wilcox * XA_STATE_ORDER() - Declare an XArray operation state. 984ad3d6c72SMatthew Wilcox * @name: Name of this operation state (usually xas). 985ad3d6c72SMatthew Wilcox * @array: Array to operate on. 986ad3d6c72SMatthew Wilcox * @index: Initial index of interest. 987ad3d6c72SMatthew Wilcox * @order: Order of entry. 988ad3d6c72SMatthew Wilcox * 989ad3d6c72SMatthew Wilcox * Declare and initialise an xa_state on the stack. This variant of 990ad3d6c72SMatthew Wilcox * XA_STATE() allows you to specify the 'order' of the element you 991ad3d6c72SMatthew Wilcox * want to operate on.` 992ad3d6c72SMatthew Wilcox */ 993ad3d6c72SMatthew Wilcox #define XA_STATE_ORDER(name, array, index, order) \ 994ad3d6c72SMatthew Wilcox struct xa_state name = __XA_STATE(array, \ 995ad3d6c72SMatthew Wilcox (index >> order) << order, \ 996ad3d6c72SMatthew Wilcox order - (order % XA_CHUNK_SHIFT), \ 997ad3d6c72SMatthew Wilcox (1U << (order % XA_CHUNK_SHIFT)) - 1) 998ad3d6c72SMatthew Wilcox 999ad3d6c72SMatthew Wilcox #define xas_marked(xas, mark) xa_marked((xas)->xa, (mark)) 1000ad3d6c72SMatthew Wilcox #define xas_trylock(xas) xa_trylock((xas)->xa) 1001ad3d6c72SMatthew Wilcox #define xas_lock(xas) xa_lock((xas)->xa) 1002ad3d6c72SMatthew Wilcox #define xas_unlock(xas) xa_unlock((xas)->xa) 1003ad3d6c72SMatthew Wilcox #define xas_lock_bh(xas) xa_lock_bh((xas)->xa) 1004ad3d6c72SMatthew Wilcox #define xas_unlock_bh(xas) xa_unlock_bh((xas)->xa) 1005ad3d6c72SMatthew Wilcox #define xas_lock_irq(xas) xa_lock_irq((xas)->xa) 1006ad3d6c72SMatthew Wilcox #define xas_unlock_irq(xas) xa_unlock_irq((xas)->xa) 1007ad3d6c72SMatthew Wilcox #define xas_lock_irqsave(xas, flags) \ 1008ad3d6c72SMatthew Wilcox xa_lock_irqsave((xas)->xa, flags) 1009ad3d6c72SMatthew Wilcox #define xas_unlock_irqrestore(xas, flags) \ 1010ad3d6c72SMatthew Wilcox xa_unlock_irqrestore((xas)->xa, flags) 1011ad3d6c72SMatthew Wilcox 1012ad3d6c72SMatthew Wilcox /** 1013ad3d6c72SMatthew Wilcox * xas_error() - Return an errno stored in the xa_state. 1014ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1015ad3d6c72SMatthew Wilcox * 1016ad3d6c72SMatthew Wilcox * Return: 0 if no error has been noted. A negative errno if one has. 1017ad3d6c72SMatthew Wilcox */ 1018ad3d6c72SMatthew Wilcox static inline int xas_error(const struct xa_state *xas) 1019ad3d6c72SMatthew Wilcox { 1020ad3d6c72SMatthew Wilcox return xa_err(xas->xa_node); 1021ad3d6c72SMatthew Wilcox } 1022ad3d6c72SMatthew Wilcox 1023ad3d6c72SMatthew Wilcox /** 1024ad3d6c72SMatthew Wilcox * xas_set_err() - Note an error in the xa_state. 1025ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1026ad3d6c72SMatthew Wilcox * @err: Negative error number. 1027ad3d6c72SMatthew Wilcox * 1028ad3d6c72SMatthew Wilcox * Only call this function with a negative @err; zero or positive errors 1029ad3d6c72SMatthew Wilcox * will probably not behave the way you think they should. If you want 1030ad3d6c72SMatthew Wilcox * to clear the error from an xa_state, use xas_reset(). 1031ad3d6c72SMatthew Wilcox */ 1032ad3d6c72SMatthew Wilcox static inline void xas_set_err(struct xa_state *xas, long err) 1033ad3d6c72SMatthew Wilcox { 1034ad3d6c72SMatthew Wilcox xas->xa_node = XA_ERROR(err); 1035ad3d6c72SMatthew Wilcox } 1036ad3d6c72SMatthew Wilcox 1037ad3d6c72SMatthew Wilcox /** 1038ad3d6c72SMatthew Wilcox * xas_invalid() - Is the xas in a retry or error state? 1039ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1040ad3d6c72SMatthew Wilcox * 1041ad3d6c72SMatthew Wilcox * Return: %true if the xas cannot be used for operations. 1042ad3d6c72SMatthew Wilcox */ 1043ad3d6c72SMatthew Wilcox static inline bool xas_invalid(const struct xa_state *xas) 1044ad3d6c72SMatthew Wilcox { 1045ad3d6c72SMatthew Wilcox return (unsigned long)xas->xa_node & 3; 1046ad3d6c72SMatthew Wilcox } 1047ad3d6c72SMatthew Wilcox 1048ad3d6c72SMatthew Wilcox /** 1049ad3d6c72SMatthew Wilcox * xas_valid() - Is the xas a valid cursor into the array? 1050ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1051ad3d6c72SMatthew Wilcox * 1052ad3d6c72SMatthew Wilcox * Return: %true if the xas can be used for operations. 1053ad3d6c72SMatthew Wilcox */ 1054ad3d6c72SMatthew Wilcox static inline bool xas_valid(const struct xa_state *xas) 1055ad3d6c72SMatthew Wilcox { 1056ad3d6c72SMatthew Wilcox return !xas_invalid(xas); 1057ad3d6c72SMatthew Wilcox } 1058ad3d6c72SMatthew Wilcox 10592264f513SMatthew Wilcox /** 10602264f513SMatthew Wilcox * xas_is_node() - Does the xas point to a node? 10612264f513SMatthew Wilcox * @xas: XArray operation state. 10622264f513SMatthew Wilcox * 10632264f513SMatthew Wilcox * Return: %true if the xas currently references a node. 10642264f513SMatthew Wilcox */ 10652264f513SMatthew Wilcox static inline bool xas_is_node(const struct xa_state *xas) 10662264f513SMatthew Wilcox { 10672264f513SMatthew Wilcox return xas_valid(xas) && xas->xa_node; 10682264f513SMatthew Wilcox } 10692264f513SMatthew Wilcox 10709b89a035SMatthew Wilcox /* True if the pointer is something other than a node */ 10719b89a035SMatthew Wilcox static inline bool xas_not_node(struct xa_node *node) 10729b89a035SMatthew Wilcox { 10739b89a035SMatthew Wilcox return ((unsigned long)node & 3) || !node; 10749b89a035SMatthew Wilcox } 10759b89a035SMatthew Wilcox 107664d3e9a9SMatthew Wilcox /* True if the node represents RESTART or an error */ 107764d3e9a9SMatthew Wilcox static inline bool xas_frozen(struct xa_node *node) 107864d3e9a9SMatthew Wilcox { 107964d3e9a9SMatthew Wilcox return (unsigned long)node & 2; 108064d3e9a9SMatthew Wilcox } 108164d3e9a9SMatthew Wilcox 108258d6ea30SMatthew Wilcox /* True if the node represents head-of-tree, RESTART or BOUNDS */ 108358d6ea30SMatthew Wilcox static inline bool xas_top(struct xa_node *node) 108458d6ea30SMatthew Wilcox { 108558d6ea30SMatthew Wilcox return node <= XAS_RESTART; 108658d6ea30SMatthew Wilcox } 108758d6ea30SMatthew Wilcox 1088ad3d6c72SMatthew Wilcox /** 1089ad3d6c72SMatthew Wilcox * xas_reset() - Reset an XArray operation state. 1090ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1091ad3d6c72SMatthew Wilcox * 1092ad3d6c72SMatthew Wilcox * Resets the error or walk state of the @xas so future walks of the 1093ad3d6c72SMatthew Wilcox * array will start from the root. Use this if you have dropped the 1094ad3d6c72SMatthew Wilcox * xarray lock and want to reuse the xa_state. 1095ad3d6c72SMatthew Wilcox * 1096ad3d6c72SMatthew Wilcox * Context: Any context. 1097ad3d6c72SMatthew Wilcox */ 1098ad3d6c72SMatthew Wilcox static inline void xas_reset(struct xa_state *xas) 1099ad3d6c72SMatthew Wilcox { 1100ad3d6c72SMatthew Wilcox xas->xa_node = XAS_RESTART; 1101ad3d6c72SMatthew Wilcox } 1102ad3d6c72SMatthew Wilcox 1103ad3d6c72SMatthew Wilcox /** 1104ad3d6c72SMatthew Wilcox * xas_retry() - Retry the operation if appropriate. 1105ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1106ad3d6c72SMatthew Wilcox * @entry: Entry from xarray. 1107ad3d6c72SMatthew Wilcox * 1108ad3d6c72SMatthew Wilcox * The advanced functions may sometimes return an internal entry, such as 1109ad3d6c72SMatthew Wilcox * a retry entry or a zero entry. This function sets up the @xas to restart 1110ad3d6c72SMatthew Wilcox * the walk from the head of the array if needed. 1111ad3d6c72SMatthew Wilcox * 1112ad3d6c72SMatthew Wilcox * Context: Any context. 1113ad3d6c72SMatthew Wilcox * Return: true if the operation needs to be retried. 1114ad3d6c72SMatthew Wilcox */ 1115ad3d6c72SMatthew Wilcox static inline bool xas_retry(struct xa_state *xas, const void *entry) 1116ad3d6c72SMatthew Wilcox { 11179f14d4f1SMatthew Wilcox if (xa_is_zero(entry)) 11189f14d4f1SMatthew Wilcox return true; 1119ad3d6c72SMatthew Wilcox if (!xa_is_retry(entry)) 1120ad3d6c72SMatthew Wilcox return false; 1121ad3d6c72SMatthew Wilcox xas_reset(xas); 1122ad3d6c72SMatthew Wilcox return true; 1123ad3d6c72SMatthew Wilcox } 1124ad3d6c72SMatthew Wilcox 1125ad3d6c72SMatthew Wilcox void *xas_load(struct xa_state *); 112658d6ea30SMatthew Wilcox void *xas_store(struct xa_state *, void *entry); 1127b803b428SMatthew Wilcox void *xas_find(struct xa_state *, unsigned long max); 11284e99d4e9SMatthew Wilcox void *xas_find_conflict(struct xa_state *); 1129ad3d6c72SMatthew Wilcox 11309b89a035SMatthew Wilcox bool xas_get_mark(const struct xa_state *, xa_mark_t); 11319b89a035SMatthew Wilcox void xas_set_mark(const struct xa_state *, xa_mark_t); 11329b89a035SMatthew Wilcox void xas_clear_mark(const struct xa_state *, xa_mark_t); 1133b803b428SMatthew Wilcox void *xas_find_marked(struct xa_state *, unsigned long max, xa_mark_t); 113458d6ea30SMatthew Wilcox void xas_init_marks(const struct xa_state *); 113558d6ea30SMatthew Wilcox 113658d6ea30SMatthew Wilcox bool xas_nomem(struct xa_state *, gfp_t); 1137b803b428SMatthew Wilcox void xas_pause(struct xa_state *); 11389b89a035SMatthew Wilcox 11392264f513SMatthew Wilcox void xas_create_range(struct xa_state *); 11402264f513SMatthew Wilcox 1141ad3d6c72SMatthew Wilcox /** 1142ad3d6c72SMatthew Wilcox * xas_reload() - Refetch an entry from the xarray. 1143ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 1144ad3d6c72SMatthew Wilcox * 1145ad3d6c72SMatthew Wilcox * Use this function to check that a previously loaded entry still has 1146ad3d6c72SMatthew Wilcox * the same value. This is useful for the lockless pagecache lookup where 1147ad3d6c72SMatthew Wilcox * we walk the array with only the RCU lock to protect us, lock the page, 1148ad3d6c72SMatthew Wilcox * then check that the page hasn't moved since we looked it up. 1149ad3d6c72SMatthew Wilcox * 1150ad3d6c72SMatthew Wilcox * The caller guarantees that @xas is still valid. If it may be in an 1151ad3d6c72SMatthew Wilcox * error or restart state, call xas_load() instead. 1152ad3d6c72SMatthew Wilcox * 1153ad3d6c72SMatthew Wilcox * Return: The entry at this location in the xarray. 1154ad3d6c72SMatthew Wilcox */ 1155ad3d6c72SMatthew Wilcox static inline void *xas_reload(struct xa_state *xas) 1156ad3d6c72SMatthew Wilcox { 1157ad3d6c72SMatthew Wilcox struct xa_node *node = xas->xa_node; 1158ad3d6c72SMatthew Wilcox 1159ad3d6c72SMatthew Wilcox if (node) 1160ad3d6c72SMatthew Wilcox return xa_entry(xas->xa, node, xas->xa_offset); 1161ad3d6c72SMatthew Wilcox return xa_head(xas->xa); 1162ad3d6c72SMatthew Wilcox } 1163ad3d6c72SMatthew Wilcox 116458d6ea30SMatthew Wilcox /** 116558d6ea30SMatthew Wilcox * xas_set() - Set up XArray operation state for a different index. 116658d6ea30SMatthew Wilcox * @xas: XArray operation state. 116758d6ea30SMatthew Wilcox * @index: New index into the XArray. 116858d6ea30SMatthew Wilcox * 116958d6ea30SMatthew Wilcox * Move the operation state to refer to a different index. This will 117058d6ea30SMatthew Wilcox * have the effect of starting a walk from the top; see xas_next() 117158d6ea30SMatthew Wilcox * to move to an adjacent index. 117258d6ea30SMatthew Wilcox */ 117358d6ea30SMatthew Wilcox static inline void xas_set(struct xa_state *xas, unsigned long index) 117458d6ea30SMatthew Wilcox { 117558d6ea30SMatthew Wilcox xas->xa_index = index; 117658d6ea30SMatthew Wilcox xas->xa_node = XAS_RESTART; 117758d6ea30SMatthew Wilcox } 117858d6ea30SMatthew Wilcox 117958d6ea30SMatthew Wilcox /** 118058d6ea30SMatthew Wilcox * xas_set_order() - Set up XArray operation state for a multislot entry. 118158d6ea30SMatthew Wilcox * @xas: XArray operation state. 118258d6ea30SMatthew Wilcox * @index: Target of the operation. 118358d6ea30SMatthew Wilcox * @order: Entry occupies 2^@order indices. 118458d6ea30SMatthew Wilcox */ 118558d6ea30SMatthew Wilcox static inline void xas_set_order(struct xa_state *xas, unsigned long index, 118658d6ea30SMatthew Wilcox unsigned int order) 118758d6ea30SMatthew Wilcox { 118858d6ea30SMatthew Wilcox #ifdef CONFIG_XARRAY_MULTI 118958d6ea30SMatthew Wilcox xas->xa_index = order < BITS_PER_LONG ? (index >> order) << order : 0; 119058d6ea30SMatthew Wilcox xas->xa_shift = order - (order % XA_CHUNK_SHIFT); 119158d6ea30SMatthew Wilcox xas->xa_sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1; 119258d6ea30SMatthew Wilcox xas->xa_node = XAS_RESTART; 119358d6ea30SMatthew Wilcox #else 119458d6ea30SMatthew Wilcox BUG_ON(order > 0); 119558d6ea30SMatthew Wilcox xas_set(xas, index); 119658d6ea30SMatthew Wilcox #endif 119758d6ea30SMatthew Wilcox } 119858d6ea30SMatthew Wilcox 119958d6ea30SMatthew Wilcox /** 120058d6ea30SMatthew Wilcox * xas_set_update() - Set up XArray operation state for a callback. 120158d6ea30SMatthew Wilcox * @xas: XArray operation state. 120258d6ea30SMatthew Wilcox * @update: Function to call when updating a node. 120358d6ea30SMatthew Wilcox * 120458d6ea30SMatthew Wilcox * The XArray can notify a caller after it has updated an xa_node. 120558d6ea30SMatthew Wilcox * This is advanced functionality and is only needed by the page cache. 120658d6ea30SMatthew Wilcox */ 120758d6ea30SMatthew Wilcox static inline void xas_set_update(struct xa_state *xas, xa_update_node_t update) 120858d6ea30SMatthew Wilcox { 120958d6ea30SMatthew Wilcox xas->xa_update = update; 121058d6ea30SMatthew Wilcox } 121158d6ea30SMatthew Wilcox 1212b803b428SMatthew Wilcox /** 1213b803b428SMatthew Wilcox * xas_next_entry() - Advance iterator to next present entry. 1214b803b428SMatthew Wilcox * @xas: XArray operation state. 1215b803b428SMatthew Wilcox * @max: Highest index to return. 1216b803b428SMatthew Wilcox * 1217b803b428SMatthew Wilcox * xas_next_entry() is an inline function to optimise xarray traversal for 1218b803b428SMatthew Wilcox * speed. It is equivalent to calling xas_find(), and will call xas_find() 1219b803b428SMatthew Wilcox * for all the hard cases. 1220b803b428SMatthew Wilcox * 1221b803b428SMatthew Wilcox * Return: The next present entry after the one currently referred to by @xas. 1222b803b428SMatthew Wilcox */ 1223b803b428SMatthew Wilcox static inline void *xas_next_entry(struct xa_state *xas, unsigned long max) 1224b803b428SMatthew Wilcox { 1225b803b428SMatthew Wilcox struct xa_node *node = xas->xa_node; 1226b803b428SMatthew Wilcox void *entry; 1227b803b428SMatthew Wilcox 1228b803b428SMatthew Wilcox if (unlikely(xas_not_node(node) || node->shift || 1229b803b428SMatthew Wilcox xas->xa_offset != (xas->xa_index & XA_CHUNK_MASK))) 1230b803b428SMatthew Wilcox return xas_find(xas, max); 1231b803b428SMatthew Wilcox 1232b803b428SMatthew Wilcox do { 1233b803b428SMatthew Wilcox if (unlikely(xas->xa_index >= max)) 1234b803b428SMatthew Wilcox return xas_find(xas, max); 1235b803b428SMatthew Wilcox if (unlikely(xas->xa_offset == XA_CHUNK_MASK)) 1236b803b428SMatthew Wilcox return xas_find(xas, max); 1237b803b428SMatthew Wilcox entry = xa_entry(xas->xa, node, xas->xa_offset + 1); 1238b803b428SMatthew Wilcox if (unlikely(xa_is_internal(entry))) 1239b803b428SMatthew Wilcox return xas_find(xas, max); 1240b803b428SMatthew Wilcox xas->xa_offset++; 1241b803b428SMatthew Wilcox xas->xa_index++; 1242b803b428SMatthew Wilcox } while (!entry); 1243b803b428SMatthew Wilcox 1244b803b428SMatthew Wilcox return entry; 1245b803b428SMatthew Wilcox } 1246b803b428SMatthew Wilcox 1247b803b428SMatthew Wilcox /* Private */ 1248b803b428SMatthew Wilcox static inline unsigned int xas_find_chunk(struct xa_state *xas, bool advance, 1249b803b428SMatthew Wilcox xa_mark_t mark) 1250b803b428SMatthew Wilcox { 1251b803b428SMatthew Wilcox unsigned long *addr = xas->xa_node->marks[(__force unsigned)mark]; 1252b803b428SMatthew Wilcox unsigned int offset = xas->xa_offset; 1253b803b428SMatthew Wilcox 1254b803b428SMatthew Wilcox if (advance) 1255b803b428SMatthew Wilcox offset++; 1256b803b428SMatthew Wilcox if (XA_CHUNK_SIZE == BITS_PER_LONG) { 1257b803b428SMatthew Wilcox if (offset < XA_CHUNK_SIZE) { 1258b803b428SMatthew Wilcox unsigned long data = *addr & (~0UL << offset); 1259b803b428SMatthew Wilcox if (data) 1260b803b428SMatthew Wilcox return __ffs(data); 1261b803b428SMatthew Wilcox } 1262b803b428SMatthew Wilcox return XA_CHUNK_SIZE; 1263b803b428SMatthew Wilcox } 1264b803b428SMatthew Wilcox 1265b803b428SMatthew Wilcox return find_next_bit(addr, XA_CHUNK_SIZE, offset); 1266b803b428SMatthew Wilcox } 1267b803b428SMatthew Wilcox 1268b803b428SMatthew Wilcox /** 1269b803b428SMatthew Wilcox * xas_next_marked() - Advance iterator to next marked entry. 1270b803b428SMatthew Wilcox * @xas: XArray operation state. 1271b803b428SMatthew Wilcox * @max: Highest index to return. 1272b803b428SMatthew Wilcox * @mark: Mark to search for. 1273b803b428SMatthew Wilcox * 1274b803b428SMatthew Wilcox * xas_next_marked() is an inline function to optimise xarray traversal for 1275b803b428SMatthew Wilcox * speed. It is equivalent to calling xas_find_marked(), and will call 1276b803b428SMatthew Wilcox * xas_find_marked() for all the hard cases. 1277b803b428SMatthew Wilcox * 1278b803b428SMatthew Wilcox * Return: The next marked entry after the one currently referred to by @xas. 1279b803b428SMatthew Wilcox */ 1280b803b428SMatthew Wilcox static inline void *xas_next_marked(struct xa_state *xas, unsigned long max, 1281b803b428SMatthew Wilcox xa_mark_t mark) 1282b803b428SMatthew Wilcox { 1283b803b428SMatthew Wilcox struct xa_node *node = xas->xa_node; 1284b803b428SMatthew Wilcox unsigned int offset; 1285b803b428SMatthew Wilcox 1286b803b428SMatthew Wilcox if (unlikely(xas_not_node(node) || node->shift)) 1287b803b428SMatthew Wilcox return xas_find_marked(xas, max, mark); 1288b803b428SMatthew Wilcox offset = xas_find_chunk(xas, true, mark); 1289b803b428SMatthew Wilcox xas->xa_offset = offset; 1290b803b428SMatthew Wilcox xas->xa_index = (xas->xa_index & ~XA_CHUNK_MASK) + offset; 1291b803b428SMatthew Wilcox if (xas->xa_index > max) 1292b803b428SMatthew Wilcox return NULL; 1293b803b428SMatthew Wilcox if (offset == XA_CHUNK_SIZE) 1294b803b428SMatthew Wilcox return xas_find_marked(xas, max, mark); 1295b803b428SMatthew Wilcox return xa_entry(xas->xa, node, offset); 1296b803b428SMatthew Wilcox } 1297b803b428SMatthew Wilcox 1298b803b428SMatthew Wilcox /* 1299b803b428SMatthew Wilcox * If iterating while holding a lock, drop the lock and reschedule 1300b803b428SMatthew Wilcox * every %XA_CHECK_SCHED loops. 1301b803b428SMatthew Wilcox */ 1302b803b428SMatthew Wilcox enum { 1303b803b428SMatthew Wilcox XA_CHECK_SCHED = 4096, 1304b803b428SMatthew Wilcox }; 1305b803b428SMatthew Wilcox 1306b803b428SMatthew Wilcox /** 1307b803b428SMatthew Wilcox * xas_for_each() - Iterate over a range of an XArray. 1308b803b428SMatthew Wilcox * @xas: XArray operation state. 1309b803b428SMatthew Wilcox * @entry: Entry retrieved from the array. 1310b803b428SMatthew Wilcox * @max: Maximum index to retrieve from array. 1311b803b428SMatthew Wilcox * 1312b803b428SMatthew Wilcox * The loop body will be executed for each entry present in the xarray 1313b803b428SMatthew Wilcox * between the current xas position and @max. @entry will be set to 1314b803b428SMatthew Wilcox * the entry retrieved from the xarray. It is safe to delete entries 1315b803b428SMatthew Wilcox * from the array in the loop body. You should hold either the RCU lock 1316b803b428SMatthew Wilcox * or the xa_lock while iterating. If you need to drop the lock, call 1317b803b428SMatthew Wilcox * xas_pause() first. 1318b803b428SMatthew Wilcox */ 1319b803b428SMatthew Wilcox #define xas_for_each(xas, entry, max) \ 1320b803b428SMatthew Wilcox for (entry = xas_find(xas, max); entry; \ 1321b803b428SMatthew Wilcox entry = xas_next_entry(xas, max)) 1322b803b428SMatthew Wilcox 1323b803b428SMatthew Wilcox /** 1324b803b428SMatthew Wilcox * xas_for_each_marked() - Iterate over a range of an XArray. 1325b803b428SMatthew Wilcox * @xas: XArray operation state. 1326b803b428SMatthew Wilcox * @entry: Entry retrieved from the array. 1327b803b428SMatthew Wilcox * @max: Maximum index to retrieve from array. 1328b803b428SMatthew Wilcox * @mark: Mark to search for. 1329b803b428SMatthew Wilcox * 1330b803b428SMatthew Wilcox * The loop body will be executed for each marked entry in the xarray 1331b803b428SMatthew Wilcox * between the current xas position and @max. @entry will be set to 1332b803b428SMatthew Wilcox * the entry retrieved from the xarray. It is safe to delete entries 1333b803b428SMatthew Wilcox * from the array in the loop body. You should hold either the RCU lock 1334b803b428SMatthew Wilcox * or the xa_lock while iterating. If you need to drop the lock, call 1335b803b428SMatthew Wilcox * xas_pause() first. 1336b803b428SMatthew Wilcox */ 1337b803b428SMatthew Wilcox #define xas_for_each_marked(xas, entry, max, mark) \ 1338b803b428SMatthew Wilcox for (entry = xas_find_marked(xas, max, mark); entry; \ 1339b803b428SMatthew Wilcox entry = xas_next_marked(xas, max, mark)) 1340b803b428SMatthew Wilcox 13414e99d4e9SMatthew Wilcox /** 13424e99d4e9SMatthew Wilcox * xas_for_each_conflict() - Iterate over a range of an XArray. 13434e99d4e9SMatthew Wilcox * @xas: XArray operation state. 13444e99d4e9SMatthew Wilcox * @entry: Entry retrieved from the array. 13454e99d4e9SMatthew Wilcox * 13464e99d4e9SMatthew Wilcox * The loop body will be executed for each entry in the XArray that lies 13474e99d4e9SMatthew Wilcox * within the range specified by @xas. If the loop completes successfully, 13484e99d4e9SMatthew Wilcox * any entries that lie in this range will be replaced by @entry. The caller 13494e99d4e9SMatthew Wilcox * may break out of the loop; if they do so, the contents of the XArray will 13504e99d4e9SMatthew Wilcox * be unchanged. The operation may fail due to an out of memory condition. 13514e99d4e9SMatthew Wilcox * The caller may also call xa_set_err() to exit the loop while setting an 13524e99d4e9SMatthew Wilcox * error to record the reason. 13534e99d4e9SMatthew Wilcox */ 13544e99d4e9SMatthew Wilcox #define xas_for_each_conflict(xas, entry) \ 13554e99d4e9SMatthew Wilcox while ((entry = xas_find_conflict(xas))) 13564e99d4e9SMatthew Wilcox 135764d3e9a9SMatthew Wilcox void *__xas_next(struct xa_state *); 135864d3e9a9SMatthew Wilcox void *__xas_prev(struct xa_state *); 135964d3e9a9SMatthew Wilcox 136064d3e9a9SMatthew Wilcox /** 136164d3e9a9SMatthew Wilcox * xas_prev() - Move iterator to previous index. 136264d3e9a9SMatthew Wilcox * @xas: XArray operation state. 136364d3e9a9SMatthew Wilcox * 136464d3e9a9SMatthew Wilcox * If the @xas was in an error state, it will remain in an error state 136564d3e9a9SMatthew Wilcox * and this function will return %NULL. If the @xas has never been walked, 136664d3e9a9SMatthew Wilcox * it will have the effect of calling xas_load(). Otherwise one will be 136764d3e9a9SMatthew Wilcox * subtracted from the index and the state will be walked to the correct 136864d3e9a9SMatthew Wilcox * location in the array for the next operation. 136964d3e9a9SMatthew Wilcox * 137064d3e9a9SMatthew Wilcox * If the iterator was referencing index 0, this function wraps 137164d3e9a9SMatthew Wilcox * around to %ULONG_MAX. 137264d3e9a9SMatthew Wilcox * 137364d3e9a9SMatthew Wilcox * Return: The entry at the new index. This may be %NULL or an internal 137464d3e9a9SMatthew Wilcox * entry. 137564d3e9a9SMatthew Wilcox */ 137664d3e9a9SMatthew Wilcox static inline void *xas_prev(struct xa_state *xas) 137764d3e9a9SMatthew Wilcox { 137864d3e9a9SMatthew Wilcox struct xa_node *node = xas->xa_node; 137964d3e9a9SMatthew Wilcox 138064d3e9a9SMatthew Wilcox if (unlikely(xas_not_node(node) || node->shift || 138164d3e9a9SMatthew Wilcox xas->xa_offset == 0)) 138264d3e9a9SMatthew Wilcox return __xas_prev(xas); 138364d3e9a9SMatthew Wilcox 138464d3e9a9SMatthew Wilcox xas->xa_index--; 138564d3e9a9SMatthew Wilcox xas->xa_offset--; 138664d3e9a9SMatthew Wilcox return xa_entry(xas->xa, node, xas->xa_offset); 138764d3e9a9SMatthew Wilcox } 138864d3e9a9SMatthew Wilcox 138964d3e9a9SMatthew Wilcox /** 139064d3e9a9SMatthew Wilcox * xas_next() - Move state to next index. 139164d3e9a9SMatthew Wilcox * @xas: XArray operation state. 139264d3e9a9SMatthew Wilcox * 139364d3e9a9SMatthew Wilcox * If the @xas was in an error state, it will remain in an error state 139464d3e9a9SMatthew Wilcox * and this function will return %NULL. If the @xas has never been walked, 139564d3e9a9SMatthew Wilcox * it will have the effect of calling xas_load(). Otherwise one will be 139664d3e9a9SMatthew Wilcox * added to the index and the state will be walked to the correct 139764d3e9a9SMatthew Wilcox * location in the array for the next operation. 139864d3e9a9SMatthew Wilcox * 139964d3e9a9SMatthew Wilcox * If the iterator was referencing index %ULONG_MAX, this function wraps 140064d3e9a9SMatthew Wilcox * around to 0. 140164d3e9a9SMatthew Wilcox * 140264d3e9a9SMatthew Wilcox * Return: The entry at the new index. This may be %NULL or an internal 140364d3e9a9SMatthew Wilcox * entry. 140464d3e9a9SMatthew Wilcox */ 140564d3e9a9SMatthew Wilcox static inline void *xas_next(struct xa_state *xas) 140664d3e9a9SMatthew Wilcox { 140764d3e9a9SMatthew Wilcox struct xa_node *node = xas->xa_node; 140864d3e9a9SMatthew Wilcox 140964d3e9a9SMatthew Wilcox if (unlikely(xas_not_node(node) || node->shift || 141064d3e9a9SMatthew Wilcox xas->xa_offset == XA_CHUNK_MASK)) 141164d3e9a9SMatthew Wilcox return __xas_next(xas); 141264d3e9a9SMatthew Wilcox 141364d3e9a9SMatthew Wilcox xas->xa_index++; 141464d3e9a9SMatthew Wilcox xas->xa_offset++; 141564d3e9a9SMatthew Wilcox return xa_entry(xas->xa, node, xas->xa_offset); 141664d3e9a9SMatthew Wilcox } 141764d3e9a9SMatthew Wilcox 1418f6bb2a2cSMatthew Wilcox #endif /* _LINUX_XARRAY_H */ 1419