Page MenuHomeFreeBSD

Fix unaligned access in newfs_nandfs
ClosedPublic

Authored by dan.mcgregor_usask.ca on Feb 10 2017, 7:19 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Jun 29, 12:28 PM
Unknown Object (File)
Sun, Jun 29, 5:24 AM
Unknown Object (File)
Mon, Jun 23, 4:54 AM
Unknown Object (File)
Mon, Jun 23, 1:21 AM
Unknown Object (File)
Sun, Jun 22, 3:22 AM
Unknown Object (File)
Tue, Jun 17, 11:21 PM
Unknown Object (File)
May 31 2025, 9:17 PM
Unknown Object (File)
May 30 2025, 8:10 AM
Subscribers

Details

Summary

Clang 4 now warns about unaligned access inside packed structures. Fix unaligned
access in newfs_nandfs.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 7342
Build 7509: arc lint + arc unit

Event Timeline

dan.mcgregor_usask.ca retitled this revision from to Fix unaligned access in newfs_nandfs.
dan.mcgregor_usask.ca updated this object.
dan.mcgregor_usask.ca edited the test plan for this revision. (Show Details)
emaste edited edge metadata.

I think this is fine, but it feels like a Clang false-positive to me.
(fsdata.f_uuid is at offset 64 in nandfs_fsdata)

This revision is now accepted and ready to land.Feb 17 2017, 7:50 PM

It may well be a false positive, though I suspect that this warning is given for any pointer access to a member of a packed structure. This wasn't the only warning of its kind I saw, just the only warning where WARNS wasn't already set to 3 or lower.