net80211: increase number of spares in struct ieee80211_vap

Turns out MFCing 713db49d06 does not
leave us with enough spares.  Given wireless will likely see more
changes in the near future add more spares.
This is especially necessary given 'struct ieee80211_vap' gets
allocated by drivers.
Bumps size of struct ieee80211_vap to (7 * 512) on 64bit.
This commit is contained in:
Bjoern A. Zeeb 2024-02-18 17:47:22 +00:00
parent ad7bef8b89
commit a890a3a5dd

View file

@ -611,7 +611,7 @@ struct ieee80211vap {
struct ieee80211_rx_histogram *rx_histogram;
struct ieee80211_tx_histogram *tx_histogram;
uint64_t iv_spare[6];
uint64_t iv_spare[36];
};
MALLOC_DECLARE(M_80211_VAP);