diff options
author | Jimmy Assarsson <jimmyassarsson@gmail.com> | 2017-11-21 02:22:28 -0500 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2017-12-01 05:20:52 -0500 |
commit | 8bd13bd522ff7dfa0eb371921aeb417155f7a3be (patch) | |
tree | 3e01b7be378d7ee9d1468f1ca36cf3aa71cf52a5 | |
parent | e84f44eb5523401faeb9cc1c97895b68e3cfb78d (diff) |
can: kvaser_usb: ratelimit errors if incomplete messages are received
Avoid flooding the kernel log with "Formate error", if incomplete message
are received.
Signed-off-by: Jimmy Assarsson <jimmyassarsson@gmail.com>
Cc: linux-stable <stable@vger.kernel.org>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
-rw-r--r-- | drivers/net/can/usb/kvaser_usb.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/can/usb/kvaser_usb.c b/drivers/net/can/usb/kvaser_usb.c index d87e330a20b3..f95945915d20 100644 --- a/drivers/net/can/usb/kvaser_usb.c +++ b/drivers/net/can/usb/kvaser_usb.c | |||
@@ -609,8 +609,8 @@ static int kvaser_usb_wait_msg(const struct kvaser_usb *dev, u8 id, | |||
609 | } | 609 | } |
610 | 610 | ||
611 | if (pos + tmp->len > actual_len) { | 611 | if (pos + tmp->len > actual_len) { |
612 | dev_err(dev->udev->dev.parent, | 612 | dev_err_ratelimited(dev->udev->dev.parent, |
613 | "Format error\n"); | 613 | "Format error\n"); |
614 | break; | 614 | break; |
615 | } | 615 | } |
616 | 616 | ||
@@ -1353,7 +1353,8 @@ static void kvaser_usb_read_bulk_callback(struct urb *urb) | |||
1353 | } | 1353 | } |
1354 | 1354 | ||
1355 | if (pos + msg->len > urb->actual_length) { | 1355 | if (pos + msg->len > urb->actual_length) { |
1356 | dev_err(dev->udev->dev.parent, "Format error\n"); | 1356 | dev_err_ratelimited(dev->udev->dev.parent, |
1357 | "Format error\n"); | ||
1357 | break; | 1358 | break; |
1358 | } | 1359 | } |
1359 | 1360 | ||