Page MenuHomeFreeBSD

LinuxKPI: 802.11: fix field order in ieee80211_key_conf
ClosedPublic

Authored by bz on Jan 28 2024, 12:57 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Jan 19, 5:41 AM
Unknown Object (File)
Fri, Jan 10, 11:22 PM
Unknown Object (File)
Wed, Jan 8, 4:29 AM
Unknown Object (File)
Wed, Jan 8, 4:28 AM
Unknown Object (File)
Mon, Jan 6, 10:32 PM
Unknown Object (File)
Nov 25 2024, 3:31 PM
Unknown Object (File)
Nov 25 2024, 3:31 PM
Unknown Object (File)
Nov 25 2024, 3:31 PM

Details

Summary

When adding the new field link_id to struct ieee80211_key_conf it
was erroneously placed at the of the struct; the zero-length (variable
sized) array for the key always needs to stay last.
Resort fields and add hopefully helpful comment to avoid the problem
in the future.

Fixes: adff403fe7a87
MFC after: 3 days

Diff Detail

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

Event Timeline

bz requested review of this revision.Jan 28 2024, 12:57 AM

Good catch!

Please correct the summary:

When adding the new field link_id to struct ieee80211_key_conf it
was erroneously placed at the of the struct;

to
When adding the new field link_id to struct ieee80211_key_conf, it
was erroneously placed at the end of the struct.

This revision is now accepted and ready to land.Feb 1 2024, 3:13 PM