All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hv_balloon: rate-limit "Unhandled message" warning
@ 2022-02-22 14:14 Anssi Hannula
  2022-02-25 18:59 ` Michael Kelley (LINUX)
  0 siblings, 1 reply; 3+ messages in thread
From: Anssi Hannula @ 2022-02-22 14:14 UTC (permalink / raw)
  To: K. Y. Srinivasan, Haiyang Zhang, Stephen Hemminger, Wei Liu, Dexuan Cui
  Cc: linux-hyperv, linux-kernel

For a couple of times I have encountered a situation where

  hv_balloon: Unhandled message: type: 12447

is being flooded over 1 million times per second with various values,
filling the log and consuming cycles, making debugging difficult.

Add rate limiting to the message.

Most other Hyper-V drivers already have similar rate limiting in their
message callbacks.

The cause of the floods in my case was probably fixed by 96d9d1fa5cd5
("Drivers: hv: balloon: account for vmbus packet header in
max_pkt_size").

Fixes: 9aa8b50b2b3d ("Drivers: hv: Add Hyper-V balloon driver")
Signed-off-by: Anssi Hannula <anssi.hannula@bitwise.fi>
---
 drivers/hv/hv_balloon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
index f2d05bff4245..439f99b8b5de 100644
--- a/drivers/hv/hv_balloon.c
+++ b/drivers/hv/hv_balloon.c
@@ -1563,7 +1563,7 @@ static void balloon_onchannelcallback(void *context)
 			break;
 
 		default:
-			pr_warn("Unhandled message: type: %d\n", dm_hdr->type);
+			pr_warn_ratelimited("Unhandled message: type: %d\n", dm_hdr->type);
 
 		}
 	}
-- 
2.34.1


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

* RE: [PATCH] hv_balloon: rate-limit "Unhandled message" warning
  2022-02-22 14:14 [PATCH] hv_balloon: rate-limit "Unhandled message" warning Anssi Hannula
@ 2022-02-25 18:59 ` Michael Kelley (LINUX)
  2022-03-01 15:16   ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Kelley (LINUX) @ 2022-02-25 18:59 UTC (permalink / raw)
  To: Anssi Hannula, KY Srinivasan, Haiyang Zhang, Stephen Hemminger,
	Wei Liu, Dexuan Cui
  Cc: linux-hyperv, linux-kernel

From: Anssi Hannula <anssi.hannula@bitwise.fi> Sent: Tuesday, February 22, 2022 6:14 AM
> 
> For a couple of times I have encountered a situation where
> 
>   hv_balloon: Unhandled message: type: 12447
> 
> is being flooded over 1 million times per second with various values,
> filling the log and consuming cycles, making debugging difficult.
> 
> Add rate limiting to the message.
> 
> Most other Hyper-V drivers already have similar rate limiting in their
> message callbacks.
> 
> The cause of the floods in my case was probably fixed by 96d9d1fa5cd5
> ("Drivers: hv: balloon: account for vmbus packet header in
> max_pkt_size").
> 
> Fixes: 9aa8b50b2b3d ("Drivers: hv: Add Hyper-V balloon driver")
> Signed-off-by: Anssi Hannula <anssi.hannula@bitwise.fi>
> ---
>  drivers/hv/hv_balloon.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
> index f2d05bff4245..439f99b8b5de 100644
> --- a/drivers/hv/hv_balloon.c
> +++ b/drivers/hv/hv_balloon.c
> @@ -1563,7 +1563,7 @@ static void balloon_onchannelcallback(void *context)
>                         break;
> 
>                 default:
> -                       pr_warn("Unhandled message: type: %d\n", dm_hdr->type);
> +                       pr_warn_ratelimited("Unhandled message: type: %d\n", dm_hdr->type);
> 
>                 }
>         }
> --
> 2.34.1

Unlike some of the other VMbus drivers, this driver has not been "hardened" for
use in an environment where the guest does not trust the hypervisor, but it was
affected by changes to the underlying ring buffer handling.  The bug that caused
the flood of errors has indeed been fixed, but I'm good with rate limiting this
warning.

Reviewed-by: Michael Kelley <mikelley@microsoft.com>




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

* Re: [PATCH] hv_balloon: rate-limit "Unhandled message" warning
  2022-02-25 18:59 ` Michael Kelley (LINUX)
@ 2022-03-01 15:16   ` Wei Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Wei Liu @ 2022-03-01 15:16 UTC (permalink / raw)
  To: Michael Kelley (LINUX)
  Cc: Anssi Hannula, KY Srinivasan, Haiyang Zhang, Stephen Hemminger,
	Wei Liu, Dexuan Cui, linux-hyperv, linux-kernel

On Fri, Feb 25, 2022 at 06:59:18PM +0000, Michael Kelley (LINUX) wrote:
> From: Anssi Hannula <anssi.hannula@bitwise.fi> Sent: Tuesday, February 22, 2022 6:14 AM
> > 
> > For a couple of times I have encountered a situation where
> > 
> >   hv_balloon: Unhandled message: type: 12447
> > 
> > is being flooded over 1 million times per second with various values,
> > filling the log and consuming cycles, making debugging difficult.
> > 
> > Add rate limiting to the message.
> > 
> > Most other Hyper-V drivers already have similar rate limiting in their
> > message callbacks.
> > 
> > The cause of the floods in my case was probably fixed by 96d9d1fa5cd5
> > ("Drivers: hv: balloon: account for vmbus packet header in
> > max_pkt_size").
> > 
> > Fixes: 9aa8b50b2b3d ("Drivers: hv: Add Hyper-V balloon driver")
> > Signed-off-by: Anssi Hannula <anssi.hannula@bitwise.fi>
[...]
> 
> Reviewed-by: Michael Kelley <mikelley@microsoft.com>

Applied to hyperv-next. Thanks.

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

end of thread, other threads:[~2022-03-01 15:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22 14:14 [PATCH] hv_balloon: rate-limit "Unhandled message" warning Anssi Hannula
2022-02-25 18:59 ` Michael Kelley (LINUX)
2022-03-01 15:16   ` Wei Liu

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.