/openbmc/linux/lib/ |
H A D | idr.c | 412 xas_store(&xas, xa_mk_value(tmp)); in ida_alloc_range() 422 xas_store(&xas, bitmap); in ida_alloc_range() 450 xas_store(&xas, bitmap); in ida_alloc_range() 509 xas_store(&xas, xa_mk_value(v)); in ida_free() 518 xas_store(&xas, NULL); in ida_free() 551 xas_store(&xas, NULL); in ida_destroy()
|
H A D | test_xarray.c | 79 curr = xas_store(&xas, entry); in xa_store_order() 133 xas_store(&xas, XA_RETRY_ENTRY); in check_xas_retry() 135 xas_store(&xas, XA_RETRY_ENTRY); in check_xas_retry() 139 xas_store(&xas, xa_mk_index(xas.xa_index)); in check_xas_retry() 343 XA_BUG_ON(xa, xas_store(&xas, NULL) != xa_mk_value(1)); in check_xa_shrink() 503 xas_store(&xas, xa_mk_index(j)); in check_xas_erase() 511 xas_store(&xas, xa_mk_value(0)); in check_xas_erase() 516 xas_store(&xas, NULL); in check_xas_erase() 522 xas_store(&xas, NULL); in check_xas_erase() 545 XA_BUG_ON(xa, xas_store(&xas, xa_mk_index(min)) != xa_mk_index(index)); in check_multi_store_1() [all …]
|
H A D | xarray.c | 775 void *xas_store(struct xa_state *xas, void *entry) in xas_store() function 847 EXPORT_SYMBOL_GPL(xas_store); 1495 return xas_result(&xas, xas_store(&xas, NULL)); in __xa_erase() 1549 curr = xas_store(&xas, entry); in __xa_store() 1615 xas_store(&xas, entry); in __xa_cmpxchg() 1654 xas_store(&xas, entry); in __xa_insert() 1739 xas_store(&xas, entry); in xa_store_range() 1846 xas_store(&xas, entry); in __xa_alloc() 2210 xas_store(&xas, NULL); in xa_delete_node()
|
/openbmc/linux/Documentation/translations/zh_CN/core-api/ |
H A D | xarray.rst | 312 为 ``XA_FLAGS_TRACK_FREE`` ,在这种情况下,标记0被设置,所有其他标记被清空。使用xas_store()将一个 350 你可以通过使用XA_STATE_ORDER()或xas_set_order(),然后调用xas_store()来创建一个多索引条目。用一个
|
/openbmc/linux/fs/cachefiles/ |
H A D | ondemand.c | 47 xas_store(&xas, NULL); in cachefiles_ondemand_fd_release() 140 xas_store(&xas, NULL); in cachefiles_ondemand_fd_ioctl() 202 xas_store(&xas, NULL); in cachefiles_ondemand_copen() 572 xas_store(&xas, req); in cachefiles_ondemand_send_req()
|
/openbmc/linux/tools/testing/radix-tree/ |
H A D | iteration_check.c | 34 xas_store(&xas, item); in my_item_insert()
|
H A D | test.c | 264 xas_store(&xas, NULL); in item_kill_tree()
|
H A D | multiorder.c | 23 xas_store(&xas, item); in item_insert_order()
|
/openbmc/linux/mm/ |
H A D | swap_state.c | 117 xas_store(&xas, folio); in add_to_swap_cache() 155 void *entry = xas_store(&xas, shadow); in __delete_from_swap_cache() 263 xas_store(&xas, NULL); in clear_shadow_from_swap_cache()
|
H A D | list_lru.c | 385 xas_store(&xas, NULL); in memcg_destroy_list_lru() 520 xas_store(&xas, mlru); in memcg_list_lru_alloc()
|
H A D | truncate.c | 39 xas_store(&xas, NULL); in __clear_shadow_entry()
|
H A D | khugepaged.c | 2069 xas_store(&xas, XA_RETRY_ENTRY); in collapse_file() 2109 xas_store(&xas, NULL); in collapse_file() 2144 xas_store(&xas, new_folio); in collapse_file()
|
H A D | filemap.c | 142 xas_store(&xas, shadow); in page_cache_delete() 314 xas_store(&xas, NULL); in page_cache_delete_batch() 825 xas_store(&xas, new); in replace_page_cache_folio() 913 xas_store(&xas, folio); in __filemap_add_folio()
|
H A D | migrate.c | 461 xas_store(&xas, newfolio); in folio_migrate_mapping() 545 xas_store(&xas, dst); in migrate_huge_page_move_mapping()
|
H A D | shmem.c | 484 xas_store(&xas, replacement); in shmem_replace_entry() 806 xas_store(&xas, folio); in shmem_add_to_page_cache()
|
/openbmc/linux/fs/ |
H A D | dax.c | 283 old = xas_store(xas, entry); in dax_unlock_entry() 295 return xas_store(xas, xa_mk_value(v | DAX_LOCKED)); in dax_lock_entry() 624 xas_store(xas, NULL); /* undo the PMD join */ in grab_mapping_entry() 761 xas_store(&xas, NULL); in __dax_invalidate_entry() 1008 xas_store(xas, entry); in dax_writeback_one()
|
/openbmc/linux/drivers/infiniband/sw/rxe/ |
H A D | rxe_mr.c | 116 xas_store(&xas, page); in rxe_mr_fill_pages_from_sgt() 170 xas_store(&xas, XA_ZERO_ENTRY); in rxe_mr_alloc()
|
/openbmc/linux/include/linux/ |
H A D | xarray.h | 1533 void *xas_store(struct xa_state *, void *entry); 1568 xas_store(xas, entry); in xas_split()
|
/openbmc/linux/drivers/iommu/iommufd/ |
H A D | main.c | 161 xas_store(&xas, NULL); in iommufd_object_remove()
|
H A D | pages.c | 555 xas_store(&xas, NULL); in batch_from_xarray_clear() 571 xas_store(&xas, NULL); in clear_xarray() 596 old = xas_store(&xas, xa_mk_value(page_to_pfn(*pages))); in pages_to_xarray()
|
/openbmc/linux/Documentation/core-api/ |
H A D | xarray.rst | 401 xas_store() will not reset the marks on that entry; if you want 465 or xas_set_order() followed by a call to xas_store().
|
/openbmc/linux/drivers/infiniband/hw/mlx5/ |
H A D | mr.c | 167 xas_store(&xas, to_store); in push_mkey_locked() 169 xas_store(&xas, XA_ZERO_ENTRY); in push_mkey_locked()
|
/openbmc/linux/drivers/target/ |
H A D | target_core_user.c | 3121 xas_store(&xas, NULL); in tcmu_free_kept_buf_store()
|