Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1e02ce4cccdcb9688386e5b8d2c9fa4660b45389 introduces symbol `cpu_tlbstate'
- which is exported via EXPORT_SYMBOL_GPL.
- Since some non-GPL modules (such as fglrx) are using this symbol,
- it's impossible to use them (e.g. via DKMS).
- ---
- arch/x86/mm/init.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c
- index 1d55318..987448b 100644
- --- a/arch/x86/mm/init.c
- +++ b/arch/x86/mm/init.c
- @@ -739,7 +739,7 @@ DEFINE_PER_CPU_SHARED_ALIGNED(struct tlb_state, cpu_tlbstate) = {
- #endif
- .cr4 = ~0UL, /* fail hard if we screw up cr4 shadow initialization */
- };
- -EXPORT_SYMBOL_GPL(cpu_tlbstate);
- +EXPORT_SYMBOL(cpu_tlbstate);
- void update_cache_mode_entry(unsigned entry, enum page_cache_mode cache)
- {
- --
- 2.1.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement