uverbs_marshall.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * Copyright (c) 2005 Intel Corporation. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. */
  32. #include <linux/export.h>
  33. #include <rdma/ib_marshall.h>
  34. void ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst,
  35. struct ib_ah_attr *src)
  36. {
  37. memcpy(dst->grh.dgid, src->grh.dgid.raw, sizeof src->grh.dgid);
  38. dst->grh.flow_label = src->grh.flow_label;
  39. dst->grh.sgid_index = src->grh.sgid_index;
  40. dst->grh.hop_limit = src->grh.hop_limit;
  41. dst->grh.traffic_class = src->grh.traffic_class;
  42. memset(&dst->grh.reserved, 0, sizeof(dst->grh.reserved));
  43. dst->dlid = src->dlid;
  44. dst->sl = src->sl;
  45. dst->src_path_bits = src->src_path_bits;
  46. dst->static_rate = src->static_rate;
  47. dst->is_global = src->ah_flags & IB_AH_GRH ? 1 : 0;
  48. dst->port_num = src->port_num;
  49. dst->reserved = 0;
  50. }
  51. EXPORT_SYMBOL(ib_copy_ah_attr_to_user);
  52. void ib_copy_qp_attr_to_user(struct ib_uverbs_qp_attr *dst,
  53. struct ib_qp_attr *src)
  54. {
  55. dst->qp_state = src->qp_state;
  56. dst->cur_qp_state = src->cur_qp_state;
  57. dst->path_mtu = src->path_mtu;
  58. dst->path_mig_state = src->path_mig_state;
  59. dst->qkey = src->qkey;
  60. dst->rq_psn = src->rq_psn;
  61. dst->sq_psn = src->sq_psn;
  62. dst->dest_qp_num = src->dest_qp_num;
  63. dst->qp_access_flags = src->qp_access_flags;
  64. dst->max_send_wr = src->cap.max_send_wr;
  65. dst->max_recv_wr = src->cap.max_recv_wr;
  66. dst->max_send_sge = src->cap.max_send_sge;
  67. dst->max_recv_sge = src->cap.max_recv_sge;
  68. dst->max_inline_data = src->cap.max_inline_data;
  69. ib_copy_ah_attr_to_user(&dst->ah_attr, &src->ah_attr);
  70. ib_copy_ah_attr_to_user(&dst->alt_ah_attr, &src->alt_ah_attr);
  71. dst->pkey_index = src->pkey_index;
  72. dst->alt_pkey_index = src->alt_pkey_index;
  73. dst->en_sqd_async_notify = src->en_sqd_async_notify;
  74. dst->sq_draining = src->sq_draining;
  75. dst->max_rd_atomic = src->max_rd_atomic;
  76. dst->max_dest_rd_atomic = src->max_dest_rd_atomic;
  77. dst->min_rnr_timer = src->min_rnr_timer;
  78. dst->port_num = src->port_num;
  79. dst->timeout = src->timeout;
  80. dst->retry_cnt = src->retry_cnt;
  81. dst->rnr_retry = src->rnr_retry;
  82. dst->alt_port_num = src->alt_port_num;
  83. dst->alt_timeout = src->alt_timeout;
  84. memset(dst->reserved, 0, sizeof(dst->reserved));
  85. }
  86. EXPORT_SYMBOL(ib_copy_qp_attr_to_user);
  87. void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,
  88. struct ib_sa_path_rec *src)
  89. {
  90. memcpy(dst->dgid, src->dgid.raw, sizeof src->dgid);
  91. memcpy(dst->sgid, src->sgid.raw, sizeof src->sgid);
  92. dst->dlid = src->dlid;
  93. dst->slid = src->slid;
  94. dst->raw_traffic = src->raw_traffic;
  95. dst->flow_label = src->flow_label;
  96. dst->hop_limit = src->hop_limit;
  97. dst->traffic_class = src->traffic_class;
  98. dst->reversible = src->reversible;
  99. dst->numb_path = src->numb_path;
  100. dst->pkey = src->pkey;
  101. dst->sl = src->sl;
  102. dst->mtu_selector = src->mtu_selector;
  103. dst->mtu = src->mtu;
  104. dst->rate_selector = src->rate_selector;
  105. dst->rate = src->rate;
  106. dst->packet_life_time = src->packet_life_time;
  107. dst->preference = src->preference;
  108. dst->packet_life_time_selector = src->packet_life_time_selector;
  109. }
  110. EXPORT_SYMBOL(ib_copy_path_rec_to_user);
  111. void ib_copy_path_rec_from_user(struct ib_sa_path_rec *dst,
  112. struct ib_user_path_rec *src)
  113. {
  114. memcpy(dst->dgid.raw, src->dgid, sizeof dst->dgid);
  115. memcpy(dst->sgid.raw, src->sgid, sizeof dst->sgid);
  116. dst->dlid = src->dlid;
  117. dst->slid = src->slid;
  118. dst->raw_traffic = src->raw_traffic;
  119. dst->flow_label = src->flow_label;
  120. dst->hop_limit = src->hop_limit;
  121. dst->traffic_class = src->traffic_class;
  122. dst->reversible = src->reversible;
  123. dst->numb_path = src->numb_path;
  124. dst->pkey = src->pkey;
  125. dst->sl = src->sl;
  126. dst->mtu_selector = src->mtu_selector;
  127. dst->mtu = src->mtu;
  128. dst->rate_selector = src->rate_selector;
  129. dst->rate = src->rate;
  130. dst->packet_life_time = src->packet_life_time;
  131. dst->preference = src->preference;
  132. dst->packet_life_time_selector = src->packet_life_time_selector;
  133. memset(dst->dmac, 0, sizeof(dst->dmac));
  134. dst->net = NULL;
  135. dst->ifindex = 0;
  136. }
  137. EXPORT_SYMBOL(ib_copy_path_rec_from_user);