[devel] [PATCH 1/1] amf: fix no active assignment even one in-service SU can be assigned [#3020]

2019-03-18 Thread thuan.tran
AMFD should try assign SI active for other in-service SUs if fail to assign for current in-service SU --- src/amf/amfd/sg_2n_fsm.cc | 75 +-- 1 file changed, 46 insertions(+), 29 deletions(-) diff --git a/src/amf/amfd/sg_2n_fsm.cc

[devel] [PATCH 0/1] Review Request for amf: fix no active assignment even one in-service SU can be assigned [#3020]

2019-03-18 Thread thuan.tran
Summary: amf: fix no active assignment even one in-service SU can be assigned [#3020] Review request for Ticket(s): 3020 Peer Reviewer(s): Gary, Minh Pull request to: *** LIST THE PERSON WITH PUSH ACCESS HERE *** Affected branch(es): develop Development branch: ticket-3020 Base revision:

Re: [devel] [PATCH 1/1] log: logd crash due to well known stream has numOpeners = 0 [#3018]

2019-03-18 Thread Vu Minh Nguyen
Hi Canh, Log stream is allocated with brackets, (), going with new operator; It means numOpeners field is already zero-initialized. log_stream_t *stream = new (std::nothrow) log_stream_t(); So, I don't think your change will address the issue. The bug may locate at another place.