From: Pranith Kumar Date: Wed, 10 Dec 2014 23:42:28 +0000 (-0800) Subject: slab: replace smp_read_barrier_depends() with lockless_dereference() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8df0c2dcf61781d2efa8e6e5b06870f6c6785735;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git slab: replace smp_read_barrier_depends() with lockless_dereference() Recently lockless_dereference() was added which can be used in place of hard-coding smp_read_barrier_depends(). The following PATCH makes the change. Signed-off-by: Pranith Kumar Cc: "Paul E. McKenney" Cc: Christoph Lameter Cc: Pekka Enberg Cc: David Rientjes Cc: Joonsoo Kim Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/slab.h b/mm/slab.h index 53a55c70c409..078acbcf64e8 100644 --- a/mm/slab.h +++ b/mm/slab.h @@ -209,15 +209,15 @@ cache_from_memcg_idx(struct kmem_cache *s, int idx) rcu_read_lock(); params = rcu_dereference(s->memcg_params); - cachep = params->memcg_caches[idx]; - rcu_read_unlock(); /* * Make sure we will access the up-to-date value. The code updating * memcg_caches issues a write barrier to match this (see * memcg_register_cache()). */ - smp_read_barrier_depends(); + cachep = lockless_dereference(params->memcg_caches[idx]); + rcu_read_unlock(); + return cachep; }