/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */1/*2* Copyright (c) 2005-2006 Intel Corporation. All rights reserved.3*/45#ifndef IB_USER_MARSHALL_H6#define IB_USER_MARSHALL_H78#include <rdma/ib_verbs.h>9#include <rdma/ib_sa.h>10#include <rdma/ib_user_verbs.h>11#include <rdma/ib_user_sa.h>1213void ib_copy_qp_attr_to_user(struct ib_device *device,14struct ib_uverbs_qp_attr *dst,15struct ib_qp_attr *src);1617void ib_copy_ah_attr_to_user(struct ib_device *device,18struct ib_uverbs_ah_attr *dst,19struct rdma_ah_attr *src);2021void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,22struct sa_path_rec *src);2324#endif /* IB_USER_MARSHALL_H */252627