Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ec14b03b8686
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 93f9b7069ac9
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 14, 2018

  1. linuxPackages.zfsUnstable: 2018-05-22 -> 2018-08-13

    spl was merged into zfs master
    Mic92 committed Aug 14, 2018
    Copy the full SHA
    4360a87 View commit details
  2. Merge pull request #45012 from Mic92/zfs

    linuxPackages.zfsUnstable: 2018-05-22 -> 2018-08-13
    Mic92 authored Aug 14, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    93f9b70 View commit details
8 changes: 4 additions & 4 deletions nixos/modules/tasks/filesystems/zfs.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ let
kernel = config.boot.kernelPackages;

packages = if config.boot.zfs.enableUnstable then {
spl = kernel.splUnstable;
spl = null;
zfs = kernel.zfsUnstable;
zfsUser = pkgs.zfsUnstable;
} else {
@@ -325,12 +325,12 @@ in
virtualisation.lxd.zfsSupport = true;

boot = {
kernelModules = [ "spl" "zfs" ] ;
extraModulePackages = with packages; [ spl zfs ];
kernelModules = [ "zfs" ] ++ optional (!cfgZfs.enableUnstable) "spl";
extraModulePackages = with packages; [ zfs ] ++ optional (!cfgZfs.enableUnstable) spl;
};

boot.initrd = mkIf inInitrd {
kernelModules = [ "spl" "zfs" ];
kernelModules = [ "zfs" ] ++ optional (!cfgZfs.enableUnstable) "spl";
extraUtilsCommands =
''
copy_bin_and_libs ${packages.zfsUser}/sbin/zfs
89 changes: 34 additions & 55 deletions pkgs/os-specific/linux/spl/default.nix
Original file line number Diff line number Diff line change
@@ -6,71 +6,50 @@

with stdenv.lib;

let
common = { version
, sha256
, rev ? "spl-${version}"
, broken ? false
, patches ? []
}: stdenv.mkDerivation rec {
name = "spl-${version}-${kernel.version}";
assert kernel != null;

src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
inherit rev sha256;
};
stdenv.mkDerivation rec {
name = "spl-${version}-${kernel.version}";

inherit patches;
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
rev = "spl-0.7.9";
sha256 = "0540m1dv9jvrzk9kw61glg0h0cwj976mr9zb42y3nh17k47ywff0";
};

nativeBuildInputs = [ autoreconfHook ] ++ kernel.moduleBuildDependencies;
patches = [ ./install_prefix.patch ];

hardeningDisable = [ "fortify" "stackprotector" "pic" ];
nativeBuildInputs = [ autoreconfHook ] ++ kernel.moduleBuildDependencies;

preConfigure = ''
substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid
substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin"
substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
'';
hardeningDisable = [ "fortify" "stackprotector" "pic" ];

configureFlags = [
"--with-config=kernel"
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
preConfigure = ''
substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid
substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin"
substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
'';

enableParallelBuilding = true;
configureFlags = [
"--with-config=kernel"
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];

meta = {
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
enableParallelBuilding = true;

longDescription = ''
This kernel module is a porting layer for ZFS to work inside the linux
kernel.
'';
meta = {
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";

inherit broken;
longDescription = ''
This kernel module is a porting layer for ZFS to work inside the linux
kernel.
'';

homepage = http://zfsonlinux.org/;
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
};
homepage = http://zfsonlinux.org/;
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
};
in
assert kernel != null;
{
splStable = common {
version = "0.7.9";
sha256 = "0540m1dv9jvrzk9kw61glg0h0cwj976mr9zb42y3nh17k47ywff0";
patches = [ ./install_prefix-0.7.9.patch ];
};

splUnstable = common {
version = "2018-05-07";
rev = "1149b62d20b7ed9d8ae25d5da7a06213d79b7602";
sha256 = "07qlx7l23y696gzyy7ynly7n1141w66y21gkmxiia2xwldj8klkx";
patches = [ ./install_prefix.patch ];
};
}
162 changes: 0 additions & 162 deletions pkgs/os-specific/linux/spl/install_prefix-0.7.9.patch

This file was deleted.

23 changes: 12 additions & 11 deletions pkgs/os-specific/linux/zfs/default.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
, gawk, gnugrep, gnused, systemd

# Kernel dependencies
, kernel ? null, spl ? null, splUnstable ? null
, kernel ? null, spl ? null
}:

with stdenv.lib;
@@ -51,7 +51,7 @@ let
'';

nativeBuildInputs = [ autoreconfHook nukeReferences ]
++ optional buildKernel (kernel.moduleBuildDependencies ++ [ perl ]);
++ optional buildKernel (kernel.moduleBuildDependencies ++ [ perl ]);
buildInputs =
optionals buildKernel [ spl ]
++ optionals buildUser [ zlib libuuid python attr ]
@@ -93,7 +93,7 @@ let

configureFlags = [
"--with-config=${configFile}"
] ++ optionals buildUser [
] ++ optionals buildUser [
"--with-dracutdir=$(out)/lib/dracut"
"--with-udevdir=$(out)/lib/udev"
"--with-systemdunitdir=$(out)/etc/systemd/system"
@@ -103,10 +103,11 @@ let
"--sysconfdir=/etc"
"--localstatedir=/var"
"--enable-systemd"
] ++ optionals buildKernel [
"--with-spl=${spl}/libexec/spl"
] ++ optionals buildKernel [
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
] ++ optionals (buildKernel && spl != null) [
"--with-spl=${spl}/libexec/spl"
];

enableParallelBuilding = true;
@@ -179,19 +180,19 @@ in {
incompatibleKernelVersion = "4.18";

# this package should point to a version / git revision compatible with the latest kernel release
version = "2018-05-22";
version = "2018-08-13";

rev = "ba863d0be4cbfbea938b10e49fb6ff459ac9ec20";
sha256 = "11dhigw1gybalwg2m6si148b6w195dj2lw38snqf6576wb5zndd0";
rev = "64e96969a88c21aebb2f8d982a8c345e55a2ae6c";
sha256 = "164fvsf9zqvq3vafnvjxafjl8gihmfqfsjwsmky16i90a6hs96gf";
isUnstable = true;

extraPatches = [
(fetchpatch {
url = "https://github.com/Mic92/zfs/compare/${rev}...nixos-zfs-2018-02-02.patch";
sha256 = "1gqmgqi39qhk5kbbvidh8f2xqq25vj58i9x0wjqvcx6a71qj49ch";
url = "https://github.com/Mic92/zfs/compare/${rev}...nixos-zfs-2018-08-13.patch";
sha256 = "1sdcr1w2jp3djpwlf1f91hrxxmc34q0jl388smdkxh5n5bpw5gzw";
})
];

spl = splUnstable;
spl = null;
};
}
5 changes: 1 addition & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -14033,10 +14033,7 @@ with pkgs;

sch_cake = callPackage ../os-specific/linux/sch_cake { };

inherit (callPackage ../os-specific/linux/spl {})
splStable splUnstable;

spl = splStable;
spl = callPackage ../os-specific/linux/spl { };

sysdig = callPackage ../os-specific/linux/sysdig {};