Page MenuHomeFreeBSD

nda(4): Remove unnecessary union and avoid Clang -Wsizeof-array-div warning
ClosedPublic

Authored by jrtc27 on Oct 6 2019, 2:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Jul 19, 1:09 AM
Unknown Object (File)
Tue, Jul 14, 4:28 AM
Unknown Object (File)
Mon, Jul 13, 4:12 AM
Unknown Object (File)
Sun, Jul 12, 6:39 AM
Unknown Object (File)
Sun, Jul 5, 9:04 PM
Unknown Object (File)
Sun, Jul 5, 2:51 AM
Unknown Object (File)
Mon, Jun 22, 10:10 PM
Unknown Object (File)
Mon, Jun 22, 10:06 PM
Subscribers
None

Details

Summary

Clang trunk recently gained this new warning, and complains about the
sizeof(trim->data) / sizeof(struct nvme_dsm_range) expression, since
the left hand side's element type (char) does not match the right hand
side's type. The byte buffer is unnecessary so we can remove it to clean
up the code and fix the warning at the same time.

No functional change.

Diff Detail

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

Event Timeline

This revision is now accepted and ready to land.Oct 7 2019, 12:55 AM

Could you please commit this if you believe it is ready to land? Thanks.