+rustc (1.48.0~beta.8+dfsg1-1~exp2) UNRELEASED; urgency=medium
+
+ * Disable copy_file_range optimisation for now, see upstream #78979.
+
+ -- Ximin Luo <infinity0@debian.org> Thu, 12 Nov 2020 22:27:07 +0000
+
rustc (1.48.0~beta.8+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
--- /dev/null
+Bug: https://github.com/rust-lang/rust/issues/78979
+
+--- a/library/std/src/sys/unix/fs.rs
++++ b/library/std/src/sys/unix/fs.rs
+@@ -1126,7 +1126,7 @@
+
+ // Kernel prior to 4.5 don't have copy_file_range
+ // We store the availability in a global to avoid unnecessary syscalls
+- static HAS_COPY_FILE_RANGE: AtomicBool = AtomicBool::new(true);
++ static HAS_COPY_FILE_RANGE: AtomicBool = AtomicBool::new(false);
+
+ unsafe fn copy_file_range(
+ fd_in: libc::c_int,