aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xarray.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xarray.c')
-rw-r--r--lib/xarray.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/xarray.c b/lib/xarray.c
index c991ff4523ef..e7be4e47c6a9 100644
--- a/lib/xarray.c
+++ b/lib/xarray.c
@@ -1334,7 +1334,7 @@ void *__xa_erase(struct xarray *xa, unsigned long index)
1334 XA_STATE(xas, xa, index); 1334 XA_STATE(xas, xa, index);
1335 return xas_result(&xas, xas_store(&xas, NULL)); 1335 return xas_result(&xas, xas_store(&xas, NULL));
1336} 1336}
1337EXPORT_SYMBOL_GPL(__xa_erase); 1337EXPORT_SYMBOL(__xa_erase);
1338 1338
1339/** 1339/**
1340 * xa_store() - Store this entry in the XArray. 1340 * xa_store() - Store this entry in the XArray.
@@ -1674,7 +1674,7 @@ void __xa_set_mark(struct xarray *xa, unsigned long index, xa_mark_t mark)
1674 if (entry) 1674 if (entry)
1675 xas_set_mark(&xas, mark); 1675 xas_set_mark(&xas, mark);
1676} 1676}
1677EXPORT_SYMBOL_GPL(__xa_set_mark); 1677EXPORT_SYMBOL(__xa_set_mark);
1678 1678
1679/** 1679/**
1680 * __xa_clear_mark() - Clear this mark on this entry while locked. 1680 * __xa_clear_mark() - Clear this mark on this entry while locked.
@@ -1692,7 +1692,7 @@ void __xa_clear_mark(struct xarray *xa, unsigned long index, xa_mark_t mark)
1692 if (entry) 1692 if (entry)
1693 xas_clear_mark(&xas, mark); 1693 xas_clear_mark(&xas, mark);
1694} 1694}
1695EXPORT_SYMBOL_GPL(__xa_clear_mark); 1695EXPORT_SYMBOL(__xa_clear_mark);
1696 1696
1697/** 1697/**
1698 * xa_get_mark() - Inquire whether this mark is set on this entry. 1698 * xa_get_mark() - Inquire whether this mark is set on this entry.