summary refs log tree commit diff
path: root/pkgs/development/libraries/libssh2
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2019-03-19 00:15:51 +0100
committeraszlig <aszlig@nix.build>2019-03-19 00:15:51 +0100
commit12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39 (patch)
tree488e66917e9baffa3c1bdef7719699d8baab2d03 /pkgs/development/libraries/libssh2
parent8fce8a930cdb6385ac1a7cb941d13cfc7dfd51d7 (diff)
parent9a395a45aa43df701550a5319a3a2c0b6aac580f (diff)
parenta8307b9f3972c97a48e6a451eefec346307bf3ab (diff)
downloadnixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.tar
nixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.tar.gz
nixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.tar.bz2
nixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.tar.lz
nixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.tar.xz
nixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.tar.zst
nixpkgs-12efcc2dee4f2fe7ff3bd8143fc3750d8d4fdb39.zip
Merge overlayfs fix, LTS kernel bump and test
In Linux 4.19 there has been a major rework of the overlayfs
implementation and it now opens files in lowerdir with O_NOATIME, which
in turn caused issues in our VM tests because the process owner of QEMU
doesn't match the file owner of the lowerdir.

The crux here is that 9p propagates the O_NOATIME flag to the host and
the guest kernel has no way of verifying whether that flag will lead to
any problems beforehand.

There is ongoing work to possibly fix this in the kernel, but it will
take a while until there is a working patch and consensus.

So in order to bring our default kernel back to 4.19 and of course make
it possible to run newer kernels in VM tests, I'm merging a small QEMU
patch as an interim solution, which we can drop once we have a working
fix in the next round of stable kernels.

Now we already had Linux 4.19 set as the default kernel, but that was
subsequently reverted in 048c36ccaa0add5e5de387e9de0d3775d3fdd10d
because the patch we have used was the revert of the commit I bisected a
while ago.

This patch broke overlayfs in other ways, so I'm also merging in a VM
test by @bachp, which only tests whether overlayfs is working, just to
be on the safe side that something like this won't happen in the future.

Even though this change could be considered a moderate mass-rebuild at
least for GNU/Linux, I'm merging this to master, mainly to give us some
time to get it into the current 19.03 release branch (and subsequent
testing window) once we got no new breaking builds from Hydra.

Cc: @samueldr, @lheckemann

Fixes: https://github.com/NixOS/nixpkgs/issues/54509
Fixes: https://github.com/NixOS/nixpkgs/issues/48828
Merges: https://github.com/NixOS/nixpkgs/pull/57641
Merges: https://github.com/NixOS/nixpkgs/pull/54508