The quilt patch titled Subject: mm-zswap-use-only-one-pool-in-zswap-v2 has been removed from the -mm tree. Its filename was mm-zswap-use-only-one-pool-in-zswap-v2.patch This patch was dropped because it was folded into mm-zswap-use-only-one-pool-in-zswap.patch ------------------------------------------------------ From: Chengming Zhou <chengming.zhou@xxxxxxxxx> Subject: mm-zswap-use-only-one-pool-in-zswap-v2 Date: Fri, 21 Jun 2024 15:15:10 +0800 fix error handling in zswap_pool_create(), per Dan Carpenter Link: https://lkml.kernel.org/r/20240621-zsmalloc-lock-mm-everything-v2-2-d30e9cd2b793@xxxxxxxxx Signed-off-by: Chengming Zhou <chengming.zhou@xxxxxxxxx> Reviewed-by: Nhat Pham <nphamcs@xxxxxxxxx> Acked-by: Yosry Ahmed <yosryahmed@xxxxxxxxxx> Cc: Chengming Zhou <zhouchengming@xxxxxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: Sergey Senozhatsky <senozhatsky@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zswap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/zswap.c~mm-zswap-use-only-one-pool-in-zswap-v2 +++ a/mm/zswap.c @@ -268,7 +268,7 @@ static struct zswap_pool *zswap_pool_cre pool->zpool = zpool_create_pool(type, name, gfp); if (!pool->zpool) { pr_err("%s zpool not available\n", type); - goto error; + return NULL; } pr_debug("using %s zpool\n", zpool_get_type(pool->zpool)); _ Patches currently in -mm which might be from chengming.zhou@xxxxxxxxx are mm-zswap-use-only-one-pool-in-zswap.patch mm-zswap-use-only-one-pool-in-zswap-v3.patch mm-zsmalloc-fix-class-per-fullness-zspage-counts.patch mm-zsmalloc-move-record_obj-into-obj_malloc.patch