aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Senozhatsky <[email protected]>2022-11-09 20:50:40 +0900
committerAndrew Morton <[email protected]>2022-11-30 15:58:52 -0800
commit9fda785dbd14cfc7d874d00d2b007cb143aa48d0 (patch)
tree9a0b1892170b8e505cab1aae44e5480462ead3e8
parent60e9b39ebec56467c36c3da76eee28083196cdf1 (diff)
zram: clarify writeback_store() comment
Re-phrase writeback BIO error comment. Link: https://lkml.kernel.org/r/[email protected] Reported-by: Andrew Morton <[email protected]> Signed-off-by: Sergey Senozhatsky <[email protected]> Acked-by: Minchan Kim <[email protected]> Cc: Alexey Romanov <[email protected]> Cc: Nhat Pham <[email protected]> Cc: Nitin Gupta <[email protected]> Cc: Suleiman Souhlal <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r--drivers/block/zram/zram_drv.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index ddbfa70ef9a3..0ca0bf330d8f 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -769,8 +769,12 @@ static ssize_t writeback_store(struct device *dev,
zram_clear_flag(zram, index, ZRAM_IDLE);
zram_slot_unlock(zram, index);
/*
- * Return last IO error unless every IO were
- * not suceeded.
+ * BIO errors are not fatal, we continue and simply
+ * attempt to writeback the remaining objects (pages).
+ * At the same time we need to signal user-space that
+ * some writes (at least one, but also could be all of
+ * them) were not successful and we do so by returning
+ * the most recent BIO error.
*/
ret = err;
continue;