From: Song Liu <songliubraving@fb.com>
To: Hillf Danton <hdanton@sina.com>
Cc: Linux-MM <linux-mm@kvack.org>,
"linux-fsdevel@vger.kernel.org" <linux-fsdevel@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kirill.shutemov@linux.intel.com"
<kirill.shutemov@linux.intel.com>,
Kernel Team <Kernel-team@fb.com>,
"william.kucharski@oracle.com" <william.kucharski@oracle.com>,
"akpm@linux-foundation.org" <akpm@linux-foundation.org>
Subject: Re: [PATCH v6 4/6] khugepaged: rename collapse_shmem() and khugepaged_scan_shmem()
Date: Sat, 22 Jun 2019 04:48:25 +0000 [thread overview]
Message-ID: <55244DE8-D7BD-4DBB-A518-45CA746DE4FE@fb.com> (raw)
In-Reply-To: <20190622031151.3316-1-hdanton@sina.com>
> On Jun 21, 2019, at 8:11 PM, Hillf Danton <hdanton@sina.com> wrote:
>
>
> Hello
>
> On Fri, 21 Jun 2019 17:05:10 -0700 Song Liu <songliubraving@fb.com> wrote:
>> Next patch will add khugepaged support of non-shmem files. This patch
>> renames these two functions to reflect the new functionality:
>>
>> collapse_shmem() => collapse_file()
>> khugepaged_scan_shmem() => khugepaged_scan_file()
>>
>> Acked-by: Rik van Riel <riel@surriel.com>
>> Signed-off-by: Song Liu <songliubraving@fb.com>
>> ---
>> mm/khugepaged.c | 13 +++++++------
>> 1 file changed, 7 insertions(+), 6 deletions(-)
>>
>> diff --git a/mm/khugepaged.c b/mm/khugepaged.c
>> index 0f7419938008..dde8e45552b3 100644
>> --- a/mm/khugepaged.c
>> +++ b/mm/khugepaged.c
>> @@ -1287,7 +1287,7 @@ static void retract_page_tables(struct address_space *mapping, pgoff_t pgoff)
>> }
>>
>> /**
>> - * collapse_shmem - collapse small tmpfs/shmem pages into huge one.
>> + * collapse_file - collapse small tmpfs/shmem pages into huge one.
>> *
>> * Basic scheme is simple, details are more complex:
>> * - allocate and lock a new huge page;
>> @@ -1304,10 +1304,11 @@ static void retract_page_tables(struct address_space *mapping, pgoff_t pgoff)
>> * + restore gaps in the page cache;
>> * + unlock and free huge page;
>> */
>> -static void collapse_shmem(struct mm_struct *mm,
>> +static void collapse_file(struct vm_area_struct *vma,
>> struct address_space *mapping, pgoff_t start,
>> struct page **hpage, int node)
>> {
>> + struct mm_struct *mm = vma->vm_mm;
>> gfp_t gfp;
>> struct page *new_page;
>> struct mem_cgroup *memcg;
>> @@ -1563,7 +1564,7 @@ static void collapse_shmem(struct mm_struct *mm,
>> /* TODO: tracepoints */
>> }
>>
>> -static void khugepaged_scan_shmem(struct mm_struct *mm,
>> +static void khugepaged_scan_file(struct vm_area_struct *vma,
>> struct address_space *mapping,
>> pgoff_t start, struct page **hpage)
>> {
>> @@ -1631,14 +1632,14 @@ static void khugepaged_scan_shmem(struct mm_struct *mm,
>> result = SCAN_EXCEED_NONE_PTE;
>> } else {
>> node = khugepaged_find_target_node();
>> - collapse_shmem(mm, mapping, start, hpage, node);
>> + collapse_file(vma, mapping, start, hpage, node);
>> }
>> }
>>
>> /* TODO: tracepoints */
>> }
>> #else
>> -static void khugepaged_scan_shmem(struct mm_struct *mm,
>> +static void khugepaged_scan_file(struct vm_area_struct *vma,
>> struct address_space *mapping,
>> pgoff_t start, struct page **hpage)
>> {
>> @@ -1722,7 +1723,7 @@ static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
>> file = get_file(vma->vm_file);
>> up_read(&mm->mmap_sem);
>> ret = 1;
>> - khugepaged_scan_shmem(mm, file->f_mapping,
>> + khugepaged_scan_file(vma, file->f_mapping,
>> pgoff, hpage);
>> fput(file);
>
> Is it a change that should have put some material in the log message?
> Is it unlikely for vma to go without mmap_sem held?
This is a great point. We really need to be more careful. Let me fix
it in the next version.
Thanks,
Song
prev parent reply other threads:[~2019-06-22 4:48 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-22 0:05 [PATCH v6 0/6] Enable THP for text section of non-shmem files Song Liu
2019-06-22 0:05 ` [PATCH v6 1/6] filemap: check compound_head(page)->mapping in filemap_fault() Song Liu
2019-06-22 0:05 ` [PATCH v6 2/6] filemap: update offset check " Song Liu
2019-06-22 0:05 ` [PATCH v6 3/6] mm,thp: stats for file backed THP Song Liu
2019-06-22 0:05 ` [PATCH v6 4/6] khugepaged: rename collapse_shmem() and khugepaged_scan_shmem() Song Liu
2019-06-22 0:05 ` [PATCH v6 5/6] mm,thp: add read-only THP support for (non-shmem) FS Song Liu
2019-06-22 0:05 ` [PATCH v6 6/6] mm,thp: avoid writes to file with THP in pagecache Song Liu
2019-06-22 3:11 ` [PATCH v6 4/6] khugepaged: rename collapse_shmem() and khugepaged_scan_shmem() Hillf Danton
2019-06-22 4:48 ` Song Liu [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55244DE8-D7BD-4DBB-A518-45CA746DE4FE@fb.com \
--to=songliubraving@fb.com \
--cc=Kernel-team@fb.com \
--cc=akpm@linux-foundation.org \
--cc=hdanton@sina.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=william.kucharski@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox