虚拟WLAN接口的创建和测试:通过mac80211_hwsim内核模块,可以模拟多个无线网卡设备,用于测试无线网络的性能和功能。 网络性能优化:调整TSQ调度偏移量等参数,优化无线网络的数据传输效率。 在Linux中的实现 mac80211与cfg80211和nl80211一起工作,提供了对无线设备的配置和管理功能。它通过netlink协议在用户空间和内核空间之间...
5 changes: 3 additions & 2 deletions 5 drivers/net/wireless/virtual/mac80211_hwsim.c Original file line numberDiff line numberDiff line change @@ -582,8 +582,9 @@ static int mac80211_hwsim_vendor_cmd_test(struct wiphy *wiphy, */ /* Add vendor data */ nla_put_u32(skb, QCA_WLA...
虚拟WLAN接口的创建和测试:通过mac80211_hwsim内核模块,可以模拟多个无线网卡设备,用于测试无线网络的性能和功能。 网络性能优化:调整TSQ调度偏移量等参数,优化无线网络的数据传输效率。 在Linux中的实现 mac80211与cfg80211和nl80211一起工作,提供了对无线设备的配置和管理功能。它通过netlink协议在用户空间和内核空间之间...
This reverts commit b970ac6 ("wifi: mac80211_hwsim: check the return value of nla_put_u32") since it introduced a memory leak in the error path, which seems worse than sending an incomplete skb, and the put can't fail anyway since the SKB was just allocated. Signed-off-by: Johannes...