[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <8fefbfb2-1100-fab2-0383-e57343dc44f5@huawei.com>
Date: Wed, 6 May 2020 17:16:04 +0800
From: "Leizhen (ThunderTown)" <thunder.leizhen@...wei.com>
To: Matthew Wilcox <willy@...radead.org>
CC: Minchan Kim <minchan@...nel.org>, Nitin Gupta <ngupta@...are.org>,
"Sergey Senozhatsky" <sergey.senozhatsky.work@...il.com>,
Jens Axboe <axboe@...nel.dk>,
linux-block <linux-block@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-mm <linux-mm@...ck.org>, Alasdair Kergon <agk@...hat.com>,
Mike Snitzer <snitzer@...hat.com>,
dm-devel <dm-devel@...hat.com>, Song Liu <song@...nel.org>,
linux-raid <linux-raid@...r.kernel.org>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 2/4] mm/swap: use SECTORS_PER_PAGE_SHIFT to clean up code
On 2020/5/6 11:47, Leizhen (ThunderTown) wrote:
>
>
> On 2020/5/6 9:33, Leizhen (ThunderTown) wrote:
>>
>>
>> On 2020/5/6 1:25, Matthew Wilcox wrote:
>>> On Tue, May 05, 2020 at 07:55:41PM +0800, Zhen Lei wrote:
>>>> +++ b/mm/swapfile.c
>>>> @@ -177,8 +177,8 @@ static int discard_swap(struct swap_info_struct *si)
>>>>
>>>> /* Do not discard the swap header page! */
>>>> se = first_se(si);
>>>> - start_block = (se->start_block + 1) << (PAGE_SHIFT - 9);
>>>> - nr_blocks = ((sector_t)se->nr_pages - 1) << (PAGE_SHIFT - 9);
>>>> + start_block = (se->start_block + 1) << SECTORS_PER_PAGE_SHIFT;
>>>> + nr_blocks = ((sector_t)se->nr_pages - 1) << SECTORS_PER_PAGE_SHIFT;
>>>
>>> Thinking about this some more, wouldn't this look better?
>>>
>>> start_block = page_sectors(se->start_block + 1);
>>> nr_block = page_sectors(se->nr_pages - 1);
>>>
>>
>> OKļ¼That's fine, it's clearer. And in this way, there won't be more than 80 columns.
>
> Should we rename "page_sectors" to "page_to_sectors"? Because we may need to define
> "sectors_to_page" also.
Change the "sectors_to_page" to "sectors_to_npage", npage means "number of pages"
or "page number". To distinguish the use case of "pfn_to_page()" etc. The latter
returns the pointer of "struct page".
>
>>
>>>
>>> .
>>>
Powered by blists - more mailing lists