svn commit: r204295 - stable/8/sys/cddl/compat/opensolaris/sys

Xin LI delphij at FreeBSD.org
Thu Feb 25 00:46:51 UTC 2010


Author: delphij
Date: Thu Feb 25 00:46:51 2010
New Revision: 204295
URL: http://svn.freebsd.org/changeset/base/204295

Log:
  MFC r202964:
  
  On FreeBSD, time_t is 64-bit for all platforms except i386 and powerpc,
  where the type is 32-bit.  ZFS can handle 64-bit timestamp internally
  but zfs_setattr() would check if the time value can fit, we change the
  checking macros to match 64-bit timestamp if the platform supports it.
  
  This change has some downsides like, while you can import zfs on 32-bit
  platforms, the timestamp would overflow if they are out of the range.
  
  This fixes the Y2.038K issue on platforms using 64-bit timestamps.
  
  Reviewed by:	pjd

Modified:
  stable/8/sys/cddl/compat/opensolaris/sys/time.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)
  stable/8/sys/netinet/   (props changed)

Modified: stable/8/sys/cddl/compat/opensolaris/sys/time.h
==============================================================================
--- stable/8/sys/cddl/compat/opensolaris/sys/time.h	Wed Feb 24 23:00:16 2010	(r204294)
+++ stable/8/sys/cddl/compat/opensolaris/sys/time.h	Thu Feb 25 00:46:51 2010	(r204295)
@@ -40,8 +40,13 @@ typedef longlong_t	hrtime_t;
 
 #define	LBOLT	((gethrtime() * hz) / NANOSEC)
 
+#if defined(__i386__) || defined(__powerpc__)
 #define	TIMESPEC_OVERFLOW(ts)						\
 	((ts)->tv_sec < INT32_MIN || (ts)->tv_sec > INT32_MAX)
+#else
+#define	TIMESPEC_OVERFLOW(ts)						\
+	((ts)->tv_sec < INT64_MIN || (ts)->tv_sec > INT64_MAX)
+#endif
 
 #ifdef _KERNEL
 #define	lbolt64	(int64_t)(LBOLT)


More information about the svn-src-all mailing list