Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arch/tile: export some additional module symbols

This adds a grab bag of symbols that have been missing for
various modules.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>

+8
+7
arch/tile/lib/exports.c
··· 29 29 EXPORT_SYMBOL(strnlen_user_asm); 30 30 EXPORT_SYMBOL(strncpy_from_user_asm); 31 31 EXPORT_SYMBOL(clear_user_asm); 32 + EXPORT_SYMBOL(flush_user_asm); 33 + EXPORT_SYMBOL(inv_user_asm); 34 + EXPORT_SYMBOL(finv_user_asm); 32 35 33 36 /* arch/tile/kernel/entry.S */ 34 37 #include <linux/kernel.h> ··· 85 82 EXPORT_SYMBOL(__muldi3); 86 83 uint64_t __lshrdi3(uint64_t, unsigned int); 87 84 EXPORT_SYMBOL(__lshrdi3); 85 + uint64_t __ashrdi3(uint64_t, unsigned int); 86 + EXPORT_SYMBOL(__ashrdi3); 87 + uint64_t __ashldi3(uint64_t, unsigned int); 88 + EXPORT_SYMBOL(__ashldi3); 88 89 #endif
+1
arch/tile/mm/init.c
··· 69 69 70 70 #ifndef __tilegx__ 71 71 unsigned long VMALLOC_RESERVE = CONFIG_VMALLOC_RESERVE; 72 + EXPORT_SYMBOL(VMALLOC_RESERVE); 72 73 #endif 73 74 74 75 DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);