1f6bb2a2cSMatthew Wilcox /* SPDX-License-Identifier: GPL-2.0+ */ 2f6bb2a2cSMatthew Wilcox #ifndef _LINUX_XARRAY_H 3f6bb2a2cSMatthew Wilcox #define _LINUX_XARRAY_H 4f6bb2a2cSMatthew Wilcox /* 5f6bb2a2cSMatthew Wilcox * eXtensible Arrays 6f6bb2a2cSMatthew Wilcox * Copyright (c) 2017 Microsoft Corporation 73d0186bbSMatthew Wilcox * Author: Matthew Wilcox <[email protected]> 83159f943SMatthew Wilcox * 93159f943SMatthew Wilcox * See Documentation/core-api/xarray.rst for how to use the XArray. 10f6bb2a2cSMatthew Wilcox */ 11f6bb2a2cSMatthew Wilcox 123159f943SMatthew Wilcox #include <linux/bug.h> 13f8d5d0ccSMatthew Wilcox #include <linux/compiler.h> 149b89a035SMatthew Wilcox #include <linux/gfp.h> 15f8d5d0ccSMatthew Wilcox #include <linux/kconfig.h> 16ad3d6c72SMatthew Wilcox #include <linux/kernel.h> 17ad3d6c72SMatthew Wilcox #include <linux/rcupdate.h> 18f6bb2a2cSMatthew Wilcox #include <linux/spinlock.h> 193159f943SMatthew Wilcox #include <linux/types.h> 203159f943SMatthew Wilcox 213159f943SMatthew Wilcox /* 223159f943SMatthew Wilcox * The bottom two bits of the entry determine how the XArray interprets 233159f943SMatthew Wilcox * the contents: 243159f943SMatthew Wilcox * 253159f943SMatthew Wilcox * 00: Pointer entry 263159f943SMatthew Wilcox * 10: Internal entry 273159f943SMatthew Wilcox * x1: Value entry or tagged pointer 283159f943SMatthew Wilcox * 293159f943SMatthew Wilcox * Attempting to store internal entries in the XArray is a bug. 3002c02bf1SMatthew Wilcox * 3102c02bf1SMatthew Wilcox * Most internal entries are pointers to the next node in the tree. 3202c02bf1SMatthew Wilcox * The following internal entries have a special meaning: 3302c02bf1SMatthew Wilcox * 3402c02bf1SMatthew Wilcox * 0-62: Sibling entries 3502c02bf1SMatthew Wilcox * 256: Retry entry 36ad3d6c72SMatthew Wilcox * 37ad3d6c72SMatthew Wilcox * Errors are also represented as internal entries, but use the negative 38ad3d6c72SMatthew Wilcox * space (-4094 to -2). They're never stored in the slots array; only 39ad3d6c72SMatthew Wilcox * returned by the normal API. 403159f943SMatthew Wilcox */ 413159f943SMatthew Wilcox 423159f943SMatthew Wilcox #define BITS_PER_XA_VALUE (BITS_PER_LONG - 1) 433159f943SMatthew Wilcox 443159f943SMatthew Wilcox /** 453159f943SMatthew Wilcox * xa_mk_value() - Create an XArray entry from an integer. 463159f943SMatthew Wilcox * @v: Value to store in XArray. 473159f943SMatthew Wilcox * 483159f943SMatthew Wilcox * Context: Any context. 493159f943SMatthew Wilcox * Return: An entry suitable for storing in the XArray. 503159f943SMatthew Wilcox */ 513159f943SMatthew Wilcox static inline void *xa_mk_value(unsigned long v) 523159f943SMatthew Wilcox { 533159f943SMatthew Wilcox WARN_ON((long)v < 0); 543159f943SMatthew Wilcox return (void *)((v << 1) | 1); 553159f943SMatthew Wilcox } 563159f943SMatthew Wilcox 573159f943SMatthew Wilcox /** 583159f943SMatthew Wilcox * xa_to_value() - Get value stored in an XArray entry. 593159f943SMatthew Wilcox * @entry: XArray entry. 603159f943SMatthew Wilcox * 613159f943SMatthew Wilcox * Context: Any context. 623159f943SMatthew Wilcox * Return: The value stored in the XArray entry. 633159f943SMatthew Wilcox */ 643159f943SMatthew Wilcox static inline unsigned long xa_to_value(const void *entry) 653159f943SMatthew Wilcox { 663159f943SMatthew Wilcox return (unsigned long)entry >> 1; 673159f943SMatthew Wilcox } 683159f943SMatthew Wilcox 693159f943SMatthew Wilcox /** 703159f943SMatthew Wilcox * xa_is_value() - Determine if an entry is a value. 713159f943SMatthew Wilcox * @entry: XArray entry. 723159f943SMatthew Wilcox * 733159f943SMatthew Wilcox * Context: Any context. 743159f943SMatthew Wilcox * Return: True if the entry is a value, false if it is a pointer. 753159f943SMatthew Wilcox */ 763159f943SMatthew Wilcox static inline bool xa_is_value(const void *entry) 773159f943SMatthew Wilcox { 783159f943SMatthew Wilcox return (unsigned long)entry & 1; 793159f943SMatthew Wilcox } 803159f943SMatthew Wilcox 813159f943SMatthew Wilcox /** 823159f943SMatthew Wilcox * xa_tag_pointer() - Create an XArray entry for a tagged pointer. 833159f943SMatthew Wilcox * @p: Plain pointer. 843159f943SMatthew Wilcox * @tag: Tag value (0, 1 or 3). 853159f943SMatthew Wilcox * 863159f943SMatthew Wilcox * If the user of the XArray prefers, they can tag their pointers instead 873159f943SMatthew Wilcox * of storing value entries. Three tags are available (0, 1 and 3). 883159f943SMatthew Wilcox * These are distinct from the xa_mark_t as they are not replicated up 893159f943SMatthew Wilcox * through the array and cannot be searched for. 903159f943SMatthew Wilcox * 913159f943SMatthew Wilcox * Context: Any context. 923159f943SMatthew Wilcox * Return: An XArray entry. 933159f943SMatthew Wilcox */ 943159f943SMatthew Wilcox static inline void *xa_tag_pointer(void *p, unsigned long tag) 953159f943SMatthew Wilcox { 963159f943SMatthew Wilcox return (void *)((unsigned long)p | tag); 973159f943SMatthew Wilcox } 983159f943SMatthew Wilcox 993159f943SMatthew Wilcox /** 1003159f943SMatthew Wilcox * xa_untag_pointer() - Turn an XArray entry into a plain pointer. 1013159f943SMatthew Wilcox * @entry: XArray entry. 1023159f943SMatthew Wilcox * 1033159f943SMatthew Wilcox * If you have stored a tagged pointer in the XArray, call this function 1043159f943SMatthew Wilcox * to get the untagged version of the pointer. 1053159f943SMatthew Wilcox * 1063159f943SMatthew Wilcox * Context: Any context. 1073159f943SMatthew Wilcox * Return: A pointer. 1083159f943SMatthew Wilcox */ 1093159f943SMatthew Wilcox static inline void *xa_untag_pointer(void *entry) 1103159f943SMatthew Wilcox { 1113159f943SMatthew Wilcox return (void *)((unsigned long)entry & ~3UL); 1123159f943SMatthew Wilcox } 1133159f943SMatthew Wilcox 1143159f943SMatthew Wilcox /** 1153159f943SMatthew Wilcox * xa_pointer_tag() - Get the tag stored in an XArray entry. 1163159f943SMatthew Wilcox * @entry: XArray entry. 1173159f943SMatthew Wilcox * 1183159f943SMatthew Wilcox * If you have stored a tagged pointer in the XArray, call this function 1193159f943SMatthew Wilcox * to get the tag of that pointer. 1203159f943SMatthew Wilcox * 1213159f943SMatthew Wilcox * Context: Any context. 1223159f943SMatthew Wilcox * Return: A tag. 1233159f943SMatthew Wilcox */ 1243159f943SMatthew Wilcox static inline unsigned int xa_pointer_tag(void *entry) 1253159f943SMatthew Wilcox { 1263159f943SMatthew Wilcox return (unsigned long)entry & 3UL; 1273159f943SMatthew Wilcox } 128f6bb2a2cSMatthew Wilcox 12902c02bf1SMatthew Wilcox /* 13002c02bf1SMatthew Wilcox * xa_mk_internal() - Create an internal entry. 13102c02bf1SMatthew Wilcox * @v: Value to turn into an internal entry. 13202c02bf1SMatthew Wilcox * 13302c02bf1SMatthew Wilcox * Context: Any context. 13402c02bf1SMatthew Wilcox * Return: An XArray internal entry corresponding to this value. 13502c02bf1SMatthew Wilcox */ 13602c02bf1SMatthew Wilcox static inline void *xa_mk_internal(unsigned long v) 13702c02bf1SMatthew Wilcox { 13802c02bf1SMatthew Wilcox return (void *)((v << 2) | 2); 13902c02bf1SMatthew Wilcox } 14002c02bf1SMatthew Wilcox 14102c02bf1SMatthew Wilcox /* 14202c02bf1SMatthew Wilcox * xa_to_internal() - Extract the value from an internal entry. 14302c02bf1SMatthew Wilcox * @entry: XArray entry. 14402c02bf1SMatthew Wilcox * 14502c02bf1SMatthew Wilcox * Context: Any context. 14602c02bf1SMatthew Wilcox * Return: The value which was stored in the internal entry. 14702c02bf1SMatthew Wilcox */ 14802c02bf1SMatthew Wilcox static inline unsigned long xa_to_internal(const void *entry) 14902c02bf1SMatthew Wilcox { 15002c02bf1SMatthew Wilcox return (unsigned long)entry >> 2; 15102c02bf1SMatthew Wilcox } 15202c02bf1SMatthew Wilcox 15302c02bf1SMatthew Wilcox /* 15402c02bf1SMatthew Wilcox * xa_is_internal() - Is the entry an internal entry? 15502c02bf1SMatthew Wilcox * @entry: XArray entry. 15602c02bf1SMatthew Wilcox * 15702c02bf1SMatthew Wilcox * Context: Any context. 15802c02bf1SMatthew Wilcox * Return: %true if the entry is an internal entry. 15902c02bf1SMatthew Wilcox */ 16002c02bf1SMatthew Wilcox static inline bool xa_is_internal(const void *entry) 16102c02bf1SMatthew Wilcox { 16202c02bf1SMatthew Wilcox return ((unsigned long)entry & 3) == 2; 16302c02bf1SMatthew Wilcox } 16402c02bf1SMatthew Wilcox 165f8d5d0ccSMatthew Wilcox /** 166ad3d6c72SMatthew Wilcox * xa_is_err() - Report whether an XArray operation returned an error 167ad3d6c72SMatthew Wilcox * @entry: Result from calling an XArray function 168ad3d6c72SMatthew Wilcox * 169ad3d6c72SMatthew Wilcox * If an XArray operation cannot complete an operation, it will return 170ad3d6c72SMatthew Wilcox * a special value indicating an error. This function tells you 171ad3d6c72SMatthew Wilcox * whether an error occurred; xa_err() tells you which error occurred. 172ad3d6c72SMatthew Wilcox * 173ad3d6c72SMatthew Wilcox * Context: Any context. 174ad3d6c72SMatthew Wilcox * Return: %true if the entry indicates an error. 175ad3d6c72SMatthew Wilcox */ 176ad3d6c72SMatthew Wilcox static inline bool xa_is_err(const void *entry) 177ad3d6c72SMatthew Wilcox { 178ad3d6c72SMatthew Wilcox return unlikely(xa_is_internal(entry)); 179ad3d6c72SMatthew Wilcox } 180ad3d6c72SMatthew Wilcox 181ad3d6c72SMatthew Wilcox /** 182ad3d6c72SMatthew Wilcox * xa_err() - Turn an XArray result into an errno. 183ad3d6c72SMatthew Wilcox * @entry: Result from calling an XArray function. 184ad3d6c72SMatthew Wilcox * 185ad3d6c72SMatthew Wilcox * If an XArray operation cannot complete an operation, it will return 186ad3d6c72SMatthew Wilcox * a special pointer value which encodes an errno. This function extracts 187ad3d6c72SMatthew Wilcox * the errno from the pointer value, or returns 0 if the pointer does not 188ad3d6c72SMatthew Wilcox * represent an errno. 189ad3d6c72SMatthew Wilcox * 190ad3d6c72SMatthew Wilcox * Context: Any context. 191ad3d6c72SMatthew Wilcox * Return: A negative errno or 0. 192ad3d6c72SMatthew Wilcox */ 193ad3d6c72SMatthew Wilcox static inline int xa_err(void *entry) 194ad3d6c72SMatthew Wilcox { 195ad3d6c72SMatthew Wilcox /* xa_to_internal() would not do sign extension. */ 196ad3d6c72SMatthew Wilcox if (xa_is_err(entry)) 197ad3d6c72SMatthew Wilcox return (long)entry >> 2; 198ad3d6c72SMatthew Wilcox return 0; 199ad3d6c72SMatthew Wilcox } 200ad3d6c72SMatthew Wilcox 2019b89a035SMatthew Wilcox typedef unsigned __bitwise xa_mark_t; 2029b89a035SMatthew Wilcox #define XA_MARK_0 ((__force xa_mark_t)0U) 2039b89a035SMatthew Wilcox #define XA_MARK_1 ((__force xa_mark_t)1U) 2049b89a035SMatthew Wilcox #define XA_MARK_2 ((__force xa_mark_t)2U) 2059b89a035SMatthew Wilcox #define XA_PRESENT ((__force xa_mark_t)8U) 2069b89a035SMatthew Wilcox #define XA_MARK_MAX XA_MARK_2 2079b89a035SMatthew Wilcox 208*58d6ea30SMatthew Wilcox enum xa_lock_type { 209*58d6ea30SMatthew Wilcox XA_LOCK_IRQ = 1, 210*58d6ea30SMatthew Wilcox XA_LOCK_BH = 2, 211*58d6ea30SMatthew Wilcox }; 212*58d6ea30SMatthew Wilcox 2139b89a035SMatthew Wilcox /* 2149b89a035SMatthew Wilcox * Values for xa_flags. The radix tree stores its GFP flags in the xa_flags, 2159b89a035SMatthew Wilcox * and we remain compatible with that. 2169b89a035SMatthew Wilcox */ 217*58d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_IRQ ((__force gfp_t)XA_LOCK_IRQ) 218*58d6ea30SMatthew Wilcox #define XA_FLAGS_LOCK_BH ((__force gfp_t)XA_LOCK_BH) 2199b89a035SMatthew Wilcox #define XA_FLAGS_MARK(mark) ((__force gfp_t)((1U << __GFP_BITS_SHIFT) << \ 2209b89a035SMatthew Wilcox (__force unsigned)(mark))) 2219b89a035SMatthew Wilcox 222ad3d6c72SMatthew Wilcox /** 223f8d5d0ccSMatthew Wilcox * struct xarray - The anchor of the XArray. 224f8d5d0ccSMatthew Wilcox * @xa_lock: Lock that protects the contents of the XArray. 225f8d5d0ccSMatthew Wilcox * 226f8d5d0ccSMatthew Wilcox * To use the xarray, define it statically or embed it in your data structure. 227f8d5d0ccSMatthew Wilcox * It is a very small data structure, so it does not usually make sense to 228f8d5d0ccSMatthew Wilcox * allocate it separately and keep a pointer to it in your data structure. 229f8d5d0ccSMatthew Wilcox * 230f8d5d0ccSMatthew Wilcox * You may use the xa_lock to protect your own data structures as well. 231f8d5d0ccSMatthew Wilcox */ 232f8d5d0ccSMatthew Wilcox /* 233f8d5d0ccSMatthew Wilcox * If all of the entries in the array are NULL, @xa_head is a NULL pointer. 234f8d5d0ccSMatthew Wilcox * If the only non-NULL entry in the array is at index 0, @xa_head is that 235f8d5d0ccSMatthew Wilcox * entry. If any other entry in the array is non-NULL, @xa_head points 236f8d5d0ccSMatthew Wilcox * to an @xa_node. 237f8d5d0ccSMatthew Wilcox */ 238f8d5d0ccSMatthew Wilcox struct xarray { 239f8d5d0ccSMatthew Wilcox spinlock_t xa_lock; 240f8d5d0ccSMatthew Wilcox /* private: The rest of the data structure is not to be used directly. */ 241f8d5d0ccSMatthew Wilcox gfp_t xa_flags; 242f8d5d0ccSMatthew Wilcox void __rcu * xa_head; 243f8d5d0ccSMatthew Wilcox }; 244f8d5d0ccSMatthew Wilcox 245f8d5d0ccSMatthew Wilcox #define XARRAY_INIT(name, flags) { \ 246f8d5d0ccSMatthew Wilcox .xa_lock = __SPIN_LOCK_UNLOCKED(name.xa_lock), \ 247f8d5d0ccSMatthew Wilcox .xa_flags = flags, \ 248f8d5d0ccSMatthew Wilcox .xa_head = NULL, \ 249f8d5d0ccSMatthew Wilcox } 250f8d5d0ccSMatthew Wilcox 251f8d5d0ccSMatthew Wilcox /** 252f8d5d0ccSMatthew Wilcox * DEFINE_XARRAY_FLAGS() - Define an XArray with custom flags. 253f8d5d0ccSMatthew Wilcox * @name: A string that names your XArray. 254f8d5d0ccSMatthew Wilcox * @flags: XA_FLAG values. 255f8d5d0ccSMatthew Wilcox * 256f8d5d0ccSMatthew Wilcox * This is intended for file scope definitions of XArrays. It declares 257f8d5d0ccSMatthew Wilcox * and initialises an empty XArray with the chosen name and flags. It is 258f8d5d0ccSMatthew Wilcox * equivalent to calling xa_init_flags() on the array, but it does the 259f8d5d0ccSMatthew Wilcox * initialisation at compiletime instead of runtime. 260f8d5d0ccSMatthew Wilcox */ 261f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY_FLAGS(name, flags) \ 262f8d5d0ccSMatthew Wilcox struct xarray name = XARRAY_INIT(name, flags) 263f8d5d0ccSMatthew Wilcox 264f8d5d0ccSMatthew Wilcox /** 265f8d5d0ccSMatthew Wilcox * DEFINE_XARRAY() - Define an XArray. 266f8d5d0ccSMatthew Wilcox * @name: A string that names your XArray. 267f8d5d0ccSMatthew Wilcox * 268f8d5d0ccSMatthew Wilcox * This is intended for file scope definitions of XArrays. It declares 269f8d5d0ccSMatthew Wilcox * and initialises an empty XArray with the chosen name. It is equivalent 270f8d5d0ccSMatthew Wilcox * to calling xa_init() on the array, but it does the initialisation at 271f8d5d0ccSMatthew Wilcox * compiletime instead of runtime. 272f8d5d0ccSMatthew Wilcox */ 273f8d5d0ccSMatthew Wilcox #define DEFINE_XARRAY(name) DEFINE_XARRAY_FLAGS(name, 0) 274f8d5d0ccSMatthew Wilcox 275f8d5d0ccSMatthew Wilcox void xa_init_flags(struct xarray *, gfp_t flags); 276ad3d6c72SMatthew Wilcox void *xa_load(struct xarray *, unsigned long index); 277*58d6ea30SMatthew Wilcox void *xa_store(struct xarray *, unsigned long index, void *entry, gfp_t); 2789b89a035SMatthew Wilcox bool xa_get_mark(struct xarray *, unsigned long index, xa_mark_t); 2799b89a035SMatthew Wilcox void xa_set_mark(struct xarray *, unsigned long index, xa_mark_t); 2809b89a035SMatthew Wilcox void xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t); 281f8d5d0ccSMatthew Wilcox 282f8d5d0ccSMatthew Wilcox /** 283f8d5d0ccSMatthew Wilcox * xa_init() - Initialise an empty XArray. 284f8d5d0ccSMatthew Wilcox * @xa: XArray. 285f8d5d0ccSMatthew Wilcox * 286f8d5d0ccSMatthew Wilcox * An empty XArray is full of NULL entries. 287f8d5d0ccSMatthew Wilcox * 288f8d5d0ccSMatthew Wilcox * Context: Any context. 289f8d5d0ccSMatthew Wilcox */ 290f8d5d0ccSMatthew Wilcox static inline void xa_init(struct xarray *xa) 291f8d5d0ccSMatthew Wilcox { 292f8d5d0ccSMatthew Wilcox xa_init_flags(xa, 0); 293f8d5d0ccSMatthew Wilcox } 294f8d5d0ccSMatthew Wilcox 295ad3d6c72SMatthew Wilcox /** 296ad3d6c72SMatthew Wilcox * xa_empty() - Determine if an array has any present entries. 297ad3d6c72SMatthew Wilcox * @xa: XArray. 298ad3d6c72SMatthew Wilcox * 299ad3d6c72SMatthew Wilcox * Context: Any context. 300ad3d6c72SMatthew Wilcox * Return: %true if the array contains only NULL pointers. 301ad3d6c72SMatthew Wilcox */ 302ad3d6c72SMatthew Wilcox static inline bool xa_empty(const struct xarray *xa) 303ad3d6c72SMatthew Wilcox { 304ad3d6c72SMatthew Wilcox return xa->xa_head == NULL; 305ad3d6c72SMatthew Wilcox } 306ad3d6c72SMatthew Wilcox 3079b89a035SMatthew Wilcox /** 3089b89a035SMatthew Wilcox * xa_marked() - Inquire whether any entry in this array has a mark set 3099b89a035SMatthew Wilcox * @xa: Array 3109b89a035SMatthew Wilcox * @mark: Mark value 3119b89a035SMatthew Wilcox * 3129b89a035SMatthew Wilcox * Context: Any context. 3139b89a035SMatthew Wilcox * Return: %true if any entry has this mark set. 3149b89a035SMatthew Wilcox */ 3159b89a035SMatthew Wilcox static inline bool xa_marked(const struct xarray *xa, xa_mark_t mark) 3169b89a035SMatthew Wilcox { 3179b89a035SMatthew Wilcox return xa->xa_flags & XA_FLAGS_MARK(mark); 3189b89a035SMatthew Wilcox } 3199b89a035SMatthew Wilcox 320*58d6ea30SMatthew Wilcox /** 321*58d6ea30SMatthew Wilcox * xa_erase() - Erase this entry from the XArray. 322*58d6ea30SMatthew Wilcox * @xa: XArray. 323*58d6ea30SMatthew Wilcox * @index: Index of entry. 324*58d6ea30SMatthew Wilcox * 325*58d6ea30SMatthew Wilcox * This function is the equivalent of calling xa_store() with %NULL as 326*58d6ea30SMatthew Wilcox * the third argument. The XArray does not need to allocate memory, so 327*58d6ea30SMatthew Wilcox * the user does not need to provide GFP flags. 328*58d6ea30SMatthew Wilcox * 329*58d6ea30SMatthew Wilcox * Context: Process context. Takes and releases the xa_lock. 330*58d6ea30SMatthew Wilcox * Return: The entry which used to be at this index. 331*58d6ea30SMatthew Wilcox */ 332*58d6ea30SMatthew Wilcox static inline void *xa_erase(struct xarray *xa, unsigned long index) 333*58d6ea30SMatthew Wilcox { 334*58d6ea30SMatthew Wilcox return xa_store(xa, index, NULL, 0); 335*58d6ea30SMatthew Wilcox } 336*58d6ea30SMatthew Wilcox 337f6bb2a2cSMatthew Wilcox #define xa_trylock(xa) spin_trylock(&(xa)->xa_lock) 338f6bb2a2cSMatthew Wilcox #define xa_lock(xa) spin_lock(&(xa)->xa_lock) 339f6bb2a2cSMatthew Wilcox #define xa_unlock(xa) spin_unlock(&(xa)->xa_lock) 340f6bb2a2cSMatthew Wilcox #define xa_lock_bh(xa) spin_lock_bh(&(xa)->xa_lock) 341f6bb2a2cSMatthew Wilcox #define xa_unlock_bh(xa) spin_unlock_bh(&(xa)->xa_lock) 342f6bb2a2cSMatthew Wilcox #define xa_lock_irq(xa) spin_lock_irq(&(xa)->xa_lock) 343f6bb2a2cSMatthew Wilcox #define xa_unlock_irq(xa) spin_unlock_irq(&(xa)->xa_lock) 344f6bb2a2cSMatthew Wilcox #define xa_lock_irqsave(xa, flags) \ 345f6bb2a2cSMatthew Wilcox spin_lock_irqsave(&(xa)->xa_lock, flags) 346f6bb2a2cSMatthew Wilcox #define xa_unlock_irqrestore(xa, flags) \ 347f6bb2a2cSMatthew Wilcox spin_unlock_irqrestore(&(xa)->xa_lock, flags) 348f6bb2a2cSMatthew Wilcox 3499b89a035SMatthew Wilcox /* 350*58d6ea30SMatthew Wilcox * Versions of the normal API which require the caller to hold the 351*58d6ea30SMatthew Wilcox * xa_lock. If the GFP flags allow it, they will drop the lock to 352*58d6ea30SMatthew Wilcox * allocate memory, then reacquire it afterwards. These functions 353*58d6ea30SMatthew Wilcox * may also re-enable interrupts if the XArray flags indicate the 354*58d6ea30SMatthew Wilcox * locking should be interrupt safe. 3559b89a035SMatthew Wilcox */ 356*58d6ea30SMatthew Wilcox void *__xa_erase(struct xarray *, unsigned long index); 357*58d6ea30SMatthew Wilcox void *__xa_store(struct xarray *, unsigned long index, void *entry, gfp_t); 3589b89a035SMatthew Wilcox void __xa_set_mark(struct xarray *, unsigned long index, xa_mark_t); 3599b89a035SMatthew Wilcox void __xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t); 3609b89a035SMatthew Wilcox 361*58d6ea30SMatthew Wilcox /** 362*58d6ea30SMatthew Wilcox * xa_erase_bh() - Erase this entry from the XArray. 363*58d6ea30SMatthew Wilcox * @xa: XArray. 364*58d6ea30SMatthew Wilcox * @index: Index of entry. 365*58d6ea30SMatthew Wilcox * 366*58d6ea30SMatthew Wilcox * This function is the equivalent of calling xa_store() with %NULL as 367*58d6ea30SMatthew Wilcox * the third argument. The XArray does not need to allocate memory, so 368*58d6ea30SMatthew Wilcox * the user does not need to provide GFP flags. 369*58d6ea30SMatthew Wilcox * 370*58d6ea30SMatthew Wilcox * Context: Process context. Takes and releases the xa_lock while 371*58d6ea30SMatthew Wilcox * disabling softirqs. 372*58d6ea30SMatthew Wilcox * Return: The entry which used to be at this index. 373*58d6ea30SMatthew Wilcox */ 374*58d6ea30SMatthew Wilcox static inline void *xa_erase_bh(struct xarray *xa, unsigned long index) 375*58d6ea30SMatthew Wilcox { 376*58d6ea30SMatthew Wilcox void *entry; 377*58d6ea30SMatthew Wilcox 378*58d6ea30SMatthew Wilcox xa_lock_bh(xa); 379*58d6ea30SMatthew Wilcox entry = __xa_erase(xa, index); 380*58d6ea30SMatthew Wilcox xa_unlock_bh(xa); 381*58d6ea30SMatthew Wilcox 382*58d6ea30SMatthew Wilcox return entry; 383*58d6ea30SMatthew Wilcox } 384*58d6ea30SMatthew Wilcox 385*58d6ea30SMatthew Wilcox /** 386*58d6ea30SMatthew Wilcox * xa_erase_irq() - Erase this entry from the XArray. 387*58d6ea30SMatthew Wilcox * @xa: XArray. 388*58d6ea30SMatthew Wilcox * @index: Index of entry. 389*58d6ea30SMatthew Wilcox * 390*58d6ea30SMatthew Wilcox * This function is the equivalent of calling xa_store() with %NULL as 391*58d6ea30SMatthew Wilcox * the third argument. The XArray does not need to allocate memory, so 392*58d6ea30SMatthew Wilcox * the user does not need to provide GFP flags. 393*58d6ea30SMatthew Wilcox * 394*58d6ea30SMatthew Wilcox * Context: Process context. Takes and releases the xa_lock while 395*58d6ea30SMatthew Wilcox * disabling interrupts. 396*58d6ea30SMatthew Wilcox * Return: The entry which used to be at this index. 397*58d6ea30SMatthew Wilcox */ 398*58d6ea30SMatthew Wilcox static inline void *xa_erase_irq(struct xarray *xa, unsigned long index) 399*58d6ea30SMatthew Wilcox { 400*58d6ea30SMatthew Wilcox void *entry; 401*58d6ea30SMatthew Wilcox 402*58d6ea30SMatthew Wilcox xa_lock_irq(xa); 403*58d6ea30SMatthew Wilcox entry = __xa_erase(xa, index); 404*58d6ea30SMatthew Wilcox xa_unlock_irq(xa); 405*58d6ea30SMatthew Wilcox 406*58d6ea30SMatthew Wilcox return entry; 407*58d6ea30SMatthew Wilcox } 408*58d6ea30SMatthew Wilcox 40902c02bf1SMatthew Wilcox /* Everything below here is the Advanced API. Proceed with caution. */ 41002c02bf1SMatthew Wilcox 41102c02bf1SMatthew Wilcox /* 41202c02bf1SMatthew Wilcox * The xarray is constructed out of a set of 'chunks' of pointers. Choosing 41302c02bf1SMatthew Wilcox * the best chunk size requires some tradeoffs. A power of two recommends 41402c02bf1SMatthew Wilcox * itself so that we can walk the tree based purely on shifts and masks. 41502c02bf1SMatthew Wilcox * Generally, the larger the better; as the number of slots per level of the 41602c02bf1SMatthew Wilcox * tree increases, the less tall the tree needs to be. But that needs to be 41702c02bf1SMatthew Wilcox * balanced against the memory consumption of each node. On a 64-bit system, 41802c02bf1SMatthew Wilcox * xa_node is currently 576 bytes, and we get 7 of them per 4kB page. If we 41902c02bf1SMatthew Wilcox * doubled the number of slots per node, we'd get only 3 nodes per 4kB page. 42002c02bf1SMatthew Wilcox */ 42102c02bf1SMatthew Wilcox #ifndef XA_CHUNK_SHIFT 42202c02bf1SMatthew Wilcox #define XA_CHUNK_SHIFT (CONFIG_BASE_SMALL ? 4 : 6) 42302c02bf1SMatthew Wilcox #endif 42402c02bf1SMatthew Wilcox #define XA_CHUNK_SIZE (1UL << XA_CHUNK_SHIFT) 42502c02bf1SMatthew Wilcox #define XA_CHUNK_MASK (XA_CHUNK_SIZE - 1) 42601959dfeSMatthew Wilcox #define XA_MAX_MARKS 3 42701959dfeSMatthew Wilcox #define XA_MARK_LONGS DIV_ROUND_UP(XA_CHUNK_SIZE, BITS_PER_LONG) 42801959dfeSMatthew Wilcox 42901959dfeSMatthew Wilcox /* 43001959dfeSMatthew Wilcox * @count is the count of every non-NULL element in the ->slots array 43101959dfeSMatthew Wilcox * whether that is a value entry, a retry entry, a user pointer, 43201959dfeSMatthew Wilcox * a sibling entry or a pointer to the next level of the tree. 43301959dfeSMatthew Wilcox * @nr_values is the count of every element in ->slots which is 43401959dfeSMatthew Wilcox * either a value entry or a sibling of a value entry. 43501959dfeSMatthew Wilcox */ 43601959dfeSMatthew Wilcox struct xa_node { 43701959dfeSMatthew Wilcox unsigned char shift; /* Bits remaining in each slot */ 43801959dfeSMatthew Wilcox unsigned char offset; /* Slot offset in parent */ 43901959dfeSMatthew Wilcox unsigned char count; /* Total entry count */ 44001959dfeSMatthew Wilcox unsigned char nr_values; /* Value entry count */ 44101959dfeSMatthew Wilcox struct xa_node __rcu *parent; /* NULL at top of tree */ 44201959dfeSMatthew Wilcox struct xarray *array; /* The array we belong to */ 44301959dfeSMatthew Wilcox union { 44401959dfeSMatthew Wilcox struct list_head private_list; /* For tree user */ 44501959dfeSMatthew Wilcox struct rcu_head rcu_head; /* Used when freeing node */ 44601959dfeSMatthew Wilcox }; 44701959dfeSMatthew Wilcox void __rcu *slots[XA_CHUNK_SIZE]; 44801959dfeSMatthew Wilcox union { 44901959dfeSMatthew Wilcox unsigned long tags[XA_MAX_MARKS][XA_MARK_LONGS]; 45001959dfeSMatthew Wilcox unsigned long marks[XA_MAX_MARKS][XA_MARK_LONGS]; 45101959dfeSMatthew Wilcox }; 45201959dfeSMatthew Wilcox }; 45302c02bf1SMatthew Wilcox 454ad3d6c72SMatthew Wilcox void xa_dump(const struct xarray *); 455ad3d6c72SMatthew Wilcox void xa_dump_node(const struct xa_node *); 456ad3d6c72SMatthew Wilcox 457ad3d6c72SMatthew Wilcox #ifdef XA_DEBUG 458ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do { \ 459ad3d6c72SMatthew Wilcox if (x) { \ 460ad3d6c72SMatthew Wilcox xa_dump(xa); \ 461ad3d6c72SMatthew Wilcox BUG(); \ 462ad3d6c72SMatthew Wilcox } \ 463ad3d6c72SMatthew Wilcox } while (0) 464ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do { \ 465ad3d6c72SMatthew Wilcox if (x) { \ 466ad3d6c72SMatthew Wilcox if (node) xa_dump_node(node); \ 467ad3d6c72SMatthew Wilcox BUG(); \ 468ad3d6c72SMatthew Wilcox } \ 469ad3d6c72SMatthew Wilcox } while (0) 470ad3d6c72SMatthew Wilcox #else 471ad3d6c72SMatthew Wilcox #define XA_BUG_ON(xa, x) do { } while (0) 472ad3d6c72SMatthew Wilcox #define XA_NODE_BUG_ON(node, x) do { } while (0) 473ad3d6c72SMatthew Wilcox #endif 474ad3d6c72SMatthew Wilcox 475ad3d6c72SMatthew Wilcox /* Private */ 476ad3d6c72SMatthew Wilcox static inline void *xa_head(const struct xarray *xa) 477ad3d6c72SMatthew Wilcox { 478ad3d6c72SMatthew Wilcox return rcu_dereference_check(xa->xa_head, 479ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 480ad3d6c72SMatthew Wilcox } 481ad3d6c72SMatthew Wilcox 482ad3d6c72SMatthew Wilcox /* Private */ 483ad3d6c72SMatthew Wilcox static inline void *xa_head_locked(const struct xarray *xa) 484ad3d6c72SMatthew Wilcox { 485ad3d6c72SMatthew Wilcox return rcu_dereference_protected(xa->xa_head, 486ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 487ad3d6c72SMatthew Wilcox } 488ad3d6c72SMatthew Wilcox 489ad3d6c72SMatthew Wilcox /* Private */ 490ad3d6c72SMatthew Wilcox static inline void *xa_entry(const struct xarray *xa, 491ad3d6c72SMatthew Wilcox const struct xa_node *node, unsigned int offset) 492ad3d6c72SMatthew Wilcox { 493ad3d6c72SMatthew Wilcox XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE); 494ad3d6c72SMatthew Wilcox return rcu_dereference_check(node->slots[offset], 495ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 496ad3d6c72SMatthew Wilcox } 497ad3d6c72SMatthew Wilcox 498ad3d6c72SMatthew Wilcox /* Private */ 499ad3d6c72SMatthew Wilcox static inline void *xa_entry_locked(const struct xarray *xa, 500ad3d6c72SMatthew Wilcox const struct xa_node *node, unsigned int offset) 501ad3d6c72SMatthew Wilcox { 502ad3d6c72SMatthew Wilcox XA_NODE_BUG_ON(node, offset >= XA_CHUNK_SIZE); 503ad3d6c72SMatthew Wilcox return rcu_dereference_protected(node->slots[offset], 504ad3d6c72SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 505ad3d6c72SMatthew Wilcox } 506ad3d6c72SMatthew Wilcox 507ad3d6c72SMatthew Wilcox /* Private */ 5089b89a035SMatthew Wilcox static inline struct xa_node *xa_parent(const struct xarray *xa, 5099b89a035SMatthew Wilcox const struct xa_node *node) 5109b89a035SMatthew Wilcox { 5119b89a035SMatthew Wilcox return rcu_dereference_check(node->parent, 5129b89a035SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 5139b89a035SMatthew Wilcox } 5149b89a035SMatthew Wilcox 5159b89a035SMatthew Wilcox /* Private */ 5169b89a035SMatthew Wilcox static inline struct xa_node *xa_parent_locked(const struct xarray *xa, 5179b89a035SMatthew Wilcox const struct xa_node *node) 5189b89a035SMatthew Wilcox { 5199b89a035SMatthew Wilcox return rcu_dereference_protected(node->parent, 5209b89a035SMatthew Wilcox lockdep_is_held(&xa->xa_lock)); 5219b89a035SMatthew Wilcox } 5229b89a035SMatthew Wilcox 5239b89a035SMatthew Wilcox /* Private */ 524*58d6ea30SMatthew Wilcox static inline void *xa_mk_node(const struct xa_node *node) 525*58d6ea30SMatthew Wilcox { 526*58d6ea30SMatthew Wilcox return (void *)((unsigned long)node | 2); 527*58d6ea30SMatthew Wilcox } 528*58d6ea30SMatthew Wilcox 529*58d6ea30SMatthew Wilcox /* Private */ 530ad3d6c72SMatthew Wilcox static inline struct xa_node *xa_to_node(const void *entry) 531ad3d6c72SMatthew Wilcox { 532ad3d6c72SMatthew Wilcox return (struct xa_node *)((unsigned long)entry - 2); 533ad3d6c72SMatthew Wilcox } 534ad3d6c72SMatthew Wilcox 53502c02bf1SMatthew Wilcox /* Private */ 53602c02bf1SMatthew Wilcox static inline bool xa_is_node(const void *entry) 53702c02bf1SMatthew Wilcox { 53802c02bf1SMatthew Wilcox return xa_is_internal(entry) && (unsigned long)entry > 4096; 53902c02bf1SMatthew Wilcox } 54002c02bf1SMatthew Wilcox 54102c02bf1SMatthew Wilcox /* Private */ 54202c02bf1SMatthew Wilcox static inline void *xa_mk_sibling(unsigned int offset) 54302c02bf1SMatthew Wilcox { 54402c02bf1SMatthew Wilcox return xa_mk_internal(offset); 54502c02bf1SMatthew Wilcox } 54602c02bf1SMatthew Wilcox 54702c02bf1SMatthew Wilcox /* Private */ 54802c02bf1SMatthew Wilcox static inline unsigned long xa_to_sibling(const void *entry) 54902c02bf1SMatthew Wilcox { 55002c02bf1SMatthew Wilcox return xa_to_internal(entry); 55102c02bf1SMatthew Wilcox } 55202c02bf1SMatthew Wilcox 55302c02bf1SMatthew Wilcox /** 55402c02bf1SMatthew Wilcox * xa_is_sibling() - Is the entry a sibling entry? 55502c02bf1SMatthew Wilcox * @entry: Entry retrieved from the XArray 55602c02bf1SMatthew Wilcox * 55702c02bf1SMatthew Wilcox * Return: %true if the entry is a sibling entry. 55802c02bf1SMatthew Wilcox */ 55902c02bf1SMatthew Wilcox static inline bool xa_is_sibling(const void *entry) 56002c02bf1SMatthew Wilcox { 56102c02bf1SMatthew Wilcox return IS_ENABLED(CONFIG_XARRAY_MULTI) && xa_is_internal(entry) && 56202c02bf1SMatthew Wilcox (entry < xa_mk_sibling(XA_CHUNK_SIZE - 1)); 56302c02bf1SMatthew Wilcox } 56402c02bf1SMatthew Wilcox 56502c02bf1SMatthew Wilcox #define XA_RETRY_ENTRY xa_mk_internal(256) 56602c02bf1SMatthew Wilcox 567ad3d6c72SMatthew Wilcox /** 568ad3d6c72SMatthew Wilcox * xa_is_retry() - Is the entry a retry entry? 569ad3d6c72SMatthew Wilcox * @entry: Entry retrieved from the XArray 570ad3d6c72SMatthew Wilcox * 571ad3d6c72SMatthew Wilcox * Return: %true if the entry is a retry entry. 572ad3d6c72SMatthew Wilcox */ 573ad3d6c72SMatthew Wilcox static inline bool xa_is_retry(const void *entry) 574ad3d6c72SMatthew Wilcox { 575ad3d6c72SMatthew Wilcox return unlikely(entry == XA_RETRY_ENTRY); 576ad3d6c72SMatthew Wilcox } 577ad3d6c72SMatthew Wilcox 578ad3d6c72SMatthew Wilcox /** 579ad3d6c72SMatthew Wilcox * typedef xa_update_node_t - A callback function from the XArray. 580ad3d6c72SMatthew Wilcox * @node: The node which is being processed 581ad3d6c72SMatthew Wilcox * 582ad3d6c72SMatthew Wilcox * This function is called every time the XArray updates the count of 583ad3d6c72SMatthew Wilcox * present and value entries in a node. It allows advanced users to 584ad3d6c72SMatthew Wilcox * maintain the private_list in the node. 585ad3d6c72SMatthew Wilcox * 586ad3d6c72SMatthew Wilcox * Context: The xa_lock is held and interrupts may be disabled. 587ad3d6c72SMatthew Wilcox * Implementations should not drop the xa_lock, nor re-enable 588ad3d6c72SMatthew Wilcox * interrupts. 589ad3d6c72SMatthew Wilcox */ 590ad3d6c72SMatthew Wilcox typedef void (*xa_update_node_t)(struct xa_node *node); 591ad3d6c72SMatthew Wilcox 592ad3d6c72SMatthew Wilcox /* 593ad3d6c72SMatthew Wilcox * The xa_state is opaque to its users. It contains various different pieces 594ad3d6c72SMatthew Wilcox * of state involved in the current operation on the XArray. It should be 595ad3d6c72SMatthew Wilcox * declared on the stack and passed between the various internal routines. 596ad3d6c72SMatthew Wilcox * The various elements in it should not be accessed directly, but only 597ad3d6c72SMatthew Wilcox * through the provided accessor functions. The below documentation is for 598ad3d6c72SMatthew Wilcox * the benefit of those working on the code, not for users of the XArray. 599ad3d6c72SMatthew Wilcox * 600ad3d6c72SMatthew Wilcox * @xa_node usually points to the xa_node containing the slot we're operating 601ad3d6c72SMatthew Wilcox * on (and @xa_offset is the offset in the slots array). If there is a 602ad3d6c72SMatthew Wilcox * single entry in the array at index 0, there are no allocated xa_nodes to 603ad3d6c72SMatthew Wilcox * point to, and so we store %NULL in @xa_node. @xa_node is set to 604ad3d6c72SMatthew Wilcox * the value %XAS_RESTART if the xa_state is not walked to the correct 605ad3d6c72SMatthew Wilcox * position in the tree of nodes for this operation. If an error occurs 606ad3d6c72SMatthew Wilcox * during an operation, it is set to an %XAS_ERROR value. If we run off the 607ad3d6c72SMatthew Wilcox * end of the allocated nodes, it is set to %XAS_BOUNDS. 608ad3d6c72SMatthew Wilcox */ 609ad3d6c72SMatthew Wilcox struct xa_state { 610ad3d6c72SMatthew Wilcox struct xarray *xa; 611ad3d6c72SMatthew Wilcox unsigned long xa_index; 612ad3d6c72SMatthew Wilcox unsigned char xa_shift; 613ad3d6c72SMatthew Wilcox unsigned char xa_sibs; 614ad3d6c72SMatthew Wilcox unsigned char xa_offset; 615ad3d6c72SMatthew Wilcox unsigned char xa_pad; /* Helps gcc generate better code */ 616ad3d6c72SMatthew Wilcox struct xa_node *xa_node; 617ad3d6c72SMatthew Wilcox struct xa_node *xa_alloc; 618ad3d6c72SMatthew Wilcox xa_update_node_t xa_update; 619ad3d6c72SMatthew Wilcox }; 620ad3d6c72SMatthew Wilcox 621ad3d6c72SMatthew Wilcox /* 622ad3d6c72SMatthew Wilcox * We encode errnos in the xas->xa_node. If an error has happened, we need to 623ad3d6c72SMatthew Wilcox * drop the lock to fix it, and once we've done so the xa_state is invalid. 624ad3d6c72SMatthew Wilcox */ 625ad3d6c72SMatthew Wilcox #define XA_ERROR(errno) ((struct xa_node *)(((unsigned long)errno << 2) | 2UL)) 626ad3d6c72SMatthew Wilcox #define XAS_BOUNDS ((struct xa_node *)1UL) 627ad3d6c72SMatthew Wilcox #define XAS_RESTART ((struct xa_node *)3UL) 628ad3d6c72SMatthew Wilcox 629ad3d6c72SMatthew Wilcox #define __XA_STATE(array, index, shift, sibs) { \ 630ad3d6c72SMatthew Wilcox .xa = array, \ 631ad3d6c72SMatthew Wilcox .xa_index = index, \ 632ad3d6c72SMatthew Wilcox .xa_shift = shift, \ 633ad3d6c72SMatthew Wilcox .xa_sibs = sibs, \ 634ad3d6c72SMatthew Wilcox .xa_offset = 0, \ 635ad3d6c72SMatthew Wilcox .xa_pad = 0, \ 636ad3d6c72SMatthew Wilcox .xa_node = XAS_RESTART, \ 637ad3d6c72SMatthew Wilcox .xa_alloc = NULL, \ 638ad3d6c72SMatthew Wilcox .xa_update = NULL \ 639ad3d6c72SMatthew Wilcox } 640ad3d6c72SMatthew Wilcox 641ad3d6c72SMatthew Wilcox /** 642ad3d6c72SMatthew Wilcox * XA_STATE() - Declare an XArray operation state. 643ad3d6c72SMatthew Wilcox * @name: Name of this operation state (usually xas). 644ad3d6c72SMatthew Wilcox * @array: Array to operate on. 645ad3d6c72SMatthew Wilcox * @index: Initial index of interest. 646ad3d6c72SMatthew Wilcox * 647ad3d6c72SMatthew Wilcox * Declare and initialise an xa_state on the stack. 648ad3d6c72SMatthew Wilcox */ 649ad3d6c72SMatthew Wilcox #define XA_STATE(name, array, index) \ 650ad3d6c72SMatthew Wilcox struct xa_state name = __XA_STATE(array, index, 0, 0) 651ad3d6c72SMatthew Wilcox 652ad3d6c72SMatthew Wilcox /** 653ad3d6c72SMatthew Wilcox * XA_STATE_ORDER() - Declare an XArray operation state. 654ad3d6c72SMatthew Wilcox * @name: Name of this operation state (usually xas). 655ad3d6c72SMatthew Wilcox * @array: Array to operate on. 656ad3d6c72SMatthew Wilcox * @index: Initial index of interest. 657ad3d6c72SMatthew Wilcox * @order: Order of entry. 658ad3d6c72SMatthew Wilcox * 659ad3d6c72SMatthew Wilcox * Declare and initialise an xa_state on the stack. This variant of 660ad3d6c72SMatthew Wilcox * XA_STATE() allows you to specify the 'order' of the element you 661ad3d6c72SMatthew Wilcox * want to operate on.` 662ad3d6c72SMatthew Wilcox */ 663ad3d6c72SMatthew Wilcox #define XA_STATE_ORDER(name, array, index, order) \ 664ad3d6c72SMatthew Wilcox struct xa_state name = __XA_STATE(array, \ 665ad3d6c72SMatthew Wilcox (index >> order) << order, \ 666ad3d6c72SMatthew Wilcox order - (order % XA_CHUNK_SHIFT), \ 667ad3d6c72SMatthew Wilcox (1U << (order % XA_CHUNK_SHIFT)) - 1) 668ad3d6c72SMatthew Wilcox 669ad3d6c72SMatthew Wilcox #define xas_marked(xas, mark) xa_marked((xas)->xa, (mark)) 670ad3d6c72SMatthew Wilcox #define xas_trylock(xas) xa_trylock((xas)->xa) 671ad3d6c72SMatthew Wilcox #define xas_lock(xas) xa_lock((xas)->xa) 672ad3d6c72SMatthew Wilcox #define xas_unlock(xas) xa_unlock((xas)->xa) 673ad3d6c72SMatthew Wilcox #define xas_lock_bh(xas) xa_lock_bh((xas)->xa) 674ad3d6c72SMatthew Wilcox #define xas_unlock_bh(xas) xa_unlock_bh((xas)->xa) 675ad3d6c72SMatthew Wilcox #define xas_lock_irq(xas) xa_lock_irq((xas)->xa) 676ad3d6c72SMatthew Wilcox #define xas_unlock_irq(xas) xa_unlock_irq((xas)->xa) 677ad3d6c72SMatthew Wilcox #define xas_lock_irqsave(xas, flags) \ 678ad3d6c72SMatthew Wilcox xa_lock_irqsave((xas)->xa, flags) 679ad3d6c72SMatthew Wilcox #define xas_unlock_irqrestore(xas, flags) \ 680ad3d6c72SMatthew Wilcox xa_unlock_irqrestore((xas)->xa, flags) 681ad3d6c72SMatthew Wilcox 682ad3d6c72SMatthew Wilcox /** 683ad3d6c72SMatthew Wilcox * xas_error() - Return an errno stored in the xa_state. 684ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 685ad3d6c72SMatthew Wilcox * 686ad3d6c72SMatthew Wilcox * Return: 0 if no error has been noted. A negative errno if one has. 687ad3d6c72SMatthew Wilcox */ 688ad3d6c72SMatthew Wilcox static inline int xas_error(const struct xa_state *xas) 689ad3d6c72SMatthew Wilcox { 690ad3d6c72SMatthew Wilcox return xa_err(xas->xa_node); 691ad3d6c72SMatthew Wilcox } 692ad3d6c72SMatthew Wilcox 693ad3d6c72SMatthew Wilcox /** 694ad3d6c72SMatthew Wilcox * xas_set_err() - Note an error in the xa_state. 695ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 696ad3d6c72SMatthew Wilcox * @err: Negative error number. 697ad3d6c72SMatthew Wilcox * 698ad3d6c72SMatthew Wilcox * Only call this function with a negative @err; zero or positive errors 699ad3d6c72SMatthew Wilcox * will probably not behave the way you think they should. If you want 700ad3d6c72SMatthew Wilcox * to clear the error from an xa_state, use xas_reset(). 701ad3d6c72SMatthew Wilcox */ 702ad3d6c72SMatthew Wilcox static inline void xas_set_err(struct xa_state *xas, long err) 703ad3d6c72SMatthew Wilcox { 704ad3d6c72SMatthew Wilcox xas->xa_node = XA_ERROR(err); 705ad3d6c72SMatthew Wilcox } 706ad3d6c72SMatthew Wilcox 707ad3d6c72SMatthew Wilcox /** 708ad3d6c72SMatthew Wilcox * xas_invalid() - Is the xas in a retry or error state? 709ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 710ad3d6c72SMatthew Wilcox * 711ad3d6c72SMatthew Wilcox * Return: %true if the xas cannot be used for operations. 712ad3d6c72SMatthew Wilcox */ 713ad3d6c72SMatthew Wilcox static inline bool xas_invalid(const struct xa_state *xas) 714ad3d6c72SMatthew Wilcox { 715ad3d6c72SMatthew Wilcox return (unsigned long)xas->xa_node & 3; 716ad3d6c72SMatthew Wilcox } 717ad3d6c72SMatthew Wilcox 718ad3d6c72SMatthew Wilcox /** 719ad3d6c72SMatthew Wilcox * xas_valid() - Is the xas a valid cursor into the array? 720ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 721ad3d6c72SMatthew Wilcox * 722ad3d6c72SMatthew Wilcox * Return: %true if the xas can be used for operations. 723ad3d6c72SMatthew Wilcox */ 724ad3d6c72SMatthew Wilcox static inline bool xas_valid(const struct xa_state *xas) 725ad3d6c72SMatthew Wilcox { 726ad3d6c72SMatthew Wilcox return !xas_invalid(xas); 727ad3d6c72SMatthew Wilcox } 728ad3d6c72SMatthew Wilcox 7299b89a035SMatthew Wilcox /* True if the pointer is something other than a node */ 7309b89a035SMatthew Wilcox static inline bool xas_not_node(struct xa_node *node) 7319b89a035SMatthew Wilcox { 7329b89a035SMatthew Wilcox return ((unsigned long)node & 3) || !node; 7339b89a035SMatthew Wilcox } 7349b89a035SMatthew Wilcox 735*58d6ea30SMatthew Wilcox /* True if the node represents head-of-tree, RESTART or BOUNDS */ 736*58d6ea30SMatthew Wilcox static inline bool xas_top(struct xa_node *node) 737*58d6ea30SMatthew Wilcox { 738*58d6ea30SMatthew Wilcox return node <= XAS_RESTART; 739*58d6ea30SMatthew Wilcox } 740*58d6ea30SMatthew Wilcox 741ad3d6c72SMatthew Wilcox /** 742ad3d6c72SMatthew Wilcox * xas_reset() - Reset an XArray operation state. 743ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 744ad3d6c72SMatthew Wilcox * 745ad3d6c72SMatthew Wilcox * Resets the error or walk state of the @xas so future walks of the 746ad3d6c72SMatthew Wilcox * array will start from the root. Use this if you have dropped the 747ad3d6c72SMatthew Wilcox * xarray lock and want to reuse the xa_state. 748ad3d6c72SMatthew Wilcox * 749ad3d6c72SMatthew Wilcox * Context: Any context. 750ad3d6c72SMatthew Wilcox */ 751ad3d6c72SMatthew Wilcox static inline void xas_reset(struct xa_state *xas) 752ad3d6c72SMatthew Wilcox { 753ad3d6c72SMatthew Wilcox xas->xa_node = XAS_RESTART; 754ad3d6c72SMatthew Wilcox } 755ad3d6c72SMatthew Wilcox 756ad3d6c72SMatthew Wilcox /** 757ad3d6c72SMatthew Wilcox * xas_retry() - Retry the operation if appropriate. 758ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 759ad3d6c72SMatthew Wilcox * @entry: Entry from xarray. 760ad3d6c72SMatthew Wilcox * 761ad3d6c72SMatthew Wilcox * The advanced functions may sometimes return an internal entry, such as 762ad3d6c72SMatthew Wilcox * a retry entry or a zero entry. This function sets up the @xas to restart 763ad3d6c72SMatthew Wilcox * the walk from the head of the array if needed. 764ad3d6c72SMatthew Wilcox * 765ad3d6c72SMatthew Wilcox * Context: Any context. 766ad3d6c72SMatthew Wilcox * Return: true if the operation needs to be retried. 767ad3d6c72SMatthew Wilcox */ 768ad3d6c72SMatthew Wilcox static inline bool xas_retry(struct xa_state *xas, const void *entry) 769ad3d6c72SMatthew Wilcox { 770ad3d6c72SMatthew Wilcox if (!xa_is_retry(entry)) 771ad3d6c72SMatthew Wilcox return false; 772ad3d6c72SMatthew Wilcox xas_reset(xas); 773ad3d6c72SMatthew Wilcox return true; 774ad3d6c72SMatthew Wilcox } 775ad3d6c72SMatthew Wilcox 776ad3d6c72SMatthew Wilcox void *xas_load(struct xa_state *); 777*58d6ea30SMatthew Wilcox void *xas_store(struct xa_state *, void *entry); 778ad3d6c72SMatthew Wilcox 7799b89a035SMatthew Wilcox bool xas_get_mark(const struct xa_state *, xa_mark_t); 7809b89a035SMatthew Wilcox void xas_set_mark(const struct xa_state *, xa_mark_t); 7819b89a035SMatthew Wilcox void xas_clear_mark(const struct xa_state *, xa_mark_t); 782*58d6ea30SMatthew Wilcox void xas_init_marks(const struct xa_state *); 783*58d6ea30SMatthew Wilcox 784*58d6ea30SMatthew Wilcox bool xas_nomem(struct xa_state *, gfp_t); 7859b89a035SMatthew Wilcox 786ad3d6c72SMatthew Wilcox /** 787ad3d6c72SMatthew Wilcox * xas_reload() - Refetch an entry from the xarray. 788ad3d6c72SMatthew Wilcox * @xas: XArray operation state. 789ad3d6c72SMatthew Wilcox * 790ad3d6c72SMatthew Wilcox * Use this function to check that a previously loaded entry still has 791ad3d6c72SMatthew Wilcox * the same value. This is useful for the lockless pagecache lookup where 792ad3d6c72SMatthew Wilcox * we walk the array with only the RCU lock to protect us, lock the page, 793ad3d6c72SMatthew Wilcox * then check that the page hasn't moved since we looked it up. 794ad3d6c72SMatthew Wilcox * 795ad3d6c72SMatthew Wilcox * The caller guarantees that @xas is still valid. If it may be in an 796ad3d6c72SMatthew Wilcox * error or restart state, call xas_load() instead. 797ad3d6c72SMatthew Wilcox * 798ad3d6c72SMatthew Wilcox * Return: The entry at this location in the xarray. 799ad3d6c72SMatthew Wilcox */ 800ad3d6c72SMatthew Wilcox static inline void *xas_reload(struct xa_state *xas) 801ad3d6c72SMatthew Wilcox { 802ad3d6c72SMatthew Wilcox struct xa_node *node = xas->xa_node; 803ad3d6c72SMatthew Wilcox 804ad3d6c72SMatthew Wilcox if (node) 805ad3d6c72SMatthew Wilcox return xa_entry(xas->xa, node, xas->xa_offset); 806ad3d6c72SMatthew Wilcox return xa_head(xas->xa); 807ad3d6c72SMatthew Wilcox } 808ad3d6c72SMatthew Wilcox 809*58d6ea30SMatthew Wilcox /** 810*58d6ea30SMatthew Wilcox * xas_set() - Set up XArray operation state for a different index. 811*58d6ea30SMatthew Wilcox * @xas: XArray operation state. 812*58d6ea30SMatthew Wilcox * @index: New index into the XArray. 813*58d6ea30SMatthew Wilcox * 814*58d6ea30SMatthew Wilcox * Move the operation state to refer to a different index. This will 815*58d6ea30SMatthew Wilcox * have the effect of starting a walk from the top; see xas_next() 816*58d6ea30SMatthew Wilcox * to move to an adjacent index. 817*58d6ea30SMatthew Wilcox */ 818*58d6ea30SMatthew Wilcox static inline void xas_set(struct xa_state *xas, unsigned long index) 819*58d6ea30SMatthew Wilcox { 820*58d6ea30SMatthew Wilcox xas->xa_index = index; 821*58d6ea30SMatthew Wilcox xas->xa_node = XAS_RESTART; 822*58d6ea30SMatthew Wilcox } 823*58d6ea30SMatthew Wilcox 824*58d6ea30SMatthew Wilcox /** 825*58d6ea30SMatthew Wilcox * xas_set_order() - Set up XArray operation state for a multislot entry. 826*58d6ea30SMatthew Wilcox * @xas: XArray operation state. 827*58d6ea30SMatthew Wilcox * @index: Target of the operation. 828*58d6ea30SMatthew Wilcox * @order: Entry occupies 2^@order indices. 829*58d6ea30SMatthew Wilcox */ 830*58d6ea30SMatthew Wilcox static inline void xas_set_order(struct xa_state *xas, unsigned long index, 831*58d6ea30SMatthew Wilcox unsigned int order) 832*58d6ea30SMatthew Wilcox { 833*58d6ea30SMatthew Wilcox #ifdef CONFIG_XARRAY_MULTI 834*58d6ea30SMatthew Wilcox xas->xa_index = order < BITS_PER_LONG ? (index >> order) << order : 0; 835*58d6ea30SMatthew Wilcox xas->xa_shift = order - (order % XA_CHUNK_SHIFT); 836*58d6ea30SMatthew Wilcox xas->xa_sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1; 837*58d6ea30SMatthew Wilcox xas->xa_node = XAS_RESTART; 838*58d6ea30SMatthew Wilcox #else 839*58d6ea30SMatthew Wilcox BUG_ON(order > 0); 840*58d6ea30SMatthew Wilcox xas_set(xas, index); 841*58d6ea30SMatthew Wilcox #endif 842*58d6ea30SMatthew Wilcox } 843*58d6ea30SMatthew Wilcox 844*58d6ea30SMatthew Wilcox /** 845*58d6ea30SMatthew Wilcox * xas_set_update() - Set up XArray operation state for a callback. 846*58d6ea30SMatthew Wilcox * @xas: XArray operation state. 847*58d6ea30SMatthew Wilcox * @update: Function to call when updating a node. 848*58d6ea30SMatthew Wilcox * 849*58d6ea30SMatthew Wilcox * The XArray can notify a caller after it has updated an xa_node. 850*58d6ea30SMatthew Wilcox * This is advanced functionality and is only needed by the page cache. 851*58d6ea30SMatthew Wilcox */ 852*58d6ea30SMatthew Wilcox static inline void xas_set_update(struct xa_state *xas, xa_update_node_t update) 853*58d6ea30SMatthew Wilcox { 854*58d6ea30SMatthew Wilcox xas->xa_update = update; 855*58d6ea30SMatthew Wilcox } 856*58d6ea30SMatthew Wilcox 857f6bb2a2cSMatthew Wilcox #endif /* _LINUX_XARRAY_H */ 858