/linux/include/linux/ |
H A D | xarray.h | 300 struct xarray { struct 324 struct xarray name = XARRAY_INIT(name, flags) argument 355 void *xa_load(struct xarray *, unsigned long index); 356 void *xa_store(struct xarray *, unsigned long index, void *entry, gfp_t); 357 void *xa_erase(struct xarray *, unsigned long index); 358 void *xa_store_range(struct xarray *, unsigned long first, unsigned long last, 360 bool xa_get_mark(struct xarray *, unsigned long index, xa_mark_t); 361 void xa_set_mark(struct xarray *, unsigned long index, xa_mark_t); 362 void xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t); 363 void *xa_find(struct xarray *xa, unsigned long *index, [all …]
|
H A D | phy_link_topology.h | 17 struct xarray; 22 struct xarray phys;
|
/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/ |
H A D | fs_hws.h | 19 struct xarray el2tol3tnl_pools; 20 struct xarray el2tol2tnl_pools; 21 struct xarray mh_pools; 22 struct xarray table_dests; 23 struct xarray vport_vhca_dests; 24 struct xarray vport_dests; 25 struct xarray aso_meters; 26 struct xarray sample_dests;
|
H A D | context.h | 34 struct xarray vport_gvmi_xa; 55 struct xarray peer_ctx_xa;
|
/linux/drivers/dpll/ |
H A D | dpll_core.h | 34 struct xarray pin_refs; 57 struct xarray dpll_refs; 58 struct xarray parent_refs; 59 struct xarray ref_sync_pins; 88 struct dpll_pin_ref *dpll_xa_ref_dpll_first(struct xarray *xa_refs); 89 extern struct xarray dpll_device_xa; 90 extern struct xarray dpll_pin_xa;
|
/linux/drivers/gpu/drm/imagination/ |
H A D | pvr_sync.h | 10 struct xarray; 61 pvr_sync_signal_array_cleanup(struct xarray *array); 64 pvr_sync_signal_array_collect_ops(struct xarray *array, 70 pvr_sync_signal_array_update_fences(struct xarray *array, 76 pvr_sync_signal_array_push_fences(struct xarray *array); 82 struct xarray *signal_array);
|
H A D | pvr_sync.c | 48 pvr_sync_signal_array_cleanup(struct xarray *array) in pvr_sync_signal_array_cleanup() 60 pvr_sync_signal_array_add(struct xarray *array, struct drm_file *file, u32 handle, u64 point) in pvr_sync_signal_array_add() 107 pvr_sync_signal_array_search(struct xarray *array, u32 handle, u64 point) in pvr_sync_signal_array_search() 121 pvr_sync_signal_array_get(struct xarray *array, struct drm_file *file, u32 handle, u64 point) in pvr_sync_signal_array_get() 133 pvr_sync_signal_array_collect_ops(struct xarray *array, in pvr_sync_signal_array_collect_ops() 160 pvr_sync_signal_array_update_fences(struct xarray *array, in pvr_sync_signal_array_update_fences() 189 pvr_sync_signal_array_push_fences(struct xarray *array) in pvr_sync_signal_array_push_fences() 251 struct xarray *signal_array) in pvr_sync_add_deps_to_job()
|
H A D | pvr_device.h | 194 struct xarray ctx_ids; 202 struct xarray free_list_ids; 208 struct xarray job_ids; 349 struct xarray ctx_handles; 357 struct xarray free_list_handles; 365 struct xarray hwrt_handles; 373 struct xarray vm_ctx_handles;
|
/linux/tools/testing/radix-tree/ |
H A D | Makefile | 5 TARGETS = main idr-test multiorder xarray maple 6 CORE_OFILES = $(SHARED_OFILES) xarray.o maple.o test.o 17 xarray.o: ../../../lib/test_xarray.c 21 xarray: $(CORE_OFILES) xarray.o target
|
H A D | test.h | 18 int item_delete_rcu(struct xarray *xa, unsigned long index); 30 int tag_tagged_items(struct xarray *, unsigned long start, unsigned long end,
|
/linux/rust/helpers/ |
H A D | xarray.c | 10 void rust_helper_xa_init_flags(struct xarray *xa, gfp_t flags) in rust_helper_xa_init_flags() 15 int rust_helper_xa_trylock(struct xarray *xa) in rust_helper_xa_trylock() 20 void rust_helper_xa_lock(struct xarray *xa) in rust_helper_xa_lock() 25 void rust_helper_xa_unlock(struct xarray *xa) in rust_helper_xa_unlock()
|
/linux/lib/ |
H A D | test_xarray.c | 20 void xa_dump(const struct xarray *xa) { } in xa_dump() 40 static void *xa_store_index(struct xarray *xa, unsigned long index, gfp_t gfp) in xa_store_index() 45 static void xa_insert_index(struct xarray *xa, unsigned long index) in xa_insert_index() 51 static void xa_alloc_index(struct xarray *xa, unsigned long index, gfp_t gfp) in xa_alloc_index() 60 static void xa_erase_index(struct xarray *xa, unsigned long index) in xa_erase_index() 71 static void *xa_store_order(struct xarray *xa, unsigned long index, in xa_store_order() 86 static noinline void check_xa_err(struct xarray *xa) in check_xa_err() 102 static noinline void check_xas_retry(struct xarray *xa) in check_xas_retry() 147 static noinline void check_xa_load(struct xarray *xa) in check_xa_load() 175 static noinline void check_xa_mark_1(struct xarray *xa, unsigned long index) in check_xa_mark_1() [all …]
|
H A D | xarray.c | 33 static inline unsigned int xa_lock_type(const struct xarray *xa) in xa_lock_type() 58 static inline bool xa_track_free(const struct xarray *xa) in xa_track_free() 63 static inline bool xa_zero_busy(const struct xarray *xa) in xa_zero_busy() 68 static inline void xa_mark_set(struct xarray *xa, xa_mark_t mark) in xa_mark_set() 74 static inline void xa_mark_clear(struct xarray *xa, xa_mark_t mark) in xa_mark_clear() 254 #define XA_RCU_FREE ((struct xarray *)1) 447 struct xarray *xa = xas->xa; in xas_shrink() 569 struct xarray *xa = xas->xa; in xas_expand() 649 struct xarray *xa = xas->xa; in xas_create() 1612 void *xa_load(struct xarray *xa, unsigned long index) in xa_load() [all …]
|
/linux/lib/tests/ |
H A D | kunit_iov_iter.c | 541 struct xarray *xarray = data; in iov_kunit_destroy_xarray() local 543 xa_destroy(xarray); in iov_kunit_destroy_xarray() 544 kfree(xarray); in iov_kunit_destroy_xarray() 549 struct xarray *xarray, in iov_kunit_load_xarray() argument 556 void *x = xa_store(xarray, i, pages[i], GFP_KERNEL); in iov_kunit_load_xarray() 561 iov_iter_xarray(iter, dir, xarray, 0, size); in iov_kunit_load_xarray() 564 static struct xarray *iov_kunit_create_xarray(struct kunit *test) in iov_kunit_create_xarray() 566 struct xarray *xarray; in iov_kunit_create_xarray() local 568 xarray = kzalloc(sizeof(struct xarray), GFP_KERNEL); in iov_kunit_create_xarray() 569 xa_init(xarray); in iov_kunit_create_xarray() [all …]
|
/linux/drivers/net/ethernet/mellanox/mlx5/core/en/ |
H A D | mapping.c | 18 struct xarray xarray; member 64 err = xa_alloc(&ctx->xarray, &mi->id, mi, XA_LIMIT(1, ctx->max_id), in mapping_add() 88 xa_erase(&ctx->xarray, mi->id); in mapping_remove_and_free() 116 mi = xa_load(&ctx->xarray, index); in mapping_remove() 139 mi = xa_load(&ctx->xarray, index); in mapping_find() 214 xa_init_flags(&ctx->xarray, XA_FLAGS_ALLOC1); in mapping_create() 259 xa_destroy(&ctx->xarray); in mapping_destroy()
|
/linux/tools/testing/shared/ |
H A D | shared.mk | 8 SHARED_OFILES = xarray-shared.o radix-tree.o idr.o linux.o $(LIBS) 14 ../../../include/linux/xarray.h \ 49 xarray-shared.o: ../shared/xarray-shared.c ../../../lib/xarray.c \
|
/linux/drivers/gpu/drm/i915/ |
H A D | i915_file_private.h | 78 struct xarray proto_context_xa; 87 struct xarray context_xa; 88 struct xarray vm_xa;
|
/linux/fs/smb/server/mgmt/ |
H A D | user_session.h | 52 struct xarray ksmbd_chann_list; 53 struct xarray tree_conns; 55 struct xarray rpc_handle_list;
|
/linux/drivers/gpu/drm/tegra/ |
H A D | uapi.h | 23 struct xarray contexts; 24 struct xarray syncpoints;
|
/linux/drivers/gpu/drm/vkms/ |
H A D | vkms_config.h | 49 struct xarray possible_crtcs; 91 struct xarray possible_crtcs; 112 struct xarray possible_encoders;
|
/linux/drivers/accel/ivpu/ |
H A D | ivpu_drv.h | 141 struct xarray context_xa; 144 struct xarray db_xa; 156 struct xarray submitted_jobs_xa; 184 struct xarray cmdq_xa;
|
/linux/drivers/gpu/drm/xe/ |
H A D | xe_device_types.h | 397 struct xarray indexes; 441 struct xarray asid_to_vm; 679 struct xarray xa; 691 struct xarray xa;
|
/linux/drivers/net/ethernet/intel/ice/ |
H A D | ice_eswitch_br.h | 50 struct xarray vlans; 59 struct xarray ports;
|
/linux/block/ |
H A D | blk-mq-sched.h | 28 int blk_mq_alloc_sched_tags_batch(struct xarray *et_table, 32 void blk_mq_free_sched_tags_batch(struct xarray *et_table,
|
/linux/drivers/iommu/iommufd/ |
H A D | iommufd_private.h | 44 struct xarray objects; 45 struct xarray groups; 84 struct xarray domains; 85 struct xarray access_list; 474 struct xarray pasid_attach; 575 struct xarray response;
|