Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-08 | Merge branch 'maint' | Raimo Niskanen | |
2016-08-08 | Merge branch 'duncaen/crypto/fix-algo_cipher-array-size/PR-1140/OTP-13789' ↵ | Raimo Niskanen | |
into maint * duncaen/crypto/fix-algo_cipher-array-size/PR-1140/OTP-13789: Fix segfault in crypto by increasing algo_cipher array | |||
2016-08-05 | Merge branch 'maint' | Hans Nilsson | |
2016-08-05 | Merge branch 'maint-18' into maint | Hans Nilsson | |
Conflicts: OTP_VERSION lib/ssh/doc/src/notes.xml lib/ssh/test/ssh_sup_SUITE.erl lib/ssh/vsn.mk otp_versions.table | |||
2016-08-05 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Update primary bootstrap beam_block: Fix potentially unsafe optimization in move_allocates/1 | |||
2016-08-05 | Update primary bootstrap | Björn Gustavsson | |
2016-08-05 | Merge branch 'bjorn/compiler/not_live/ERL-202/OTP-13780' into maint | Björn Gustavsson | |
* bjorn/compiler/not_live/ERL-202/OTP-13780: beam_block: Fix potentially unsafe optimization in move_allocates/1 | |||
2016-08-05 | beam_block: Fix potentially unsafe optimization in move_allocates/1 | Björn Gustavsson | |
beam_block has an optimization that only is safe when it is applied immediately after code generation. That is pointed out in a comment: NOTE: Moving allocation instructions is only safe because it is done immediately after code generation so that we KNOW that if {x,X} is initialized, all x registers with lower numbers are also initialized. That assumption may not be true after other optimizations, such as the beam_utils:live_opt/1 optimization. The new beam_reorder pass added in OTP 19 runs before beam_block. Therefore, the optimization is potentially unsafe. The optimization is also unsafe if compilation is started from assembly code in a .S file. Rewrite the optimization to make it safe. See the newly added comment for details. ERL-202 | |||
2016-08-05 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Improve format_warning/1 spec | |||
2016-08-05 | Merge branch 'elbrujohalcon/dialyzer/fix-spec/PR-1134/OTP-13786' into maint | Björn Gustavsson | |
* elbrujohalcon/dialyzer/fix-spec/PR-1134/OTP-13786: Improve format_warning/1 spec | |||
2016-08-04 | Updated OTP versionOTP-18.3.4.3 | Erlang/OTP | |
2016-08-04 | Update release notes | Erlang/OTP | |
2016-08-04 | Merge branch 'hans/ssh/sup_fix_ssh_supc_type/OTP-13782' into maint-18 | Erlang/OTP | |
* hans/ssh/sup_fix_ssh_supc_type/OTP-13782: ssh: update test suite for supervisors ssh: sshc_sup to use worker for ssh_con_handler ssh: update version number | |||
2016-08-04 | ssh: update test suite for supervisors | Hans Nilsson | |
2016-08-04 | ssh: sshc_sup to use worker for ssh_con_handler | Lukas Larsson | |
2016-08-04 | ssh: update version number | Hans Nilsson | |
2016-08-04 | Merge branch 'maint' | Raimo Niskanen | |
2016-08-04 | Merge branch 'ellbee/odbc/configure-OS-X-El-Capitan/PR-1137/OTP-13781' into ↵ | Raimo Niskanen | |
maint * ellbee/odbc/configure-OS-X-El-Capitan/PR-1137/OTP-13781: Make ODBC configure handle OS X El Capitan | |||
2016-08-03 | Fix segfault in crypto by increasing algo_cipher array | Duncaen | |
2016-08-02 | Merge branch 'maint' | Raimo Niskanen | |
2016-08-02 | Merge branch 'efine/inets/validate-inet6fb4/ERL-200/PR-1132/OTP-13776' into ↵ | Raimo Niskanen | |
maint * efine/inets/validate-inet6fb4/ERL-200/PR-1132/OTP-13776: Test inet6fb4 in basic suite Actually verify result of testcase Fix inets_sup_SUITE for local tests Add test for inet6fb4 validation Fix httpd_conf:validate_properties/1 for ipfamily | |||
2016-08-01 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-08-01 | Merge branch 'comtihon/fprof/fix-gc-tags/PR-1136/OTP-13778' into maint | Björn-Egil Dahlberg | |
* comtihon/fprof/fix-gc-tags/PR-1136/OTP-13778: fix gc_start\end bug | |||
2016-08-01 | Merge branch 'maint' | Raimo Niskanen | |
2016-08-01 | Merge branch 'raimo/erts/prim_inet-unknown-address-families/OTP-13775' into ↵ | Raimo Niskanen | |
maint * raimo/erts/prim_inet-unknown-address-families/OTP-13775: Handle AF_UNSPEC and AF_UNDEFINED correctly | |||
2016-08-01 | Merge branch 'raimo/SCTP-socket-stats/ERL-102/OTP-13773' into maint | Raimo Niskanen | |
* raimo/SCTP-socket-stats/ERL-102/OTP-13773: Fix SCTP send stats in inet_drv Test inet:getstat/1 dead for SCTP send Fix test suite compilation warnings | |||
2016-08-01 | Merge branch 'egil/erts/dont-copy-literals/OTP-13529' | Björn-Egil Dahlberg | |
* egil/erts/dont-copy-literals/OTP-13529: erts: Refactor literal purge area arguments erts: No need to literal opt message token erts: Don't copy literals in enif_send erts: Fix literal size calculation in check_process_code erts: Remove the need for copying of literals | |||
2016-08-01 | erts: Refactor literal purge area arguments | Björn-Egil Dahlberg | |
2016-08-01 | erts: No need to literal opt message token | Björn-Egil Dahlberg | |
2016-08-01 | erts: Don't copy literals in enif_send | Björn-Egil Dahlberg | |
2016-08-01 | erts: Fix literal size calculation in check_process_code | Björn-Egil Dahlberg | |
We want to know the total size of literals of all heap fragmens. | |||
2016-08-01 | erts: Remove the need for copying of literals | Björn-Egil Dahlberg | |
* Literals are not copied between processes for messages or spawn Increases performance of message sent and processes spawned when literals are involved in messages or arguments. | |||
2016-08-01 | Test inet6fb4 in basic suite | Raimo Niskanen | |
2016-07-29 | Make ODBC configure handle OS X El Capitan | Lee Bannard | |
Change ODBC configure.in script to recognize OS X El Capitan (Darwin v15.x) | |||
2016-07-29 | Actually verify result of testcase | Raimo Niskanen | |
2016-07-29 | Fix inets_sup_SUITE for local tests | Raimo Niskanen | |
2016-07-29 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-07-29 | Merge branch 'margnus1/erts/fix-hipe-literal-gc/PR-1122/OTP-13777' into maint | Björn-Egil Dahlberg | |
* margnus1/erts/fix-hipe-literal-gc/PR-1122/OTP-13777: check_process_code: Sweep HiPE stack for literals | |||
2016-07-29 | fix gc_start\end bug | Tihon | |
2016-07-29 | Handle AF_UNSPEC and AF_UNDEFINED correctly | Raimo Niskanen | |
2016-07-28 | Add test for inet6fb4 validation | Edwin Fine | |
2016-07-28 | Fix SCTP send stats in inet_drv | Raimo Niskanen | |
2016-07-28 | Test inet:getstat/1 dead for SCTP send | Raimo Niskanen | |
2016-07-28 | Fix test suite compilation warnings | Raimo Niskanen | |
2016-07-27 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-07-27 | Merge branch 'egil/erts/fix-distribution-test' into maint | Björn-Egil Dahlberg | |
* egil/erts/fix-distribution-test: erts: Fix epmd_module testcase erts: Fix whitespaces in distribution_SUITE | |||
2016-07-26 | erts: Fix epmd_module testcase | Björn-Egil Dahlberg | |
Regression from OTP-13770 (84549af1c996657aedee1263afec28b21bfa42a4) | |||
2016-07-26 | Improve format_warning/1 spec | Brujo Benavides | |
Let it handle `dial_warning()` input as well, to match what `format_warning/2` expects. | |||
2016-07-26 | erts: Fix whitespaces in distribution_SUITE | Björn-Egil Dahlberg | |
2016-07-26 | Merge branch 'maint' | Björn-Egil Dahlberg | |