svn commit: r294018 - stable/10/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Thu Jan 14 16:29:35 UTC 2016


Author: arybchik
Date: Thu Jan 14 16:29:33 2016
New Revision: 294018
URL: https://svnweb.freebsd.org/changeset/base/294018

Log:
  MFC r293818
  
  sfxge: cleanup: fix typo in unused EFX_QWORD_IS_SET64
  
  Submitted by:   Richard Houldsworth <rhouldsworth at solarflare.com>
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  stable/10/sys/dev/sfxge/common/efx_types.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sfxge/common/efx_types.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_types.h	Thu Jan 14 16:28:21 2016	(r294017)
+++ stable/10/sys/dev/sfxge/common/efx_types.h	Thu Jan 14 16:29:33 2016	(r294018)
@@ -536,7 +536,7 @@ extern int fix_lint;
 	    (_oword).eo_u32[3]) == ~((uint32_t)0))
 
 #define	EFX_QWORD_IS_SET64(_qword)					\
-	(((_qword).eq_u64[0]) == ~((uint32_t)0))
+	(((_qword).eq_u64[0]) == ~((uint64_t)0))
 
 #define	EFX_QWORD_IS_SET32(_qword)					\
 	(((_qword).eq_u32[0] &						\


More information about the svn-src-all mailing list