diff options
author | Alexander Gordeev <agordeev@linux.ibm.com> | 2023-10-23 21:16:41 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2023-11-05 22:34:57 +0100 |
commit | 0547e0bd9b95da18747009c2091846fcb5691a6f (patch) | |
tree | a99fb0efc0930ecdc04f40d8e7b4dbe26c93a2b4 /arch/s390/mm/pgalloc.c | |
parent | e392ea4d4d00880bf94550151b1ace4f88a4b17a (diff) |
s390/mm: add missing conversion to use ptdescs
Commit 6326c26c1514 ("s390: convert various pgalloc functions
to use ptdescs") missed to convert tlb_remove_table() into
tlb_remove_ptdesc() in few locations.
Reviewed-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/mm/pgalloc.c')
-rw-r--r-- | arch/s390/mm/pgalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/mm/pgalloc.c b/arch/s390/mm/pgalloc.c index 5488ae17318e..15f6a3ef40e8 100644 --- a/arch/s390/mm/pgalloc.c +++ b/arch/s390/mm/pgalloc.c @@ -412,7 +412,7 @@ void page_table_free_rcu(struct mmu_gather *tlb, unsigned long *table, } spin_unlock_bh(&mm->context.lock); table = (unsigned long *) ((unsigned long) table | (0x01U << bit)); - tlb_remove_table(tlb, table); + tlb_remove_ptdesc(tlb, table); } void __tlb_remove_table(void *_table) |