All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible
@ 2020-03-09 21:57 Marcel Holtmann
  2020-03-10 15:13 ` Alain Michaud
  2020-03-11  8:07 ` Johan Hedberg
  0 siblings, 2 replies; 3+ messages in thread
From: Marcel Holtmann @ 2020-03-09 21:57 UTC (permalink / raw)
  To: linux-bluetooth

All HCI device specific error messages shall use bt_dev_err to indicate
the device name in the message.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
---
 drivers/bluetooth/hci_h5.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c
index 812a5e975ec1..106c110efe56 100644
--- a/drivers/bluetooth/hci_h5.c
+++ b/drivers/bluetooth/hci_h5.c
@@ -178,7 +178,7 @@ static void h5_peer_reset(struct hci_uart *hu)
 {
 	struct h5 *h5 = hu->priv;
 
-	BT_ERR("Peer device has reset");
+	bt_dev_err(hu->hdev, "Peer device has reset");
 
 	h5->state = H5_UNINITIALIZED;
 
@@ -438,21 +438,21 @@ static int h5_rx_3wire_hdr(struct hci_uart *hu, unsigned char c)
 	       H5_HDR_LEN(hdr));
 
 	if (((hdr[0] + hdr[1] + hdr[2] + hdr[3]) & 0xff) != 0xff) {
-		BT_ERR("Invalid header checksum");
+		bt_dev_err(hu->hdev, "Invalid header checksum");
 		h5_reset_rx(h5);
 		return 0;
 	}
 
 	if (H5_HDR_RELIABLE(hdr) && H5_HDR_SEQ(hdr) != h5->tx_ack) {
-		BT_ERR("Out-of-order packet arrived (%u != %u)",
-		       H5_HDR_SEQ(hdr), h5->tx_ack);
+		bt_dev_err(hu->hdev, "Out-of-order packet arrived (%u != %u)",
+			   H5_HDR_SEQ(hdr), h5->tx_ack);
 		h5_reset_rx(h5);
 		return 0;
 	}
 
 	if (h5->state != H5_ACTIVE &&
 	    H5_HDR_PKT_TYPE(hdr) != HCI_3WIRE_LINK_PKT) {
-		BT_ERR("Non-link packet received in non-active state");
+		bt_dev_err(hu->hdev, "Non-link packet received in non-active state");
 		h5_reset_rx(h5);
 		return 0;
 	}
@@ -475,7 +475,7 @@ static int h5_rx_pkt_start(struct hci_uart *hu, unsigned char c)
 
 	h5->rx_skb = bt_skb_alloc(H5_MAX_LEN, GFP_ATOMIC);
 	if (!h5->rx_skb) {
-		BT_ERR("Can't allocate mem for new packet");
+		bt_dev_err(hu->hdev, "Can't allocate mem for new packet");
 		h5_reset_rx(h5);
 		return -ENOMEM;
 	}
@@ -551,7 +551,7 @@ static int h5_recv(struct hci_uart *hu, const void *data, int count)
 
 		if (h5->rx_pending > 0) {
 			if (*ptr == SLIP_DELIMITER) {
-				BT_ERR("Too short H5 packet");
+				bt_dev_err(hu->hdev, "Too short H5 packet");
 				h5_reset_rx(h5);
 				continue;
 			}
@@ -578,13 +578,13 @@ static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
 	struct h5 *h5 = hu->priv;
 
 	if (skb->len > 0xfff) {
-		BT_ERR("Packet too long (%u bytes)", skb->len);
+		bt_dev_err(hu->hdev, "Packet too long (%u bytes)", skb->len);
 		kfree_skb(skb);
 		return 0;
 	}
 
 	if (h5->state != H5_ACTIVE) {
-		BT_ERR("Ignoring HCI data in non-active state");
+		bt_dev_err(hu->hdev, "Ignoring HCI data in non-active state");
 		kfree_skb(skb);
 		return 0;
 	}
@@ -601,7 +601,7 @@ static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
 		break;
 
 	default:
-		BT_ERR("Unknown packet type %u", hci_skb_pkt_type(skb));
+		bt_dev_err(hu->hdev, "Unknown packet type %u", hci_skb_pkt_type(skb));
 		kfree_skb(skb);
 		break;
 	}
