Skip to content
Snippets Groups Projects
Commit a4967598 authored by Marciniszyn, Mike's avatar Marciniszyn, Mike Committed by David S. Miller
Browse files

IB/rds: suppress incompatible protocol when version is known


Add an else to only print the incompatible protocol message
when version hasn't been established.

Signed-off-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f2e9bd70
No related branches found
No related tags found
No related merge requests found
......@@ -434,12 +434,11 @@ static u32 rds_ib_protocol_compatible(struct rdma_cm_event *event)
version = RDS_PROTOCOL_3_0;
while ((common >>= 1) != 0)
version++;
}
printk_ratelimited(KERN_NOTICE "RDS: Connection from %pI4 using "
"incompatible protocol version %u.%u\n",
&dp->dp_saddr,
dp->dp_protocol_major,
dp->dp_protocol_minor);
} else
printk_ratelimited(KERN_NOTICE "RDS: Connection from %pI4 using incompatible protocol version %u.%u\n",
&dp->dp_saddr,
dp->dp_protocol_major,
dp->dp_protocol_minor);
return version;
}
......
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