mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 20:24:12 +08:00
s390/setup: Fix __pa/__va for modules under non-GPL licenses
The struct vm_layout contains fields used in __pa/__va calculations. Such
fundamental things have to be exported with EXPORT_SYMBOL to avoid
breakages of out-of-tree modules under non-GPL licenses.
Fixes: 7de0446f0b
("s390/boot: Make identity mapping base address explicit")
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Acked-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
This commit is contained in:
parent
ab42fcb511
commit
e188e5d5ff
@ -149,7 +149,7 @@ unsigned long __bootdata_preserved(max_mappable);
|
||||
struct physmem_info __bootdata(physmem_info);
|
||||
|
||||
struct vm_layout __bootdata_preserved(vm_layout);
|
||||
EXPORT_SYMBOL_GPL(vm_layout);
|
||||
EXPORT_SYMBOL(vm_layout);
|
||||
int __bootdata_preserved(__kaslr_enabled);
|
||||
unsigned int __bootdata_preserved(zlib_dfltcc_support);
|
||||
EXPORT_SYMBOL(zlib_dfltcc_support);
|
||||
|
Loading…
Reference in New Issue
Block a user