> > + skb->data[skb->len] = 0; > wiphy_info(mt76_hw(dev)->wiphy, "%s: %s", type, data); > } > Are you sure there's always enough space to write to the skb? Following the code up I'm not even sure it's always a linear skb :-) Might be safer/better to do wiphy_info(..., "%s: %*s", type, skb->len - sizeof(*rxd), data); instead? johannes