Skip to content

Commit

Permalink
Merge pull request #403 from p91paul/remove-useless-addr-format
Browse files Browse the repository at this point in the history
Remove unused FI_SOCKADDR addr_format specifications
  • Loading branch information
shefty committed Dec 28, 2015
2 parents 517aa1a + 4f4576d commit f317aba
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion pingpong/msg_pingpong.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_MSG;
hints->caps = FI_MSG;
hints->mode = FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

ret = run();

Expand Down
1 change: 0 additions & 1 deletion ported/libibverbs/rc_pingpong.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,6 @@ int main(int argc, char *argv[])
hints->ep_attr->type = FI_EP_MSG;
hints->caps = FI_MSG;
hints->mode = FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

rc = ft_read_addr_opts(&node, &service, hints, &flags, &opts);
if (rc)
Expand Down
1 change: 0 additions & 1 deletion simple/cq_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_MSG;
hints->caps = FI_MSG;
hints->mode = FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

cq_attr.format = FI_CQ_FORMAT_DATA;

Expand Down
1 change: 0 additions & 1 deletion simple/msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_MSG;
hints->caps = FI_MSG;
hints->mode = FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

ret = run();

Expand Down
1 change: 0 additions & 1 deletion simple/msg_epoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_MSG;
hints->caps = FI_MSG;
hints->mode = FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

ret = run();

Expand Down
1 change: 0 additions & 1 deletion simple/rdm_shared_ctx.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_RDM;
hints->caps = FI_MSG | FI_NAMED_RX_CTX;
hints->mode = FI_CONTEXT | FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

ret = run();

Expand Down
1 change: 0 additions & 1 deletion simple/scalable_ep.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_RDM;
hints->caps = FI_MSG | FI_NAMED_RX_CTX;
hints->mode = FI_LOCAL_MR;
hints->addr_format = FI_SOCKADDR;

ret = run();

Expand Down
1 change: 0 additions & 1 deletion streaming/msg_rma.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ int main(int argc, char **argv)
hints->ep_attr->type = FI_EP_MSG;
hints->caps = FI_MSG | FI_RMA;
hints->mode = FI_LOCAL_MR | FI_RX_CQ_DATA;
hints->addr_format = FI_SOCKADDR;

ret = run();

Expand Down

0 comments on commit f317aba

Please sign in to comment.