Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Jul 2018 10:07:40 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r336395 - head/sys/dev/mlx5/mlx5_ib
Message-ID:  <201807171007.w6HA7e0P040039@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Tue Jul 17 10:07:40 2018
New Revision: 336395
URL: https://svnweb.freebsd.org/changeset/base/336395

Log:
  Update version information for the mlx5ib module.
  
  MFC after:		1 week
  Sponsored by:		Mellanox Technologies

Modified:
  head/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c

Modified: head/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
==============================================================================
--- head/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c	Tue Jul 17 09:59:55 2018	(r336394)
+++ head/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c	Tue Jul 17 10:07:40 2018	(r336395)
@@ -51,8 +51,10 @@
 #include "mlx5_ib.h"
 
 #define DRIVER_NAME "mlx5_ib"
-#define DRIVER_VERSION "3.4.1-BETA"
-#define DRIVER_RELDATE	"October 2017"
+#ifndef DRIVER_VERSION
+#define DRIVER_VERSION "3.4.2"
+#endif
+#define DRIVER_RELDATE	"July 2018"
 
 MODULE_DESCRIPTION("Mellanox Connect-IB HCA IB driver");
 MODULE_LICENSE("Dual BSD/GPL");
@@ -65,8 +67,8 @@ static int deprecated_prof_sel = 2;
 module_param_named(prof_sel, deprecated_prof_sel, int, 0444);
 MODULE_PARM_DESC(prof_sel, "profile selector. Deprecated here. Moved to module mlx5_core");
 
-static char mlx5_version[] =
-	DRIVER_NAME ": Mellanox Connect-IB Infiniband driver v"
+static const char mlx5_version[] =
+	DRIVER_NAME ": Mellanox Connect-IB Infiniband driver "
 	DRIVER_VERSION " (" DRIVER_RELDATE ")\n";
 
 enum {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807171007.w6HA7e0P040039>