aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2005-11-13 04:36:49 +0000
committerRoland Dreier <rolandd@cisco.com>2006-11-09 11:35:58 -0800
commit8767a8d0d0a157bb38f569ef696589d04f9202de (patch)
treeb8f08217756398b6b7470d17e8eb614449ab79bc
parentbdb59f7e356a74eede37bc6eaceb8abab716df36 (diff)
downloadlibibverbs-8767a8d0d0a157bb38f569ef696589d04f9202de.tar.gz
Various trivial picayune libibverbs changes
Signed-off-by: Roland Dreier <rolandd@cisco.com>
-rw-r--r--AUTHORS2
-rw-r--r--Makefile.am3
-rw-r--r--include/infiniband/marshall.h12
3 files changed, 9 insertions, 8 deletions
diff --git a/AUTHORS b/AUTHORS
index 360116c..e2dc298 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,2 +1,4 @@
Roland Dreier <roland@topspin.com>
Dotan Barak <dotanb@mellanox.co.il>
+Sean Hefty <sean.hefty@intel.com>
+Michael S. Tsirkin <mst@mellanox.co.il>
diff --git a/Makefile.am b/Makefile.am
index 972d8f7..2d6b0ba 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -55,8 +55,7 @@ DEBIAN = debian/changelog debian/compat debian/control debian/copyright \
EXTRA_DIST = include/infiniband/driver.h include/infiniband/kern-abi.h \
include/infiniband/opcode.h include/infiniband/verbs.h src/ibverbs.h \
- include/infiniband/marshall.h include/sa-kern-abi.h \
- include/infiniband/sa.h \
+ include/infiniband/marshall.h include/sa-kern-abi.h include/infiniband/sa.h \
src/libibverbs.map libibverbs.spec.in $(man_MANS) $(DEBIAN)
dist-hook: libibverbs.spec
diff --git a/include/infiniband/marshall.h b/include/infiniband/marshall.h
index d6bd38f..ccd1d3c 100644
--- a/include/infiniband/marshall.h
+++ b/include/infiniband/marshall.h
@@ -48,14 +48,14 @@
BEGIN_C_DECLS
-void ib_copy_qp_attr_from_kern(struct ibv_qp_attr *dst,
- struct ibv_kern_qp_attr *src);
+extern void ib_copy_qp_attr_from_kern(struct ibv_qp_attr *dst,
+ struct ibv_kern_qp_attr *src);
-void ib_copy_path_rec_from_kern(struct ib_sa_path_rec *dst,
- struct ib_kern_path_rec *src);
+extern void ib_copy_path_rec_from_kern(struct ib_sa_path_rec *dst,
+ struct ib_kern_path_rec *src);
-void ib_copy_path_rec_to_kern(struct ib_kern_path_rec *dst,
- struct ib_sa_path_rec *src);
+extern void ib_copy_path_rec_to_kern(struct ib_kern_path_rec *dst,
+ struct ib_sa_path_rec *src);
END_C_DECLS