* Fallback to other node is possible if __GFP_THISNODE is not set.
  */
 static __always_inline void *
-__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
+slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
                   unsigned long caller)
 {
        unsigned long save_flags;
 #endif /* CONFIG_NUMA */
 
 static __always_inline void *
-__cache_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
+slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
 {
        unsigned long save_flags;
        void *objp;
  */
 void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
 {
-       void *ret = __cache_alloc(cachep, flags, _RET_IP_);
+       void *ret = slab_alloc(cachep, flags, _RET_IP_);
 
        trace_kmem_cache_alloc(_RET_IP_, ret,
                               cachep->object_size, cachep->size, flags);
 {
        void *ret;
 
-       ret = __cache_alloc(cachep, flags, _RET_IP_);
+       ret = slab_alloc(cachep, flags, _RET_IP_);
 
        trace_kmalloc(_RET_IP_, ret,
                      size, cachep->size, flags);
 #ifdef CONFIG_NUMA
 void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
 {
-       void *ret = __cache_alloc_node(cachep, flags, nodeid, _RET_IP_);
+       void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
 
        trace_kmem_cache_alloc_node(_RET_IP_, ret,
                                    cachep->object_size, cachep->size,
 {
        void *ret;
 
-       ret = __cache_alloc_node(cachep, flags, nodeid, _RET_IP);
+       ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP);
 
        trace_kmalloc_node(_RET_IP_, ret,
                           size, cachep->size,
        cachep = __find_general_cachep(size, flags);
        if (unlikely(ZERO_OR_NULL_PTR(cachep)))
                return cachep;
-       ret = __cache_alloc(cachep, flags, caller);
+       ret = slab_alloc(cachep, flags, caller);
 
        trace_kmalloc(caller, ret,
                      size, cachep->size, flags);