diff options
author | Guo Ren <guoren@linux.alibaba.com> | 2019-12-30 15:53:37 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-12 13:00:16 +0100 |
commit | 6db7f3bdc15340b51ad9d2f7f680d153c56bab52 (patch) | |
tree | 5bb044510aebeea4d218c1b53be662c18daa3d62 /arch/csky | |
parent | 229fa6c8d2845574f860e53c1657b0e2e83a8ee4 (diff) | |
download | linux-stable-6db7f3bdc15340b51ad9d2f7f680d153c56bab52.tar.gz linux-stable-6db7f3bdc15340b51ad9d2f7f680d153c56bab52.tar.bz2 linux-stable-6db7f3bdc15340b51ad9d2f7f680d153c56bab52.zip |
csky/mm: Fixup export invalid_pte_table symbol
[ Upstream commit 7f4a567332f035ab16b29010fbd04a0f10183c77 ]
There is no present bit in csky pmd hardware, so we need to prepare invalid_pte_table
for empty pmd entry and the functions (pmd_none & pmd_present) in pgtable.h need
invalid_pte_talbe to get result. If a module use these functions, we need export the
symbol for it.
Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Cc: Mo Qihui <qihui.mo@verisilicon.com>
Cc: Zhange Jian <zhang_jian5@dahuatech.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch/csky')
-rw-r--r-- | arch/csky/mm/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/csky/mm/init.c b/arch/csky/mm/init.c index d4c2292ea46b..00e96278b377 100644 --- a/arch/csky/mm/init.c +++ b/arch/csky/mm/init.c @@ -31,6 +31,7 @@ pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss; pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned_bss; +EXPORT_SYMBOL(invalid_pte_table); unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)] __page_aligned_bss; EXPORT_SYMBOL(empty_zero_page); |