Some(1) users with semi-broken dongles (?) get storms of "Unexpected continuation frame (len 0)" messages flooding their logs. So ratelimit this printk. (1) https://bugs.launchpad.net/ubuntu/+source/bluetooth-alsa/+bug/192502 https://bugzilla.kernel.org/show_bug.cgi?id=11705 https://bugzilla.redhat.com/show_bug.cgi?id=450490 Signed-off-by: Gregory M. Turner <gmt@xxxxxxxxxxx> --- net/bluetooth/l2cap_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 6ba33f9..7090aa0 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -7493,7 +7493,7 @@ int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags) BT_DBG("Cont: frag len %d (expecting %d)", skb->len, conn->rx_len); if (!conn->rx_len) { - BT_ERR("Unexpected continuation frame (len %d)", skb->len); + BT_ERR_RATELIMITED("Unexpected continuation frame (len %d)", skb->len); l2cap_conn_unreliable(conn, ECOMM); goto drop; } -- 2.3.0 -- 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