[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <5cc90e64-4f17-487a-9ab6-691de00c4cb8@gmail.com>
Date: Thu, 16 Jan 2025 10:11:42 +0800
From: Wenchao Hao <haowenchao22@...il.com>
To: Sergey Senozhatsky <senozhatsky@...omium.org>
Cc: Minchan Kim <minchan@...nel.org>, Jens Axboe <axboe@...nel.dk>,
linux-kernel@...r.kernel.org, linux-block@...r.kernel.org
Subject: Re: [PATCH] zram: cleanup in zram_read_from_zspool()
On 2025/1/16 8:41, Sergey Senozhatsky wrote:
> On (25/01/15 22:55), Wenchao Hao wrote:
>> @@ -1561,11 +1561,6 @@ static int zram_read_from_zspool(struct zram *zram, struct page *page,
>>
>> size = zram_get_obj_size(zram, index);
>>
>> - if (size != PAGE_SIZE) {
>> - prio = zram_get_priority(zram, index);
>> - zstrm = zcomp_stream_get(zram->comps[prio]);
>> - }
>> -
>> src = zs_map_object(zram->mem_pool, handle, ZS_MM_RO);
>> if (size == PAGE_SIZE) {
>> dst = kmap_local_page(page);
>> @@ -1573,6 +1568,9 @@ static int zram_read_from_zspool(struct zram *zram, struct page *page,
>> kunmap_local(dst);
>> ret = 0;
>> } else {
>> + prio = zram_get_priority(zram, index);
>> + zstrm = zcomp_stream_get(zram->comps[prio]);
>> +
>> dst = kmap_local_page(page);
>> ret = zcomp_decompress(zram->comps[prio], zstrm,
>> src, size, dst);
>
> I think you are looking at some old code base (or maybe vanilla kernel),
> that function does not look like this in the current mm tree (or linux-next).
Yes, it's from https://github.com/torvalds/linux. Sorry I did not examine the
latest code, please ignore this thread.
Thanks.
Powered by blists - more mailing lists