@@ -657,7 +657,7 @@ static struct sk_buff *h5_prepare_pkt(struct hci_uart *hu, u8 pkt_type,
 	int i;
 
 	if (!valid_packet_type(pkt_type)) {
-		BT_ERR("Unknown packet type %u", pkt_type);
+		bt_dev_err(hu->hdev, "Unknown packet type %u", pkt_type);
 		return NULL;
 	}
 
@@ -734,7 +734,7 @@ static struct sk_buff *h5_dequeue(struct hci_uart *hu)
 		}
 
 		skb_queue_head(&h5->unrel, skb);
-		BT_ERR("Could not dequeue pkt because alloc_skb failed");
+		bt_dev_err(hu->hdev, "Could not dequeue pkt because alloc_skb failed");
 	}
 
 	spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
@@ -754,7 +754,7 @@ static struct sk_buff *h5_dequeue(struct hci_uart *hu)
 		}
 
 		skb_queue_head(&h5->rel, skb);
-		BT_ERR("Could not dequeue pkt because alloc_skb failed");
+		bt_dev_err(hu->hdev, "Could not dequeue pkt because alloc_skb failed");
 	}
 
 unlock:
-- 
2.24.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible
  2020-03-09 21:57 [PATCH] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible Marcel Holtmann
@ 2020-03-10 15:13 ` Alain Michaud
  2020-03-11  8:07 ` Johan Hedberg
  1 sibling, 0 replies; 3+ messages in thread
From: Alain Michaud @ 2020-03-10 15:13 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: BlueZ

Hi Marcel,

