]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: rds: Simplify the allocation of slab caches in rds_conn_init
authorKunwu Chan <chentao@kylinos.cn>
Wed, 24 Jan 2024 07:58:01 +0000 (15:58 +0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 31 Jan 2024 01:08:19 +0000 (17:08 -0800)
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>
Link: https://lore.kernel.org/r/20240124075801.471330-1-chentao@kylinos.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/rds/connection.c

index b4cc699c5fad37736a31619db2b0ac41babd164e..c749c5525b40f2961861378b65ce6f84d8ba2b4c 100644 (file)
@@ -829,9 +829,7 @@ int rds_conn_init(void)
        if (ret)
                return ret;
 
-       rds_conn_slab = kmem_cache_create("rds_connection",
-                                         sizeof(struct rds_connection),
-                                         0, 0, NULL);
+       rds_conn_slab = KMEM_CACHE(rds_connection, 0);
        if (!rds_conn_slab) {
                rds_loop_net_exit();
                return -ENOMEM;