Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea6819e1 authored by Nicolas Dichtel's avatar Nicolas Dichtel Committed by Masahiro Yamada
Browse files

smc_diag.h: fix include from userland



This patch prepares the uapi export by fixing the following error:

.../linux/smc_diag.h:6:27: fatal error: rdma/ib_verbs.h: No such file or directory
 #include <rdma/ib_verbs.h>

Signed-off-by: default avatarNicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 3a4e7f56
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@
#include <linux/mmu_notifier.h>
#include <linux/uaccess.h>
#include <linux/cgroup_rdma.h>
#include <uapi/rdma/ib_user_verbs.h>

extern struct workqueue_struct *ib_wq;
extern struct workqueue_struct *ib_comp_wq;
@@ -1889,8 +1890,6 @@ enum ib_mad_result {
	IB_MAD_RESULT_CONSUMED = 1 << 2  /* Packet consumed: stop processing */
};

#define IB_DEVICE_NAME_MAX 64

struct ib_port_cache {
	struct ib_pkey_cache  *pkey;
	struct ib_gid_table   *gid;
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@

#include <linux/types.h>
#include <linux/inet_diag.h>
#include <rdma/ib_verbs.h>
#include <rdma/ib_user_verbs.h>

/* Request structure */
struct smc_diag_req {
+2 −0
Original line number Diff line number Diff line
@@ -1135,4 +1135,6 @@ struct ib_uverbs_ex_destroy_rwq_ind_table {
	__u32 ind_tbl_handle;
};

#define IB_DEVICE_NAME_MAX 64

#endif /* IB_USER_VERBS_H */