aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2022-01-26 12:30:03 +0100
committerLoïc Hoguin <[email protected]>2022-01-26 12:30:03 +0100
commit677a1b0ea761ef448479d36690d8d6c5b13e25b4 (patch)
treea5d33e01ee45670de12b7c46d93e932992a7bb63
parent3246205b2a3b3f027325b3506c3009d7b90d54ca (diff)
downloadci.erlang.mk-677a1b0ea761ef448479d36690d8d6c5b13e25b4.tar.gz
ci.erlang.mk-677a1b0ea761ef448479d36690d8d6c5b13e25b4.tar.bz2
ci.erlang.mk-677a1b0ea761ef448479d36690d8d6c5b13e25b4.zip
OTP-22.3.4.24
-rw-r--r--early-plugins.mk4
-rw-r--r--release-notes/OTP-22.3.4.24.README.txt101
2 files changed, 103 insertions, 2 deletions
diff --git a/early-plugins.mk b/early-plugins.mk
index 79eac32..c90f449 100644
--- a/early-plugins.mk
+++ b/early-plugins.mk
@@ -16,7 +16,7 @@ OTP-18 := OTP-18.0.3 OTP-18.1.5 OTP-18.2.4 OTP-18.3.4.11
OTP-19 := OTP-19.0.7 OTP-19.1.6 OTP-19.2.3 OTP-19.3.6.13
OTP-20 := OTP-20.0.5 OTP-20.1.7 OTP-20.2.4 OTP-20.3.8.26
OTP-21 := OTP-21.0.9 OTP-21.1.4 OTP-21.2.7 OTP-21.3.8.24
-OTP-22 := OTP-22.0.7 OTP-22.1.8 OTP-22.2.8 OTP-22.3.4.23
+OTP-22 := OTP-22.0.7 OTP-22.1.8 OTP-22.2.8 OTP-22.3.4.24
OTP-23 := OTP-23.0.4 OTP-23.1.5 OTP-23.2.7.3 OTP-23.3.4.7
OTP-24 := OTP-24.0.6
@@ -82,7 +82,7 @@ OTP-22-DROPPED := OTP-22.0-rc1 OTP-22.0-rc2 OTP-22.0-rc3 OTP-22.0 \
OTP-22.3.3 OTP-22.3.4 OTP-22.3.4.1 OTP-22.3.4.2 OTP-22.3.4.3 \
OTP-22.3.4.4 OTP-22.3.4.5 OTP-22.3.4.8 OTP-22.3.4.9 OTP-22.3.4.10 \
OTP-22.3.4.11 OTP-22.3.4.12 OTP-22.3.4.13 OTP-22.3.4.15 OTP-22.3.4.17 \
- OTP-22.3.4.18 OTP-22.3.4.19 OTP-22.3.4.20 OTP-22.3.4.21 OTP-22.3.4.22
+ OTP-22.3.4.18 OTP-22.3.4.19 OTP-22.3.4.20 OTP-22.3.4.21 OTP-22.3.4.22 OTP-22.3.4.23
OTP-23-DROPPED := OTP-23.0-rc1 OTP-23.0-rc2 OTP-23.0-rc3 OTP-23.0 OTP-23.0.1 \
OTP-23.0.2 OTP-23.0.3 OTP-23.1 OTP-23.1.1 OTP-23.1.2 OTP-23.1.3 OTP-23.1.4 \
OTP-23.2 OTP-23.2.1 OTP-23.2.3 OTP-23.2.4 OTP-23.3.1 OTP-23.3.2 OTP-23.2.7.2 \
diff --git a/release-notes/OTP-22.3.4.24.README.txt b/release-notes/OTP-22.3.4.24.README.txt
new file mode 100644
index 0000000..0acde48
--- /dev/null
+++ b/release-notes/OTP-22.3.4.24.README.txt
@@ -0,0 +1,101 @@
+Patch Package: OTP 22.3.4.24
+Git Tag: OTP-22.3.4.24
+Date: 2021-12-21
+Trouble Report Id: OTP-17796
+Seq num: ERIERL-729
+System: OTP
+Release: 22
+Application: erts-10.7.2.16
+Predecessor: OTP 22.3.4.23
+
+ Check out the git tag OTP-22.3.4.24, and build a full OTP system
+ including documentation. Apply one or more applications from this
+ build as patches to your installation using the 'otp_patch_apply'
+ tool. For information on install requirements, see descriptions for
+ each application version below.
+
+ ---------------------------------------------------------------------
+ --- HIGHLIGHTS ------------------------------------------------------
+ ---------------------------------------------------------------------
+
+ OTP-17796 Application(s): erts
+ Related Id(s): ERIERL-729, PR-5473
+
+ Responsiveness of processes executing on normal or low
+ priority could suffer due to code purging or literal
+ area removal on systems with a huge amount of
+ processes. This since during these operations all
+ processes on the system were scheduled for execution at
+ once.
+
+ This problem has been fixed by introducing a limit on
+ outstanding purge and copy literal requests in the
+ system. By default this limit is set to twice the
+ amount of schedulers on the system. This will ensure
+ that schedulers will have enough work scheduled to
+ perform these operations as quickly as possible at the
+ same time as other work will be interleaved to a much
+ higher degree. Performance of these operations will
+ however be somewhat degraded due to the overhead of
+ enforcing this limit compared to when using a very
+ large limit.
+
+ This limit can be set by passing the +zosrl command
+ line argument to erl, or by calling
+ erlang:system_flag(outstanding_system_requests_limit,
+ NewLimit).
+
+
+ ---------------------------------------------------------------------
+ --- erts-10.7.2.16 --------------------------------------------------
+ ---------------------------------------------------------------------
+
+ Note! The erts-10.7.2.16 application *cannot* be applied
+ independently of other applications on an arbitrary OTP 22
+ installation.
+
+ On a full OTP 22 installation, also the following runtime
+ dependency has to be satisfied:
+ -- kernel-6.5.1 (first satisfied in OTP 22.2)
+
+
+ --- Improvements and New Features ---
+
+ OTP-17796 Application(s): erts
+ Related Id(s): ERIERL-729, PR-5473
+
+ *** HIGHLIGHT ***
+
+ Responsiveness of processes executing on normal or low
+ priority could suffer due to code purging or literal
+ area removal on systems with a huge amount of
+ processes. This since during these operations all
+ processes on the system were scheduled for execution at
+ once.
+
+ This problem has been fixed by introducing a limit on
+ outstanding purge and copy literal requests in the
+ system. By default this limit is set to twice the
+ amount of schedulers on the system. This will ensure
+ that schedulers will have enough work scheduled to
+ perform these operations as quickly as possible at the
+ same time as other work will be interleaved to a much
+ higher degree. Performance of these operations will
+ however be somewhat degraded due to the overhead of
+ enforcing this limit compared to when using a very
+ large limit.
+
+ This limit can be set by passing the +zosrl command
+ line argument to erl, or by calling
+ erlang:system_flag(outstanding_system_requests_limit,
+ NewLimit).
+
+
+ Full runtime dependencies of erts-10.7.2.16: kernel-6.5.1, sasl-3.3,
+ stdlib-3.5
+
+
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+