Use the new KMEM_CACHE() macro instead of direct kmem_cache_create
to simplify the creation of SLAB caches.
Signed-off-by: Kunwu Chan <chentao@kylinos.cn>
Acked-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
 
 struct kmem_cache *dlm_lowcomms_msg_cache_create(void)
 {
-       return kmem_cache_create("dlm_msg", sizeof(struct dlm_msg), 0, 0, NULL);
+       return KMEM_CACHE(dlm_msg, 0);
 }
 
 /* need to held writequeue_lock */