The patch titled Subject: zram-user-per-cpu-compression-streams-fix has been removed from the -mm tree. Its filename was zram-user-per-cpu-compression-streams-fix.patch This patch was dropped because it was folded into zram-user-per-cpu-compression-streams.patch ------------------------------------------------------ From: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Subject: zram-user-per-cpu-compression-streams-fix a very minor clean up, noted by Minchan. Cc: Minchan Kim <minchan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/zram/zcomp.c | 4 ++-- drivers/block/zram/zcomp.h | 2 +- drivers/block/zram/zram_drv.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/block/zram/zcomp.c~zram-user-per-cpu-compression-streams-fix drivers/block/zram/zcomp.c --- a/drivers/block/zram/zcomp.c~zram-user-per-cpu-compression-streams-fix +++ a/drivers/block/zram/zcomp.c @@ -209,9 +209,9 @@ void zcomp_destroy(struct zcomp *comp) * backend pointer or ERR_PTR if things went bad. ERR_PTR(-EINVAL) * if requested algorithm is not supported, ERR_PTR(-ENOMEM) in * case of allocation error, or any other error potentially - * returned by functions zcomp_strm_{multi,single}_create. + * returned by zcomp_init(). */ -struct zcomp *zcomp_create(const char *compress, int max_strm) +struct zcomp *zcomp_create(const char *compress) { struct zcomp *comp; struct zcomp_backend *backend; diff -puN drivers/block/zram/zcomp.h~zram-user-per-cpu-compression-streams-fix drivers/block/zram/zcomp.h --- a/drivers/block/zram/zcomp.h~zram-user-per-cpu-compression-streams-fix +++ a/drivers/block/zram/zcomp.h @@ -45,7 +45,7 @@ struct zcomp { ssize_t zcomp_available_show(const char *comp, char *buf); bool zcomp_available_algorithm(const char *comp); -struct zcomp *zcomp_create(const char *comp, int max_strm); +struct zcomp *zcomp_create(const char *comp); void zcomp_destroy(struct zcomp *comp); struct zcomp_strm *zcomp_strm_find(struct zcomp *comp); diff -puN drivers/block/zram/zram_drv.c~zram-user-per-cpu-compression-streams-fix drivers/block/zram/zram_drv.c --- a/drivers/block/zram/zram_drv.c~zram-user-per-cpu-compression-streams-fix +++ a/drivers/block/zram/zram_drv.c @@ -1064,7 +1064,7 @@ static ssize_t disksize_store(struct dev if (!meta) return -ENOMEM; - comp = zcomp_create(zram->compressor, zram->max_comp_streams); + comp = zcomp_create(zram->compressor); if (IS_ERR(comp)) { pr_err("Cannot initialise %s compressing backend\n", zram->compressor); _ Patches currently in -mm which might be from sergey.senozhatsky@xxxxxxxxx are zsmalloc-require-gfp-in-zs_malloc.patch zram-user-per-cpu-compression-streams.patch zram-remove-max_comp_streams-internals.patch zram-introduce-per-device-debug_stat-sysfs-node.patch zram-introduce-per-device-debug_stat-sysfs-node-update-2.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html