Skip to content

Commit

Permalink
Merge pull request #17 from shefty/master
Browse files Browse the repository at this point in the history
Replace FID prefix with FI
  • Loading branch information
shefty committed Sep 17, 2014
2 parents f0eaf60 + 6eb8e2d commit 7020d24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ported/libibverbs/rc_pingpong.c
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2005 Topspin Communications. All rights reserved.
* Copyright (c) 2014 Intel Corp. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
Expand Down Expand Up @@ -550,7 +551,7 @@ int main(int argc, char *argv[])
memset(&hints, 0, sizeof(hints));

/* Infiniband provider */
hints.type = FID_MSG;
hints.type = FI_EP_MSG;
hints.ep_cap = FI_MSG;
hints.addr_format = FI_SOCKADDR;

Expand Down
2 changes: 1 addition & 1 deletion simple/pingpong.c
Expand Up @@ -651,7 +651,7 @@ int main(int argc, char **argv)

hints.domain_attr = &domain_hints;
hints.ep_attr = &ep_hints;
hints.type = FID_MSG;
hints.type = FI_EP_MSG;
hints.ep_cap = FI_MSG;
domain_hints.caps = FI_LOCAL_MR;
hints.addr_format = FI_SOCKADDR;
Expand Down

0 comments on commit 7020d24

Please sign in to comment.