-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ZFS broken on latest linux (>5.10) #150517
Comments
I've submitted a feature request on OpenZFS: openzfs/zfs#12847 |
Yep. It's working for over a month. You can cherry-pick this commit if you want: archlinux zfs user likely also using these kernel versions for quite a while. |
Anyone have an overlay snippet or something to accomplish this? Would rather not start carrying patches over nixpkgs in my own fork again, "yet", I saw part of one (overlay-based solution) on another thread for this issue, but wasn't sure how to complete it or if it's actually been used successfully... Anyway if anyone has something to help there that'd be swell, thanks! :) |
@dtzWill Just set {
nixpkgs.allowBroken = true;
} or if you are scared of that for whatever reason use {
boot.kernelPackages = linuxPackages_latest.extend (final: prev: {
zfs = prev.zfs.overrideAttrs (_: { meta.broken = false; });
});
} |
See also #150580 |
Fixed by #150923. |
Describe the bug
ZFS (both stable and unstable) are currently marked as broken on linux version 5.15 because it isn't mentioned as supported in the latest release.
Version 5.14 was marked as supported, but since #147446, this version is EOL and is removed, leaving the latest supported version on 5.10 (broken on my own system).
There has been a PR merged into zfs' master (openzfs/zfs#12824) claiming support for 5.15, but I don't know if it is wise to include this in
nixpkgs
yet.I've made this issue to
zfsUnstable
to zfs' latest commit on master.For what it's worth: @Mic92 has a patch which enables ZFS for 5.15 and they claim that it is running just fine Mic92@b31e0be.
Steps To Reproduce
Steps to reproduce the behavior:
boot.kernelPackages
tolinuxPackages_latest
orlinuxPackages_5_15
.zfs
is broken.Relevant issues/PR's
Notify maintainers
@hmenke @jcumming @jonringer @wizeman @fpletz @globin
Metadata
Please run
nix-shell -p nix-info --run "nix-info -m"
and paste the result.Maintainer information:
The text was updated successfully, but these errors were encountered: