mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 04:41:26 +00:00
[S390] Export uaccess as non-gpl symbol.
Commit c1821c2e97
introduced the
uaccess structure that is used to select the correct set of user
copy functions for the different execution modes (standard vs.
noexec vs. z9 optimized user copy). The uaccess symbol is exported
with EXPORT_SYMBOL_GPL. This breaks all non-gpl modules that use
user copy. To make them work again change the export to
EXPORT_SYMBOL.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
f67d136966
commit
d4ee453bcf
@ -65,7 +65,7 @@ long psw_user_bits = (PSW_BASE_BITS | PSW_MASK_DAT | PSW_ASC_HOME |
|
|||||||
* User copy operations.
|
* User copy operations.
|
||||||
*/
|
*/
|
||||||
struct uaccess_ops uaccess;
|
struct uaccess_ops uaccess;
|
||||||
EXPORT_SYMBOL_GPL(uaccess);
|
EXPORT_SYMBOL(uaccess);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Machine setup..
|
* Machine setup..
|
||||||
|
Loading…
Reference in New Issue
Block a user