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

Commit a4d61e84 authored by Roland Dreier's avatar Roland Dreier Committed by Roland Dreier
Browse files

[PATCH] IB: move include files to include/rdma



Move the InfiniBand headers from drivers/infiniband/include to include/rdma.
This allows InfiniBand-using code to live elsewhere, and lets us remove the
ugly EXTRA_CFLAGS include path from the InfiniBand Makefiles.

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 1ad62a19
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
EXTRA_CFLAGS += -Idrivers/infiniband/include

obj-$(CONFIG_INFINIBAND) +=		ib_core.o ib_mad.o ib_sa.o \
					ib_cm.o ib_umad.o ib_ucm.o
obj-$(CONFIG_INFINIBAND_USER_VERBS) +=	ib_uverbs.o
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@

#include <asm/bug.h>

#include <ib_smi.h>
#include <rdma/ib_smi.h>

#include "smi.h"
#include "agent_priv.h"
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
#include <linux/errno.h>
#include <linux/slab.h>

#include <ib_cache.h>
#include <rdma/ib_cache.h>

#include "core_priv.h"

+2 −2
Original line number Diff line number Diff line
@@ -43,8 +43,8 @@
#include <linux/spinlock.h>
#include <linux/workqueue.h>

#include <ib_cache.h>
#include <ib_cm.h>
#include <rdma/ib_cache.h>
#include <rdma/ib_cm.h>
#include "cm_msgs.h"

MODULE_AUTHOR("Sean Hefty");
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
#if !defined(CM_MSGS_H)
#define CM_MSGS_H

#include <ib_mad.h>
#include <rdma/ib_mad.h>

/*
 * Parameters to routines below should be in network-byte order, and values
Loading