| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| |
| |
| | |
* maint:
Updated OTP version
Prepare release
Update copyright year
|
| |\
| | |
| | |
| | |
| | |
| | |
| | | |
* maint-25:
Updated OTP version
Prepare release
Update copyright year
|
| | | |
|
| | |\
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
'bmk/snmp/agent/20230127/minimize_error_reporting_during_failed_init/ERIERL-873/OTP-18422' into maint-25
* bmk/snmp/agent/20230127/minimize_error_reporting_during_failed_init/ERIERL-873/OTP-18422:
[snmp|doc] Updated documentation with new net-if option
[snmp] Tweaking agent start sequence to reduce error reporting
# Conflicts:
# lib/snmp/src/agent/snmpa_supervisor.erl
|
| | | |
| | | |
| | | |
| | | | |
This reverts commit d4e4511b19f4126d9271a6e3a8fa2eb716da7e85.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This reverts commit 1cf126f91eb533783409da95b117207d8c13d9aa.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
* maint:
Updated OTP version
Prepare release
Update copyright year
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* maint-24:
Updated OTP version
Prepare release
Update copyright year
|
| | | | | |
|
| | |\ \ \
| | | | |/
| | | |/|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
'bmk/snmp/agent/20230127/minimize_error_reporting_during_failed_init/ERIERL-873/OTP-18422' into maint-24
* bmk/snmp/agent/20230127/minimize_error_reporting_during_failed_init/ERIERL-873/OTP-18422:
[snmp|doc] Updated documentation with new net-if option
[snmp] Tweaking agent start sequence to reduce error reporting
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | | |
OTP-18422 (ERIERL-873)
|
| |\ \ \ \
| | | |/ /
| | |/| /
| | |_|/
| |/| | |
'bmk/snmp/agent/20230127/minimize_error_reporting_during_failed_init/ERIERL-873/OTP-18422' into maint
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Updated the documentation with info for the new agent net-if
option; open_err_filters
Note that this is of course only supported for the net-if
provided with the application.
OTO-18422 (ERIERL-873)
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
<This is a hack>
Tweaked the agent start sequence in order to minimize error
reporting during a failed start (due to net-if issues).
</This is a hack>
Also added a new net-if option in order to change what
otherwise will be an error reporet to an info report.
OTP-18422 (ERIERL-873)
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
* maint:
Updated OTP version
Prepare release
Update copyright year
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The <c>size/1</c> BIF is not optimized by the JIT, and its use can
result in worse types for Dialyzer.
When one knows that the value being tested must be a tuple,
<c>tuple_size/1</c> should always be preferred.
When one knows that the value being tested must be a binary,
<c>byte_size/1</c> should be preferred. However, <c>byte_size/1</c> also
accepts a bitstring (rounding up size to a whole number of bytes), so
one must make sure that the call to <c>byte_size/</c> is preceded by a
call to <c>is_binary/1</c> to ensure that bitstrings are rejected. Note
that the compiler removes redundant calls to <c>is_binary/1</c>, so if
one is not sure whether previous code had made sure that the argument is
a binary, it does not harm to add an <c>is_binary/1</c> test immediately
before the call to <c>byte_size/1</c>.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The <c>size/1</c> BIF is not optimized by the JIT, and its use can
result in worse types for Dialyzer.
When one knows that the value being tested must be a tuple,
<c>tuple_size/1</c> should always be preferred.
When one knows that the value being tested must be a binary,
<c>byte_size/1</c> should be preferred. However, <c>byte_size/1</c> also
accepts a bitstring (rounding up size to a whole number of bytes), so
one must make sure that the call to <c>byte_size/</c> is preceded by a
call to <c>is_binary/1</c> to ensure that bitstrings are rejected. Note
that the compiler removes redundant calls to <c>is_binary/1</c>, so if
one is not sure whether previous code had made sure that the argument is
a binary, it does not harm to add an <c>is_binary/1</c> test immediately
before the call to <c>byte_size/1</c>.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
kikofernandez/kiko/snmp/replace-size-by-xxx_size/GH-6681/OTP-18401
snmp: replace size/1 by XXX_size/1
OTP-18401
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* OTP-25.1.2.1:
Updated OTP version
Prepare release
Update copyright year
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
'bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379'
* bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379:
[snmp] Single threaded agent handle request crash
[snmp] Handle failed vacm lookup
|
|\ \ \ \ \ \
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* maint-24:
Updated OTP version
Prepare release
Update copyright year
|
| | | | | | |
|
| | | | | | |
|
| |\ \ \ \ \
| | | |/ / /
| | |/| | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
'bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379' into maint-24
* bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379:
[snmp] Single threaded agent handle request crash
[snmp] Handle failed vacm lookup
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* maint-25:
Updated OTP version
Prepare release
Update copyright year
|
| | | | | | |
|
| | | | | | |
|
| |\ \ \ \ \
| | | |/ / /
| | |/| | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
'bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379' into maint-25
* bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379:
[snmp] Single threaded agent handle request crash
[snmp] Handle failed vacm lookup
|
|\ \ \ \ \ \
| | |/ / / /
| |/| | | |
| | | | | | |
'bmk/snmp/20230103/single_thread_uncaught_crash/ERIERL-904/OTP-18379' into maint
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When we are processing a received request (pdu),
handle (catch) possible "crashes".
Previously, for a multi-threaded agent, the worker
(crashing) process was simply restarted (by the master-agent).
But for a single threaded agent, the master agent itself crashed.
OTP-18379
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Handle when we fail to lookup info (mask, type and status)
from the vacmViewTreeFamilyTable table. If this happens, we
will throw noSuchView (instead of crashing).
OTP-18379
|
|\ \ \ \ \
| |_|/ / /
|/| | / /
| | |/ /
| |/| |
| | | |
| | | | |
* maint-24:
Updated OTP version
Prepare release
Update copyright year
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | |
| | | | |
OTP-18352
|