2022-12-23 04:53:17

by JeongHyeon Lee

[permalink] [raw]
Subject: [PATCH] zram: fix typos in comments

- The double `range` is duplicated in comment, remove one.
- change `syfs` to `sysfs`

Signed-off-by: JeongHyeon Lee <[email protected]>
---
drivers/block/zram/zram_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index e290d6d97047..7becd5448791 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -190,7 +190,7 @@ static inline bool valid_io_request(struct zram *zram,

end = start + (size >> SECTOR_SHIFT);
bound = zram->disksize >> SECTOR_SHIFT;
- /* out of range range */
+ /* out of range */
if (unlikely(start >= bound || end > bound || start > end))
return false;

@@ -2385,7 +2385,7 @@ static int zram_add(void)
zram->disk->private_data = zram;
snprintf(zram->disk->disk_name, 16, "zram%d", device_id);

- /* Actual capacity set using syfs (/sys/block/zram<id>/disksize */
+ /* Actual capacity set using sysfs (/sys/block/zram<id>/disksize */
set_capacity(zram->disk, 0);
/* zram devices sort of resembles non-rotational disks */
blk_queue_flag_set(QUEUE_FLAG_NONROT, zram->disk->queue);
--
2.38.1


2022-12-23 12:19:38

by Sergey Senozhatsky

[permalink] [raw]
Subject: Re: [PATCH] zram: fix typos in comments

Cc-ing Andrew

On (22/12/23 13:03), JeongHyeon Lee wrote:
> - The double `range` is duplicated in comment, remove one.
> - change `syfs` to `sysfs`
>
> Signed-off-by: JeongHyeon Lee <[email protected]>

Reviewed-by: Sergey Senozhatsky <[email protected]>