Recent kernel change did away with get_ds() in favor of KERNEL_DS.
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.1.3&id=736706bee329
If you need to, edit line 611 of /usr/src/spl-0.7.13/module/spl/spl-vnode.c and change:
set_fs(get_ds());
to
set_fs(KERNEL_DS);
then run
dkms install spl/0.7.13 -k $(uname -r)
dkms install zfs/0.7.13 -k $(uname -r)
Pinned Comments
kstolp commented on 2023-09-29 00:34 (UTC)
When requesting changes, please include detailed reasoning for the change.
kstolp commented on 2023-01-07 09:31 (UTC)
If you receive this error when trying to build, it is because you have not imported the GPG keys used for verification.
You have two options:
1) Import the two keys into your keyring. ArchWiki article. You can find the key IDs in the PKGBUILD file, in the
validpgpkeys
array. (recommended)2) Alternatively, you can skip this verification by passing the
--skippgpcheck
argument tomakepkg
when building. (not recommended)