Home
last modified time | relevance | path

Searched refs:xas_error (Results 1 – 13 of 13) sorted by relevance

/linux/lib/
H A Didr.c425 if (xas_error(&xas)) { in ida_alloc_range()
463 if (xas_error(&xas)) in ida_alloc_range()
464 return xas_error(&xas); in ida_alloc_range()
H A Dxarray.c188 if (xas_error(xas)) in xas_start()
668 } else if (xas_error(xas)) { in xas_create()
726 if (xas_error(xas)) in xas_create_range()
1397 if (xas_error(xas) || xas->xa_node == XAS_BOUNDS) in xas_find()
1468 if (xas_error(xas)) in xas_find_marked()
1556 if (xas_error(xas)) in xas_find_conflict()
1629 if (xas_error(xas)) in xas_result()
1890 if (xas_error(&xas)) in xa_store_range()
1896 if (xas_error(&xas)) in xa_store_range()
2009 return xas_error(&xas); in __xa_alloc()
H A Dtest_xarray.c756 XA_BUG_ON(xa, xas_error(&xas) && xas_error(&xas) != -ENOMEM); in check_xa_multi_store_adv_add()
759 XA_BUG_ON(xa, xas_error(&xas)); in check_xa_multi_store_adv_add()
1134 XA_BUG_ON(xa, xas_error(&xas)); in __check_store_iter()
1672 if (xas_error(&xas)) in xa_store_many_order()
1682 XA_BUG_ON(xa, xas_error(&xas)); in xa_store_many_order()
1713 XA_BUG_ON(NULL, xas_error(&xas) != -EEXIST); in check_create_range_3()
1727 if (xas_error(&xas)) in check_create_range_4()
1741 XA_BUG_ON(xa, xas_error(&xas)); in check_create_range_4()
1892 XA_BUG_ON(xa, !xas_error(&xas) || xas_error(&xas) != -EINVAL); in check_split_2()
/linux/mm/
H A Dlist_lru.c552 if (!xas_error(&xas)) in memcg_list_lru_alloc()
562 return xas_error(&xas); in memcg_list_lru_alloc()
H A Dkhugepaged.c1884 if (!xas_error(&xas)) in collapse_file()
2140 if (xas_error(&xas)) { in collapse_file()
2212 WARN_ON_ONCE(xas_error(&xas)); in collapse_file()
H A Dshmem.c923 if (xas_error(&xas)) in shmem_add_to_page_cache()
931 if (xas_error(&xas)) { in shmem_add_to_page_cache()
934 return xas_error(&xas); in shmem_add_to_page_cache()
2253 if (xas_error(&xas)) in shmem_split_large_entry()
2281 if (xas_error(&xas)) in shmem_split_large_entry()
2282 return xas_error(&xas); in shmem_split_large_entry()
H A Dfilemap.c901 if (xas_error(&xas)) in __filemap_add_folio()
916 if (xas_error(&xas)) in __filemap_add_folio()
936 if (xas_error(&xas)) in __filemap_add_folio()
945 return xas_error(&xas); in __filemap_add_folio()
H A Dhuge_memory.c3666 if (xas_error(xas)) in __split_unmapped_folio()
3667 return xas_error(xas); in __split_unmapped_folio()
4017 if (xas_error(&xas)) { in __folio_split()
4018 ret = xas_error(&xas); in __folio_split()
/linux/Documentation/translations/zh_CN/core-api/
H A Dxarray.rst261 xa_state也被用来存储错误(store errors)。你可以调用xas_error()来检索错误。所有的操作在进行之前都
/linux/drivers/iommu/iommufd/
H A Dpages.c635 if (xas_error(&xas)) in pages_to_xarray()
645 if (xas_error(&xas)) { in pages_to_xarray()
648 return xas_error(&xas); in pages_to_xarray()
/linux/fs/cachefiles/
H A Dondemand.c577 ret = xas_error(&xas); in cachefiles_ondemand_send_req()
/linux/fs/
H A Ddax.c717 if (xas_error(xas)) in grab_mapping_entry()
728 if (xas_error(xas)) in grab_mapping_entry()
/linux/include/linux/
H A Dxarray.h1435 static inline int xas_error(const struct xa_state *xas) in xas_error() function