lol

linuxPackages.openafs: Patch for Linux kernel 6.14 (#393507)

authored by

Peder Bergebakken Sundt and committed by
GitHub
4038a021 642bd88e

+15 -1
+15 -1
pkgs/servers/openafs/1.8/module.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + fetchpatch, 5 6 which, 6 7 autoconf, 7 8 automake, ··· 26 27 version = "${version}-${kernel.modDirVersion}"; 27 28 inherit src; 28 29 29 - patches = [ ]; 30 + patches = [ 31 + # LINUX: Refactor afs_linux_dentry_revalidate() 32 + (fetchpatch { 33 + url = "https://gerrit.openafs.org/changes/16276/revisions/c1d074317e5c8cb8212e0b19a29f7d710bcabb32/patch"; 34 + decode = "base64 -d"; 35 + hash = "sha256-8ga9ks9pr6pWaV2t67v+FaG0yVExhqELkvkpdLvO8Nc="; 36 + }) 37 + # Linux-6.14: Handle dops.d_revalidate with parent 38 + (fetchpatch { 39 + url = "https://gerrit.openafs.org/changes/16277/revisions/0051bd0ee82b05e8caacdc0596e5b62609bebd2e/patch"; 40 + decode = "base64 -d"; 41 + hash = "sha256-08jedwZ1KX1RSs8y9sh7BUvv5xK9tlzZ6uBOR4kS0Jo="; 42 + }) 43 + ]; 30 44 31 45 nativeBuildInputs = [ 32 46 autoconf