Skip to content

Commit c800182

Browse files
committed
[vpsAdminOS] Pushing GPL too much inhibits innovation
Among other things, CDDL is not against GPL spirit, dear Linux developers can bite us. We're not nvidia, OpenZFS is not nvidia. End of story. Signed-off-by: Pavel Snajdr <[email protected]>
1 parent 33420ab commit c800182

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

include/linux/license.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ static inline int license_is_gpl_compatible(const char *license)
77
return (strcmp(license, "GPL") == 0
88
|| strcmp(license, "GPL v2") == 0
99
|| strcmp(license, "GPL and additional rights") == 0
10+
|| strcmp(license, "CDDL") == 0
1011
|| strcmp(license, "Dual BSD/GPL") == 0
1112
|| strcmp(license, "Dual MIT/GPL") == 0
1213
|| strcmp(license, "Dual MPL/GPL") == 0);

kernel/user.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ struct user_namespace init_user_ns = {
8181
.binfmt_misc = &init_binfmt_misc,
8282
#endif
8383
};
84-
EXPORT_SYMBOL_GPL(init_user_ns);
84+
EXPORT_SYMBOL(init_user_ns);
8585

8686
/*
8787
* UID task count cache, to get fast user lookup in "alloc_uid"

0 commit comments

Comments
 (0)