open-vm-tools/vmw-bitmask-gcc6.patch
Ravindra Kumar ee4478213d Package new upstream version open-vm-tools-10.0.5-3227872.
- Add a patch for fixing GCC 6 build issue (RHBZ#1305108).
- Replace kill-werror.patch with no-unused-const.patch.
2016-05-25 10:55:42 -07:00

17 lines
611 B
Diff

--- lib/include/x86cpuid.h.old 2016-05-24 23:23:20.747118224 -0700
+++ lib/include/x86cpuid.h 2016-05-24 23:28:35.829547406 -0700
@@ -905,11 +905,9 @@
*
* e.g. - CPUID_VIRT_BITS_MASK = 0xff00
* - CPUID_VIRT_BITS_SHIFT = 8
- *
- * Note: The MASK definitions must use some gymnastics to get
- * around a warning when shifting left by 32.
*/
-#define VMW_BIT_MASK(shift) (((1 << (shift - 1)) << 1) - 1)
+#define VMW_BIT_MASK(shift) (0xffffffffu >> (32 - shift))
+
#define FIELD(lvl, ecxIn, reg, bitpos, size, name, s, c3) \
CPUID_##name##_SHIFT = bitpos, \