Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Dec 2016 18:26:21 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r310425 - in head/sys/dev/mlx4: mlx4_core mlx4_ib
Message-ID:  <201612221826.uBMIQLFQ076247@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Dec 22 18:26:21 2016
New Revision: 310425
URL: https://svnweb.freebsd.org/changeset/base/310425

Log:
  mlx: avoid use of __DATE__ to make build reproducible
  
  Reviewed by:	hselasky
  Differential Revision:	https://reviews.freebsd.org/D8886

Modified:
  head/sys/dev/mlx4/mlx4_core/mlx4.h
  head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c

Modified: head/sys/dev/mlx4/mlx4_core/mlx4.h
==============================================================================
--- head/sys/dev/mlx4/mlx4_core/mlx4.h	Thu Dec 22 18:05:22 2016	(r310424)
+++ head/sys/dev/mlx4/mlx4_core/mlx4.h	Thu Dec 22 18:26:21 2016	(r310425)
@@ -52,7 +52,7 @@
 #define DRV_NAME	"mlx4_core"
 #define PFX		DRV_NAME ": "
 #define DRV_VERSION	"2.1.6"
-#define DRV_RELDATE	__DATE__
+#define DRV_RELDATE	"Sep 30 2016"
 
 #define DRV_STACK_NAME		"Linux-MLNX_OFED"
 #define DRV_STACK_VERSION	"2.1"

Modified: head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
==============================================================================
--- head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c	Thu Dec 22 18:05:22 2016	(r310424)
+++ head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c	Thu Dec 22 18:26:21 2016	(r310425)
@@ -59,7 +59,7 @@
 
 #define DRV_NAME	MLX4_IB_DRV_NAME
 #define DRV_VERSION	"1.0"
-#define DRV_RELDATE	__DATE__
+#define DRV_RELDATE	"Sep 30 2016"
 
 #define MLX4_IB_DRIVER_PROC_DIR_NAME "driver/mlx4_ib"
 #define MLX4_IB_MRS_PROC_DIR_NAME "mrs"



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