svn commit: r276977 - in stable/9/contrib/ofed: management/opensm/osmtest usr.bin usr.bin/osmtest usr.lib

Hans Petter Selasky hselasky at FreeBSD.org
Sun Jan 11 14:30:52 UTC 2015


Author: hselasky
Date: Sun Jan 11 14:30:50 2015
New Revision: 276977
URL: https://svnweb.freebsd.org/changeset/base/276977

Log:
  MFC r276823:
  Add makefile for the "osmtest" utility. While at it:
  - Fix depend target by removing a space after an "-I" inclusion option.
  - Fix some minor compile issues in the "osmtest" utility.
  
  PR:		196580
  Sponsored by:	Mellanox Technologies

Added:
  stable/9/contrib/ofed/usr.bin/osmtest/
     - copied from r276823, head/contrib/ofed/usr.bin/osmtest/
Modified:
  stable/9/contrib/ofed/management/opensm/osmtest/osmt_multicast.c
  stable/9/contrib/ofed/management/opensm/osmtest/osmtest.c
  stable/9/contrib/ofed/usr.bin/Makefile
  stable/9/contrib/ofed/usr.lib/Makefile
Directory Properties:
  stable/9/contrib/   (props changed)

Modified: stable/9/contrib/ofed/management/opensm/osmtest/osmt_multicast.c
==============================================================================
--- stable/9/contrib/ofed/management/opensm/osmtest/osmt_multicast.c	Sun Jan 11 14:22:00 2015	(r276976)
+++ stable/9/contrib/ofed/management/opensm/osmtest/osmt_multicast.c	Sun Jan 11 14:30:50 2015	(r276977)
@@ -42,6 +42,7 @@
 #ifndef __WIN__
 #include <unistd.h>
 #endif
+#include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

Modified: stable/9/contrib/ofed/management/opensm/osmtest/osmtest.c
==============================================================================
--- stable/9/contrib/ofed/management/opensm/osmtest/osmtest.c	Sun Jan 11 14:22:00 2015	(r276976)
+++ stable/9/contrib/ofed/management/opensm/osmtest/osmtest.c	Sun Jan 11 14:30:50 2015	(r276977)
@@ -3013,7 +3013,7 @@ Exit:
 
 /**********************************************************************
  **********************************************************************/
-inline uint32_t osmtest_path_rec_key_get(IN const ib_path_rec_t * const p_rec)
+static inline uint32_t osmtest_path_rec_key_get(IN const ib_path_rec_t * const p_rec)
 {
 	return (p_rec->dlid << 16 | p_rec->slid);
 }

Modified: stable/9/contrib/ofed/usr.bin/Makefile
==============================================================================
--- stable/9/contrib/ofed/usr.bin/Makefile	Sun Jan 11 14:22:00 2015	(r276976)
+++ stable/9/contrib/ofed/usr.bin/Makefile	Sun Jan 11 14:30:50 2015	(r276977)
@@ -1,7 +1,7 @@
 .include <bsd.own.mk>
 
-SUBDIR	= ibaddr ibnetdiscover ibping ibportstate ibroute ibsendtrap ibstat
-SUBDIR += ibsysstat ibtracert opensm perfquery saquery
-SUBDIR += sminfo smpdump smpquery vendstat
+SUBDIR= ibaddr ibnetdiscover ibping ibportstate ibroute ibsendtrap ibstat \
+	ibsysstat ibtracert opensm perfquery saquery \
+	sminfo smpdump smpquery vendstat
 
 .include <bsd.subdir.mk>

Modified: stable/9/contrib/ofed/usr.lib/Makefile
==============================================================================
--- stable/9/contrib/ofed/usr.lib/Makefile	Sun Jan 11 14:22:00 2015	(r276976)
+++ stable/9/contrib/ofed/usr.lib/Makefile	Sun Jan 11 14:30:50 2015	(r276977)
@@ -1,6 +1,6 @@
 .include <bsd.own.mk>
 
-SUBDIR	= libibcommon libibmad libibumad libibverbs libmlx4 libmthca
-SUBDIR	+= libopensm libosmcomp libosmvendor libibcm librdmacm libsdp
+SUBDIR=	libibcommon libibmad libibumad libibverbs libmlx4 libmthca \
+	libopensm libosmcomp libosmvendor libibcm librdmacm libsdp
 
 .include <bsd.subdir.mk>


More information about the svn-src-all mailing list