From: Junio C Hamano Date: Thu, 4 Mar 2021 23:42:50 +0000 (-0800) Subject: Merged the open-eintr workaround for macOS X-Git-Tag: v2.31.0-rc2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be7935ed8bff19f481b033d0d242c5d5f239ed50;p=thirdparty%2Fgit.git Merged the open-eintr workaround for macOS Signed-off-by: Junio C Hamano --- diff --git a/Documentation/RelNotes/2.31.0.txt b/Documentation/RelNotes/2.31.0.txt index 56d4643de9..cde22e8ab0 100644 --- a/Documentation/RelNotes/2.31.0.txt +++ b/Documentation/RelNotes/2.31.0.txt @@ -222,6 +222,11 @@ Performance, Internal Implementation, Development Support etc. * Raise the buffer size used when writing the index file out from (obviously too small) 8kB to (clearly sufficiently large) 128kB. + * It is reported that open() on some platforms (e.g. macOS Big Sur) + can return EINTR even though our timers are set up with SA_RESTART. + A workaround has been implemented and enabled for macOS to rerun + open() transparently from the caller when this happens. + Fixes since v2.30 -----------------