~ubuntu-branches/ubuntu/utopic/perftest/utopic-proposed

« back to all changes in this revision

Viewing changes to src/write_lat.c

  • Committer: Package Import Robot
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2014-09-04 14:08:17 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140904140817-d0i2kli2oqvqykrz
Tags: 2.3+0.12.gcb5b746-1
* New upstream release: 2.3-0.12.gcb5b746
* Add support for ppc64el. Thanks to Breno Leitao. (Closes: #751792)
* Remove README.Debian and just adapt the version string from upstream to
  Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
 
123
123
        exchange_versions(&user_comm, &user_param);
124
124
 
 
125
        check_sys_data(&user_comm, &user_param);
 
126
 
125
127
        // See if MTU and link type are valid and supported.
126
128
        if (check_mtu(ctx.context,&user_param, &user_comm)) {
127
129
                fprintf(stderr, " Couldn't get context for the device\n");
195
197
                ctx_print_pingpong_data(&rem_dest[i],&user_comm);
196
198
        };
197
199
 
 
200
        if (user_param.work_rdma_cm == OFF)
 
201
        {
 
202
                if (ctx_check_gid_compatibility(&my_dest[0], &rem_dest[0]))
 
203
                {
 
204
                        fprintf(stderr,"\n Found Incompatibility issue with GID types.\n");
 
205
                        fprintf(stderr," Please Try to use a different IP version.\n\n");
 
206
                        return 1;
 
207
                }
 
208
        }
 
209
 
198
210
        if (user_param.work_rdma_cm == OFF) {
199
211
 
200
212
                if (ctx_connect(&ctx,rem_dest,&user_param,my_dest)) {