On Friday 06 June 2008 19:51:12 Harvey Harrison wrote: > Many callers already expect it to. > > Signed-off-by: Harvey Harrison <harvey.harrison@xxxxxxxxx> > --- > include/net/mac80211.h | 2 +- > net/mac80211/util.c | 10 +++++----- > 2 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/include/net/mac80211.h b/include/net/mac80211.h > index 53c3b5e..7ab4ff6 100644 > --- a/include/net/mac80211.h > +++ b/include/net/mac80211.h > @@ -1535,7 +1535,7 @@ ieee80211_get_buffered_bc(struct ieee80211_hw *hw, struct ieee80211_vif *vif); > * > * @skb: the frame > */ > -int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb); > +unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb); > > /** > * ieee80211_get_hdrlen - get header length from frame control > diff --git a/net/mac80211/util.c b/net/mac80211/util.c > index fade001..60fec1c 100644 > --- a/net/mac80211/util.c > +++ b/net/mac80211/util.c > @@ -165,15 +165,15 @@ out: > } > EXPORT_SYMBOL(ieee80211_hdrlen); > > -int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb) > +unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb) > { > const struct ieee80211_hdr *hdr = (const struct ieee80211_hdr *) skb->data; > - int hdrlen; > + unsigned int hdrlen; > > - if (unlikely(skb->len < 10)) > + if (skb->len < 10) Why are you removing the unlikely()? This should actually be pretty unlikely. Sane firmware will drop short packets, so the kernel won't ever see them. > return 0; > - hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)); > - if (unlikely(hdrlen > skb->len)) > + hdrlen = ieee80211_hdrlen(hdr->frame_control); > + if (hdrlen > skb->len) I think this also is unlikely, as it can only come from corrupted packets. > return 0; > return hdrlen; > } -- Greetings Michael. -- 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