Searched hist:258780 (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11-stable/sys/arm/arm/
H A Dpl190.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A Ddb_trace.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dr600_blit_kms.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A Dr600_cs.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A Dradeon_drv.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/stand/i386/libfirewire/
H A Dfwohci.hdiff 258780 Sat Nov 30 22:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/usr.sbin/bluetooth/bthidd/
H A Dkbd.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/x86/iommu/
H A Dintel_reg.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx6_usbphy.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/ffec/
H A Dif_ffecreg.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_runreg.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A Dif_zydreg.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/arm/samsung/exynos/
H A Dexynos5_ehci.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_emu.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_dma.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/arm/freescale/vybrid/
H A Dvf_ehci.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/firewire/
H A Dfwohcireg.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A Dsbp_targ.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A Dfwohci.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/arm/include/
H A Darmreg.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/e1000/
H A De1000_82575.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
H A De1000_regs.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/amd64/vmm/intel/
H A Dvmcs.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/agp/
H A Dagp_i810.cdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva
/freebsd-11-stable/sys/dev/ahci/
H A Dahci.hdiff 258780 Sat Nov 30 20:17:55 MST 2013 eadler Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva

Completed in 483 milliseconds

12