summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Kaseorg <andersk@mit.edu>2022-06-27 20:04:58 -0700
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-07-15 16:29:50 +0000
commit8ad68fa77cdb66fef38a92697305c1db370e74a8 (patch)
tree49abb1d079cd01f140c33ce8bb32631a67c1732e
parentjenkins: 2.346.1 -> 2.346.2 (diff)
downloadnixpkgs-origin/backport-179402-to-release-22.05.tar.gz
openafs: Patch for Linux kernel 5.18origin/backport-179402-to-release-22.05
Signed-off-by: Anders Kaseorg <andersk@mit.edu> (cherry picked from commit fdc792bf61781fe34815e502f7fc3dcacee1f0fb)
-rw-r--r--pkgs/servers/openafs/1.8/module.nix48
1 files changed, 39 insertions, 9 deletions
diff --git a/pkgs/servers/openafs/1.8/module.nix b/pkgs/servers/openafs/1.8/module.nix
index 6e738d025ea0..f27b8188907b 100644
--- a/pkgs/servers/openafs/1.8/module.nix
+++ b/pkgs/servers/openafs/1.8/module.nix
@@ -38,14 +38,9 @@ stdenv.mkDerivation {
buildInputs = [ libkrb5 ];
patches = [
- # Add autoconf-archive to src/external
- (fetchBase64Patch {
- url = "https://gerrit.openafs.org/changes/14942/revisions/006616bd8e88b2d386a5ddc23973cf3e625cb80d/patch";
- hash = "sha256-55sc2sKy5XkQHAv6ysVxi69+0xVsHnN2TS144UTeLHU=";
- })
# Import of code from autoconf-archive
- (fetchBase64Patch {
- url = "https://gerrit.openafs.org/changes/14943/revisions/d3782b1d4e6fd81c5432e95112eb44305f07f272/patch";
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=d8205bbb482554812fbe66afa3c337d991a247b6";
hash = "sha256-ohkjSux+S3+6slh6uZIw5UJXlvhy9UUDpDlP0YFRwmw=";
})
# Use autoconf-archive m4 from src/external
@@ -53,6 +48,11 @@ stdenv.mkDerivation {
url = "https://gerrit.openafs.org/changes/14944/revisions/ea2a0e128d71802f61b8da2e44de3c6325c5f328/patch";
hash = "sha256-PAUk/MXL5p8xwhn40/UGmo3UIhvl1PB2FwgqhmqsjJ4=";
})
+ # cf: Use common macro to test compiler flags
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=790824ff749b6ee01c4d7101493cbe8773ef41c6";
+ hash = "sha256-Zc7AjCsH7eTmZJWCrx7ci1tBjEAgcFXS9lY1YBeboLA=";
+ })
# Linux-5.17: kernel func complete_and_exit renamed
(fetchBase64Patch {
url = "https://gerrit.openafs.org/changes/14945/revisions/a714e865efe41aa1112f6f9c8479112660dacd6f/patch";
@@ -63,6 +63,36 @@ stdenv.mkDerivation {
url = "https://gerrit.openafs.org/changes/14946/revisions/449d1faf87e2841e80be38cf2b4a5cf5ff4df2d8/patch";
hash = "sha256-3bRTHYeMRIleLhob56m2Xt0dWzIMDo3QrytY0K1/q7c=";
})
+ # afs: Introduce afs_IsDCacheFresh
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=0d8ce846ab2e6c45166a61f04eb3af271cbd27db";
+ hash = "sha256-+xgRYVXz8XpT5c4Essc4VEn9Fj53vasAYhcFkK0oCBc=";
+ })
+ # LINUX: Don't panic on some file open errors
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=af73b9a3b1fc625694807287c0897391feaad52d";
+ hash = "sha256-k0d+Gav1LApU24SaMI0pmR3gGfWyicqdCpTpVJLcx7U=";
+ })
+ # Linux-5.18 replace set_page_dirty with dirty_folio
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=6aa129e743e882cf30c35afd67eabf82274c5fca";
+ hash = "sha256-8R0rdKYs7+Zl1sdizOZzpBjy6e9J+42R9HzsNUa/PQ4=";
+ })
+ # afs: introduce afs_alloc_ncr/afs_free_ncr
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=209eb92448001e59525413610356070d8e4f10a0";
+ hash = "sha256-t455gTaK5U+m0qcyKjTqnWTOb4qz6VN/JYZzRAAV8kM=";
+ })
+ # afs: introduce get_dcache_readahead
+ (fetchpatch {
+ url = "https://git.openafs.org/?p=openafs.git;a=patch;h=44e24ae5d7dc41e54d23638d5f64ab2e81e43ad0";
+ hash = "sha256-gtUNDSHAq+RY1Rm17YcxcUALy7FEBQf9k8/ELQlPORU=";
+ })
+ # Linux-5.18: replace readpages with readahead
+ (fetchBase64Patch {
+ url = "https://gerrit.openafs.org/changes/14953/revisions/0497b0cd7bffb6335ab9bcbf5a1310b8c6a4b299/patch";
+ hash = "sha256-a5pd+CHHPr1mGxsF7tSlaBqoiKw2IGr1mJ7EaDHDJSw=";
+ })
];
hardeningDisable = [ "pic" ];
@@ -102,7 +132,7 @@ stdenv.mkDerivation {
homepage = "https://www.openafs.org";
license = licenses.ipl10;
platforms = platforms.linux;
- maintainers = with maintainers; [ maggesi spacefrogg ];
- broken = kernel.isHardened || kernel.kernelAtLeast "5.18";
+ maintainers = with maintainers; [ andersk maggesi spacefrogg ];
+ broken = kernel.isHardened || kernel.kernelAtLeast "5.19";
};
}