[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20140804113954.GA957@swordfish>
Date: Mon, 4 Aug 2014 20:39:54 +0900
From: Sergey Senozhatsky <sergey.senozhatsky@...il.com>
To: Sami Kerola <kerolasa@....fi>
Cc: linux-kernel@...r.kernel.org, Minchan Kim <minchan@...nel.org>,
Nitin Gupta <ngupta@...are.org>,
Sergey Senozhatsky <sergey.senozhatsky@...il.com>
Subject: Re: [PATCH] zram: return EBUSY when max_comp_streams change fails
for device in use
On (08/03/14 23:48), Sami Kerola wrote:
> Both disksize and comp_algorithm return EBUSY when a change is attempted
> to a device in use, and so should max_comp_streams.
>
> Signed-off-by: Sami Kerola <kerolasa@....fi>
> ---
> drivers/block/zram/zram_drv.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
> index 36e54be..0211734 100644
> --- a/drivers/block/zram/zram_drv.c
> +++ b/drivers/block/zram/zram_drv.c
> @@ -139,7 +139,7 @@ static ssize_t max_comp_streams_store(struct device *dev,
> if (init_done(zram)) {
> if (!zcomp_set_max_streams(zram->comp, num)) {
> pr_info("Cannot change max compression streams\n");
> - ret = -EINVAL;
> + ret = -EBUSY;
> goto out;
> }
> }
NACK.
failed zcomp_set_max_streams() has nothing to do with device being busy.
-ss
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists