Hi Dan, > > sk_buffs have to be freed with kfree_skb() instead of kfree(). > > > > Signed-off-by: Dan Carpenter <error27@xxxxxxxxx> > > > > diff --git a/drivers/bluetooth/hci_ath.c b/drivers/bluetooth/hci_ath.c > > index 5ab258b..74a8f61 100755 > > --- a/drivers/bluetooth/hci_ath.c > > +++ b/drivers/bluetooth/hci_ath.c > > @@ -163,7 +163,7 @@ static int ath_enqueue(struct hci_uart *hu, struct sk_buff *skb) > > struct ath_struct *ath = hu->priv; > > > > if (bt_cb(skb)->pkt_type == HCI_SCODATA_PKT) { > > - kfree(skb); > > + kfree_skb(skb); > > return 0; > > } > > Acked-by: Gustavo F. Padovan <padovan@xxxxxxxxxxxxxx> patch has been applied. Thanks. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html