mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 11:51:27 +00:00
iw_cxgb4: print mapped ports correctly
c4iw_ep_common structure holds the mapped addresses, so while printing
them, use appropriate pointers.
Fixes: bab572f1d
("iw_cxgb4: Guard against null cm_id in dump_ep/qp")
Signed-off-by: Potnuri Bharat Teja <bharat@chelsio.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
parent
218b9e3eb8
commit
44016b3466
@ -220,14 +220,14 @@ static void set_ep_sin_addrs(struct c4iw_ep *ep,
|
||||
{
|
||||
struct iw_cm_id *id = ep->com.cm_id;
|
||||
|
||||
*lsin = (struct sockaddr_in *)&ep->com.local_addr;
|
||||
*rsin = (struct sockaddr_in *)&ep->com.remote_addr;
|
||||
*m_lsin = (struct sockaddr_in *)&ep->com.local_addr;
|
||||
*m_rsin = (struct sockaddr_in *)&ep->com.remote_addr;
|
||||
if (id) {
|
||||
*m_lsin = (struct sockaddr_in *)&id->m_local_addr;
|
||||
*m_rsin = (struct sockaddr_in *)&id->m_remote_addr;
|
||||
*lsin = (struct sockaddr_in *)&id->local_addr;
|
||||
*rsin = (struct sockaddr_in *)&id->remote_addr;
|
||||
} else {
|
||||
*m_lsin = &zero_sin;
|
||||
*m_rsin = &zero_sin;
|
||||
*lsin = &zero_sin;
|
||||
*rsin = &zero_sin;
|
||||
}
|
||||
}
|
||||
|
||||
@ -239,14 +239,14 @@ static void set_ep_sin6_addrs(struct c4iw_ep *ep,
|
||||
{
|
||||
struct iw_cm_id *id = ep->com.cm_id;
|
||||
|
||||
*lsin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
|
||||
*rsin6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
|
||||
*m_lsin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
|
||||
*m_rsin6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
|
||||
if (id) {
|
||||
*m_lsin6 = (struct sockaddr_in6 *)&id->m_local_addr;
|
||||
*m_rsin6 = (struct sockaddr_in6 *)&id->m_remote_addr;
|
||||
*lsin6 = (struct sockaddr_in6 *)&id->local_addr;
|
||||
*rsin6 = (struct sockaddr_in6 *)&id->remote_addr;
|
||||
} else {
|
||||
*m_lsin6 = &zero_sin6;
|
||||
*m_rsin6 = &zero_sin6;
|
||||
*lsin6 = &zero_sin6;
|
||||
*rsin6 = &zero_sin6;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user