2.6.27-stable review patch. If anyone has any objections, please let us know. ------------------ From: Sergio Luis commit cbfd24a75f98fe731547d3bc995f3a1f1fed6b20 upstream. free sk_buff with kfree_skb, instead of kree Signed-off-by: Sergio Luis Signed-off-by: David S. Miller Cc: Tomas Winkler Signed-off-by: Greg Kroah-Hartman --- drivers/bluetooth/btsdio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/bluetooth/btsdio.c +++ b/drivers/bluetooth/btsdio.c @@ -153,7 +153,7 @@ static int btsdio_rx_packet(struct btsdi err = sdio_readsb(data->func, skb->data, REG_RDAT, len - 4); if (err < 0) { - kfree(skb); + kfree_skb(skb); return err; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/