/** * struct iwl_mld_phy - PHY configuration parameters * * @fw_id: fw id of the phy. * @chandef: the last chandef that mac80211 configured the driver * with. Used to detect a no-op when the chanctx changes. * @channel_load_by_us: channel load on this channel caused by * the NIC itself, as indicated by firmware * @avg_channel_load_not_by_us: averaged channel load on this channel caused by * others. This value is invalid when in EMLSR (due to FW limitations) * @mld: pointer to the MLD context
*/ struct iwl_mld_phy { /* Add here fields that need clean up on hw restart */
struct_group(zeroed_on_hw_restart,
u8 fw_id; struct cfg80211_chan_def chandef;
); /* And here fields that survive a hw restart */
u32 channel_load_by_us;
u32 avg_channel_load_not_by_us; struct iwl_mld *mld;
};
/* Cleanup function for struct iwl_mld_phy, will be called in restart */ staticinlinevoid
iwl_mld_cleanup_phy(struct iwl_mld *mld, struct iwl_mld_phy *phy)
{
CLEANUP_STRUCT(phy);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.