]> Cypherpunks.ru repositories - gostls13.git/commit
internal/poll: use copy_file_range only on Linux kernel >= 5.3
authorTobias Klauser <tklauser@distanz.ch>
Mon, 9 Nov 2020 10:25:38 +0000 (11:25 +0100)
committerTobias Klauser <tobias.klauser@gmail.com>
Tue, 10 Nov 2020 09:01:41 +0000 (09:01 +0000)
commit1c7650aa93bd53b7df0bbb34693fc5a16d9f67af
tree63190ffc922bb7446d402b22483242c35c73ec8b
parent1642cd78b540a9e489d076c819fe0220eb859183
internal/poll: use copy_file_range only on Linux kernel >= 5.3

https://man7.org/linux/man-pages/man2/copy_file_range.2.html#VERSIONS states:

  A major rework of the kernel implementation occurred in 5.3.  Areas
  of the API that weren't clearly defined were clarified and the API
  bounds are much more strictly checked than on earlier kernels.
  Applications should target the behaviour and requirements of 5.3
  kernels.

Rather than attempting to detect the file system for source and
destination files (which means two additional statfs syscalls) and skip
copy_file_range in case of known defects (e.g. CIFS -> CIFS), just
assume copy_file_range to be broken on kernels < 5.3.

Fixes #42400

Change-Id: I3a531296182c1d6e341772cc9d2be5bf83e52575
Reviewed-on: https://go-review.googlesource.com/c/go/+/268338
Trust: Tobias Klauser <tobias.klauser@gmail.com>
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/internal/poll/copy_file_range_linux.go