|
5 | 5 | * Copyright (c) 2011 UT-Battelle, LLC. All rights reserved. |
6 | 6 | * Copyright (c) 2014 Research Organization for Information Science |
7 | 7 | * and Technology (RIST). All rights reserved. |
| 8 | + * Copyright (c) 2017 Intel, Inc. All rights reserved. |
8 | 9 | * $COPYRIGHT$ |
9 | 10 | * |
10 | 11 | * Additional copyrights may follow |
@@ -121,7 +122,7 @@ static inline intptr_t mca_btl_ugni_post_fma_device (mca_btl_ugni_device_t *devi |
121 | 122 | } |
122 | 123 |
|
123 | 124 | BTL_VERBOSE(("Posting FMA descriptor %p with op_type %d, amo %d, ep_handle %p, remote_addr 0x%lx, " |
124 | | - "length %lu", desc, desc->desc.type, desc->desc.amo_cmd, desc->ep_handle, |
| 125 | + "length %lu", (void*)desc, desc->desc.type, desc->desc.amo_cmd, (void*)desc->ep_handle, |
125 | 126 | desc->desc.remote_addr, desc->desc.length)); |
126 | 127 |
|
127 | 128 | rc = GNI_PostFma (desc->ep_handle->gni_handle, &desc->desc); |
@@ -160,7 +161,7 @@ static inline intptr_t mca_btl_ugni_post_rdma_device (mca_btl_ugni_device_t *dev |
160 | 161 | desc->desc.src_cq_hndl = desc->cq->gni_handle; |
161 | 162 |
|
162 | 163 | BTL_VERBOSE(("Posting RDMA descriptor %p with op_type %d, ep_handle %p, remote_addr 0x%lx, " |
163 | | - "length %lu", desc, desc->desc.type, desc->ep_handle, desc->desc.remote_addr, |
| 164 | + "length %lu", (void*)desc, desc->desc.type, (void*)desc->ep_handle, desc->desc.remote_addr, |
164 | 165 | desc->desc.length)); |
165 | 166 |
|
166 | 167 | rc = GNI_PostRdma (desc->ep_handle->gni_handle, &desc->desc); |
|
0 commit comments