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
F83091548: D43635.diff
Mon, May 6, 4:02 AM
Unknown Object (File)
Mar 25 2024, 10:37 PM
Unknown Object (File)
Mar 17 2024, 9:21 AM
Unknown Object (File)
Mar 17 2024, 9:21 AM
Unknown Object (File)
Mar 17 2024, 9:20 AM
Unknown Object (File)
Mar 14 2024, 4:45 PM
Unknown Object (File)
Mar 2 2024, 4:44 PM
Unknown Object (File)
Feb 3 2024, 1:30 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