mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 09:20:13 -04:00
mm/slab: stop exporting kvfree_rcu_barrier[_on_cache]()
No module code calls these functions directly. Seems it was always the case. Remove the exports. Acked-by: Paul E. McKenney <paulmck@kernel.org> Reviewed-by: Harry Yoo <harry@kernel.org> Link: https://patch.msgid.link/20260730-unexport-barriers-v1-1-852f6641abe9@kernel.org Signed-off-by: Vlastimil Babka (SUSE) <vbabka@kernel.org>
This commit is contained in:
@@ -1329,14 +1329,12 @@ void kvfree_rcu_barrier(void)
|
||||
deferred_work_barrier();
|
||||
rcu_barrier();
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(kvfree_rcu_barrier);
|
||||
|
||||
void kvfree_rcu_barrier_on_cache(struct kmem_cache *s)
|
||||
{
|
||||
deferred_work_barrier();
|
||||
rcu_barrier();
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(kvfree_rcu_barrier_on_cache);
|
||||
|
||||
void __init kvfree_rcu_init(void)
|
||||
{
|
||||
@@ -2163,7 +2161,6 @@ void kvfree_rcu_barrier(void)
|
||||
flush_all_rcu_sheaves();
|
||||
__kvfree_rcu_barrier();
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(kvfree_rcu_barrier);
|
||||
|
||||
/**
|
||||
* kvfree_rcu_barrier_on_cache - Wait for in-flight kvfree_rcu() calls on a
|
||||
@@ -2186,7 +2183,6 @@ void kvfree_rcu_barrier_on_cache(struct kmem_cache *s)
|
||||
rcu_barrier();
|
||||
__kvfree_rcu_barrier();
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(kvfree_rcu_barrier_on_cache);
|
||||
|
||||
static unsigned long
|
||||
kfree_rcu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
|
||||
|
||||
Reference in New Issue
Block a user