On Mon, Mar 9, 2020 at 5:57 PM Marcel Holtmann <marcel@holtmann.org> wrote:
>
> All HCI device specific error messages shall use bt_dev_err to indicate
> the device name in the message.
>
> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
> ---
>  drivers/bluetooth/hci_h5.c | 26 +++++++++++++-------------
>  1 file changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c
> index 812a5e975ec1..106c110efe56 100644
> --- a/drivers/bluetooth/hci_h5.c
> +++ b/drivers/bluetooth/hci_h5.c
> @@ -178,7 +178,7 @@ static void h5_peer_reset(struct hci_uart *hu)
>  {
>         struct h5 *h5 = hu->priv;
>
> -       BT_ERR("Peer device has reset");
> +       bt_dev_err(hu->hdev, "Peer device has reset");
>
>         h5->state = H5_UNINITIALIZED;
>
> @@ -438,21 +438,21 @@ static int h5_rx_3wire_hdr(struct hci_uart *hu, unsigned char c)
>                H5_HDR_LEN(hdr));
>
>         if (((hdr[0] + hdr[1] + hdr[2] + hdr[3]) & 0xff) != 0xff) {
> -               BT_ERR("Invalid header checksum");
> +               bt_dev_err(hu->hdev, "Invalid header checksum");
>                 h5_reset_rx(h5);
>                 return 0;
>         }
>
>         if (H5_HDR_RELIABLE(hdr) && H5_HDR_SEQ(hdr) != h5->tx_ack) {
> -               BT_ERR("Out-of-order packet arrived (%u != %u)",
> -                      H5_HDR_SEQ(hdr), h5->tx_ack);
> +               bt_dev_err(hu->hdev, "Out-of-order packet arrived (%u != %u)",
> +                          H5_HDR_SEQ(hdr), h5->tx_ack);
>                 h5_reset_rx(h5);
>                 return 0;
>         }
>
>         if (h5->state != H5_ACTIVE &&
>             H5_HDR_PKT_TYPE(hdr) != HCI_3WIRE_LINK_PKT) {
> -               BT_ERR("Non-link packet received in non-active state");
> +               bt_dev_err(hu->hdev, "Non-link packet received in non-active state");
>                 h5_reset_rx(h5);
>                 return 0;
>         }
> @@ -475,7 +475,7 @@ static int h5_rx_pkt_start(struct hci_uart *hu, unsigned char c)
>
>         h5->rx_skb = bt_skb_alloc(H5_MAX_LEN, GFP_ATOMIC);
>         if (!h5->rx_skb) {
> -               BT_ERR("Can't allocate mem for new packet");
> +               bt_dev_err(hu->hdev, "Can't allocate mem for new packet");
>                 h5_reset_rx(h5);
>                 return -ENOMEM;
>         }
> @@ -551,7 +551,7 @@ static int h5_recv(struct hci_uart *hu, const void *data, int count)
>
>                 if (h5->rx_pending > 0) {
>                         if (*ptr == SLIP_DELIMITER) {
> -                               BT_ERR("Too short H5 packet");
> +                               bt_dev_err(hu->hdev, "Too short H5 packet");
>                                 h5_reset_rx(h5);
>                                 continue;
>                         }
> @@ -578,13 +578,13 @@ static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
>         struct h5 *h5 = hu->priv;
>
>         if (skb->len > 0xfff) {
> -               BT_ERR("Packet too long (%u bytes)", skb->len);
> +               bt_dev_err(hu->hdev, "Packet too long (%u bytes)", skb->len);
>                 kfree_skb(skb);
>                 return 0;
>         }
>
>         if (h5->state != H5_ACTIVE) {
> -               BT_ERR("Ignoring HCI data in non-active state");
> +               bt_dev_err(hu->hdev, "Ignoring HCI data in non-active state");
>                 kfree_skb(skb);
>                 return 0;
>         }
> @@ -601,7 +601,7 @@ static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
>                 break;
>
>         default:
> -               BT_ERR("Unknown packet type %u", hci_skb_pkt_type(skb));
> +               bt_dev_err(hu->hdev, "Unknown packet type %u", hci_skb_pkt_type(skb));
>                 kfree_skb(skb);
>                 break;
>         }
> @@ -657,7 +657,7 @@ static struct sk_buff *h5_prepare_pkt(struct hci_uart *hu, u8 pkt_type,
>         int i;
>
>         if (!valid_packet_type(pkt_type)) {
> -               BT_ERR("Unknown packet type %u", pkt_type);
> +               bt_dev_err(hu->hdev, "Unknown packet type %u", pkt_type);
>                 return NULL;
>         }
>
> @@ -734,7 +734,7 @@ static struct sk_buff *h5_dequeue(struct hci_uart *hu)
>                 }
>
>                 skb_queue_head(&h5->unrel, skb);
> -               BT_ERR("Could not dequeue pkt because alloc_skb failed");
> +               bt_dev_err(hu->hdev, "Could not dequeue pkt because alloc_skb failed");
>         }
>
>         spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
> @@ -754,7 +754,7 @@ static struct sk_buff *h5_dequeue(struct hci_uart *hu)
>                 }
>
>                 skb_queue_head(&h5->rel, skb);
> -               BT_ERR("Could not dequeue pkt because alloc_skb failed");
> +               bt_dev_err(hu->hdev, "Could not dequeue pkt because alloc_skb failed");
>         }
>
>  unlock:
> --
> 2.24.1
>

LGTM.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible
  2020-03-09 21:57 [PATCH] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible Marcel Holtmann
  2020-03-10 15:13 ` Alain Michaud
@ 2020-03-11  8:07 ` Johan Hedberg
  1 sibling, 0 replies; 3+ messages in thread
From: Johan Hedberg @ 2020-03-11  8:07 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

Hi Marcel,

On Mon, Mar 09, 2020, Marcel Holtmann wrote:
> All HCI device specific error messages shall use bt_dev_err to indicate
> the device name in the message.
> 
> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
> ---
>  drivers/bluetooth/hci_h5.c | 26 +++++++++++++-------------
>  1 file changed, 13 insertions(+), 13 deletions(-)

Applied to bluetooth-next. Thanks.

Johan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-11  8:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-09 21:57 [PATCH] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible Marcel Holtmann
2020-03-10 15:13 ` Alain Michaud
2020-03-11  8:07 ` Johan Hedberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.