Page MenuHomeFreeBSD

Fix build of si with base gcc on i386
ClosedPublic

Authored by dim on Jun 11 2018, 8:21 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 21, 6:10 PM
Unknown Object (File)
Mon, Apr 20, 7:09 PM
Unknown Object (File)
Mon, Apr 20, 5:20 AM
Unknown Object (File)
Sat, Apr 18, 8:45 PM
Unknown Object (File)
Wed, Apr 8, 3:54 PM
Unknown Object (File)
Wed, Apr 8, 4:04 AM
Unknown Object (File)
Mon, Apr 6, 3:27 AM
Unknown Object (File)
Sun, Apr 5, 1:33 AM
Subscribers

Details

Summary

Base gcc fails to compile sys/dev/si/si_isa.c and
sys/dev/si/si_pci.c for i386, with the following -Werror warnings:

cc1: warnings being treated as errors
/usr/src/sys/modules/si/../../dev/si/si_isa.c: In function 'si_isa_probe':
/usr/src/sys/modules/si/../../dev/si/si_isa.c:68: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
/usr/src/sys/modules/si/../../dev/si/si_isa.c: In function 'si_isa_attach':
/usr/src/sys/modules/si/../../dev/si/si_isa.c:282: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

cc1: warnings being treated as errors
/usr/src/sys/modules/si/../../dev/si/si_pci.c: In function 'si_pci_attach':
/usr/src/sys/modules/si/../../dev/si/si_pci.c:89: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

This is because on i386, the casts from rman_res_t (aka uintmax_t)
to a pointer reduces the value from 64 bit to 32 bit.

For gcc, this can be fixed by an intermediate cast to uintptr_t. Note
that I am assuming the incoming values will always fit into 32 bit!

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Btw, this will be a direct commit to stable/11, since si was removed from head.

Ok I guess. This driver was a dumpster fire. I had patches to fix things like this but no one tested them. This bandaid is probably fine.

This revision is now accepted and ready to land.Jun 13 2018, 5:53 PM
This revision was automatically updated to reflect the committed changes.