Commit 83819507 authored by Claes Sjofors's avatar Claes Sjofors

Nethandler and event monitor bugfix, reconnect request from sev server wasn't handle correctly

parent 2f492d98
......@@ -3033,6 +3033,9 @@ linkActive (
{
qcom_sNode *node = (qcom_sNode *)msg->data;
if ( node->connection != qcom_eNodeConnectionFull)
return;
errh_Info("Active, link to node %s (%s)",
node->name, cdh_NodeIdToString(NULL, node->nid, 0, 0));
......@@ -3048,6 +3051,9 @@ linkConnect (
qcom_sNode *node = (qcom_sNode *)msg->data;
int nix = node->nid;
if ( node->connection != qcom_eNodeConnectionFull)
return;
errh_Info("Connected, link to node %s (%s)",
node->name, cdh_NodeIdToString(NULL, node->nid, 0, 0));
......@@ -3079,6 +3085,9 @@ linkDisconnect (
int nix = node->nid;
if ( node->connection != qcom_eNodeConnectionFull)
return;
errh_Info("Disconnected, link to node %s (%s)",
node->name, cdh_NodeIdToString(NULL, node->nid, 0, 0));
......@@ -3105,6 +3114,9 @@ linkStalled (
{
qcom_sNode *node = (qcom_sNode *)msg->data;
if ( node->connection != qcom_eNodeConnectionFull)
return;
errh_Info("Stalled, link to node %s (%s)",
node->name, cdh_NodeIdToString(NULL, node->nid, 0, 0));
......
......@@ -631,6 +631,9 @@ linkActive (
qcom_sNode *node = (qcom_sNode *)get->data;
gdb_sNode *np;
if ( node->connection != qcom_eNodeConnectionFull)
return;
gdb_AssumeUnlocked;
gdb_ScopeLock {
......@@ -678,6 +681,9 @@ linkDisconnect (
qcom_sNode *node = (qcom_sNode *)get->data;
gdb_sNode *np;
if ( node->connection != qcom_eNodeConnectionFull)
return;
gdb_AssumeUnlocked;
gdb_ScopeLock {
......@@ -725,6 +731,9 @@ linkStalled (
qcom_sNode *node = (qcom_sNode *)get->data;
gdb_sNode *np;
if ( node->connection != qcom_eNodeConnectionFull)
return;
gdb_AssumeUnlocked;
gdb_ScopeLock {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment