Skip to content

Commit

Permalink
[vpsAdminOS] Pushing GPL too much inhibits innovation
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
snajpa committed Aug 13, 2024
1 parent 33420ab commit c800182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/linux/license.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ static inline int license_is_gpl_compatible(const char *license)
return (strcmp(license, "GPL") == 0
|| strcmp(license, "GPL v2") == 0
|| strcmp(license, "GPL and additional rights") == 0
|| strcmp(license, "CDDL") == 0
|| strcmp(license, "Dual BSD/GPL") == 0
|| strcmp(license, "Dual MIT/GPL") == 0
|| strcmp(license, "Dual MPL/GPL") == 0);
Expand Down
2 changes: 1 addition & 1 deletion kernel/user.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ struct user_namespace init_user_ns = {
.binfmt_misc = &init_binfmt_misc,
#endif
};
EXPORT_SYMBOL_GPL(init_user_ns);
EXPORT_SYMBOL(init_user_ns);

/*
* UID task count cache, to get fast user lookup in "alloc_uid"
Expand Down

0 comments on commit c800182

Please sign in to comment.