svn commit: r316448 - stable/11/sys/sys

Konstantin Belousov kib at FreeBSD.org
Mon Apr 3 09:36:46 UTC 2017


Author: kib
Date: Mon Apr  3 09:36:44 2017
New Revision: 316448
URL: https://svnweb.freebsd.org/changeset/base/316448

Log:
  MFC r316009:
  Fix TUNABLE_UINT64() on 32bit architectures.

Modified:
  stable/11/sys/sys/kernel.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/sys/kernel.h
==============================================================================
--- stable/11/sys/sys/kernel.h	Mon Apr  3 09:21:00 2017	(r316447)
+++ stable/11/sys/sys/kernel.h	Mon Apr  3 09:36:44 2017	(r316448)
@@ -352,7 +352,7 @@ struct tunable_uint64 {
 	uint64_t *var;
 };
 #define	TUNABLE_UINT64(path, var)				\
-	static struct tunable_ulong __CONCAT(__tunable_uint64_, __LINE__) = { \
+	static struct tunable_uint64 __CONCAT(__tunable_uint64_, __LINE__) = { \
 		(path),						\
 		(var),						\
 	};							\


More information about the svn-src-stable-11 mailing list