-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WARNING: modpost: /home/nabijaczleweli/uwu/unicode-oot/module/zfs.o(.init.text+0x342): Section mismatch in reference from the function init_module() to the function .exit.text:zcommon_fini() The function __init init_module() references a function __exit zcommon_fini(). This is often seen when error handling in the init function uses functionality in the exit path. The fix is often to remove the __exit annotation of zcommon_fini() so it may be used outside an exit section.
- Loading branch information
1 parent
04f4be9
commit f5456a2
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,7 @@ | |
* ZFS Makefiles. | ||
*/ | ||
|
||
void __exit | ||
void | ||
icp_fini(void) | ||
{ | ||
skein_mod_fini(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters