Skip to content
Snippets Groups Projects
Commit c21ba6e1 authored by Isaac Huang's avatar Isaac Huang
Browse files

i=liangzhen,i=maxim,b=16338:

-   fixed a connection reference count leak.
parent 03381efc
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,13 @@ Bugzilla : ...@@ -17,6 +17,13 @@ Bugzilla :
Description: Description:
Details : Details :
Severity : major
Bugzilla : 16338
Description: Continuous recovery on 33 of 413 nodes after lustre oss failure
Details : Lost reference on conn prevents peer from being destroyed, which
could prevent new peer creation if peer count has reached upper
limit.
Severity : normal Severity : normal
Bugzilla : 16102 Bugzilla : 16102
Description: LNET Selftest results in Soft lockup on OSS CPU Description: LNET Selftest results in Soft lockup on OSS CPU
......
...@@ -2614,6 +2614,7 @@ kibnal_recv_connreq(cm_cep_handle_t *cep, cm_request_data_t *cmreq) ...@@ -2614,6 +2614,7 @@ kibnal_recv_connreq(cm_cep_handle_t *cep, cm_request_data_t *cmreq)
if (conn != NULL) { if (conn != NULL) {
LASSERT (rc != 0); LASSERT (rc != 0);
kibnal_connreq_done(conn, 0, rc); kibnal_connreq_done(conn, 0, rc);
kibnal_conn_decref(conn);
} else { } else {
cm_destroy_cep(cep); cm_destroy_cep(cep);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment