Commit 44016b34 authored by Bharat Potnuri's avatar Bharat Potnuri Committed by Jason Gunthorpe

iw_cxgb4: print mapped ports correctly

c4iw_ep_common structure holds the mapped addresses, so while printing
them, use appropriate pointers.

Fixes: bab572f1 ("iw_cxgb4: Guard against null cm_id in dump_ep/qp")
Signed-off-by: default avatarPotnuri Bharat Teja <bharat@chelsio.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 218b9e3e
...@@ -220,14 +220,14 @@ static void set_ep_sin_addrs(struct c4iw_ep *ep, ...@@ -220,14 +220,14 @@ static void set_ep_sin_addrs(struct c4iw_ep *ep,
{ {
struct iw_cm_id *id = ep->com.cm_id; struct iw_cm_id *id = ep->com.cm_id;
*lsin = (struct sockaddr_in *)&ep->com.local_addr; *m_lsin = (struct sockaddr_in *)&ep->com.local_addr;
*rsin = (struct sockaddr_in *)&ep->com.remote_addr; *m_rsin = (struct sockaddr_in *)&ep->com.remote_addr;
if (id) { if (id) {
*m_lsin = (struct sockaddr_in *)&id->m_local_addr; *lsin = (struct sockaddr_in *)&id->local_addr;
*m_rsin = (struct sockaddr_in *)&id->m_remote_addr; *rsin = (struct sockaddr_in *)&id->remote_addr;
} else { } else {
*m_lsin = &zero_sin; *lsin = &zero_sin;
*m_rsin = &zero_sin; *rsin = &zero_sin;
} }
} }
...@@ -239,14 +239,14 @@ static void set_ep_sin6_addrs(struct c4iw_ep *ep, ...@@ -239,14 +239,14 @@ static void set_ep_sin6_addrs(struct c4iw_ep *ep,
{ {
struct iw_cm_id *id = ep->com.cm_id; struct iw_cm_id *id = ep->com.cm_id;
*lsin6 = (struct sockaddr_in6 *)&ep->com.local_addr; *m_lsin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
*rsin6 = (struct sockaddr_in6 *)&ep->com.remote_addr; *m_rsin6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
if (id) { if (id) {
*m_lsin6 = (struct sockaddr_in6 *)&id->m_local_addr; *lsin6 = (struct sockaddr_in6 *)&id->local_addr;
*m_rsin6 = (struct sockaddr_in6 *)&id->m_remote_addr; *rsin6 = (struct sockaddr_in6 *)&id->remote_addr;
} else { } else {
*m_lsin6 = &zero_sin6; *lsin6 = &zero_sin6;
*m_rsin6 = &zero_sin6; *rsin6 = &zero_sin6;
} }
} }
......
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