Does there happen to be a bugzilla somewhere that corresponds to this? On Wed, Apr 29, 2009 at 11:35:56PM +0200, Johannes Berg wrote: > The fragmentation threshold is defined to be including the > FCS, and the code that sets the TX_FRAGMENTED flag correctly > accounts for those four bytes. The code that verifies this > doesn't though, which could lead to spurious warnings and > frames being dropped although everything is ok. Correct the > code by accounting for the FCS. > > Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> > --- > net/mac80211/tx.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- wireless-testing.orig/net/mac80211/tx.c 2009-04-29 22:27:51.000000000 +0200 > +++ wireless-testing/net/mac80211/tx.c 2009-04-29 22:28:35.000000000 +0200 > @@ -788,7 +788,7 @@ ieee80211_tx_h_fragment(struct ieee80211 > hdrlen = ieee80211_hdrlen(hdr->frame_control); > > /* internal error, why is TX_FRAGMENTED set? */ > - if (WARN_ON(skb->len <= frag_threshold)) > + if (WARN_ON(skb->len + FCS_LEN <= frag_threshold)) > return TX_DROP; > > /* > > > -- John W. Linville Someday the world will need a hero, and you linville@xxxxxxxxxxxxx might be all we have. Be ready. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html