summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlang/OTP <otp@erlang.org>2020-03-04 08:23:54 +0100
committerErlang/OTP <otp@erlang.org>2020-03-04 08:23:54 +0100
commitebcf09accba8d65f92cf8214860e7693609bb6d2 (patch)
treedd6e7f62dd35470f2359f0d7e40eeb6267d5ed61
parentc91f1fade8d284cad95f9da235f87db2eaed0060 (diff)
downloaderlang-ebcf09accba8d65f92cf8214860e7693609bb6d2.tar.gz
Prepare release
-rw-r--r--erts/doc/src/notes.xml39
-rw-r--r--erts/vsn.mk2
-rw-r--r--make/otp_version_tickets6
3 files changed, 43 insertions, 4 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 1274bc3531..5573de6b05 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,45 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>
+<section><title>Erts 10.3.5.10</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Fixed bug in <c>ets:update_counter/4</c>, when called
+ with an invalid <c>UpdateOp</c> and a <c>Key</c> that
+ does not exist, causing <c>ets:info(T,size)</c> to return
+ incorrect values. Bug exists since OTP-19.0.2.</p>
+ <p>
+ Own Id: OTP-16404 Aux Id: ERL-1127 </p>
+ </item>
+ <item>
+ <p>
+ A process could get into an inconsistent state where it
+ was runnable, but never scheduled for execution. This
+ could occur when a mix of <c>normal</c> and <c>low</c>
+ priority processes where scheduled on the same type of
+ dirty scheduler simultaneously.</p>
+ <p>
+ Own Id: OTP-16446 Aux Id: ERL-1157 </p>
+ </item>
+ <item>
+ <p>
+ Corrected the valid range of the <c>erl</c> command line
+ argument <seealso marker="erts:erl#+SDio"><c>+SDio
+ &lt;NumberOfDirtyIoSchedulers&gt;</c></seealso> from
+ <c>0..1024</c> to <c>1..1024</c>. <c>+SDio 0</c> was
+ erroneously allowed which just caused the VM to crash on
+ the first dirty I/O job scheduled.</p>
+ <p>
+ Own Id: OTP-16481</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erts 10.3.5.9</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/erts/vsn.mk b/erts/vsn.mk
index afad799672..20b266c0e5 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
#
-VSN = 10.3.5.9
+VSN = 10.3.5.10
# Port number 4365 in 4.2
# Port number 4366 in 4.3
diff --git a/make/otp_version_tickets b/make/otp_version_tickets
index ff0ee94c3e..06e36dd4b5 100644
--- a/make/otp_version_tickets
+++ b/make/otp_version_tickets
@@ -1,3 +1,3 @@
-OTP-16436
-OTP-16438
-OTP-16441
+OTP-16404
+OTP-16446
+OTP-16481