mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 09:40:58 +07:00
mm/rmap.c: fix outdated comment in page_get_anon_vma()
Replace DESTROY_BY_RCU with SLAB_TYPESAFE_BY_RCU because
SLAB_DESTROY_BY_RCU has been renamed to SLAB_TYPESAFE_BY_RCU by commit
5f0d5a3ae7
("mm: Rename SLAB_DESTROY_BY_RCU to SLAB_TYPESAFE_BY_RCU")
Link: http://lkml.kernel.org/r/20191017093554.22562-1-miles.chen@mediatek.com
Signed-off-by: Miles Chen <miles.chen@mediatek.com>
Cc: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f2400abc78
commit
091e429954
@ -477,9 +477,10 @@ void __init anon_vma_init(void)
|
||||
* chain and verify that the page in question is indeed mapped in it
|
||||
* [ something equivalent to page_mapped_in_vma() ].
|
||||
*
|
||||
* Since anon_vma's slab is DESTROY_BY_RCU and we know from page_remove_rmap()
|
||||
* that the anon_vma pointer from page->mapping is valid if there is a
|
||||
* mapcount, we can dereference the anon_vma after observing those.
|
||||
* Since anon_vma's slab is SLAB_TYPESAFE_BY_RCU and we know from
|
||||
* page_remove_rmap() that the anon_vma pointer from page->mapping is valid
|
||||
* if there is a mapcount, we can dereference the anon_vma after observing
|
||||
* those.
|
||||
*/
|
||||
struct anon_vma *page_get_anon_vma(struct page *page)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user