Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1646982
| From | "Kirill A. Shutemov" <kirill@shutemov.name> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] x86/mm: pgds getting out of sync after memory hot remove |
| Date | 2017-05-22 16:40 +0200 |
| Message-ID | <tJWF3-6Ra-1@gated-at.bofh.it> (permalink) |
| References | <tITpU-4T3-13@gated-at.bofh.it> <tJVzj-6fx-9@gated-at.bofh.it> <tJWlI-6KH-21@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, May 22, 2017 at 10:11:51AM -0400, Jerome Glisse wrote: > On Mon, May 22, 2017 at 04:12:15PM +0300, Kirill A. Shutemov wrote: > > On Fri, May 19, 2017 at 02:01:26PM -0400, Jérôme Glisse wrote: > > > After memory hot remove it seems we do not synchronize pgds for kernel > > > virtual memory range (on vmemmap_free()). This seems bogus to me as it > > > means we are left with stall entry for process with mm != mm_init > > > > > > Yet i am puzzle by the fact that i am only now hitting this issue. It > > > never was an issue with 4.12 or before ie HMM never triggered following > > > BUG_ON inside sync_global_pgds(): > > > > > > if (!p4d_none(*p4d_ref) && !p4d_none(*p4d)) > > > BUG_ON(p4d_page_vaddr(*p4d) != p4d_page_vaddr(*p4d_ref)); > > > > > > > > > It seems that Kirill 5 level page table changes play a role in this > > > behavior change. I could not bisect because HMM is painfull to rebase > > > for each bisection step so that is just my best guess. > > > > > > > > > Am i missing something here ? Am i wrong in assuming that should sync > > > pgd on vmemmap_free() ? If so anyone have a good guess on why i am now > > > seeing the above BUG_ON ? > > > > What would we gain by syncing pgd on free? Stale pgds are fine as long as > > they are not referenced (use-after-free case). Syncing is addtional work. > > Well then how do i avoid the BUG_ON above ? Because the init_mm pgd is > clear but none of the stall entry in any other mm. So if i unplug memory > and replug memory at exact same address it tries to allocate new p4d/pud > for struct page area and then when sync_global_pgds() is call it goes > over the list of pgd and BUG_ON() : > > if (!p4d_none(*p4d_ref) && !p4d_none(*p4d)) > BUG_ON(p4d_page_vaddr(*p4d) != p4d_page_vaddr(*p4d_ref)); > > > So to me either above check need to go and we should overwritte pgd no > matter what or we should restore previous behavior. I don't mind either > one. I would prefer to drop the BUG_ON. Ingo? -- Kirill A. Shutemov
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] x86/mm: pgds getting out of sync after memory hot remove Jérôme Glisse <jglisse@redhat.com> - 2017-05-19 19:00 +0200
[PATCH] x86/mm: synchronize pgd in vmemmap_free() Jérôme Glisse <jglisse@redhat.com> - 2017-05-19 19:00 +0200
Re: [PATCH] x86/mm: synchronize pgd in vmemmap_free() John Hubbard <jhubbard@nvidia.com> - 2017-05-20 02:40 +0200
Re: [PATCH] x86/mm: pgds getting out of sync after memory hot remove "Kirill A. Shutemov" <kirill@shutemov.name> - 2017-05-22 15:30 +0200
Re: [PATCH] x86/mm: pgds getting out of sync after memory hot remove Jerome Glisse <jglisse@redhat.com> - 2017-05-22 16:20 +0200
Re: [PATCH] x86/mm: pgds getting out of sync after memory hot remove "Kirill A. Shutemov" <kirill@shutemov.name> - 2017-05-22 16:40 +0200
csiph-web