Skip to content

Commit

Permalink
ra: don't consider sgi when trying to probe next rateset.
Browse files Browse the repository at this point in the history
  • Loading branch information
zxystd committed Mar 18, 2024
1 parent 9d5145d commit e48e7cb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions itl80211/openbsd/net80211/ieee80211_ra.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,6 @@ ieee80211_ra_next_rateset(struct ieee80211_ra_node *rn, struct ieee80211com *ic,
continue;
if (rsnext->nss > support_nss(ni))
continue;
if (rsnext->sgi && !ieee80211_node_supports_sgi(ni))
continue;
found = true;
break;
}
Expand All @@ -385,8 +383,6 @@ ieee80211_ra_next_rateset(struct ieee80211_ra_node *rn, struct ieee80211com *ic,
continue;
if (rsnext->nss > support_nss(ni))
continue;
if (rsnext->sgi && !ieee80211_node_supports_sgi(ni))
continue;
found = true;
break;
}
Expand Down

0 comments on commit e48e7cb

Please sign in to comment.