Page MenuHomeFreeBSD

LinuxKPI: fix WRITE_ONCE()
ClosedPublic

Authored by bz on May 13 2023, 3:37 PM.
Tags
None
Referenced Files
F108208802: D40084.diff
Wed, Jan 22, 4:16 PM
Unknown Object (File)
Sat, Jan 11, 2:00 AM
Unknown Object (File)
Fri, Jan 10, 8:51 PM
Unknown Object (File)
Thu, Jan 9, 1:55 PM
Unknown Object (File)
Thu, Jan 9, 8:56 AM
Unknown Object (File)
Thu, Jan 9, 7:54 AM
Unknown Object (File)
Tue, Jan 7, 8:04 PM
Unknown Object (File)
Tue, Jan 7, 7:53 PM

Details

Summary

Fix a gcc warning: to be safe all intermediate pointers in cast from
'...' to '...' must be 'const' qualified [-Wcast-qual].
Doing what is essentially a __DECONST() adding the uintptr_t gets
rid of the massive amount of warnings we get in LinuxKPI and lets
us see the actual problems a lot better.
This is a follow-up to 74e908b3c63b28de1d590dc42502fbe959a6da2e which
fixed READ_ONCE().

Suggested by: jhb
MFC after: 10 days

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

bz requested review of this revision.May 13 2023, 3:37 PM
hselasky added a subscriber: hselasky.
hselasky added inline comments.
sys/compat/linuxkpi/common/include/linux/compiler.h
91

Hi,

ACCESS_ONCE() used to be a valid Linux API:

Documentation/RCU/RTFP.txt: ACCESS_ONCE().

But I think it is obsolete. Maybe say something about that in the commit message!

--HPS

93

This also works for CheriBSD and capability pointers?

sys/compat/linuxkpi/common/include/linux/compiler.h
93

Yes.

This revision is now accepted and ready to land.May 21 2023, 4:38 PM
This revision was automatically updated to reflect the committed changes.