Message ID | 20240124075801.471330-1-chentao@kylinos.cn (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | net: rds: Simplify the allocation of slab caches in rds_conn_init | expand |
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Wed, 24 Jan 2024 15:58:01 +0800 you wrote: > 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> > --- > net/rds/connection.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) Here is the summary with links: - net: rds: Simplify the allocation of slab caches in rds_conn_init https://git.kernel.org/netdev/net-next/c/047a7d261be6 You are awesome, thank you!
diff --git a/net/rds/connection.c b/net/rds/connection.c index b4cc699c5fad..c749c5525b40 100644 --- a/net/rds/connection.c +++ b/net/rds/connection.c @@ -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;
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> --- net/rds/connection.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)