Blame view

include/rdma/ib_marshall.h 778 Bytes
6bf9d8f6f   Leon Romanovsky   RDMA/include: Rep...
1
  /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
6a9af2e18   Sean Hefty   IB: common handli...
2
  /*
752166385   Sean Hefty   RDMA/cma: Export ...
3
   * Copyright (c) 2005-2006 Intel Corporation.  All rights reserved.
6a9af2e18   Sean Hefty   IB: common handli...
4
   */
6bf9d8f6f   Leon Romanovsky   RDMA/include: Rep...
5
  #ifndef IB_USER_MARSHALL_H
6a9af2e18   Sean Hefty   IB: common handli...
6
7
8
9
10
11
  #define IB_USER_MARSHALL_H
  
  #include <rdma/ib_verbs.h>
  #include <rdma/ib_sa.h>
  #include <rdma/ib_user_verbs.h>
  #include <rdma/ib_user_sa.h>
d541e4550   Dasaratharaman Chandramouli   IB/core: Convert ...
12
13
  void ib_copy_qp_attr_to_user(struct ib_device *device,
  			     struct ib_uverbs_qp_attr *dst,
6a9af2e18   Sean Hefty   IB: common handli...
14
  			     struct ib_qp_attr *src);
d541e4550   Dasaratharaman Chandramouli   IB/core: Convert ...
15
16
  void ib_copy_ah_attr_to_user(struct ib_device *device,
  			     struct ib_uverbs_ah_attr *dst,
90898850e   Dasaratharaman Chandramouli   IB/core: Rename s...
17
  			     struct rdma_ah_attr *src);
752166385   Sean Hefty   RDMA/cma: Export ...
18

6a9af2e18   Sean Hefty   IB: common handli...
19
  void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,
c2f8fc4ec   Dasaratharaman Chandramouli   IB/SA: Rename ib_...
20
  			      struct sa_path_rec *src);
6a9af2e18   Sean Hefty   IB: common handli...
21

c2f8fc4ec   Dasaratharaman Chandramouli   IB/SA: Rename ib_...
22
  void ib_copy_path_rec_from_user(struct sa_path_rec *dst,
6a9af2e18   Sean Hefty   IB: common handli...
23
24
25
  				struct ib_user_path_rec *src);
  
  #endif /* IB_USER_MARSHALL_H */